@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #3A7D44;
  --gold-light: #7DBF8A;
  --gold-dark: #235C2D;
  --dark: #0D0D0D;
  --dark-2: #1A1A1A;
  --dark-3: #252525;
  --dark-4: #2E2E2E;
  --light: #F8F6F0;
  --light-2: #EFECE3;
  --white: #FFFFFF;
  --text: #444444;
  --text-light: #777777;
  --border:  rgba(58,125,68,0.22);
  --shadow: 0 8px 40px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 4px;
  --radius-lg: 12px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Jost', sans-serif;
  --font-italic: 'Cormorant Garamond', serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
   font-family: "Google Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; transition: var(--transition); }

/* ---- TYPOGRAPHY ---- */
.section-label {
  display: inline-block;
   font-family: "Google Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--text-light);
}
.section-label.gold { color: #ffcc50; }

.section-title {
   font-family: "Google Sans", sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: #ffcc50;
   font-family: "Google Sans", sans-serif;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 0;
}

.section-body {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.78;
  margin-bottom: 14px;
}

.section-pad { padding: 96px 0; }

/* ---- BUTTONS ---- */
.btn {
   font-family: "Google Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
  transition: var(--transition);
  font-size: 0.88rem;
  padding: 13px 28px;
  border: none;
  cursor: pointer;
}

.btn-gold {
  background: #ffcc50;
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-gold:hover {
  background: #ffcc50;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  transform: translateY(-2px);
}

.btn-gold-outline {
  background: transparent;
  color: #ffcc50;
  border: 1.5px solid #ffcc50;
}
.btn-gold-outline:hover {
  background: #ffcc50;
  color: var(--dark);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

/* ---- NAVBAR ---- */
.vi-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: #000000cc;
  transition: all 0.5s ease;
}
.vi-navbar.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.nav-logo {
  height: 44px;
  width: auto;
}


.vi-nav-link {
   font-family: "Google Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8) !important;
  padding: 6px 14px !important;
  transition: var(--transition);
}
.vi-nav-link:hover, .vi-nav-link.active {
  color: #ffcc50 !important;
}

.vi-toggler {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.vi-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

@media (max-width: 991px) {
  .vi-navbar .navbar-collapse {
    background: rgba(13,13,13,0.97);
    backdrop-filter: blur(12px);
    padding: 20px;
    margin-top: 12px;
    border-top: 1px solid var(--border);
  }
  .vi-nav-link { padding: 10px 0 !important; }
  .btn-gold-outline { margin-top: 10px; }
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.25) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
}

.hero-eyebrow { margin-bottom: 24px; }

.igbc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 7px 16px;
  border-radius: 40px;
  backdrop-filter: blur(6px);
  background: rgba(201,168,76,0.08);
}
.igbc-badge img { opacity: 0.9; }

.hero-title {
   font-family: "Google Sans", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: #ffcc50;
   font-family: "Google Sans", sans-serif;
}

.hero-sub {
   font-family: "Google Sans", sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
   font-family: "Google Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffcc50;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.hero-divider {
  width: 1px;
  height: 40px;
  background: rgba(201,168,76,0.3);
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-btn { padding: 14px 30px; font-size: 0.88rem; }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.8), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- ABOUT ---- */
.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: #ffcc50;
  color: var(--dark);
  padding: 18px 22px;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}
.badge-num {
  display: block;
   font-family: "Google Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-lbl {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.about-gold-bar {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 70px;
  height: 70px;
  border-top: 3px solid #ffcc50;
  border-left: 3px solid #ffcc50;
  border-radius: 4px 0 0 0;
}

