/* =====================================================
   SAHYADRI INFRASTRUCTURE — PREMIUM STYLESHEET
   Forest Green Land Investment Theme
   ===================================================== */

:root {
  --gold: #3d9e5f;
  --gold-light: #60c47f;
  --gold-dark: #2d7a48;
  --navy: #0b2416;
  --navy-mid: #0f2e1c;
  --navy-light: #163d24;
  --white: #ffffff;
  --off-white: #f2f9f4;
  --text-muted: #7a9e87;
  --shadow-gold: 0 4px 24px rgba(61,158,95,0.18);
  --shadow-dark: 0 8px 40px rgba(11,36,22,0.28);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ── Logo white background patch ── */
.logo-patch {
  background: #ffffff;
  border-radius: 8px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

/* ---------- TEXT CLARITY ---------- */
p { color: #2a3d2e; }
.section-desc { color: #3a5040; font-size: 16px; line-height: 1.8; }

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  color: #1a2e1f;
  background: var(--white);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

img { max-width: 100%; }

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── Section body text helper ─── */
section p { color: #344d3a; }

/* =====================================================
   TOPBAR
   ===================================================== */
.premium-topbar {
  background: var(--navy);
  padding: 10px 0;
  border-bottom: 1px solid rgba(61,158,95,0.2);
}
.premium-topbar a {
  color: #b0bec5;
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
}
.premium-topbar a:hover { color: var(--gold); }
.premium-topbar .gold-icon { color: var(--gold); margin-right: 6px; }
.topbar-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border: 1px solid rgba(61,158,95,0.35);
  border-radius: 50%;
  color: #b0bec5;
  font-size: 12px;
  margin-left: 5px;
  transition: var(--transition);
}
.topbar-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* =====================================================
   NAVBAR
   ===================================================== */
.premium-navbar {
  background: rgba(11,36,22, 0.97) !important;
  backdrop-filter: blur(20px);
  padding: 0 !important;
  border-bottom: 1px solid rgba(61,158,95,0.15);
  transition: var(--transition);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.premium-navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.premium-navbar .navbar-brand {
  padding: 12px 30px;
  border-right: 1px solid rgba(61,158,95,0.2);
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
}
.premium-navbar .nav-link {
  color: #d0d8e8 !important;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 28px 18px !important;
  position: relative;
  text-transform: uppercase;
  transition: var(--transition);
}
.premium-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 18px; right: 18px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.premium-navbar .nav-link:hover,
.premium-navbar .nav-link.active {
  color: var(--gold) !important;
}
.premium-navbar .nav-link:hover::after,
.premium-navbar .nav-link.active::after {
  transform: scaleX(1);
}
.premium-navbar .dropdown-menu {
  background: var(--navy-mid);
  border: 1px solid rgba(61,158,95,0.2);
  border-radius: 0;
  box-shadow: var(--shadow-dark);
  margin-top: 0;
}
.premium-navbar .dropdown-item {
  color: #b0bec5;
  font-size: 13px;
  padding: 10px 20px;
  transition: var(--transition);
}
.premium-navbar .dropdown-item:hover {
  background: rgba(61,158,95,0.1);
  color: var(--gold);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white !important;
  border: none;
  padding: 10px 24px !important;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: auto 20px;
  transition: var(--transition);
}
.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128c7e, #25d366);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}

/* =====================================================
   HERO CAROUSEL
   ===================================================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  z-index: 2;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active img {
  transform: scale(1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,36,22,0.82) 0%,
    rgba(11,36,22,0.45) 60%,
    rgba(11,36,22,0.2) 100%
  );
  z-index: 3;
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  padding: 0 6%;
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s ease forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  animation: fadeInLeft 1s ease 0.2s forwards;
  opacity: 0;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
  animation: fadeInLeft 1s ease 0.4s forwards;
  opacity: 0;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(61,158,95,0.45);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 34px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Hero Thumbnails */
.hero-thumbs {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.hero-thumb {
  width: 60px; height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.5;
}
.hero-thumb.active, .hero-thumb:hover {
  border-color: var(--gold);
  opacity: 1;
}
.hero-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Hero Stats Bar */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 5;
  background: linear-gradient(135deg, rgba(11,36,22,0.95), rgba(15,46,28,0.95));
  border-top: 1px solid rgba(61,158,95,0.25);
  backdrop-filter: blur(10px);
  padding: 18px 0;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(61,158,95,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 11px;
  color: #7a9e87;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* =====================================================
   SECTION TITLES
   ===================================================== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px; height: 2px;
  background: var(--gold);
}
.section-title-main {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title-main span { color: var(--gold); }
.section-divider {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 20px;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
  background: var(--off-white);
  padding: 100px 0;
}
.about-images {
  position: relative;
  padding: 20px 0 20px 20px;
}
.about-img-main {
  width: 80%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-dark);
}
.about-img-accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 52%;
  height: 260px;
  object-fit: cover;
  border-radius: 4px;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-gold);
}
.years-badge {
  position: absolute;
  top: 30px; right: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 24px;
  border-radius: 4px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.years-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.years-badge .text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 15px;
  color: #4a5568;
}
.feature-list li:last-child { border-bottom: none; }
.feature-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 13px;
  margin-top: 2px;
}

/* =====================================================
   PLOT TYPES / SERVICES CARDS
   ===================================================== */
.plots-section { padding: 100px 0; background: var(--white); }
.plot-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  transition: var(--transition);
  height: 380px;
}
.plot-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
.plot-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.plot-card:hover img { transform: scale(1.06); }
.plot-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,36,22,0.92) 0%, rgba(11,36,22,0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}
.plot-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 14px;
}
.plot-card h3 { color: var(--white); font-size: 20px; margin-bottom: 8px; }
.plot-card p { color: rgba(255,255,255,0.75); font-size: 13.5px; line-height: 1.6; margin-bottom: 16px; }
.plot-card .btn-sm-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(61,158,95,0.5);
  padding: 7px 18px;
  border-radius: 3px;
  transition: var(--transition);
}
.plot-card .btn-sm-gold:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* =====================================================
   BOOKING BANNER
   ===================================================== */
