/* ============================================================
   AASHRAYA PROPERTIES — style.css
   Premium Real Estate | Pune, Maharashtra
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --green:      #6E9F3A;
  --green-dark: #557a2c;
  --green-light:#8fc44a;
  --blue:       #1E4FA8;
  --blue-dark:  #0F2345;
  --blue-mid:   #163b82;
  --bg-light:   #F8FAFC;
  --text:       #222222;
  --text-muted: #5a6272;
  --white:      #FFFFFF;
  --border:     #e2e8f0;
  --shadow-sm:  0 2px 8px rgba(15,35,69,.07);
  --shadow-md:  0 8px 32px rgba(15,35,69,.12);
  --shadow-lg:  0 20px 60px rgba(15,35,69,.18);
  --gradient:   linear-gradient(135deg, #6E9F3A, #1E4FA8);
  --gradient-rev: linear-gradient(135deg, #1E4FA8, #6E9F3A);
  --radius:     12px;
  --radius-lg:  20px;
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'DM Sans', 'Segoe UI', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-light);
  overflow-x: hidden;
  line-height: 1.65;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: inherit; }

/* ---------- Scroll Progress Bar ---------- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--gradient);
  z-index: 9999;
  transition: width .1s linear;
}

/* ---------- Typography Helpers ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue-dark);
}
.section-title span { color: var(--green); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-top: 12px;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 12px auto 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: opacity .3s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(110,159,58,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(110,159,58,.45);
}

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue-dark);
  transform: translateY(-2px);
}

.btn-outline-dark {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: .875rem; }

/* ---------- Navigation ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  background: #ffffff;
  box-shadow: 0 2px 16px rgba(15,35,69,.10);
  transition: var(--transition);
}
#navbar.scrolled {
  background: #ffffff;
  backdrop-filter: none;
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(15,35,69,.14);
}

.nav-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 54px;
  width: auto;
  filter: none;
  transition: var(--transition);
}
.nav-logo img:hover { transform: scale(1.03); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu a {
  padding: 8px 16px;
  color: var(--blue-dark);
  font-size: .9rem;
  font-weight: 600;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .3s;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--blue-dark);
  background: rgba(15,35,69,.07);
}
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--gradient) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(110,159,58,.4) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero Section ---------- */
#hero {
  position: relative;
  /* Fix: use dvh (dynamic viewport height) for mobile browsers that
     account for address bar. Fallback to 100vh for older browsers. */
  height: 100vh;
  height: 100dvh;
  min-height: 580px;
  /* Fixed desktop size — consistent across all slides */
  max-height: 900px;
  overflow: hidden;
}

.hero-swiper {
  height: 100%;
  width: 100%;
}

/* All slides must have exact same dimensions */
.swiper-wrapper,
.swiper-slide {
  height: 100% !important;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Slides use real images via .hero-img — no gradient fallback needed */
.hero-slide-1,
.hero-slide-2,
.hero-slide-3 {
  background: var(--blue-dark);
}

/* Full-cover image layer — crop-minimised */
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* cover fills without distortion; 30% vertical anchors subject
     so sky/top edge is cropped instead of the main content area */
  background-size: cover;
  background-position: left center; /* anchor left — keeps text/logo visible; right edge crops instead */
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1);
  transition: transform 8s ease;
  will-change: transform;
}

/* Reduced from 1.06 → 1.03 — less zoom = less cropping on all edges */
.swiper-slide-active .hero-img {
  transform: scale(1.03);
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1;
}

/* Decorative geometric shapes */
.hero-slide::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  z-index: 2;
  width: 100%;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: rgba(255,255,255,.9);
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.hero-title .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(.95rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Swiper custom nav */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 50px; height: 50px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition);
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: var(--gradient);
  border-color: transparent;
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 1rem; font-weight: 700;
}

