/* ============================================================
   AVON PROJECT CONSULTANTS
   Theme: Navy + Gold | Structural Audit Mumbai
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --navy-950: #060e1f;
  --navy-900: #0b1a34;
  --navy-800: #112248;
  --navy-700: #1a3363;
  --navy-600: #1e3d7a;
  --navy-500: #2653a3;
  --navy-400: #3a6bbf;
  --navy-300: #6b93d4;
  --navy-100: #dce8f7;
  --navy-50: #f0f5fc;

  --gold-600: #c48a00;
  --gold-500: #e0a000;
  --gold-400: #f5b800;
  --gold-300: #fac832;
  --gold-200: #fde278;
  --gold-100: #fef6d0;

  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --green-500: #16a34a;
  --green-100: #dcfce7;
  --wa-green: #25D366;
  --wa-dark: #1cb857;

  /* --font-display: 'Playfair Display', Georgia, serif; */
  /* --font-body: 'DM Sans', system-ui, sans-serif; */

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 9999px;

  --shadow-xs: 0 1px 3px rgba(6, 14, 31, .07);
  --shadow-sm: 0 2px 8px rgba(6, 14, 31, .09);
  --shadow-md: 0 6px 24px rgba(6, 14, 31, .12);
  --shadow-lg: 0 16px 48px rgba(6, 14, 31, .16);
  --shadow-xl: 0 32px 80px rgba(6, 14, 31, .20);
  --shadow-gold: 0 6px 28px rgba(245, 184, 0, .32);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --t-fast: 150ms;
  --t-mid: 280ms;
  --t-slow: 480ms;

  --container: 1160px;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  /* font-family: var(--font-body); */
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy-950);
  border-bottom: 1px solid rgba(245, 184, 0, .15);
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.top-bar-left {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar-left span {
  font-size: .76rem;
  color: rgba(255, 255, 255, .50);
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-bar-left span i {
  color: var(--gold-400);
  font-size: .68rem;
}

.top-bar-right {
  display: flex;
  gap: 18px;
  align-items: center;
}

.top-bar-right a {
  font-size: .76rem;
  color: rgba(255, 255, 255, .65);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color var(--t-fast) var(--ease);
}

.top-bar-right a:hover {
  color: var(--gold-300);
}

.top-bar-right a i {
  color: var(--gold-400);
  font-size: .68rem;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--t-mid) var(--ease);
}

header.scrolled {
  box-shadow: var(--shadow-md);
}

nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links>li {
  position: relative;
}

.nav-links>li>a {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-700);
  padding: 8px 13px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}

.nav-links>li>a:hover {
  color: var(--navy-700);
  background: var(--navy-50);
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  min-width: 275px;
  overflow: hidden;
  z-index: 200;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-700), var(--gold-400));
}

.dropdown:hover .dropdown-menu {
  display: block;
  animation: fadeSlide .2s var(--ease-out);
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--t-fast), color var(--t-fast), padding-left var(--t-fast);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background: var(--navy-50);
  color: var(--navy-700);
  padding-left: 26px;
}

/* Nav CTA */
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--navy-800);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: all var(--t-fast) var(--ease);
}

.nav-call-btn:hover {
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-call-btn i {
  color: var(--gold-400);
}

.nav-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  background: var(--wa-green);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition: all var(--t-fast) var(--ease);
}

.nav-wa-btn:hover {
  background: var(--wa-dark);
  color: var(--white);
  transform: translateY(-1px);
}

/* Mobile toggle */
.mobile-menu {
  display: none;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--r-sm);
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  font-size: 1.1rem;
  transition: all var(--t-fast) var(--ease);
  flex-shrink: 0;
}

.mobile-menu:hover {
  border-color: var(--navy-700);
  color: var(--navy-700);
  background: var(--navy-50);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 9px 0;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  color: var(--gray-500);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--navy-600);
  font-weight: 500;
  transition: color var(--t-fast);
}

.breadcrumb a:hover {
  color: var(--gold-600);
}

.breadcrumb .sep {
  color: var(--gray-300);
  font-size: .68rem;
}

.breadcrumb span {
  color: var(--gray-600);
  font-weight: 600;
}