.booking-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}
.booking-banner::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(61,158,95,0.08) 0%, transparent 70%);
}
.booking-amount {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.booking-banner h2 { color: var(--white); font-size: 28px; }
.booking-banner p { color: #7a9e87; }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-section { padding: 100px 0; background: var(--navy); }
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(61,158,95,0.12);
  border-radius: 6px;
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(61,158,95,0.35); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.why-card h4 { color: var(--white); font-size: 20px; margin-bottom: 12px; }
.why-card p { color: #7a9e87; font-size: 14px; line-height: 1.7; }

/* =====================================================
   CLIENT SALE PHOTOS GALLERY
   ===================================================== */
.gallery-section { padding: 100px 0; background: var(--off-white); }
.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  background: transparent;
  border: 1.5px solid #ddd;
  color: #555;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,36,22,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--gold); font-size: 28px; }
.gallery-label {
  position: absolute;
  bottom: 10px; left: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* Gallery Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-height: 82vh;
  max-width: 92vw;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--gold);
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(61,158,95,0.15);
  border: 1px solid rgba(61,158,95,0.35);
  color: var(--gold);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-nav:hover { background: var(--gold); color: var(--navy); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-caption {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin-top: 14px;
}

/* =====================================================
   GOVERNMENT PROJECTS
   ===================================================== */
.govt-section { padding: 100px 0; background: var(--white); }
.govt-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transition: var(--transition);
  background: var(--white);
  border: 1px solid #eee;
}
.govt-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
.govt-card iframe { display: block; }
.govt-card-body { padding: 20px; }
.govt-card h4 { font-size: 16px; color: var(--navy); margin-bottom: 0; }
.govt-badge {
  display: inline-block;
  background: rgba(61,158,95,0.12);
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
}

/* =====================================================
   CONNECTIVITY / PROJECTS
   ===================================================== */
.connect-section { padding: 100px 0; background: var(--off-white); }
.connect-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
}
.connect-card:hover { transform: translateY(-5px); }
.connect-card img { width: 100%; height: 220px; object-fit: cover; }
.connect-body {
  background: var(--white);
  padding: 20px;
  border-top: 3px solid var(--gold);
}
.connect-body h4 { font-size: 17px; color: var(--navy); margin-bottom: 4px; }
.connect-body span { color: var(--gold-dark); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* =====================================================
   LOCATIONS SECTION
   ===================================================== */
.locations-section { padding: 100px 0; background: var(--navy); }
.location-tabs .nav-link {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(61,158,95,0.15);
  color: #b0bec5;
  border-radius: 4px;
  padding: 16px 22px;
  margin-bottom: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 12px;
}
.location-tabs .nav-link span.num {
  background: rgba(61,158,95,0.1);
  color: var(--gold);
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}
.location-tabs .nav-link.active,
.location-tabs .nav-link:hover {
  background: rgba(61,158,95,0.1);
  border-color: var(--gold);
  color: var(--gold);
}
.location-tabs .nav-link.active span.num {
  background: var(--gold);
  color: var(--navy);
}
.location-content-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(61,158,95,0.12);
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
}
.location-img { width: 100%; height: 280px; object-fit: cover; }
.location-info { padding: 30px; }
.location-info h2 { color: var(--white); font-size: 24px; margin-bottom: 14px; }
.location-info p { color: #7a9e87; font-size: 14.5px; line-height: 1.7; }
.location-check {
  color: #7a9e87;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.location-check i { color: var(--gold); }

/* =====================================================
   CLIENT TESTIMONIAL VIDEOS SECTION
   ===================================================== */
.video-testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.video-testimonials-section::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61,158,95,0.06) 0%, transparent 70%);
}
.video-testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(61,158,95,0.15);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.video-testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(61,158,95,0.12);
  transform: translateY(-4px);
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-card-body { padding: 20px; }
.video-card-body h5 { color: var(--white); font-size: 16px; margin-bottom: 4px; }
.video-card-body p { color: #7a9e87; font-size: 13px; margin: 0; }
.client-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(61,158,95,0.15), rgba(61,158,95,0.05));
  border: 1px solid rgba(61,158,95,0.25);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 8px;
  display: block;
  width: fit-content;
}

