/* ============================================================
   AGARWAL SUBHAM & ASSOCIATES — Design System
   Primary: Deep Navy #0B1F3A | Gold: #C9A84C | White: #FFFFFF
   ============================================================ */

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

:root {
  --navy:      #0B1F3A;
  --navy-mid:  #112847;
  --navy-light:#1A3A5C;
  --gold:      #C9A84C;
  --gold-light:#E8C97A;
  --gold-pale: #F5EDD0;
  --white:     #FFFFFF;
  --off-white: #F8F9FC;
  --gray-100:  #F1F3F7;
  --gray-200:  #E2E6EF;
  --gray-500:  #8892A4;
  --gray-700:  #4A5568;
  --gray-900:  #1A202C;
  --text:      #2D3748;
  --radius:    6px;
  --shadow-sm: 0 2px 8px rgba(11,31,58,.08);
  --shadow-md: 0 8px 32px rgba(11,31,58,.12);
  --shadow-lg: 0 20px 60px rgba(11,31,58,.16);
  --transition: all .28s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ── */
.display { font-family: 'Playfair Display', serif; }

h1,h2,h3,h4,h5,h6 { font-family: 'Playfair Display', serif; color: var(--navy); line-height: 1.25; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; font-family: 'Inter',sans-serif; }

p { color: var(--gray-700); font-size: 1rem; }
.lead { font-size: 1.15rem; color: var(--gray-700); }

/* ── Layout ── */
.container { width: min(1200px, 92vw); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── Section Labels ── */
.section-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: .875rem; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-body { padding: 32px; }

/* ── Gold Divider ── */
.gold-divider {
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: 16px 0 24px;
}
.gold-divider.center { margin-inline: auto; }

/* ── Badges ── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  background: var(--gold-pale);
  color: var(--navy);
}

/* ================================================================
   NAVBAR
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11,31,58,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.15);
  transition: var(--transition);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.navbar-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}
.navbar-logo .logo-text { line-height: 1.2; }
.navbar-logo .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.navbar-logo .logo-sub {
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  padding: 8px 14px;
  border-radius: 4px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  font-size: .82rem;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── Dropdown ── */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: .85rem;
  color: rgba(255,255,255,.8) !important;
  border-radius: 0 !important;
}
.nav-dropdown a:hover { background: rgba(201,168,76,.1); color: var(--gold) !important; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #0F3460 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero .lead { color: rgba(255,255,255,.78); margin-bottom: 40px; max-width: 520px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
  position: relative;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  border-radius: 16px 16px 0 0;
}
.hero-form-card h3 { font-size: 1.3rem; margin-bottom: 6px; color: var(--navy); }
.hero-form-card p { font-size: .88rem; color: var(--gray-500); margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-700);
  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(--radius);
  font-size: .9rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.form-group textarea { resize: vertical; min-height: 80px; }

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 500;
}
.trust-item .icon {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ================================================================
   SERVICES
   ================================================================ */
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.6; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ================================================================
   STATS STRIP
   ================================================================ */
.stats-strip {
  background: var(--navy);
  padding: 72px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.why-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--off-white);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.why-item:hover { background: var(--white); box-shadow: var(--shadow-md); }
.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--navy);
}
.why-text h4 { color: var(--navy); margin-bottom: 6px; }
.why-text p { font-size: .9rem; color: var(--gray-500); }

/* ================================================================
   TEAM
   ================================================================ */
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  max-height: 280px;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 280px; object-fit: cover; object-position: top; }
.team-info { padding: 28px; }
.team-info h3 { font-size: 1.25rem; margin-bottom: 4px; }
.team-info .role {
  font-size: .82rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}
.team-info p { font-size: .88rem; color: var(--gray-500); margin-bottom: 16px; }
.team-socials { display: flex; justify-content: center; gap: 12px; }
.team-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  font-size: .9rem;
  transition: var(--transition);
}
.team-social-link:hover { background: var(--gold); color: var(--navy); }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials { background: var(--navy); }
.testimonials .section-eyebrow { color: var(--gold-light); }
.testimonials h2 { color: var(--white); }
.testi-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 36px;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: .3;
  position: absolute;
  top: 16px;
  left: 28px;
  line-height: 1;
}
.testi-text {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  line-height: 1.75;
  margin-bottom: 24px;
  padding-top: 24px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; color: var(--white); margin-bottom: 2px; }
.testi-role { font-size: .8rem; color: var(--gold); }
.stars { color: var(--gold); margin-bottom: 4px; font-size: .85rem; }

/* ================================================================
   INDUSTRIES
   ================================================================ */