/* ===== HERO ===== */
.hero-mumbai {
  position: relative;
  /* background: var(--navy-950); */
  background: linear-gradient(135deg, rgba(4, 29, 78, 0.95) 0%, rgba(5, 42, 110, 0.95) 100%),
        url('https://avonprojects.in/wp-content/uploads/2023/10/about-us.jpg') center/cover;
  
  overflow: hidden;
}

.hero-mumbai::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-mumbai::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-400), var(--gold-300), var(--gold-400), transparent);
}

/* Hero inner — two column grid, FIXED alignment */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: stretch;
  min-height: 540px;
}

/* Left content column */
.hero-content-col {
  padding: 72px 56px 72px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-eyebrow-line {
  width: 36px;
  height: 2px;
  background: var(--gold-400);
  flex-shrink: 0;
}

.hero-eyebrow span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.hero-mumbai h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 18px;
}

.hero-mumbai h1 .accent {
  color: var(--gold-400);
}

.hero-mumbai .subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, .65);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.75;
}

/* Trust pills — FIXED: flex-wrap, no overflow */
.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-full);
  font-size: .79rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .78);
  white-space: nowrap;
  transition: all var(--t-fast) var(--ease);
}

.trust-pill i {
  color: var(--gold-400);
  font-size: .72rem;
}

.trust-pill:hover {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(245, 184, 0, .4);
  color: var(--white);
}

/* CTA buttons row */
.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Right stats column — FIXED: self-contained, no bleed */
.hero-card-col {
  background: rgba(255, 255, 255, .04);
  border-left: 1px solid rgba(255, 255, 255, .08);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
}

.hero-stat-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--r-md);
  padding: 16px 20px;
  text-align: center;
  transition: all var(--t-mid) var(--ease);
}

.hero-stat-card:hover {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(245, 184, 0, .30);
  transform: translateX(-4px);
}

.hero-stat-card .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold-300);
  line-height: 1;
  display: block;
}

.hero-stat-card .lbl {
  font-size: .74rem;
  color: rgba(255, 255, 255, .48);
  font-weight: 500;
  letter-spacing: .03em;
  margin-top: 4px;
  display: block;
}

.hero-cta-card {
  background: var(--gold-400);
  border-radius: var(--r-md);
  padding: 16px 20px;
  text-align: center;
}

.hero-cta-card p {
  font-size: .68rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-cta-card a {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy-900);
  font-family: var(--font-display);
  transition: opacity var(--t-fast);
}

.hero-cta-card a:hover {
  opacity: .75;
}