/* =====================================================
   TEXT TESTIMONIALS
   ===================================================== */
.testimonials-section { padding: 100px 0; background: var(--off-white); }
.testimonial-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
  height: 100%;
  transition: var(--transition);
  position: relative;
  border-top: 3px solid transparent;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--gold);
  box-shadow: 0 14px 40px rgba(0,0,0,0.13);
}
.quote-icon {
  font-size: 48px;
  color: rgba(61,158,95,0.15);
  font-family: Georgia, serif;
  line-height: 1;
  display: block;
  margin-bottom: -10px;
}
.star-row { color: var(--gold); font-size: 14px; margin-bottom: 14px; }
.testimonial-card p { color: #555; font-size: 14.5px; line-height: 1.75; font-style: italic; margin-bottom: 24px; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid #f0f0f0;
}
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.author-avatar-placeholder {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.author-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.author-role { font-size: 12px; color: var(--gold-dark); font-weight: 600; }

/* =====================================================
   CONTACT CTA SECTION
   ===================================================== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-section h2 {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
}
.cta-section p { color: rgba(11,36,22,0.75); font-size: 17px; }
.btn-navy {
  background: var(--navy);
  color: var(--gold) !important;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  border: 2px solid var(--navy);
}
.btn-navy:hover {
  background: transparent;
  color: var(--navy) !important;
  border-color: var(--navy);
}

/* =====================================================
   FOOTER
   ===================================================== */
.premium-footer {
  background: var(--navy);
  border-top: 2px solid rgba(61,158,95,0.2);
  padding-top: 70px;
}
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
}
.footer-logo-text span { color: var(--gold); }
.footer-desc {
  color: #9ab8a4 !important; color: #7a9e87; font-size: 14px; line-height: 1.7; margin: 16px 0 20px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(61,158,95,0.25);
  border-radius: 50%;
  color: #7a9e87;
  font-size: 14px;
  margin-right: 8px;
  transition: var(--transition);
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.footer-heading {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(61,158,95,0.15);
}
.footer-link {
  display: block;
  color: #7a9e87;
  font-size: 13.5px;
  text-decoration: none;
  margin-bottom: 9px;
  transition: var(--transition);
  padding-left: 0;
}
.footer-link::before { content: '→ '; color: var(--gold); font-size: 11px; margin-right: 4px; }
.footer-link:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #7a9e87;
  font-size: 13.5px;
}
.footer-contact-item i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid rgba(61,158,95,0.1);
  padding: 18px 0;
}
.footer-bottom p {
  color: #4a5568;
  font-size: 12.5px;
  margin: 0;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* =====================================================
   FLOATING WHATSAPP BUTTON
   ===================================================== */
.float-whatsapp {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9998;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}
.float-whatsapp:hover {
  transform: scale(1.12);
  color: white;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.65); }
}