.about-features { display: flex; flex-direction: column; gap: 12px; }
.af-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: var(--text);
}
.gold-icon { color: #ffcc50; width: 18px; text-align: center; }

/* ---- HIGHLIGHTS ---- */
.highlights-section {
  background: #000;
  padding: 96px 0;
}

/* Highlights Carousel Wrapper */
.highlights-carousel-outer {
  position: relative;
  overflow: hidden;
}
.highlights-track-wrap {
  overflow: hidden;
}
.highlights-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.highlights-track .highlight-card-wrap {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
}

.highlight-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.highlight-card:hover {
  background: var(--dark-4);
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.hc-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.2rem;
  color: #ffcc50;
  transition: var(--transition);
}
.highlight-card:hover .hc-icon {
  background: #ffcc50;
  color: var(--dark);
}
.highlight-card h5 {
   font-family: "Google Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.highlight-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
}

/* Carousel nav buttons */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: #ffcc50;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  font-size: 0.9rem;
}
.carousel-nav-btn:hover {
  background: #ffcc50;
  color: var(--dark);
  border-color: #ffcc50;
}
.carousel-nav-btn.prev { left: 12px; }
.carousel-nav-btn.next { right: 12px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.carousel-dot.active {
  background: #ffcc50;
  transform: scale(1.3);
}

/* ---- MISSION SCIENCE ---- */
.mission-section { background: var(--light); }

.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.mc-img-wrap { overflow: hidden; height: 200px; }
.mc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.mission-card:hover .mc-img-wrap img { transform: scale(1.06); }
.mc-body { padding: 24px; }
.mc-num {
   font-family: "Google Sans", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffcc50;
  opacity: 0.3;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.mc-body h5 {
   font-family: "Google Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.mc-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.mission-cta-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mission-cta-card h4 {
   font-family: "Google Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}
.mission-cta-card h4 em {
  color: #ffcc50;
  font-style: italic;
}
.mission-cta-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.igbc-logo { height: 50px; width: auto;  opacity: 0.8; }

/* ---- AMENITIES ---- */
.amenities-section { background: var(--white); }

.club-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.amenities-sub-title {
   font-family: "Google Sans", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffcc50;
  margin-bottom: 16px;
}

/* Amenities Carousel */
.amenities-carousel-outer {
  position: relative;
  overflow: hidden;
}
.amenities-track-wrap { overflow: hidden; }
.amenities-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.amenities-track .amenity-wrap {
  flex: 0 0 calc(25% - 12px);
  min-width: 0;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 22px 14px;
  border: 1px solid var(--light-2);
  border-radius: var(--radius-lg);
  background: var(--light);
  transition: var(--transition);
  cursor: default;
  height: 100%;
}
.amenity-item:hover {
  background: var(--dark);
  border-color: var(--border);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.amenity-item i {
  font-size: 1.6rem;
  color: #ffcc50;
  transition: var(--transition);
}
.amenity-item span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.amenity-item:hover span { color: var(--white); }

/* ---- FLOOR PLANS ---- */
.floor-section { background: var(--light); }

/* Floor Plans Carousel */
.plans-carousel-outer {
  position: relative;
  overflow: hidden;
}
.plans-track-wrap { overflow: hidden; }
.plans-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.plans-track .plan-wrap {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  height: 100%;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.plan-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
  z-index: 2;
}
.gold-badge {
  background: #ffcc50;
  color: var(--dark);
}
.plan-img-wrap {
  overflow: hidden;
  background: var(--light);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.plan-img-wrap img {
  width: auto;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.plan-card:hover .plan-img-wrap img { transform: scale(1.05); }
.plan-body { padding: 22px; }
.plan-body h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.plan-area {
   font-family: "Google Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffcc50;
  margin-bottom: 16px;
  line-height: 1;
}
.plan-area span {
  font-size: 0.75rem;
  font-weight: 400;
   font-family: "Google Sans", sans-serif;
  color: var(--text-light);
  display: block;
  margin-top: 4px;
}
.btn-plan {
  background: transparent;
  border: 1.5px solid #ffcc50;
  color: #ffcc50;
  font-size: 0.82rem;
  padding: 9px 20px;
  width: 100%;
  text-align: center;
}
.btn-plan:hover { background: #ffcc50; color: var(--dark); }
.plan-featured { border: 2px solid #ffcc50; }
.plan-disclaimer { font-size: 0.78rem; color: var(--text-light); }

/* ---- GALLERY ---- */
.gallery-section { background: var(--white); }

/* Gallery Carousel */
.gallery-carousel-outer {
  position: relative;
  overflow: hidden;
}
.gallery-track-wrap { overflow: hidden; }
.gallery-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.gallery-track .gallery-slide {
  flex: 0 0 calc(33.333% - 11px);
  min-width: 0;
}

/* Dark nav for gallery */
.carousel-nav-btn.dark-btn {
  background: var(--dark);
  border-color: var(--border);
}

.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  aspect-ratio: 4/3;
}
.gallery-item.gallery-tall { aspect-ratio: unset; height: 100%; min-height: 260px; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-overlay i {
  font-size: 1.5rem;
  color: var(--white);
  width: 50px;
  height: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.7);
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay i { transform: scale(1); }

/* ---- LOCATION ---- */
.location-grid { display: flex; flex-direction: column; gap: 14px; }

.loc-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--light);
  border: 1px solid var(--light-2);
  border-radius: var(--radius-lg);
  padding: 18px;
  transition: var(--transition);
}
.loc-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.loc-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffcc50;
  font-size: 1rem;
}
.loc-body h6 {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.loc-body p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.tech-tags span {
  font-size: 0.78rem;
  background: var(--dark);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
}
.tech-tags em {
  color: #ffcc50;
  font-style: normal;
  font-size: 0.72rem;
}
.loc-note {
  font-size: 0.76rem;
  color: var(--text-light);
  font-style: italic;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--light-2);
}
.map-wrap iframe { display: block; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { 
    margin-bottom: 50px;
    
}

.testi-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  position: relative;
}
.testi-card::before {
  content: '\201C';
   font-family: "Google Sans", sans-serif;
  font-size: 8rem;
  color: #ffcc50;
  opacity: 0.12;
  position: absolute;
  top: -10px;
  left: 24px;
  line-height: 1;
}
.testi-stars {
  font-size: 1.1rem;
  color: #ffcc50;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.testi-text {
  font-family: var(--font-italic);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 28px;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.testi-avatar {
  width: 46px;
  height: 46px;
  background: #ffcc50;
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.testi-author strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}
.testi-author span {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 0.78rem;
}

.testi-ctrl {
  background: transparent;
  border: 1.5px solid var(--border);
  color: #ffcc50;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin: 0 6px;
  transition: var(--transition);
}
.testi-ctrl:hover {
  background: #ffcc50;
  color: var(--dark);
  border-color: #ffcc50;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(13,13,13,0.75) 100%);
}
.cta-content { position: relative; z-index: 2; }
.cta-title {
   font-family: "Google Sans", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-title em {
  font-style: italic;
  color: #ffcc50;
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ---- CONTACT ---- */
.contact-section { background: var(--light); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-2);
}

.vi-input {
   font-family: "Google Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  border: 1.5px solid var(--light-2);
  border-radius: var(--radius);
  padding: 13px 18px;
  background: var(--light);
  transition: var(--transition);
}
.vi-input:focus {
  outline: none;
  border-color: #ffcc50;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.vi-input::placeholder { color: var(--text-light); }

textarea.vi-input { resize: vertical; min-height: 110px; }

.consent-label {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}
.consent-label a { color: #ffcc50; text-decoration: underline; }

.contact-info-list { display: flex; flex-direction: column; gap: 18px; }
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-item i { margin-top: 3px; font-size: 1rem; }
.ci-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffcc50;
  margin-bottom: 3px;
}
.ci-val {
  display: block;
  font-size: 0.9rem;
  color: var(--dark);
}
a.ci-val:hover { color: #ffcc50; }

/* ---- ABOUT GROUP ---- */
.about-group-section { background: var(--white); }

.group-value-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--light-2);
  border-radius: var(--radius-lg);
  background: var(--light);
  transition: var(--transition);
}
.group-value-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.group-value-card i { font-size: 1.2rem; margin-top: 3px; }
.group-value-card h6 {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.group-value-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}
.v-logo { height: 50px; width: auto; }

/* ---- FOOTER ---- */
.vi-footer {
  background: var(--dark);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-logo { height: 44px; width: auto;  }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.75; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: #ffcc50;
  border-color: #ffcc50;
  color: var(--dark);
}
.footer-heading {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffcc50;
  margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-links a:hover { color: #ffcc50; }
.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-contact a { color: rgba(255,255,255,0.5); }
.footer-contact a:hover { color: #ffcc50; }
.rera-text { font-size: 0.76rem; color: rgba(255,255,255,0.35); line-height: 1.6; }
.footer-igbc {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-igbc span { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-bottom {
    justify-content: center;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-credit a { color: #ffcc50; }
.nav-logo,
.footer-logo{
  background: transparent;
}
/* ---- FLOATING BUTTONS ---- */
.float-btn {
  position: fixed;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.float-btn:hover { transform: scale(1.1); }

.float-whatsapp {
  bottom: 28px;
  right: 28px;
  background: #25D366;
  color: var(--white);
}
.float-call {
  bottom: 88px;
  right: 28px;
  background: #ffcc50;
  color: var(--dark);
}
.float-scroll-top {
  bottom: 28px;
  right: 92px;
  background: var(--dark);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.float-scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

/* ---- POPUP MODAL ---- */
.popup-modal-content {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0,0,0,0.35);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  opacity: 1;
  color: var(--white);
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.popup-close:hover { background: rgba(0,0,0,0.6); }

.popup-img-col { position: relative; }
.popup-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.popup-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.75));
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}
.popup-badge {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffcc50;
  border: 1px solid rgba(201,168,76,0.5);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  background: rgba(201,168,76,0.08);
  width: fit-content;
}
.popup-img-overlay h3 {
   font-family: "Google Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 5px;
}
.popup-img-overlay h3 em { font-style: italic; color: #ffcc50; }
.popup-img-overlay p { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin: 0; }
.popup-form-col { background: var(--white); }
.popup-form-inner { padding: 24px 26px; }
.popup-form-inner h4 {
   font-family: "Google Sans", sans-serif;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.popup-form-inner h4 em { font-style: italic; color: #ffcc50; }
.popup-sub { font-size: 0.82rem; color: var(--text-light); margin-bottom: 16px; }
/* Compact form fields in popup */
.popup-form-inner .mb-3 { margin-bottom: 0.65rem !important; }
.popup-form-inner .vi-input { padding: 10px 14px; font-size: 0.85rem; }

/* ---- UTILITIES ---- */
.form-check-input:checked { background-color: #ffcc50; border-color: #ffcc50; }
.form-check-input:focus { box-shadow: 0 0 0 3px rgba(201,168,76,0.2); border-color: #ffcc50; }

/* ---- AOS OVERRIDES ---- */
[data-aos] { transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ---- LARGE DESKTOP MAX-WIDTH FIX ---- */
.container-xl {
  max-width: 1320px;
  padding-left: 24px;
  padding-right: 24px;
}

/* ---- TABLET (≤ 1199px) ---- */
@media (max-width: 1199px) {
  .highlights-track .highlight-card-wrap {
    flex: 0 0 calc(33.333% - 14px);
  }
  .amenities-track .amenity-wrap {
    flex: 0 0 calc(33.333% - 11px);
  }
  .plans-track .plan-wrap {
    flex: 0 0 calc(33.333% - 14px);
  }
  .gallery-track .gallery-slide {
    flex: 0 0 calc(50% - 8px);
  }
}

/* ---- LAPTOP (≤ 991px) ---- */
@media (max-width: 991px) {
  .section-pad { padding: 72px 0; }
  .highlights-section { padding: 72px 0; }
  .about-img { height: 360px; }
  .about-img-badge { right: 0; }
  .contact-form-card { padding: 28px; }
  .club-img { height: 320px; }

  .highlights-track .highlight-card-wrap {
    flex: 0 0 calc(50% - 10px);
  }
  .amenities-track .amenity-wrap {
    flex: 0 0 calc(50% - 8px);
  }
  .plans-track .plan-wrap {
    flex: 0 0 calc(50% - 10px);
  }
  .gallery-track .gallery-slide {
    flex: 0 0 calc(50% - 8px);
  }

  .carousel-nav-btn.prev { left: 10px; }
  .carousel-nav-btn.next { right: 10px; }

  .cta-bg { background-attachment: scroll; }
}

/* ---- TABLET PORTRAIT (≤ 767px) ---- */
@media (max-width: 767px) {
  .section-pad { padding: 56px 0;}
  .highlights-section { padding: 56px 0; }

  /* Hero */
  .hero-title { font-size: 2.4rem; }
  .hero-sub { font-size: 0.9rem; }
  .hero-scroll-hint { display: none; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.6rem; }
  .hero-content { padding-top: 80px; }

  /* About */
  .about-img { height: 280px; }
  .about-img-badge { right: 0; bottom: 20px; }
  .about-gold-bar { top: -10px; left: -10px; width: 50px; height: 50px; }

  /* Mission */
  .mc-img-wrap { height: 160px; }

  /* Carousels - 1 item */
  .highlights-track .highlight-card-wrap {
    flex: 0 0 calc(100% - 0px);
  }
  .amenities-track .amenity-wrap {
    flex: 0 0 calc(50% - 8px);
  }
  .plans-track .plan-wrap {
    flex: 0 0 calc(100% - 0px);
  }
  .gallery-track .gallery-slide {
    flex: 0 0 calc(100% - 0px);
  }

  /* Testimonials */
  .testi-card { padding: 28px 20px; }

  /* CTA Banner */
  .cta-banner { padding: 72px 0; }
  .cta-bg { background-attachment: scroll; }

  /* Contact */
  .contact-form-card { padding: 22px 18px; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Float buttons */
  .float-scroll-top { right: 88px; }

  /* Location map */
  .map-wrap iframe { height: 280px; }
}

/* ---- MOBILE (≤ 575px) ---- */
@media (max-width: 575px) {
  .container-xl { padding-left: 16px; padding-right: 16px; }

  /* Hero */
  .hero-title { font-size: 2rem; line-height: 1.15; }
  .hero-sub { font-size: 0.85rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .hero-stats { justify-content: flex-start; gap: 14px; }
  .igbc-badge { font-size: 0.68rem; padding: 6px 12px; }

  /* About */
  .about-img { height: 240px; }
  .about-img-badge {
    position: static;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius);
  }
  .badge-num { font-size: 1.6rem; }
  .about-gold-bar { display: none; }
  .af-item { font-size: 0.85rem; }

  /* Section titles */
  .section-title { font-size: 1.65rem; }

  /* Mission */
  .mission-cta-card { padding: 24px 20px; }
  .mission-cta-card h4 { font-size: 1.25rem; }

  /* Amenities */
  .amenities-track .amenity-wrap {
    flex: 0 0 calc(50% - 8px);
  }
  .amenity-item { padding: 16px 10px; }
  .amenity-item i { font-size: 1.3rem; }
  .amenity-item span { font-size: 0.75rem; }

  /* Club image */
  .club-img { height: 240px; }

  /* Floor plans */
  .plans-track .plan-wrap {
    flex: 0 0 calc(85vw);
  }

  /* Gallery */
  .gallery-track .gallery-slide {
    flex: 0 0 calc(85vw);
  }

  /* Location */
  .loc-card { padding: 14px; gap: 12px; }
  .loc-icon { width: 36px; height: 36px; min-width: 36px; font-size: 0.85rem; }
  .map-wrap iframe { height: 240px; }

  /* Highlights */
  .highlights-track .highlight-card-wrap {
    flex: 0 0 calc(85vw);
  }

  /* Testimonial */
  .testi-card { padding: 24px 16px; }
  .testi-text { font-size: 0.95rem; }

  /* Contact */
  .contact-form-card { padding: 18px 14px; }
  .ci-val { font-size: 0.82rem; }

  /* Popup */
  .popup-form-inner { padding: 20px 18px; }
  .popup-form-inner h4 { font-size: 1.2rem; }

  /* CTA */
  .cta-banner { padding: 56px 0; }
  .cta-title { font-size: 1.8rem; }

  /* Float buttons - adjust for small screens */
  .float-scroll-top { right: 84px; }
  .float-whatsapp { bottom: 20px; right: 20px; width: 46px; height: 46px; font-size: 1.1rem; }
  .float-call { bottom: 76px; right: 20px; width: 46px; height: 46px; font-size: 1rem; }
  .float-scroll-top { bottom: 20px; right: 76px; width: 40px; height: 40px; font-size: 0.85rem; }

  /* Footer */
  .vi-footer { padding: 48px 0 0; }
  .footer-logo { height: 36px; }
}

/* ---- EXTRA SMALL (≤ 380px) ---- */
@media (max-width: 380px) {
  .hero-title { font-size: 1.75rem; }
  .section-title { font-size: 1.5rem; }
  .hero-stats { gap: 10px; }
  .hero-divider { height: 30px; }
  .stat-num { font-size: 1.4rem; }
}

html, body {
  overflow-x: hidden !important;
  max-width: 100%;
}

body.modal-open {
  padding-right: 0 !important;
  overflow: hidden !important;
}

.modal {
  padding-right: 0 !important;
}

.modal-dialog {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .vi-navbar,
  .hero-section,
  .hero-slider,
  .hero-content,
  .container-xl,
  .row {
    max-width: 100%;
  }

  .hero-section {
    overflow: hidden;
  }

  .hero-slider,
  .hero-slider .carousel-inner,
  .hero-slider .carousel-item {
    min-height: 100svh;
  }

  .vi-navbar,
.vi-footer{
  background:#000;
}


  .hero-content {
    padding-top: 95px;
    padding-bottom: 40px;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-divider {
    display: none;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}