/* Hero animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  animation: fadeUp .6s var(--ease-out) .10s both;
}

.hero-mumbai h1 {
  animation: fadeUp .6s var(--ease-out) .20s both;
}

.hero-mumbai .subtitle {
  animation: fadeUp .6s var(--ease-out) .28s both;
}

.hero-trust-strip {
  animation: fadeUp .6s var(--ease-out) .34s both;
}

.hero-cta-row {
  animation: fadeUp .6s var(--ease-out) .40s both;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .02em;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--t-mid) var(--ease-spring);
}

.btn-lg {
  padding: 14px 30px;
  font-size: .92rem;
}

.btn-primary {
  background: var(--gold-400);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-300);
  color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(245, 184, 0, .45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .35);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .70);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy-800);
  color: var(--white);
}

.btn-navy:hover {
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--wa-green);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: var(--wa-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 48px 0;
}

.bg-white {
  background: var(--white);
}

.bg-light {
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.eyebrow-line {
  width: 30px;
  height: 2px;
  background: var(--gold-400);
  flex-shrink: 0;
}

.eyebrow span {
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--navy-600);
}

.on-dark .eyebrow span {
  color: var(--gold-300);
}

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.22;
  margin-bottom: 12px;
}

.on-dark h2.section-title {
  color: var(--white);
}

.section-desc {
  font-size: .97rem;
  color: var(--gray-500);
  line-height: 1.75;
}

.on-dark .section-desc {
  color: rgba(255, 255, 255, .52);
}

/* ===== INTRO SECTION ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.intro-content p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 16px;
}

.intro-content p:last-child {
  margin-bottom: 0;
}

.intro-content p strong {
  color: var(--navy-800);
  font-weight: 700;
}

.intro-highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--navy-50);
  border: 1px solid var(--navy-100);
  border-left: 3px solid var(--navy-700);
  border-radius: var(--r-md);
  padding: 16px 20px;
  margin-top: 22px;
}

.intro-highlight i {
  color: var(--navy-600);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.intro-highlight p {
  margin: 0 !important;
  font-size: .88rem;
  color: var(--navy-800);
  font-weight: 500;
  line-height: 1.6;
}

.intro-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cert-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 20px 20px 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-mid) var(--ease);
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold-400), var(--navy-600));
}

.cert-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateX(5px);
}

.cert-card i {
  font-size: 1.3rem;
  color: var(--gold-500);
  margin-bottom: 9px;
  display: block;
}

.cert-card h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.cert-card p {
  font-size: .8rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transition: all var(--t-mid) var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: var(--navy-300);
  transform: translateY(-8px);
}

.service-img-wrap {
  position: relative;
  height: 196px;
  overflow: hidden;
  background: var(--navy-900);
  flex-shrink: 0;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
  transition: all var(--t-slow) var(--ease);
}

.service-card:hover .service-img-wrap img {
  opacity: 1;
  transform: scale(1.06);
}

.service-badge {
  position: absolute;
  bottom: 12px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold-400);
  color: var(--navy-900);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: var(--r-sm);
}

.service-body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-icon-wrap {
  width: 42px;
  height: 42px;
  background: var(--navy-50);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  margin-top: -32px;
  position: relative;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  transition: all var(--t-mid) var(--ease);
}

.service-card:hover .service-icon-wrap {
  background: var(--navy-800);
}

.service-icon-wrap i {
  font-size: 1rem;
  color: var(--navy-700);
  transition: color var(--t-mid) var(--ease);
}

.service-card:hover .service-icon-wrap i {
  color: var(--gold-400);
}

.service-body h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 9px;
  line-height: 1.3;
}

.service-body p {
  font-size: .86rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 16px;
  flex: 1;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
  margin-top: auto;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .81rem;
  color: var(--gray-600);
  font-weight: 500;
  line-height: 1.4;
}

.service-features li i {
  width: 16px;
  height: 16px;
  background: var(--green-100);
  color: var(--green-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .58rem;
  flex-shrink: 0;
}

/* ===== AREAS ===== */
.areas-section {
  /* background: var(--navy-950); */
  background: #041d4e;
}

.mumbai-areas-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.area-category {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-lg);
  padding: 22px;
  transition: all var(--t-mid) var(--ease);
}

.area-category:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(245, 184, 0, .25);
}

.area-category h3 {
  font-size: .76rem;
  font-weight: 700;
  color: var(--gold-300);
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  align-items: center;
  gap: 7px;
}

.area-category h3 i {
  color: var(--gold-400);
  font-size: .72rem;
}

.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.area-tag {
  font-size: .72rem;
  font-weight: 500;
  /* color: rgba(255, 255, 255, .58); */
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  padding: 3px 9px;
  border-radius: var(--r-full);
  transition: all var(--t-fast) var(--ease);
  cursor: default;
}

.area-tag:hover {
  background: var(--gold-400);
  color: var(--navy-900);
  border-color: var(--gold-400);
  font-weight: 600;
}

/* ===== COMPLIANCE ===== */
.compliance-section {
  background: var(--gray-50);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.compliance-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 26px 20px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transition: all var(--t-mid) var(--ease);
  position: relative;
  overflow: hidden;
}

.compliance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy-700), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
}

.compliance-card:hover::before {
  transform: scaleX(1);
}

.compliance-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.compliance-card>i {
  width: 48px;
  height: 48px;
  background: var(--navy-50);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy-700);
  margin-bottom: 16px;
  transition: all var(--t-mid) var(--ease);
  flex-shrink: 0;
}

.compliance-card:hover>i {
  background: var(--navy-800);
  color: var(--gold-400);
}

.compliance-card h3 {
  font-family: var(--font-display);
  font-size: .97rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
  line-height: 1.3;
}

.compliance-card ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.compliance-card ul li {
  font-size: .82rem;
  color: var(--gray-600);
  padding-left: 13px;
  position: relative;
  line-height: 1.5;
}

.compliance-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-400);
}

