@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ==========================================================================
   ONEIROHIRE LLC - Robert Half Style Corporate Design System
   ========================================================================== */
:root {
  --bg-main: #061412;
  --bg-card: #0c211e;
  --bg-card-hover: #102d29;
  --primary-navy: #061412;
  --primary-blue: #0e2b26;
  --accent-red: #10b981;
  --accent-red-hover: #059669;
  --accent-cyan: #34d399;
  --accent-gold: #f59e0b;
  --text-primary: #ffffff;
  --text-secondary: #a7f3d0;
  --text-muted: #6ee7b7;
  --border-light: rgba(16, 185, 129, 0.18);
  --border-glow: rgba(16, 185, 129, 0.45);
  --glass-bg: rgba(12, 33, 30, 0.85);
  --glass-bg-hover: rgba(16, 45, 41, 0.95);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 14px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.35);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: #061412;
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #a7f3d0 50%, var(--accent-red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-primary {
  background: linear-gradient(135deg, #ffffff 30%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--border-glow);
  color: var(--accent-red);
}

.badge-cyan {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--accent-gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
  background: linear-gradient(135deg, #34d399 0%, #047857 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-cyan {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.btn-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.55);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.85rem 0;
  background: rgba(11, 19, 32, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(11, 19, 32, 0.98);
  padding: 0.65rem 0;
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-glow);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand-logo img {
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.08) contrast(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #ffffff;
  white-space: nowrap;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent-red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  white-space: nowrap;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-secondary);
  position: relative;
  padding: 0.35rem 0;
  white-space: nowrap;
  display: inline-block;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.drawer-trigger {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-light);
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  font-size: 1.2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.drawer-trigger:hover {
  background: rgba(217, 35, 45, 0.2);
  border-color: var(--accent-red);
}

/* Mobile Drawer */
.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.floating-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(100vw - 50px);
  max-width: 360px;
  height: 100vh;
  background: rgba(11, 19, 32, 0.96);
  backdrop-filter: blur(25px);
  border-right: 1px solid var(--border-glow);
  z-index: 1600;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.floating-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.drawer-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
}

.drawer-nav {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.drawer-nav a {
  font-size: 1.05rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
}

.drawer-nav a:hover {
  background: rgba(217, 35, 45, 0.15);
  color: var(--accent-red);
}

/* ==========================================================================
   Robert Half Style Hero & Search Widget
   ========================================================================== */
.rh-hero {
  padding-top: 175px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

.rh-hero-content {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 3rem auto;
}

.rh-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 1rem 0;
}

.rh-hero-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

/* Robert Half Dual Search Widget */
.rh-search-widget {
  background: var(--glass-bg);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  backdrop-filter: blur(20px);
  max-width: 960px;
  margin: 0 auto;
}

.rh-search-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
}

.search-tab-btn {
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.search-tab-btn.active {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(217, 35, 45, 0.4);
}

.rh-search-form {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 1rem;
  align-items: center;
}

.search-input-group {
  position: relative;
}

.search-input-group i {
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

.search-input-group input,
.search-input-group select {
  width: 100%;
  padding: 0.95rem 1.15rem 0.95rem 3rem;
  background: rgba(10, 20, 35, 0.85);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: var(--transition);
}

.search-input-group input:focus,
.search-input-group select:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 12px rgba(217, 35, 45, 0.3);
}

.search-input-group select option {
  background: #121f33;
  color: #ffffff;
}

/* Metrics Ribbon */
.hero-metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  padding: 1.75rem;
  background: var(--glass-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(15px);
}

.metric-card {
  text-align: center;
}

.metric-number {
  font-size: 2.3rem;
  font-weight: 900;
  font-family: var(--font-heading);
  color: #ffffff;
}

.metric-label {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

/* ==========================================================================
   Section Layouts
   ========================================================================== */
.section {
  padding: 90px 0;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin: 0.85rem 0 1rem 0;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* Robert Half Specialization Practice Area Cards Grid */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.practice-card {
  position: relative;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
}

.practice-card-tech {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.78) 0%, rgba(8, 15, 26, 0.92) 100%), url('assets/practice_tech.png') center/cover no-repeat !important;
}

.practice-card-finance {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.78) 0%, rgba(8, 15, 26, 0.92) 100%), url('assets/practice_finance.png') center/cover no-repeat !important;
}

.practice-card-legal {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.78) 0%, rgba(8, 15, 26, 0.92) 100%), url('assets/practice_legal.png') center/cover no-repeat !important;
}