/* =====================================================
   ANIMATIONS
   ===================================================== */
@keyframes fadeInDown {
  from { opacity:0; transform:translateY(-20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity:0; transform:translateX(-30px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; }
  to   { opacity:1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.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; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
  .hero-section { height: 70vh; min-height: 500px; }
  .hero-stats-bar { position: static; }
  .premium-navbar .nav-link { padding: 12px 18px !important; }
  .premium-navbar .nav-link::after { display: none; }
  .about-images { padding: 0; }
  .about-img-accent { display: none; }
  .about-img-main { width: 100%; height: 300px; }
  .years-badge { top: 10px; right: 10px; padding: 16px; }
  .years-badge .num { font-size: 36px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
@media (max-width: 576px) {
  .hero-section { height: 80vh; }
  .hero-title { font-size: 32px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-thumbs { display: none; }
  .stat-item { padding: 0 10px; }
  .stat-number { font-size: 22px; }
}

/* =====================================================
   MUMBAI 3.0 HIGHLIGHT BANNER
   ===================================================== */
.mumbai30-banner {
  background: linear-gradient(135deg, #0b2416 0%, #1a0a00 50%, #0b2416 100%);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.mumbai30-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(61,158,95,0.04) 60px,
    rgba(61,158,95,0.04) 62px
  );
}
.mumbai30-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: scroll30 30s linear infinite;
  width: max-content;
}
.mumbai30-track:hover { animation-play-state: paused; }
@keyframes scroll30 {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.mumbai30-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.mumbai30-item .badge30 {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
.mumbai30-item .dot {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}
.mumbai30-item strong { color: var(--gold); }

/* =====================================================
   PAGE HEADER (INNER PAGES)
   ===================================================== */
.page-hero {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.page-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,36,22,0.88) 0%, rgba(11,36,22,0.55) 100%);
  display: flex;
  align-items: center;
}
.page-hero-content { padding: 0 5%; }
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61,158,95,0.12);
  border: 1px solid rgba(61,158,95,0.3);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 14px;
  display: inline-block;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 14px;
}
.page-hero h1 span { color: var(--gold); }
.breadcrumb-premium {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumb-premium li { color: rgba(255,255,255,0.55); font-size: 13px; }
.breadcrumb-premium li a { color: rgba(255,255,255,0.75); text-decoration: none; }
.breadcrumb-premium li a:hover { color: var(--gold); }
.breadcrumb-premium li.active { color: var(--gold); }
.breadcrumb-premium .sep { color: rgba(61,158,95,0.5); }

/* =====================================================
   LOCATION HIGHLIGHT CARDS
   ===================================================== */
.location-highlight-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 60px 0;
  border-top: 1px solid rgba(61,158,95,0.15);
  border-bottom: 1px solid rgba(61,158,95,0.15);
}
.loc-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(61,158,95,0.18);
  border-radius: 50px;
  padding: 10px 22px;
  color: #d0d8e8;
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--transition);
  cursor: default;
  margin: 5px;
}
.loc-pill:hover {
  background: rgba(61,158,95,0.1);
  border-color: var(--gold);
  color: var(--gold);
}
.loc-pill i { color: var(--gold); font-size: 14px; }
.loc-pill .loc-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
}