.compliance-card p {
  font-size: .86rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-card {
  padding: 22px 20px;
  border-radius: var(--r-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all var(--t-mid) var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy-700), var(--gold-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-card i {
  font-size: 1.35rem;
  color: var(--navy-600);
  margin-bottom: 12px;
  display: block;
  transition: color var(--t-mid) var(--ease);
}

.why-card:hover i {
  color: var(--gold-500);
}

.why-card h3 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 7px;
  line-height: 1.3;
}

.why-card p {
  font-size: .81rem;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  /* background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 60%, var(--navy-700) 100%); */
  background-color: #041d4e;
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background-image:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px); */
  background-image: #041d4e;
  background-size: 48px 48px;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 184, 0, .09) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.22;
}

.cta-text p {
  font-size: .93rem;
  color: rgba(255, 255, 255, .58);
  max-width: 500px;
  line-height: 1.7;
  margin: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.faq-item {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-mid) var(--ease);
}

.faq-item.active {
  background: var(--white);
  border-color: var(--navy-300);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  transition: background var(--t-fast) var(--ease);
}

.faq-question:hover {
  background: var(--navy-50);
}

.faq-item.active .faq-question {
  background: var(--navy-50);
}

.faq-q-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-mid) var(--ease);
}

.faq-q-icon i {
  font-size: .65rem;
  color: var(--navy-700);
  transition: transform var(--t-mid) var(--ease);
}

.faq-item.active .faq-q-icon {
  background: var(--navy-800);
}

.faq-item.active .faq-q-icon i {
  color: var(--gold-400);
  transform: rotate(180deg);
}

.faq-question h3 {
  font-size: .87rem;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.4;
  flex: 1;
}

.faq-answer {
  display: none;
  padding: 0 20px 16px;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: .86rem;
  color: var(--gray-600);
  line-height: 1.8;
  border-top: 1px solid var(--gray-200);
  padding-top: 14px;
  margin: 0;
}

/* ===== KEYWORDS ===== */
.keywords-section {
  background: var(--gray-50);
}

.keyword-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(185px, 1fr));
  gap: 8px;
}

.keyword-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 9px 13px;
  font-size: .79rem;
  color: var(--gray-600);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all var(--t-fast) var(--ease);
}

.keyword-item i {
  color: var(--navy-400);
  font-size: .68rem;
  flex-shrink: 0;
}

.keyword-item:hover {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.keyword-item:hover i {
  color: var(--gold-400);
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  transition: all var(--t-mid) var(--ease);
}

.contact-info-card:hover {
  border-color: var(--navy-300);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.ci-icon {
  width: 40px;
  height: 40px;
  background: var(--navy-800);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ci-icon i {
  font-size: .9rem;
  color: var(--gold-400);
}

.ci-body h4 {
  font-size: .70rem;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.ci-body a,
.ci-body p {
  font-size: .9rem;
  color: var(--navy-900);
  font-weight: 600;
  display: block;
  line-height: 1.5;
  margin: 0;
  transition: color var(--t-fast) var(--ease);
}

.ci-body a:hover {
  color: var(--gold-600);
}

.gmap-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--navy-900);
  border-radius: var(--r-lg);
  color: var(--white);
  transition: all var(--t-mid) var(--ease);
  margin-top: 4px;
}

.gmap-btn:hover {
  background: var(--navy-800);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gmap-btn i {
  color: var(--gold-400);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.gmap-btn strong {
  font-size: .86rem;
  color: var(--white);
  display: block;
}

.gmap-btn span {
  font-size: .73rem;
  color: rgba(255, 255, 255, .48);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-2xl);
  padding: 38px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy-800), var(--gold-400), var(--navy-800));
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.form-subtitle {
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: 26px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: .73rem;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  font-size: .88rem;
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--gray-50);
  transition: all var(--t-fast) var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30, 61, 122, .09);
}

.form-group textarea {
  resize: vertical;
  min-height: 94px;
}

/* ===== FOOTER ===== */
footer {
  /* background: var(--navy-950); */
  background: #041d4e;
  border-top: 1px solid rgba(255, 255, 255, .05);
}

