/* ============================================================
   SHIVIRA HOMES — Design System v2.0
   Luxury Real Estate | Anantapur, AP
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=Noto+Sans+Telugu:wght@400;500;600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:         #0B1426;
  --navy-mid:     #16253D;
  --navy-light:   #1E3250;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-pale:    #F5EDD6;
  --gold-dark:    #A8872E;
  --white:        #FFFFFF;
  --off-white:    #F8F6F0;
  --surface:      #FFFFFF;
  --text:         #1C1C2E;
  --text-mid:     #4B5563;
  --text-light:   #9CA3AF;
  --border:       #E8E4DC;
  --border-dark:  #D1C9B8;
  --green:        #16A34A;
  --red:          #DC2626;

  --shadow-xs:  0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm:  0 4px 12px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 20px 48px rgba(0,0,0,0.13);
  --shadow-gold: 0 8px 24px rgba(201,168,76,0.25);

  --radius-sm:  8px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'DM Sans', system-ui, sans-serif;
  --font-tel:   'Noto Sans Telugu', sans-serif;

  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --trans:      all 0.3s var(--ease);

  --nav-h:      76px;
  --container:  1240px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--navy); line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--text-mid); line-height: 1.75; }

.tel-text { font-family: var(--font-tel); }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.section-header { max-width: 680px; margin: 0 auto 64px; text-align: center; }
.section-header .eyebrow { margin-bottom: 14px; display: block; }
.section-header h2 { margin-bottom: 18px; }
.section-header p { font-size: 1.05rem; color: var(--text-mid); }

.bg-navy  { background: var(--navy); }
.bg-white { background: var(--white); }
.bg-off   { background: var(--off-white); }
.bg-gold-pale { background: var(--gold-pale); }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: #ffffff;
  border-bottom: 2px solid rgba(201,168,76,0.3);
  transition: var(--trans);
}
.navbar.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(11,20,38,0.10);
  border-bottom-color: var(--gold);
}
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
/* Header — show logo image */
.nav-logo-img {
  height: 54px;
  width: auto;
  display: block;
  object-fit: contain;
}
/* Footer — hide logo image and icon, show text only */
.footer-about .nav-logo-img  { display: none; }
.footer-about .nav-logo .logo-icon { display: none; }
.footer-about .nav-logo .logo-text { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: #fff; display: block; }
.footer-about .nav-logo .logo-sub  { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; line-height: 1; display: block; margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a, .nav-dropdown-toggle {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--trans);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.nav-links a:hover, .nav-dropdown-toggle:hover { color: var(--gold-dark); background: var(--gold-pale); }
.nav-links a.active { color: var(--gold-dark); background: var(--gold-pale); font-weight: 700; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #ffffff;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 10px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s var(--ease);
  box-shadow: 0 8px 32px rgba(11,20,38,0.12);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px;
  font-size: 0.875rem; color: var(--navy);
}
.nav-dropdown-menu a:hover { background: var(--gold-pale); color: var(--gold-dark); }
.nav-dropdown-menu a i { width: 18px; color: var(--gold-dark); opacity: 0.9; font-size: 0.8rem; }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }

.nav-cta {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.nav-phone {
  font-size: 0.85rem; font-weight: 700;
  color: var(--navy);
  display: flex; align-items: center; gap: 6px;
}
.nav-phone i { font-size: 0.75rem; color: var(--gold-dark); }
.btn-nav {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 8px;
  transition: var(--trans);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.btn-nav:hover { background: var(--gold-dark); color: #fff; box-shadow: var(--shadow-gold); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center;
  gap: 5px; padding: 8px; cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 20px;
  z-index: 999;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a, .mobile-nav-section-title {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  transition: var(--trans);
}
.mobile-nav-section-title { color: var(--gold); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 16px 16px 4px; }
.mobile-nav a:hover { background: rgba(255,255,255,0.05); color: #fff; }
.mobile-nav-cta { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.mobile-nav-cta .btn-primary { width: 100%; justify-content: center; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 10px;
  transition: var(--trans);
  letter-spacing: 0.02em;
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 27px;
  border-radius: 10px;
  transition: var(--trans);
  border: 2px solid rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 27px;
  border-radius: 10px;
  transition: var(--trans);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }
.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 27px;
  border-radius: 10px;
  border: 2px solid var(--gold);
  transition: var(--trans);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 10px;
  transition: var(--trans);
}
.btn-wa:hover { background: #1ebe59; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-lg { padding: 17px 36px; font-size: 1rem; border-radius: 12px; }

/* ── Hero Slider ────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  margin-top: var(--nav-h);
}
.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: all; }

.slide-left {
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 60px 64px;
}
.slide-left-inner { max-width: 520px; }
.slide-left .eyebrow { margin-bottom: 20px; display: block; }
.slide-left h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; line-height: 1.2; }
.slide-left p { color: rgba(255,255,255,0.7); font-size: 1rem; margin-bottom: 36px; line-height: 1.75; }
.slide-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.slide-right {
  position: relative;
  overflow: hidden;
  background: var(--navy-mid);
}
.slide-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.slide.active .slide-right img { transform: scale(1.05); }
.slide-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 30%);
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--trans);
  border: none;
}
.slider-dot.active { background: var(--gold); width: 28px; border-radius: 4px; }
.slider-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--trans);
  font-size: 0.8rem;
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* Slider Bottom Bar */
.slider-bottom-bar {
  background: var(--gold);
  padding: 16px 24px;
}
.slider-bottom-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sbb-center { text-align: center; font-size: 0.85rem; font-weight: 500; color: var(--navy); flex: 1; }
.sbb-center strong { font-weight: 700; }
.sbb-logo { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 0.95rem; flex-shrink: 0; }

/* ── Page Hero (inner pages) ───────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 120px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&q=80&w=2070') center/cover no-repeat;
  opacity: 0.08;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { margin-bottom: 16px; display: block; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 560px; }

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number span { color: var(--gold); }
.stat-label { font-size: 0.82rem; color: var(--text-mid); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--trans);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--trans);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--gold); }
.value-card .icon-wrap {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold-dark);
  margin-bottom: 20px;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

/* Project card */
.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
  display: flex; flex-direction: column;
}
.project-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.project-card-img {
  height: 260px;
  position: relative;
  overflow: hidden;
  background: var(--navy-mid);
}
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover .project-card-img img { transform: scale(1.06); }
.project-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--navy);
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 12px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.project-badge.coming { background: var(--navy-mid); color: rgba(255,255,255,0.8); }
.project-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.project-card-body h3 { margin-bottom: 8px; font-size: 1.25rem; }
.project-location { font-size: 0.85rem; color: var(--text-mid); display: flex; align-items: center; gap: 6px; margin-bottom: 16px; }
.project-location i { color: var(--gold); }
.project-price { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.project-price span { font-size: 0.85rem; font-weight: 400; color: var(--text-mid); font-family: var(--font-body); }

/* Testimonial card */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: var(--trans);
}
.testi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-quote {
  font-size: 3rem; line-height: 1;
  color: var(--gold); opacity: 0.4;
  font-family: var(--font-head);
  margin-bottom: 16px;
  display: block;
}
.testi-text { font-size: 0.95rem; color: var(--text); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--gold-dark);
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.testi-role { font-size: 0.78rem; color: var(--text-mid); }
.testi-stars { display: flex; gap: 2px; margin-top: 4px; }
.testi-stars i { color: var(--gold); font-size: 0.75rem; }
.testi-verified { display: inline-flex; align-items: center; gap: 4px; font-size: 0.72rem; color: var(--green); font-weight: 600; margin-top: 6px; }

/* Blog card */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  transition: var(--trans);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-img { height: 220px; overflow: hidden; background: var(--navy-mid); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-cat { font-size: 0.7rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; display: block; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.35; transition: color 0.2s; }
.blog-card:hover h3 { color: var(--gold-dark); }
.blog-card p { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 16px; }
.read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--navy); }
.blog-card:hover .read-more { color: var(--gold); }
.blog-meta-bar { display: flex; align-items: center; gap: 12px; font-size: 0.75rem; color: var(--text-light); }
.blog-meta-bar i { color: var(--gold); }

/* Amenity card */
.amenity-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: var(--trans);
}
.amenity-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.amenity-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold-dark);
}
.amenity-card strong { font-size: 0.95rem; display: block; margin-bottom: 2px; }
.amenity-card span { font-size: 0.82rem; color: var(--text-mid); }

