/* ===========================
   NRI DIVORCE LAWYER - CSS
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&display=swap');

:root {
  --navy: #0a1628;
  --deep-navy: #060e1c;
  --gold: #b8922a;
  --gold-light: #d4aa4a;
  --gold-pale: #f5e9cc;
  --cream: #faf7f2;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #3d3d5c;
  --text-light: #6b6b8a;
  --border: #d4aa4a33;
  --shadow: 0 8px 40px rgba(10,22,40,0.18);
  --shadow-sm: 0 2px 16px rgba(10,22,40,0.10);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Bookman Old Style', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bookman Old Style', 'EB Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

p {
  margin-bottom: 1rem;
  color: var(--text-mid);
  font-size: 1.05rem;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-light);
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--gold);
  letter-spacing: 0.03em;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--gold-light);
  font-size: 0.82rem;
}

/* ===== HEADER / NAV ===== */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.site-logo {
  font-family: 'Bookman Old Style', 'EB Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.site-logo span {
  color: var(--gold);
  display: block;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 2px;
}

nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav a {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  padding: 8px 14px;
  border-radius: 2px;
  font-family: 'Bookman Old Style', 'EB Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

nav a:hover,
nav a.active {
  color: var(--gold);
  background: rgba(184,146,42,0.12);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 20px !important;
  font-weight: 700 !important;
  border-radius: 2px !important;
  margin-left: 8px;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  min-width: 240px;
  box-shadow: var(--shadow);
  z-index: 999;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 11px 18px;
  font-size: 0.87rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dropdown-menu a:hover {
  background: rgba(184,146,42,0.15);
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 620px;
  background: linear-gradient(135deg, var(--deep-navy) 0%, #12244a 50%, #1a3060 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1400&q=80') center/cover no-repeat;
  opacity: 0.12;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,14,28,0.97) 45%, rgba(6,14,28,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(184,146,42,0.18);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  margin-bottom: 24px;
  font-family: 'Bookman Old Style', Georgia, serif;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.18;
  font-weight: 700;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 1.9rem;
  color: var(--gold);
  font-family: 'Bookman Old Style', Georgia, serif;
  line-height: 1;
  font-weight: 700;
}

.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Bookman Old Style', Georgia, serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,146,42,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
  margin-left: 12px;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,146,42,0.08);
}

/* ===== SECTION BASE ===== */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: 'Bookman Old Style', Georgia, serif;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 20px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.06rem;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy);
  padding: 28px 0;
  border-top: 1px solid rgba(184,146,42,0.3);
  border-bottom: 1px solid rgba(184,146,42,0.3);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  text-align: center;
  color: rgba(255,255,255,0.88);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.trust-item strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  font-family: 'Bookman Old Style', Georgia, serif;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 28px;
  border-top: 3px solid var(--gold);
  transition: all 0.35s ease;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-top-color: var(--gold-light);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
  display: block;
}

.service-card h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-card a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
  background: var(--navy);
  color: var(--white);
}

.why-section h2,
.why-section h3 {
  color: var(--white);
}

.why-section p {
  color: rgba(255,255,255,0.75);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.why-image {
  position: relative;
}

.why-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.why-image::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid var(--gold);
  z-index: 0;
}

.why-image img {
  position: relative;
  z-index: 1;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-point-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(184,146,42,0.15);
  border: 1px solid rgba(184,146,42,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.why-point-text h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.why-point-text p {
  font-size: 0.93rem;
  margin: 0;
}

/* ===== NRI REGIONS ===== */
.regions-section {
  background: var(--cream);
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.region-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.region-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.region-flag {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.region-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.region-card p {
  font-size: 0.83rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== PROCESS ===== */
.process-section {
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Bookman Old Style', Georgia, serif;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid var(--gold);
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(135deg, var(--navy) 0%, #12244a 100%);
}

.testimonials-section h2 {
  color: var(--white);
}

.testimonials-section .section-label {
  color: var(--gold-light);
}

.testimonials-section .divider {
  background: var(--gold);
}

.testimonials-section .section-header p {
  color: rgba(255,255,255,0.7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,146,42,0.25);
  padding: 32px 28px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 12px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
  font-style: italic;
  padding-top: 20px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Bookman Old Style', Georgia, serif;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
}

.author-info span {
  color: var(--gold-light);
  font-size: 0.8rem;
  opacity: 0.85;
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--cream);
}

.faq-list {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Bookman Old Style', Georgia, serif;
}

.faq-question:hover {
  background: rgba(184,146,42,0.05);
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--gold);
  padding: 72px 0;
}

.cta-inner {
  text-align: center;
}

.cta-section h2 {
  color: var(--navy);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(10,22,40,0.75);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 32px;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--deep-navy);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--deep-navy) 0%, #12244a 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1200&q=70') center/cover no-repeat;
  opacity: 0.08;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
}

.breadcrumb {
  color: rgba(255,255,255,0.5);
  font-size: 0.83rem;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.breadcrumb a {
  color: var(--gold-light);
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* ===== CONTENT PAGES ===== */
.content-section {
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: start;
}

.content-main h2 {
  font-size: 1.6rem;
  margin: 36px 0 16px;
  color: var(--navy);
}

.content-main h2:first-child {
  margin-top: 0;
}

.content-main ul, .content-main ol {
  margin: 0 0 1rem 1.5rem;
  color: var(--text-mid);
}

.content-main li {
  margin-bottom: 8px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.content-main .highlight-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  margin: 28px 0;
}

.content-main .highlight-box p {
  margin: 0;
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.02rem;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--navy);
  padding: 32px 28px;
  margin-bottom: 24px;
  color: var(--white);
}

.sidebar-card h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.sidebar-card p {
  color: rgba(255,255,255,0.78);
  font-size: 0.93rem;
  margin-bottom: 20px;
}

.sidebar-card .btn {
  width: 100%;
  text-align: center;
  display: block;
}

.sidebar-services a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

.sidebar-services a:hover {
  color: var(--gold);
}

/* ===== FOOTER ===== */
footer {
  background: var(--deep-navy);
  border-top: 1px solid rgba(184,146,42,0.3);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.footer-brand .tagline {
  color: var(--gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.75;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80%;
  height: 80%;
  border: 2px solid var(--gold);
  z-index: -1;
}

.experience-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.badge {
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  padding: 10px 16px;
  text-align: center;
}

.badge strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  font-family: 'Bookman Old Style', Georgia, serif;
}

.badge span {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-info-block {
  background: var(--navy);
  padding: 40px 36px;
  color: var(--white);
}

.contact-info-block h3 {
  color: var(--gold);
  margin-bottom: 24px;
  font-size: 1.3rem;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail-icon {
  font-size: 1.3rem;
  margin-top: 2px;
}

.contact-detail-text strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.contact-detail-text p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

.contact-iframe-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
}

.contact-iframe-wrap h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-iframe-wrap p {
  font-size: 0.93rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* ===== MOBILE NAV ===== */
.mobile-menu {
  display: none;
  background: var(--navy);
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
  font-family: 'Bookman Old Style', Georgia, serif;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-menu .mobile-cta {
  margin-top: 16px;
  display: block;
  background: var(--gold);
  color: var(--navy) !important;
  text-align: center;
  padding: 12px !important;
  font-weight: 700;
  border-bottom: none !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-image {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px;
  }

  .trust-items {
    gap: 24px;
  }

  section {
    padding: 56px 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .regions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 12px;
  }
}