.hero-swiper .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: rgba(255,255,255,.5);
  opacity: 1;
  transition: var(--transition);
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--white);
  width: 30px;
  border-radius: 5px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 11px;
  position: relative;
}
.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: rgba(255,255,255,.6);
  border-radius: 3px;
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0% { top: 6px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

/* ---------- About Section ---------- */
#about { padding: 100px 0; background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}

.about-image-wrapper {
  position: relative;
}

.about-image-main {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, #0F2345 0%, #1E4FA8 50%, #6E9F3A 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-main .building-icon {
  font-size: 7rem;
  color: rgba(255,255,255,.15);
}

.about-image-main::after {
  content: '"Building Trust. Creating Value."';
  position: absolute;
  bottom: 10px; left: 30px; right: 30px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: rgba(255,255,255,.9);
  font-style: italic;
  line-height: 1.4;
}

.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gradient);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge strong { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge span { font-size: .8rem; opacity: .9; }

.about-decorative {
  position: absolute;
  top: -20px; left: -20px;
  width: 120px; height: 120px;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  opacity: .25;
}

.about-content { }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(110,159,58,.1);
  color: var(--green-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  border: 1px solid rgba(110,159,58,.2);
}
.about-tag i { font-size: .75rem; }

.about-text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.about-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1;
}
.about-stat span { font-size: .82rem; color: var(--text-muted); }

/* ---------- Why Choose Us ---------- */
#why-us {
  padding: 100px 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}
#why-us::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(110,159,58,.06) 0%, transparent 70%);
  pointer-events: none;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}

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

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform .4s;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(110,159,58,.12), rgba(30,79,168,.08));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 18px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--gradient);
  color: var(--white);
  transform: scale(1.1) rotate(5deg);
}

.why-card h3 { font-size: 1rem; font-weight: 600; color: var(--blue-dark); margin-bottom: 8px; }
.why-card p  { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- Services Section ---------- */
#services {
  padding: 100px 0;
  background: var(--blue-dark);
  position: relative;
  overflow: hidden;
}
#services::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='%23ffffff' fill-opacity='0.02'%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");
  pointer-events: none;
}

#services .section-title { color: var(--white); }
#services .section-subtitle { color: rgba(255,255,255,.65); }
#services .section-label { color: var(--green-light); }
#services .section-label::before { background: var(--green-light); }

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

.service-card {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 150px; height: 150px;
  background: radial-gradient(circle, rgba(110,159,58,.15) 0%, transparent 70%);
  transition: var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(110,159,58,.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.service-card:hover::after { transform: scale(1.5); }

.service-icon {
  width: 70px; height: 70px;
  background: var(--gradient);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon { transform: rotate(-5deg) scale(1.05); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 24px; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-light);
  font-size: .875rem;
  font-weight: 600;
  transition: var(--transition);
}
.service-link:hover { gap: 14px; }
.service-link i { font-size: .75rem; }

/* ---------- Achievements Counter ---------- */
#achievements {
  padding: 80px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}
#achievements::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.1);
  pointer-events: none;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.achievement-item {
  position: relative;
  padding: 20px;
}
.achievement-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.2);
}

.achievement-number {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.achievement-number .suffix {
  font-size: 1.5rem;
  font-weight: 600;
}

.achievement-label {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
  letter-spacing: .03em;
}

.achievement-icon {
  font-size: 1.5rem;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}

/* ---------- Founder Section ---------- */
#founder {
  padding: 100px 0;
  background: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.founder-image-wrap {
  position: relative;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 60%, var(--green) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.founder-photo::after {
  content: 'Mr. Vinod Pawar\A Founder & MD';
  white-space: pre;
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.7) 0%, transparent 100%);
  color: rgba(255,255,255,.9);
  font-family: var(--font-head);
  font-size: 1.1rem;
  text-align: center;
  padding: 40px 20px 24px;
  font-style: normal;
  line-height: 1.5;
}

.founder-tag {
  position: absolute;
  top: 24px; right: -20px;
  background: var(--gradient);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

.founder-name {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--blue-dark);
  margin-bottom: 4px;
}
.founder-role {
  font-size: .9rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.founder-bio { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }

.founder-expertise {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 30px;
}
.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.expertise-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(110,159,58,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 1rem;
}
.expertise-item h4 { font-size: .9rem; font-weight: 600; color: var(--blue-dark); margin-bottom: 2px; }
.expertise-item p  { font-size: .82rem; color: var(--text-muted); }

/* ---------- Vision & Mission ---------- */
#vision-mission {
  padding: 100px 0;
  background: var(--bg-light);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vm-card {
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.vm-card.vision {
  background: var(--blue-dark);
  color: var(--white);
}
.vm-card.mission {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
}

.vm-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
}

.vm-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}
.vision .vm-icon { background: rgba(255,255,255,.1); color: var(--green-light); }
.mission .vm-icon { background: var(--gradient); color: var(--white); }