/* ── Pricing Table ──────────────────────────────────────────── */
.pricing-table {
  width: 100%; border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.pricing-table thead { background: var(--navy); }
.pricing-table thead th { padding: 16px 24px; color: rgba(255,255,255,0.8); font-weight: 600; font-size: 0.85rem; text-align: left; }
.pricing-table thead th:first-child { color: #fff; }
.pricing-table tbody td { padding: 16px 24px; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table .pre-price { color: var(--gold-dark); font-weight: 700; font-family: var(--font-head); font-size: 1.1rem; }
.pricing-table .launch-price { color: var(--text-mid); font-size: 0.95rem; }
.pricing-limited { display: inline-block; background: var(--gold-pale); color: var(--gold-dark); font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; letter-spacing: 0.05em; text-transform: uppercase; margin-left: 8px; }

/* ── Timeline ───────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute; left: 10px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--gold), transparent);
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item::before {
  content: '';
  position: absolute; left: -26px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year { font-size: 0.75rem; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 6px; }
.timeline-item h4 { font-size: 1rem; margin-bottom: 6px; }
.timeline-item p { font-size: 0.88rem; }

/* ── FAQ Accordion ──────────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--white);
}
.faq-question {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600; font-size: 0.95rem; color: var(--navy);
  cursor: pointer; background: none; border: none;
  transition: color 0.2s;
  gap: 12px;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question i { flex-shrink: 0; transition: transform 0.3s var(--ease); color: var(--gold); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 20px; font-size: 0.9rem; color: var(--text-mid); }

/* ── Process Steps ──────────────────────────────────────────── */
.steps-list { display: flex; flex-direction: column; gap: 16px; }
.step-item {
  display: flex; gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--trans);
}
.step-item:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.step-num {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--navy);
  color: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
}
.step-item h4 { font-size: 1rem; margin-bottom: 4px; }
.step-item p { font-size: 0.88rem; }

/* ── Location Spec Row ──────────────────────────────────────── */
.location-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.location-row:last-child { border-bottom: none; }
.location-icon { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: var(--gold-pale); border-radius: 8px; font-size: 0.85rem; color: var(--gold-dark); }
.location-row strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.location-row span { font-size: 0.85rem; color: var(--text-mid); }

/* ── Document Proof ─────────────────────────────────────────── */
.doc-card {
  display: flex; gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--trans);
}
.doc-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.doc-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}
.doc-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.doc-card p { font-size: 0.85rem; }