.practice-card-healthcare {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.78) 0%, rgba(8, 15, 26, 0.92) 100%), url('assets/practice_healthcare.png') center/cover no-repeat !important;
}

.practice-card-engineering {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.78) 0%, rgba(8, 15, 26, 0.92) 100%), url('assets/practice_engineering.png') center/cover no-repeat !important;
}

.practice-card-executive {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.78) 0%, rgba(8, 15, 26, 0.92) 100%), url('assets/practice_executive.png') center/cover no-repeat !important;
}

/* Card Background Photo Design System for Sub-Pages (100% Unique Image per Card) */
.about-card-mission {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.78) 0%, rgba(8, 15, 26, 0.92) 100%), url('assets/about_mission.png') center/cover no-repeat !important;
}

.about-card-advantage {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.78) 0%, rgba(8, 15, 26, 0.92) 100%), url('assets/about_advantage.png') center/cover no-repeat !important;
}

.service-card-contract {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.78) 0%, rgba(8, 15, 26, 0.92) 100%), url('assets/service_contract.png') center/cover no-repeat !important;
}

.service-card-direct {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.78) 0%, rgba(8, 15, 26, 0.92) 100%), url('assets/service_directhire.png') center/cover no-repeat !important;
}

.service-card-executive {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.78) 0%, rgba(8, 15, 26, 0.92) 100%), url('assets/service_executive_search.jpg') center/cover no-repeat !important;
}

.service-card-project {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.78) 0%, rgba(8, 15, 26, 0.92) 100%), url('assets/service_project_consulting.jpg') center/cover no-repeat !important;
}

.employer-card-req {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.78) 0%, rgba(8, 15, 26, 0.92) 100%), url('assets/employer_requisition.jpg') center/cover no-repeat !important;
}

.employer-card-process {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.78) 0%, rgba(8, 15, 26, 0.92) 100%), url('assets/employer_partner.jpg') center/cover no-repeat !important;
}

.seeker-card-resume {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.78) 0%, rgba(8, 15, 26, 0.92) 100%), url('assets/seeker_submit_resume.jpg') center/cover no-repeat !important;
}

.seeker-card-coaching {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.78) 0%, rgba(8, 15, 26, 0.92) 100%), url('assets/seeker_career_coaching.jpg') center/cover no-repeat !important;
}

.contact-card-hq {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.78) 0%, rgba(8, 15, 26, 0.92) 100%), url('assets/contact_corporate_hq.jpg') center/cover no-repeat !important;
}

.contact-card-consultation {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.78) 0%, rgba(8, 15, 26, 0.92) 100%), url('assets/contact_consultation_form.jpg') center/cover no-repeat !important;
}

.case-card-enterprise {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.82) 0%, rgba(8, 15, 26, 0.94) 100%), url('assets/case_enterprise.jpg') center/cover no-repeat !important;
}

.case-card-legal {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.82) 0%, rgba(8, 15, 26, 0.94) 100%), url('assets/case_legal.jpg') center/cover no-repeat !important;
}

.case-card-finance {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.82) 0%, rgba(8, 15, 26, 0.94) 100%), url('assets/case_finance.jpg') center/cover no-repeat !important;
}

.banner-card-employer {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.82) 0%, rgba(8, 15, 26, 0.94) 100%), url('assets/home_banner_employer.jpg') center/cover no-repeat !important;
}

.banner-card-seeker {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.82) 0%, rgba(8, 15, 26, 0.94) 100%), url('assets/home_banner_seeker.jpg') center/cover no-repeat !important;
}

.practice-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), var(--shadow-glow);
}

.practice-icon {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-md);
  background: rgba(217, 35, 45, 0.15);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.practice-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
}

.practice-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.practice-actions {
  display: flex;
  gap: 0.75rem;
}

.practice-actions .btn {
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
}

/* 2026 Salary Guide Banner & Image Showcase */
.showcase-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(217, 35, 45, 0.25);
  max-height: 380px;
}

.showcase-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.showcase-img-frame:hover img {
  transform: scale(1.04);
}

.hero-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3.5rem;
  align-items: center;
}