.vm-card h3 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  margin-bottom: 16px;
}
.vision h3 { color: var(--white); }
.mission h3 { color: var(--blue-dark); }

.vm-card p  {
  line-height: 1.8;
  margin-bottom: 24px;
}
.vision p  { color: rgba(255,255,255,.7); }
.mission p { color: var(--text-muted); }

.mission-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-muted);
}
.mission-list li i { color: var(--green); margin-top: 3px; font-size: .8rem; }

/* ---------- Testimonials ---------- */
#testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonial-swiper { padding-bottom: 50px !important; }

.testimonial-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(110,159,58,.3);
  box-shadow: var(--shadow-md);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; right: 28px;
  font-family: Georgia, serif;
  font-size: 6rem;
  color: rgba(110,159,58,.12);
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  display: flex; gap: 4px;
  margin-bottom: 16px;
}
.testimonial-stars i { color: #f59e0b; font-size: .9rem; }

.testimonial-text {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: .95rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 46px; height: 46px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: .9rem; color: var(--blue-dark); }
.testimonial-loc  { font-size: .8rem; color: var(--text-muted); }

.testimonial-swiper .swiper-pagination-bullet { background: var(--blue); }
.testimonial-swiper .swiper-pagination-bullet-active { background: var(--gradient); width: 24px; border-radius: 5px; }

/* ---------- CTA Banner ---------- */
#cta-banner {
  padding: 80px 0;
  background: var(--gradient);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.08);
}
#cta-banner .container { position: relative; }
#cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}
#cta-banner p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 36px; }
#cta-banner .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
#footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.7);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand img { height: 90px; margin-bottom: 20px; filter: brightness(1.1); }
.footer-brand p { font-size: .9rem; line-height: 1.8; color: rgba(255,255,255,.55); margin-bottom: 24px; }

.footer-social {
  display: flex; gap: 10px;
}
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--gradient); border-color: transparent; color: var(--white); transform: translateY(-2px); }

.footer-col h4 {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--green-light); padding-left: 4px; }
.footer-links a::before { content: '→'; font-size: .75rem; opacity: .5; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
  font-size: .875rem;
}
.footer-contact-item i {
  color: var(--green-light);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-item a:hover { color: var(--green-light); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: var(--green-light); }

/* ---------- Floating Buttons ---------- */
.floating-buttons {
  position: fixed;
  bottom: 32px; right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 500;
}

.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: var(--transition);
  position: relative;
}
.float-btn:hover { transform: scale(1.12); }
.float-btn .tooltip {
  position: absolute;
  right: 62px; top: 50%;
  transform: translateY(-50%);
  background: rgba(15,35,69,.9);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: .75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.float-btn:hover .tooltip { opacity: 1; }

.float-whatsapp { background: #25D366; }
.float-call     { background: var(--blue); }

#scroll-top {
  position: fixed;
  bottom: 160px;   /* sits above the floating WhatsApp/Call buttons */
  right: 28px;
  z-index: 600;    /* above floating buttons (z-index 500) */
  width: 46px; height: 46px;
  background: var(--gradient);
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: var(--transition);
  border: none;
  outline: none;
}
#scroll-top.visible { display: flex; }
#scroll-top:hover { transform: translateY(-3px); }

/* ---------- Page Hero Banners (inner pages) ---------- */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, rgba(110,159,58,.3) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex; gap: 8px; justify-content: center;
  font-size: .85rem; color: rgba(255,255,255,.6);
  margin-top: 20px;
}
.breadcrumb a:hover { color: var(--green-light); }
.breadcrumb span { opacity: .5; }

/* ===== PROJECTS PAGE ===== */
#projects-section { padding: 100px 0; }

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}
.filter-btn {
  padding: 10px 26px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  background: var(--white);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(110,159,58,.3);
}

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

