@import "tailwindcss";
/* ─────────────────────────────────────────────
   ADANI BRAND TOKENS
   Logo gradient: #00AEEF (cyan-blue) → #6B3FA0 (violet) → #C1346A (magenta)
───────────────────────────────────────────── */
:root {
  /* PRIMARY BRAND COLORS */
  --clr-primary:        #115484;
  --clr-primary-light:  #2F71A1;
  --clr-accent:         #6DB3E6;

  /* BRAND GRADIENTS */
  --gradient-brand: linear-gradient(
    90deg,
    #115484 0%,
    #2F71A1 50%,
    #6DB3E6 100%
  );

  --gradient-brand-rev: linear-gradient(
    90deg,
    #6DB3E6 0%,
    #2F71A1 50%,
    #115484 100%
  );

  --gradient-subtle: linear-gradient(
    135deg,
    rgba(17,84,132,0.08) 0%,
    rgba(109,179,230,0.08) 100%
  );

  /* NEUTRALS */
  --clr-dark:           #0B2235;
  --clr-gray-light:     #F5F9FC;
  --clr-border:         #D6E3EE;
  --clr-text:           #22384A;
  --clr-muted:          #6C7D8D;

  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: #fff;
  font-size: 15px;
  line-height: 1.65;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ─────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────── */
.font-display { font-family: var(--font-display); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--clr-dark);
  line-height: 1.2;
}

.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  /* gradient text — uses brand sweep */
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  display: inline-block;
  margin-bottom: 12px;
}

/* ─────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--clr-border);
}

/* Thin gradient accent line under navbar */
.navbar::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-brand);
  opacity: 0.7;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-adani {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  /* gradient text on logo brand name */
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo .logo-sub {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-muted);
  line-height: 1.3;
}

.nav-logo .logo-divider {
  width: 1px;
  height: 28px;
  background: var(--clr-border);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--clr-text);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--gradient-brand);
  transition: right 0.25s ease;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--clr-primary); }
.nav-links a:hover::after { right: 0; }

.btn-enquire {
  background: var(--gradient-brand);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
}
.btn-enquire:hover { opacity: 0.88; transform: translateY(-1px); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  padding-top: 60px;
  position: relative;
  min-height: 550px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-bg-placeholder {
  width: 100%; height: 100%;
  /* Updated placeholder tinted with Adani blues */
  background: linear-gradient(100deg, #b8d0e8 0%, #7a9abb 25%, #3d5e8a 55%, #1e2f50 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 75% 110% at -5% 50%,
      rgba(255,255,255,1)    0%,
      rgba(255,255,255,0.97) 20%,
      rgba(255,255,255,0.88) 35%,
      rgba(255,255,255,0.60) 50%,
      rgba(255,255,255,0.25) 65%,
      rgba(255,255,255,0)    80%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 0 220px 80px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hero-content h1 {
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 4px;
  line-height: 1.1;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 2vw, 26px);
  /* gradient tagline text */
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
  line-height: 1.35;
}

.hero-desc {
  font-size: 14px;
  color: var(--clr-muted);
  max-width: 380px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero-stat-strip {
  position: absolute;
  bottom: -10px;
  left: 0; right: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(200, 210, 230, 0.7);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.06);
}

/* Gradient top line on stat strip */
.hero-stat-strip::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-brand);
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-right: 1px solid var(--clr-border);
  transition: background 0.2s;
}
.hero-stat-item:last-child { border-right: none; }
.hero-stat-item:hover { background: rgba(243,245,249,0.9); }

.hero-stat-icon {
  width: 44px; height: 44px;
  border: 1.5px solid var(--clr-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--clr-primary);
  background: #fff;
  transition: border-color 0.2s, color 0.2s;
}
.hero-stat-item:hover .hero-stat-icon {
  border-color: var(--clr-primary);
  color: var(--clr-violet);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-dark);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--clr-muted);
  margin-top: 2px;
  line-height: 1.35;
}

/* ─────────────────────────────────────────────
   SHARED BUTTONS
───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 13px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary .arrow {
  width: 22px; height: 22px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--clr-primary);
  color: var(--clr-primary);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 11px 22px;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  align-self: flex-start;
}
.btn-outline:hover {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;

}

/* ─────────────────────────────────────────────
   SECTIONS SHARED
───────────────────────────────────────────── */
.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--clr-gray-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─────────────────────────────────────────────
   WHY SECTION
───────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 300px 2fr;
  gap: 60px;
  align-items: start;
}