/* =====================================================
   LEGAL PAGE
   ===================================================== */
.legal-card {
  background: white;
  border-radius: 8px;
  padding: 36px 30px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
  height: 100%;
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}
.legal-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.13); }
.legal-step {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
}
.legal-card h4 { color: var(--navy); font-size: 18px; margin-bottom: 10px; }
.legal-card p { color: #666; font-size: 14px; line-height: 1.7; }

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-info-card {
  background: var(--navy);
  border: 1px solid rgba(61,158,95,0.15);
  border-radius: 8px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
  margin-bottom: 16px;
}
.contact-info-card:hover { border-color: var(--gold); }
.contact-icon {
  width: 50px; height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 18px;
}
.contact-info-card h5 { color: rgba(255,255,255,0.55); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; font-weight: 600; }
.contact-info-card p, .contact-info-card a { color: white; font-size: 15px; margin: 0; text-decoration: none; line-height: 1.5; }
.contact-info-card a:hover { color: var(--gold); }

.contact-form-wrap {
  background: white;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border: 1.5px solid #e8e0d0;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 14px;
  color: #1a2e1f;
  transition: var(--transition);
  height: auto;
}
.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(61,158,95,0.12);
}
.btn-submit {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 14px 36px;
  border: none;
  border-radius: 4px;
  width: 100%;
  transition: var(--transition);
}
.btn-submit:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61,158,95,0.35);
}

/* =====================================================
   FEATURE PAGE
   ===================================================== */
.feature-plot-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  transition: var(--transition);
  border: 1px solid #eee;
}
.feature-plot-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.16); border-color: rgba(61,158,95,0.3); }
.feature-plot-card img { width: 100%; height: 200px; object-fit: cover; }
.feature-plot-body { padding: 22px; }
.feature-plot-body h4 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.feature-plot-body p { font-size: 13.5px; color: #666; line-height: 1.65; }

/* Available Locations Flags */
.avail-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(11,36,22,0.05), rgba(11,36,22,0.02));
  border: 1px solid rgba(11,36,22,0.12);
  border-left: 3px solid var(--gold);
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin: 6px;
  transition: var(--transition);
}
.avail-location:hover { background: rgba(61,158,95,0.08); border-left-color: var(--gold-dark); }
.avail-location i { color: var(--gold); }

/* =====================================================
   GALLERY / SALE DEED PAGE
   ===================================================== */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.gallery-page-item {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.gallery-page-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-page-item:hover img { transform: scale(1.08); }
.gallery-page-item .gp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,36,22,0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 24px;
}
.gallery-page-item:hover .gp-overlay { opacity: 1; }

/* =====================================================
   404 PAGE
   ===================================================== */
.page-404 {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.num-404 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(100px, 20vw, 180px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.4;
}

/* Teetask credit */
.teetask-credit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.8;
  transition: var(--transition);
}
.teetask-credit:hover { opacity: 1; color: var(--gold-light); }
.teetask-credit::before { content: '⚡'; }

@media(max-width:768px) {
  .page-hero { height: 250px; }
  .contact-form-wrap { padding: 24px; }
}