.project-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.project-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.project-image-bg {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}
.project-card:hover .project-image-bg { transform: scale(1.06); }

.project-category {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gradient);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.project-status {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
}
.project-status.available { background: rgba(110,159,58,.85); }
.project-status.sold      { background: rgba(220,38,38,.75); }

.project-body { padding: 24px; }
.project-body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.project-location {
  display: flex; align-items: center; gap: 6px;
  font-size: .82rem; color: var(--text-muted);
  margin-bottom: 16px;
}
.project-location i { color: var(--green); }

.project-features {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 20px;
}
.project-feature {
  display: flex; align-items: center; gap: 5px;
  font-size: .78rem; color: var(--text-muted);
}
.project-feature i { color: var(--blue); font-size: .75rem; }

.project-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ===== GALLERY PAGE ===== */
#gallery-section { padding: 100px 0; }

.gallery-grid {
  columns: 3;
  gap: 20px;
  column-gap: 20px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item-inner {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue), var(--green));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: 3rem;
  transition: transform .4s ease;
}
.gallery-item:nth-child(3n+1) .gallery-item-inner { aspect-ratio: 4/5; }
.gallery-item:nth-child(3n+2) .gallery-item-inner { aspect-ratio: 16/9; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,35,69,.75);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay  { opacity: 1; }
.gallery-item:hover .gallery-item-inner { transform: scale(1.04); }

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
#lightbox.active { display: flex; }
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.lightbox-close {
  position: absolute;
  top: -50px; right: 0;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  background: rgba(255,255,255,.15);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gradient); }

/* ===== CONTACT PAGE ===== */
#contact-section { padding: 100px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--blue-dark);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 250px; height: 250px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
}

.contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.contact-info-card > p { color: rgba(255,255,255,.65); margin-bottom: 40px; }

.info-items { display: flex; flex-direction: column; gap: 24px; }
.info-item { display: flex; gap: 16px; }
.info-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(255,255,255,.08);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-light); font-size: 1rem;
}
.info-item h4 { font-size: .82rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.info-item p, .info-item a {
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}
.info-item a:hover { color: var(--green-light); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.contact-form-wrap > p { color: var(--text-muted); margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 8px;
  letter-spacing: .03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(110,159,58,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  border-radius: var(--radius);
}

.form-message {
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-top: 16px;
  font-size: .9rem;
  display: none;
}
.form-message.success { background: rgba(110,159,58,.12); color: var(--green-dark); border: 1px solid rgba(110,159,58,.3); }
.form-message.error   { background: rgba(220,38,38,.08); color: #dc2626; border: 1px solid rgba(220,38,38,.2); }

/* Map */
#map-section { padding: 0 0 100px; }
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ===== ABOUT PAGE ===== */
#about-page { padding: 100px 0; }

.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), var(--blue));
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px dashed var(--border);
}
.timeline-item:last-child { border-bottom: none; margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -35px; top: 4px;
  width: 16px; height: 16px;
  background: var(--gradient);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(110,159,58,.2);
}
.timeline-item h4 { font-size: 1rem; font-weight: 600; color: var(--blue-dark); margin-bottom: 6px; }
.timeline-item p  { font-size: .875rem; color: var(--text-muted); line-height: 1.7; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.value-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(110,159,58,.3); }
.value-icon {
  width: 60px; height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--white);
  font-size: 1.3rem;
}
.value-card h4 { font-weight: 700; font-size: .95rem; color: var(--blue-dark); margin-bottom: 8px; }
.value-card p  { font-size: .82rem; color: var(--text-muted); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-60 { margin-top: 60px; }
.mb-0 { margin-bottom: 0; }






/* ---------- Booking Overlay ---------- */
.booking-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 35, 69, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.booking-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ---------- Modal Card ---------- */
.booking-modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 540px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 44px 40px 36px;
  box-shadow: 0 32px 80px rgba(15, 35, 69, 0.28);
  transform: translateY(28px) scale(.97);
  transition: transform .38s cubic-bezier(.34,1.4,.64,1), opacity .35s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--green) transparent;
}
.booking-overlay.open .booking-modal {
  transform: translateY(0) scale(1);
}