.why-left h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 20px;
}

.why-left p {
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}


.feature-img-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.feature-img {
  aspect-ratio: auto;
  height: 190px;
  margin: 0 -20px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  position: relative;
}

.feature-img .img-placeholder {
  width: 100%; height: 100%;
background: linear-gradient(
  135deg,
  #6DB3E6 0%,
  #2F71A1 50%,
  #115484 100%
);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
}

.feature-img-label {
  position: absolute;
  bottom: 8px; left: 8px;
  background: rgba(255,255,255,0.92);
  border-radius: 4px;
  padding: 4px 8px;
  display: flex; align-items: center; gap: 5px;
  font-size: 9px;
  font-weight: 600;
  color: var(--clr-dark);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 0 7px 8px;
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  background: #fff;
  text-align: center;
  transition: box-shadow .3s ease, transform .3s ease;
}

.feature-card:hover {
 box-shadow: 0 12px 30px rgba(17,84,132,.10);
  transform: translateY(-4px);
  border-color: rgba(0,174,239,0.3);
}

.feature-card-icon {
  width: 54px;
  height: 54px;

  background: var(--gradient-brand);

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: -27px auto 16px;

  color: #fff;
  font-size: 22px;

  border: 4px solid #fff;

  position: relative;
  z-index: 2;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.feature-card p {
  font-size: 11px;
  color: var(--clr-muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────
   ECOSYSTEM SECTION
───────────────────────────────────────────── */
.ecosystem-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
}

.ecosystem-left h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 20px;
}

.ecosystem-left p {
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  gap: 0;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  padding: 24px 14px;

  border-right: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);

  min-height: 110px;

  transition: background 0.2s ease;
}
.icon-item:hover {
  background: rgba(109,179,230,0.04);
}

.icon-circle {
  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.icon-circle img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}
/* .icon-item:hover .icon-circle {
  border-color: transparent;
  background: var(--gradient-brand);
  color: #fff;
} */

.icon-label {
  margin-top: 10px;

  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;

  color: var(--clr-text);

  max-width: 110px;
}

/* ─────────────────────────────────────────────
   INVESTMENT SECTION
───────────────────────────────────────────── */
.invest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.invest-left h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  margin-bottom: 20px;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--clr-text);
}

.checklist li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  /* gradient circle checkmarks */
  background: var(--gradient-brand);
  flex-shrink: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M13.5 4.5l-7 7L3 8'/%3E%3C/svg%3E"),
    linear-gradient(
  90deg,
  #115484 0%,
  #2F71A1 50%,
  #6DB3E6 100%
);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: 10px, cover;
}

.price-table {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  overflow: hidden;
}

.price-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--clr-gray-light);
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-muted);
  border-bottom: 1px solid var(--clr-border);
}

.price-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 14px 20px;
  border-bottom: 1px solid var(--clr-border);
  font-size: 13px;
  transition: background 0.15s;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--clr-gray-light); }

.price-row .category { color: var(--clr-text); font-weight: 500; }
.price-row .price {
  font-weight: 700;
  text-align: end;
  /* gradient price text */
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-cta {
  padding: 16px 20px;
  border-top: 1px solid var(--clr-border);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
/* gradient shine on hover */
.btn-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.3s;
}
/* .btn-dark:hover::before { opacity: 1; } */
.btn-dark span { position: relative; z-index: 1; }

.price-note {
  font-size: 10px;
  color: var(--clr-muted);
  margin-top: 8px;
  text-align: center;
}

.invest-image {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 5/5;
}

.invest-image .img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #a8b8d0 0%, #4a5e8a 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: rgba(255,255,255,0.7);
}

/* ─────────────────────────────────────────────
   AMENITIES SECTION
───────────────────────────────────────────── */
.amenities-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.amenities-header h2 {
  font-size: clamp(24px, 2.8vw, 36px);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 12px;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: default;
}
.amenity-item:hover {
  border-color: var(--clr-cyan);
  box-shadow: 0 4px 16px rgba(0,174,239,0.12);
}

.amenity-icon {
  width: 44px; height: 44px;
  background: var(--clr-gray-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--clr-primary);
  transition: background 0.2s, color 0.2s;
}
.amenity-item:hover .amenity-icon {
  background: var(--gradient-brand);
  color: #fff;
}

.amenity-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.35;
}