/* ── Sticky CTA Sidebar ─────────────────────────────────────── */
.sticky-card {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.sticky-card h3 { margin-bottom: 8px; font-size: 1.3rem; }
.sticky-card .price-display { margin: 20px 0; padding: 16px; background: var(--gold-pale); border-radius: 12px; }
.price-label { font-size: 0.75rem; font-weight: 600; color: var(--gold-dark); text-transform: uppercase; letter-spacing: 0.06em; }
.price-val { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--navy); }
.price-val sub { font-size: 0.9rem; font-weight: 400; color: var(--text-mid); font-family: var(--font-body); }
.price-launch { font-size: 0.82rem; color: var(--text-mid); margin-top: 4px; }
.sticky-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.sticky-list-item { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; }
.sticky-list-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.divider { height: 1px; background: var(--border); margin: 20px 0; }

/* ── CTA Strip ──────────────────────────────────────────────── */
.cta-strip {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 60%);
}
.cta-strip .container { position: relative; z-index: 1; text-align: center; }
.cta-strip .eyebrow { margin-bottom: 16px; display: block; }
.cta-strip h2 { color: #fff; margin-bottom: 16px; }
.cta-strip p { color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto 36px; font-size: 1rem; }
.cta-strip .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,0.65); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 56px; }
.footer-about .nav-logo { margin-bottom: 16px; }
.footer-about p { font-size: 0.88rem; line-height: 1.75; max-width: 320px; }
.footer-col h5 { color: #fff; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--trans); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; margin-bottom: 14px; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; flex-shrink: 0; width: 14px; }
.footer-contact-item a:hover { color: var(--gold); }
/* ── EMI Calculator Banner (above footer, all pages) ── */
.emi-cta-banner {
  background: var(--navy);
  padding: 28px 0;
  border-top: 3px solid var(--gold);
}
.emi-cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.emi-banner-info { display: flex; align-items: center; gap: 16px; }
.emi-banner-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--navy);
}
.emi-banner-text h4 { color: #fff; font-size: 1rem; margin: 0 0 4px; font-family: var(--font-head); }
.emi-banner-text p  { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.8rem;
  transition: var(--trans);
}
.footer-social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ── WhatsApp Float ─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  display: flex; align-items: center; gap: 10px;
}
.wa-float-btn {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--trans);
  cursor: pointer;
  border: none;
}
.wa-float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.wa-float-tooltip {
  background: var(--navy);
  color: #fff;
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.25s;
}
.wa-float:hover .wa-float-tooltip { opacity: 1; transform: translateX(0); }