.salary-guide-card {
  background: linear-gradient(135deg, rgba(14, 24, 40, 0.95) 0%, rgba(217, 35, 45, 0.25) 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  backdrop-filter: blur(20px);
}

.salary-guide-card h3 {
  font-size: 2.2rem;
  margin: 0.85rem 0 1rem 0;
}

/* Dual Banner Grid */
.dual-banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.banner-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.banner-card-alt {
  border-color: rgba(0, 245, 212, 0.3);
}

.banner-card h3 {
  font-size: 2rem;
  margin: 0.85rem 0 1rem 0;
}

/* Sub-Page Hero Banner & Breadcrumbs */
.page-hero {
  padding-top: 175px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
  text-align: center;
  background: linear-gradient(180deg, rgba(14, 24, 40, 0.85) 0%, rgba(11, 19, 32, 0.4) 100%);
  border-bottom: 1px solid var(--border-light);
}

.page-hero h1 {
  font-size: 2.8rem;
  margin: 0.85rem 0;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 1.25rem auto;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.breadcrumbs a {
  color: var(--accent-red);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.subpage-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.about-card-box,
.contact-info-card,
.contact-form-box {
  position: relative;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.25rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  color: var(--text-secondary);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(217, 35, 45, 0.15);
  color: var(--accent-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 1.35rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-red);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(217, 35, 45, 0.25);
}

select.form-control option {
  background: #121f33;
  color: #ffffff;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Cases Grid */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.case-card {
  background: var(--glass-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-metric {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-cyan);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.quote-box {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--accent-red);
  padding: 1rem;
  margin-top: 1.5rem;
  font-style: italic;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Footer with Unique Corporate Background Photo */
.footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 14, 24, 0.93) 0%, rgba(4, 8, 15, 0.96) 100%), url('assets/footer_bg.jpg') center/cover no-repeat;
  border-top: 1px solid var(--border-glow);
  padding: 75px 0 30px 0;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 320px;
}

/* LinkedIn Social Icon System */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid var(--border-glow);
  color: var(--accent-red);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-btn:hover {
  background: #0077b5;
  border-color: #0077b5;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 119, 181, 0.45);
}

.nav-social-btn {
  width: 38px;
  height: 38px;
  font-size: 1rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--accent-red);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.88rem;
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-card {
  background: #0d1a2d;
  border: 1px solid var(--accent-red);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(217, 35, 45, 0.35);
  max-height: 90vh;
  overflow-y: auto;
  color: #ffffff;
}

.modal-card h3 {
  color: #ffffff !important;
  font-size: 1.9rem;
  font-weight: 800;
  margin-top: 0.5rem;
}

.modal-card p {
  color: #cbd5e1 !important;
  font-size: 0.95rem;
}

.modal-card label {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
  display: block;
}

.modal-card .form-control {
  background: #14243b !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #ffffff !important;
  font-size: 0.95rem;
}

.modal-card .form-control:focus {
  border-color: var(--accent-red) !important;
  background: #192d47 !important;
  box-shadow: 0 0 14px rgba(217, 35, 45, 0.4) !important;
}

.modal-card .form-control::placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
}

/* Responsive Header & Layout Alignment */
@media (max-width: 1250px) {
  .nav-links {
    gap: 0.95rem;
  }
  .nav-links a {
    font-size: 0.85rem;
  }
  .btn {
    padding: 0.65rem 1.25rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }
  .drawer-trigger {
    display: flex;
  }
}

@media (max-width: 1024px) {
  .practice-grid,
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .salary-guide-card,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 0.75rem 0;
  }

  .brand-logo {
    gap: 0.55rem;
  }

  .brand-logo img {
    height: 38px;
  }

  .brand-title {
    font-size: 1.05rem;
  }

  .brand-tagline {
    font-size: 0.55rem;
    letter-spacing: 0.03em;
  }

  .nav-actions {
    display: none;
  }

  .page-hero {
    padding-top: 125px;
    padding-bottom: 45px;
  }

  .page-hero h1 {
    font-size: 1.95rem;
    line-height: 1.25;
  }

  .page-hero p {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .rh-hero {
    padding-top: 130px;
  }

  .rh-hero-content h1 {
    font-size: 2.1rem;
  }

  .rh-search-form {
    grid-template-columns: 1fr;
  }

  .hero-metrics-bar,
  .hero-showcase-grid,
  .practice-grid,
  .cases-grid,
  .subpage-card-grid,
  .dual-banner-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .showcase-img-frame {
    max-height: 240px;
    width: 100%;
    margin-top: 1rem;
  }

  .about-card-box,
  .contact-info-card,
  .contact-form-box,
  .banner-card,
  .practice-card {
    padding: 1.75rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .brand-tagline {
    display: none;
  }
  .page-hero h1 {
    font-size: 1.65rem;
  }
}