.industry-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
}
.industry-pill:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateX(6px);
}
.industry-pill .icon { font-size: 1.6rem; }
.industry-pill span { font-weight: 600; font-size: .95rem; color: var(--navy); }

/* ================================================================
   BLOG
   ================================================================ */
.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  padding: 20px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .78rem;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.blog-category {
  color: var(--gold);
  font-weight: 600;
}
.blog-content { padding: 24px; }
.blog-content h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--navy);
  line-height: 1.4;
  transition: var(--transition);
}
.blog-card:hover h3 { color: var(--gold); }
.blog-content p { font-size: .88rem; color: var(--gray-500); }

/* ================================================================
   FAQ
   ================================================================ */
.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--gold); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: .95rem;
  user-select: none;
}
.faq-q .toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1.1rem;
  color: var(--navy);
}
.faq-item.open .faq-q .toggle { background: var(--gold); color: var(--navy); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ================================================================
   CTA SECTION
   ================================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .06;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #050E1C;
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-name { color: var(--white); font-size: 1.2rem; display: block; margin-bottom: 4px; }
.footer-brand .logo-sub { color: var(--gold); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-desc { font-size: .88rem; margin: 20px 0 24px; line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
  text-decoration: none;
}
.footer-social:hover { background: var(--gold); color: var(--navy); }
.footer h5 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer ul a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: .88rem;
}
.footer-contact-item .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
}
.footer-disclaimer {
  background: rgba(255,255,255,.04);
  padding: 16px 0;
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ================================================================
   FLOATING ELEMENTS
   ================================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
  color: white;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.5); }

.call-float {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  transition: var(--transition);
  text-decoration: none;
  color: var(--navy);
}
.call-float:hover { transform: scale(1.1); }

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 14px 20px;
  z-index: 990;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta.show { display: flex; }
.sticky-cta p { color: var(--white); font-size: .9rem; font-weight: 500; margin: 0; }
.sticky-cta .btns { display: flex; gap: 10px; }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 620px; margin: 0 auto 24px; position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  position: relative;
  z-index: 1;
  margin-top: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb .sep { opacity: .5; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.value-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 28px;
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}
.value-card:hover { background: var(--white); box-shadow: var(--shadow-md); }
.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: .88rem; color: var(--gray-500); }

.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: .3;
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot {
  position: absolute;
  left: -33px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p { font-size: .9rem; color: var(--gray-500); }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.contact-info-text h4 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-text p { font-size: .9rem; color: var(--gray-500); margin: 0; }
.contact-info-text a { color: var(--gold); font-weight: 500; }

/* ================================================================
   SERVICE DETAIL PAGE
   ================================================================ */
.service-detail-list { list-style: none; }
.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: .95rem;
  color: var(--gray-700);
}
.service-detail-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.sidebar-cta {
  background: var(--navy);
  border-radius: 16px;
  padding: 36px;
  color: var(--white);
  text-align: center;
  position: sticky;
  top: 96px;
}
.sidebar-cta h3 { color: var(--white); margin-bottom: 12px; font-size: 1.4rem; }
.sidebar-cta p { color: rgba(255,255,255,.75); margin-bottom: 24px; font-size: .9rem; }

/* ================================================================
   BLOG DETAIL
   ================================================================ */
.blog-hero-section {
  background: var(--navy);
  padding: 140px 0 60px;
}
.blog-article { max-width: 780px; }
.blog-article h2 { font-size: 1.8rem; margin: 40px 0 16px; }
.blog-article h3 { font-size: 1.3rem; margin: 32px 0 12px; }
.blog-article p { margin-bottom: 20px; line-height: 1.8; color: var(--gray-700); }
.blog-article ul { margin: 0 0 20px 20px; }
.blog-article ul li { margin-bottom: 8px; color: var(--gray-700); line-height: 1.7; list-style: disc; }
.blog-article strong { color: var(--navy); }
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 40px;
}
.article-meta span { display: flex; align-items: center; gap: 6px; font-size: .85rem; color: var(--gray-500); }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    padding: 24px;
    gap: 4px;
    z-index: 999;
    box-shadow: var(--shadow-lg);
  }
  .nav-links.open a { padding: 12px 16px; font-size: .95rem; }
  .nav-dropdown { position: static; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; background: rgba(255,255,255,.04); border: none; border-radius: 0; padding: 0; }
  .nav-dropdown a { padding-left: 32px !important; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 0; }
  .trust-bar-inner { justify-content: flex-start; gap: 16px; }
  .sticky-cta { display: none !important; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}