/* ── Form ───────────────────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ── Trust Badges ───────────────────────────────────────────── */
.bank-badges { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.bank-badge {
  padding: 6px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
}

/* ── Grid helpers ───────────────────────────────────────────── */
.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; }

/* ── Utility ────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: #fff; }
.text-mid { color: var(--text-mid); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.gap-2 { gap: 16px; }
.w-full { width: 100%; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: 24px; }
.italic { font-style: italic; }
.bold { font-weight: 700; }

/* ── Animations ─────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── ROI Calculator ─────────────────────────────────────────── */
.calc-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.calc-slider-label { display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.calc-slider-label span { color: var(--gold-dark); }
input[type=range] { -webkit-appearance: none; width: 100%; height: 6px; border-radius: 3px; background: var(--border); outline: none; margin-bottom: 8px; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--gold); cursor: pointer; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.calc-output {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}
.calc-result-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.calc-result-val { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--gold); }
.calc-result-sub { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.calc-disclaimer { font-size: 0.75rem; color: var(--text-light); margin-top: 16px; }
.scenario-tabs { display: flex; gap: 8px; margin-bottom: 24px; }
.scenario-tab { padding: 8px 18px; border-radius: 8px; font-size: 0.85rem; font-weight: 600; cursor: pointer; border: 1.5px solid var(--border); color: var(--text-mid); transition: var(--trans); background: var(--white); }
.scenario-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ── NRI Steps ──────────────────────────────────────────────── */
.nri-step { display: flex; gap: 20px; padding-bottom: 32px; position: relative; }
.nri-step:not(:last-child)::after { content: ''; position: absolute; left: 21px; top: 44px; bottom: 0; width: 2px; background: var(--border); }
.nri-step-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--gold); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--navy); font-size: 1rem; font-family: var(--font-head); }
.nri-step h4 { font-size: 1rem; margin-bottom: 6px; }
.nri-step p { font-size: 0.88rem; }