/* ─────────────────────────────────────────────
   RESIDENCES SECTION
───────────────────────────────────────────── */
.residence-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.residence-card {
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.residence-card:hover {
  box-shadow: 0 6px 24px rgba(47,113,161,0.15);
  transform: translateY(-3px);
}

.residence-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.residence-card-img .img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #b8cce8 0%, #4a6ea0 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: rgba(255,255,255,0.8);
  transition: transform 0.4s;
}
.residence-card:hover .img-placeholder { transform: scale(1.04); }

.residence-card-body {
  padding: 16px;
}

.residence-card-body h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.residence-card-body .sub {
  font-size: 11px;
  color: var(--clr-muted);
  margin-bottom: 10px;
}

.residence-card-body p {
  font-size: 11px;
  color: var(--clr-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.card-arrow {
  width: 28px; height: 28px;
  border: 1.5px solid var(--clr-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--clr-muted);
  transition: all 0.2s;
}
.residence-card:hover .card-arrow {
  border-color: transparent;
  background: var(--gradient-brand);
  color: #fff;
}

/* ==========================================
   MASTER PLAN SECTION
========================================== */

.master-plan-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 60px;
  align-items: stretch;
}

.master-plan-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.master-plan-left h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  margin: 18px 0 32px;
}

.numbered-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 40px;
}

.numbered-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.numbered-list .num {
  min-width: 26px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clr-primary);
}

.master-plan-image {
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.master-plan-image img {
  /* width: 100%; */
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */

@media (max-width: 992px) {
  .master-plan-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .master-plan-image {
    min-height: 300px;
  }

  .numbered-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   LOCATION SECTION
========================================== */

.location-grid {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 50px;
  align-items: stretch;
}

.location-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-left h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  margin: 18px 0 20px;
}

.location-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--clr-muted);
  margin-bottom: 32px;
  max-width: 95%;
}

.location-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 32px;
}

.location-point {
  position: relative;
  padding-left: 28px;
  font-size: 14px;
  line-height: 1.6;
}

.location-point::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;

  width: 18px;
  height: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--gradient-brand);

  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.location-map {
  height: 500px;
  width: 100%;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 91%;
  display: block;
  border: none;
}

/* Responsive */

@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .location-points {
    grid-template-columns: 1fr;
  }

  .location-map {
    height: 380px;
  }
}

/* ─────────────────────────────────────────────
   FOOTER CTA BAND
───────────────────────────────────────────── */

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--clr-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-white::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-white:hover::before { opacity: 1; }
.btn-white:hover { color: #fff; }
.btn-white span { position: relative; z-index: 1; }

/* ─────────────────────────────────────────────
   BOTTOM FOOTER
───────────────────────────────────────────── */
.bottom-footer {
  background: #080d15;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  position: relative;
}
.bottom-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient-brand);
  opacity: 0.3;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1020px) {
  .hero-content { padding: 60px 48px 220px 48px; }
  .hero-stat-strip { grid-template-columns: repeat(2, 1fr);}
  .feature-img-grid{grid-template-columns: repeat(2, 1fr);}
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(4, 1fr); }
  .residence-cards { grid-template-columns: repeat(3, 1fr); }
  .invest-grid { grid-template-columns: 1fr 1fr; }
  .invest-image { display: none; }
  .footer-cta-inner { grid-template-columns: 1fr 1fr; }
  .footer-cta-image { display: none; }
}

@media (max-width: 768px) {
  .navbar-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-content { padding: 48px 24px 260px 24px; }
  .hero-stat-strip { grid-template-columns: repeat(2, 1fr);}
  .container { padding: 0 20px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .ecosystem-grid, .master-plan-grid, .location-grid { grid-template-columns: 1fr; }
  .icon-grid { grid-template-columns: repeat(3, 1fr); }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .residence-cards { grid-template-columns: repeat(2, 1fr); }
  .invest-grid { grid-template-columns: 1fr; }
  .feature-img-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-cta-inner { grid-template-columns: 1fr; }
  
}

/* ─────────────────────────────────────────────
   HAMBURGER & MOBILE NAV
───────────────────────────────────────────── */

/* Hide hamburger on desktop */
.nav-hamburger {
  display: none;
}

/* Mobile nav drawer — hidden by default */
.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--clr-border);
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--clr-text);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid var(--clr-border);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--clr-primary);
}

@media (max-width: 768px) {
  /* Show hamburger on mobile */
  .nav-hamburger {
    display: flex;
  }
  .nav-logo .logo-sub{
    display: none;
  }
  .logo-divider{
    display: none;
  }
}

@media (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
}