/* Accent stripe at top */
.booking-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ---------- Close Button ---------- */
.booking-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: var(--transition);
  z-index: 2;
}
.booking-close:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: #dc2626;
  transform: rotate(90deg);
}

/* ---------- Modal Header ---------- */
.booking-header { text-align: center; margin-bottom: 28px; }

.booking-icon-wrap {
  width: 56px; height: 56px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin: 0 auto 14px;
  box-shadow: 0 8px 24px rgba(110, 159, 58, .35);
}

.booking-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.booking-title {
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}
.booking-title span { color: var(--green); }

.booking-subtitle {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- Form Groups ---------- */
.bform-group { margin-bottom: 18px; }

.bform-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 7px;
  letter-spacing: .02em;
}
.bform-label i { color: var(--green); font-size: .8rem; }
.req { color: #e53e3e; }

.bform-input,
.bform-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
  appearance: none;
}
.bform-input::placeholder { color: #a0aec0; }
.bform-input:focus,
.bform-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(110, 159, 58, .15);
}
.bform-input.error,
.bform-select.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, .12);
}

/* Phone input with prefix */
.bform-phone-wrap {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.bform-phone-wrap:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(110, 159, 58, .15);
}
.bform-phone-wrap.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, .12);
}
.bform-phone-prefix {
  padding: 12px 14px;
  background: var(--bg-light);
  border-right: 1.5px solid var(--border);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.bform-input-phone {
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  flex: 1;
}

/* Select Wrapper */
.bform-select-wrap { position: relative; }
.bform-select-arrow {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: .8rem;
  pointer-events: none;
}
.bform-select { padding-right: 38px; cursor: pointer; }

/* ---------- Interest Chips ---------- */
.bform-interest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.interest-chip input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}

.interest-chip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.interest-chip span i { font-size: .75rem; }

.interest-chip:hover span {
  border-color: var(--green);
  color: var(--green-dark);
  background: rgba(110, 159, 58, .06);
}

.interest-chip input:checked + span {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(110, 159, 58, .35);
}

/* ---------- Error Messages ---------- */
.bform-error {
  display: block;
  font-size: .78rem;
  color: #e53e3e;
  margin-top: 5px;
  min-height: 16px;
}

/* ---------- Submit Button ---------- */
.bform-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
  margin-top: 6px;
  border-radius: var(--radius);
}
.bform-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
}
.bform-submit .spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .6s linear infinite;
  display: none;
}
.bform-submit.loading .spinner { display: block; }
.bform-submit.loading .btn-text { display: none; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Privacy Note ---------- */
.bform-privacy {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 12px;
}
.bform-privacy i { color: var(--green); }

/* ---------- Success State ---------- */
.booking-success {
  text-align: center;
  padding: 20px 0;
}
.booking-success-icon {
  font-size: 3.5rem;
  color: var(--green);
  margin-bottom: 16px;
  animation: pop .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.booking-success h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.booking-success p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.booking-success a { color: var(--green); font-weight: 600; }

/* ---------- Mobile ---------- */
@media (max-width: 576px) {
  .booking-modal { padding: 36px 22px 28px; max-height: 95vh; }
  .booking-title { font-size: 1.4rem; }
  .bform-interest-grid { gap: 6px; }
  .interest-chip span { font-size: .75rem; padding: 7px 11px; }
}



/* ===== MARQUEE STRIP ===== */
.mq-strip {
  background: linear-gradient(135deg, #0F2345 0%, #163b82 60%, #0a2a1a 100%);
  overflow: hidden;
  position: relative;
  border-top: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  height: 52px;
  display: flex;
  align-items: center;
}
.mq-strip::before, .mq-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.mq-strip::before { left: 0; background: linear-gradient(to right, #0F2345, transparent); }
.mq-strip::after  { right: 0; background: linear-gradient(to left, #0F2345, transparent); }
.mq-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 28s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.mq-strip:hover .mq-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.mq-leaf { font-size: 1.1rem; }
.mq-highlight { color: #a8d96a; font-weight: 700; }
.mq-price {
  background: var(--gradient);
  color: #fff;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
}
.mq-dot {
  width: 5px; height: 5px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.8;
}
@media (prefers-reduced-motion: reduce) {
  .mq-track { animation: none; }
}