/* ── Table scroll wrapper ───────────────────────────────────── */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ── Responsive inline-grid helpers (applied via class on wrappers) */
/* These classes are added to wrappers that previously only had inline styles */
.col-2-auto { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.col-2-60   { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.col-sidebar { display: grid; grid-template-columns: 1fr 3fr; gap: 48px; align-items: start; }
.col-split   { display: grid; grid-template-columns: 1fr 1fr; }
.col-aaroha  { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.col-roi     { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.col-stats5  { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; text-align: center; }
/* Book-visit full-height split screen */
.bv-split    { display: grid; grid-template-columns: 1fr 1fr; }
/* Blogs featured article 2-col grid */
.blog-featured-grid { grid-template-columns: 1fr 1fr; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 960px) {
  /* Nav */
  .nav-links, .nav-phone { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  /* Hero slider */
  .hero-slider { height: auto; min-height: auto; }
  .slide { position: relative; display: block; opacity: 1; pointer-events: all; }
  .slide:not(.active) { display: none; }
  .slide-left { padding: 64px 32px; }
  .slide-right { height: 300px; }
  .slider-controls { bottom: 20px; }

  /* Grids */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .grid-2  { grid-template-columns: 1fr; }
  .grid-3  { grid-template-columns: repeat(2, 1fr); }
  .grid-4  { grid-template-columns: repeat(2, 1fr); }
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Inline-grid class helpers */
  .col-2-auto, .col-2-60, .col-sidebar, .col-split,
  .col-aaroha, .col-roi { grid-template-columns: 1fr; }
  .col-stats5 { grid-template-columns: repeat(3, 1fr); }

  /* Page hero — ensure not hidden under navbar */
  .page-hero { margin-top: var(--nav-h); }

  /* Sticky elements become static on tablet */
  .toc-sidebar-sticky { position: static !important; }
}
@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .section-pad { padding: 64px 0; }
  .slide-left { padding: 48px 24px; }
  .slide-left h1 { font-size: 1.8rem; }
  .slide-ctas { flex-direction: column; }
  .slide-ctas .btn-primary, .slide-ctas .btn-outline, .slide-ctas .btn-wa { width: 100%; justify-content: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .sbb-logo { display: none; }
  .slider-bottom-bar .container { justify-content: center; }
  .cta-strip .btn-group { flex-direction: column; align-items: center; }
  .calc-output { grid-template-columns: 1fr; }
  .page-hero { padding: 96px 0 56px; margin-top: var(--nav-h); }
  .sticky-card { position: static; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .emi-cta-banner .container { flex-direction: column; align-items: flex-start; }

  /* Inline-grid helpers on mobile */
  .col-2-auto, .col-2-60, .col-sidebar, .col-split,
  .col-aaroha, .col-roi { grid-template-columns: 1fr; }
  .col-stats5 { grid-template-columns: repeat(2, 1fr); }

  /* Book-visit split: stack form over info panel */
  .bv-split { grid-template-columns: 1fr !important; }

  /* Blogs featured article */
  .blog-featured-grid { grid-template-columns: 1fr !important; }
  .blog-featured-img  { height: 240px !important; }

  /* Aaroha hero tag pills wrap properly */
  .aaroha-hero-tags { gap: 6px; }

  /* Touch targets */
  .btn-primary, .btn-outline, .btn-outline-navy,
  .btn-outline-gold, .btn-wa, .btn-nav { min-height: 44px; }
  .nav-links a, .mobile-nav a { min-height: 44px; }
  .faq-question { min-height: 44px; }
  input[type=range] { height: 20px; }        /* larger touch area */
  input[type=range]::-webkit-slider-thumb { width: 26px; height: 26px; }

  /* Prevent emi-amount overflow */
  .emi-amount { font-size: 2.2rem; word-break: break-all; }

  /* Pricing table on mobile */
  .pricing-table thead th,
  .pricing-table tbody td { padding: 12px 12px; font-size: 0.82rem; }

  /* Legal / terms TOC collapses */
  .toc-sidebar-sticky { position: static !important; }

  /* Stat item borders on 2-col layout */
  .stat-item:nth-child(2) { border-right: 1px solid var(--border); }
  .stat-item:nth-child(even) { border-right: none; }

  /* Testimonial featured grid */
  .testi-featured-grid { grid-template-columns: 1fr !important; }
  .testi-rating-grid   { grid-template-columns: 1fr !important; }

  /* Section header max-width on small screens */
  .section-header { margin-bottom: 40px; }

  /* WhatsApp float stays above content */
  .wa-float { bottom: 16px; right: 16px; }

  /* Remove inline border-right between stacked columns on mobile */
  .col-divider-right { border-right: none !important; padding-right: 0 !important; }

  /* Aaroha stats bar — tighter text on small grid */
  .col-stats5 > div { padding: 6px 4px; }

  /* Container padding on very small screens */
  .container { padding: 0 16px; }

  /* Slider bottom bar — center all text */
  .slider-bottom-bar .container { flex-direction: column; align-items: center; text-align: center; }
  .sbb-center { flex: none; }
}