.footer-top {
  padding: 60px 24px 44px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 44px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-brand p {
  font-size: .83rem;
  color: rgb(255, 255, 255);
  line-height: 1.8;
  margin-top: 14px;
  max-width: 260px;
}

.footer-col h4 {
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(255, 255, 255);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: .82rem;
  color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all var(--t-fast) var(--ease);
}

.footer-links a:hover {
  color: var(--gold-300);
  padding-left: 4px;
}

.footer-links a i {
  font-size: .66rem;
  color: rgb(255, 255, 255);
  transition: color var(--t-fast) var(--ease);
}

.footer-links a:hover i {
  color: var(--gold-400);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: .82rem;
  color: rgb(255, 255, 255);
  line-height: 1.5;
}

.footer-contact-list li i {
  color: var(--gold-400);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: .76rem;
}

.footer-contact-list a {
  color: rgb(255, 255, 255);
  transition: color var(--t-fast) var(--ease);
}

.footer-contact-list a:hover {
  color: var(--gold-300);
}

.social-row {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.social-btn {
  width: 33px;
  height: 33px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  font-size: .8rem;
  transition: all var(--t-mid) var(--ease);
}

.social-btn:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-900);
  transform: translateY(-2px);
}

.google-review-cta {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(245, 184, 0, .07);
  border: 1px solid rgba(245, 184, 0, .18);
  border-radius: var(--r-md);
}

.google-review-cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .79rem;
  color: var(--gold-300);
  font-weight: 600;
  transition: color var(--t-fast) var(--ease);
}

.google-review-cta a:hover {
  color: var(--gold-200);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin: 0;
}

.footer-bottom-bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom-bar p {
  font-size: .74rem;
  color: rgb(255, 255, 255);
  margin: 0;
}

.footer-bottom-bar a {
  color: var(--gold-400);
  transition: color var(--t-fast) var(--ease);
}

.footer-bottom-bar a:hover {
  color: var(--gold-300);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 54px;
  height: 54px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--white);
  box-shadow: 0 4px 22px rgba(37, 211, 102, .52);
  z-index: 999;
  transition: all var(--t-mid) var(--ease-spring);
  animation: waPulse 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.10);
  color: var(--white);
}

@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 4px 22px rgba(37, 211, 102, .52);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, .75), 0 0 0 9px rgba(37, 211, 102, .08);
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 {
  transition-delay: .10s;
}

.reveal-d2 {
  transition-delay: .20s;
}

.reveal-d3 {
  transition-delay: .30s;
}

.reveal-d4 {
  transition-delay: .40s;
}

/* ===== RESPONSIVE 1100px ===== */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card-col {
    display: none;
  }

  .hero-content-col {
    padding: 60px 0;
    text-align: center;
    align-items: center;
  }

  .hero-trust-strip {
    justify-content: center;
  }

  .hero-cta-row {
    justify-content: center;
  }

  .hero-mumbai .subtitle {
    max-width: 100%;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .intro-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mumbai-areas-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .compliance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ===== RESPONSIVE 900px ===== */
@media (max-width: 900px) {
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ===== RESPONSIVE 768px ===== */
@media (max-width: 768px) {
  .top-bar-left {
    display: none;
  }

  nav {
    height: 62px;
    padding: 0 16px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 3px;
    overflow-y: auto;
    z-index: 999;
    box-shadow: var(--shadow-xl);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links>li {
    width: 100%;
  }

  .nav-links>li>a {
    width: 100%;
    padding: 12px 14px;
    font-size: .97rem;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--gray-50);
    display: block !important;
    border-radius: var(--r-md);
    margin-top: 4px;
    animation: none !important;
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-cta-group {
    display: none;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-content-col {
    padding: 48px 0;
  }

  .hero-mumbai h1 {
    font-size: clamp(1.7rem, 7vw, 2.6rem);
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-cta-row .btn {
    justify-content: center;
    width: 100%;
  }

  .section {
    padding: 52px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .mumbai-areas-container {
    grid-template-columns: 1fr;
  }

  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .intro-sidebar {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .cta-actions .btn {
    justify-content: center;
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 16px 32px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    padding: 14px 16px;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }
}

/* ===== RESPONSIVE 480px ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-trust-strip {
    flex-direction: column;
    align-items: center;
  }

  .trust-pill {
    width: 100%;
    max-width: 240px;
    justify-content: center;
  }

  .keyword-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .breadcrumb .container {
    font-size: .70rem;
  }
}