/* ============ RESET & VARIABLES ============ */
:root {
  --primary: #0B5D3B;
  --secondary: #1A936F;
  --accent: #D4AF37;
  --white: #FFFFFF;
  --bg: #f6f6f6;
  --dark: #0F172A;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

input,
select,
textarea {
  font-family: inherit;
}

i[data-lucide] {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}

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

.container-narrow {
  max-width: 760px;
}

.gold-text {
  background: linear-gradient(90deg, #D4AF37, #F1D375, #D4AF37);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.green-italic {
  color: var(--primary);
  font-style: italic;
}

.italic {
  font-style: italic;
}

.glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-light {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

/* ============ BUTTONS ============ */
.btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 9999px;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .35s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(11, 93, 59, 0.6);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -8px rgba(11, 93, 59, 0.75);
}

.btn-gold {
  background: linear-gradient(135deg, #eabc27, #d39900);
  color: #111;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -8px rgba(212, 175, 55, 0.6);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.full-width {
  width: 100%;
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all .4s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header.scrolled a.logo img {
  width: 110px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  letter-spacing: .02em;
  transition: color .3s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 24px -10px rgba(15, 23, 42, 0.15);
}

.header.scrolled .logo {
  color: var(--primary);
}

.header.scrolled .nav-link {
  color: var(--dark);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  position: relative;
  transition: color .3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width .3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  color: #fff;
  padding: 6px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.97);
  padding: 24px 20px;
  box-shadow: 0 12px 24px -10px rgba(15, 23, 42, 0.15);
}

.mobile-menu a {
  color: var(--dark);
  font-size: 15px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu-cta {
  text-align: center;
  margin-top: 6px;
}

@media(max-width:1023px) {

  .nav-desktop,
  .header-actions {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .header.scrolled button#mobileBtn svg.lucide.lucide-menu {
    color: #000;
    width: 30px;
    height: 30px;
  }

  a.logo img {
    width: 140px;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  width: 100%;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0F172A 0%, rgba(15, 23, 42, 0.7) 55%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 70px;
}

.hero-grid {
  align-items: center;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  justify-content: center;
}

.badge {
  border-radius: 9999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  padding: 7px 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge i {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.badge.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .6;
  }
}

.hero-title {
  color: #fff;
  font-size: 55px;
  line-height: 1.2;
  font-weight: 600;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  margin-top: 24px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
  align-items: center;
  justify-content: center;
}

.hero-call-link {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-call-link i {
  color: var(--accent);
}

.hero-card {
  border-radius: 22px;
  padding: 28px;
  animation: floatY 5s ease-in-out infinite;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

.hero-card-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 4px;
}

.hero-card-price {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-card-price span {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.mini-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-bottom: 3px;
}

.mini-value {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.field {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14px;
  outline: none;
  transition: border-color .3s ease;
}

.field::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.field:focus {
  border-color: var(--accent);
}

select.field option {
  color: #0F172A;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 8px);
  }
}

@media(max-width:1023px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 15px
  }

  .about-grid {
    margin-bottom: 30px !important;
  }
}

/* ============ MARQUEE ============ */
.marquee-section {
  background: var(--primary);
  padding: 24px 0;
  overflow: hidden;
}

.marquee {
  display: flex;
}

.marquee-track {
  display: flex;
  gap: 64px;
  flex-shrink: 0;
  animation: scrollX 28s linear infinite;
  padding-right: 64px;
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  white-space: nowrap;
}

.marquee-track i {
  color: var(--accent);
  width: 16px;
  height: 16px;
}

@keyframes scrollX {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* ============ SECTION GENERIC ============ */
.section {
  padding: 100px 0;
}

.section-white {
  background: #fff;
}

.section-bg {
  background: var(--bg);
}

.section-dark {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.section-dark-green {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--secondary);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.eyebrow.gold {
  color: var(--accent);
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.25;
}

.section-title.center {
  text-align: center;
}

.section-title.white {
  color: #fff;
}

.about-grid {
  margin-bottom: 80px
}

.about-text {
  color: #475569;
  margin-top: 22px;
  line-height: 1.8;
}

.body-text {
  color: #475569;
  margin-top: 22px;
  line-height: 1.8;
  max-width: 520px;
}

@media(min-width:768px) {
  .section-title {
    font-size: 38px;
  }
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  border-radius: 24px;
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

.about-badge {
  position: absolute;
  bottom: -30px;
  right: -20px;
  border-radius: 20px;
  padding: 22px 26px;
  box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.2);
}

.counter {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}

.about-badge-label {
  font-size: 12px;
  color: #6474f8b;
  font-family: 'Inter', sans-serif;
  margin-top: 4px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
}

.stat-label {
  font-size: 14px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  margin-top: 5px;
  text-align: center
}

@media(max-width:900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.stat-bg {
  background: var(--primary);
  padding: 50px 0;
  overflow: hidden;
}

.about-badge.glass-light p.counter {
  color: #0b5d3b;
}

/* ============ CARDS ============ */
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px -12px rgba(15, 23, 42, 0.10);
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: all .4s cubic-bezier(.2, .8, .2, 1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px -12px rgba(15, 23, 42, 0.18);
}

.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.card {
  padding: 15px;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: rgba(11, 93, 59, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.icon-box i {
  color: var(--primary);
  width: 24px;
  height: 24px;
}

.icon-box.small {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.icon-box.glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.icon-box.glass svg {
  color: var(--accent);
  width: 20px;
  height: 20px;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-text {
  color: #0b5d3b;
  font-size: 13px;
  line-height: 1.7;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}

.body-content {
  color: #475569;
  margin-top: 22px;
  line-height: 1.8;
}

@media(max-width:900px) {
  .card-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ============ HIGHLIGHTS ============ */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight-item {
  background: var(--bg);
  border-radius: 16px;
  padding: 26px;
  text-align: center;
  transition: transform .4s ease;
}

.highlight-item:hover {
  transform: translateY(-6px);
}

.highlight-item i {
  width: 28px;
  height: 28px;
  color: var(--primary);
  margin-bottom: 12px;
}

.highlight-item p {
  font-size: 14px;
  font-weight: 500;
}

@media(max-width:700px) {
  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .card.price-img.price-card.reveal.in {
    height: 300px;
  }
}

.amenity-item {
  padding: 25px;
  background: #f6f6f6;
  border-radius: 18px;
}

/* ============ PRICE ============ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.price-card {
  position: relative;
  padding: 36px;
}

.price-card.featured {
  border: 2px solid var(--accent);
  overflow: hidden;
}

.featured-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #D4AF37, #B8912B);
  color: #0F172A;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 7px 18px;
  border-radius: 0 0 0 18px;
}

.price-sub {
  color: #94a3b8;
  font-size: 14px;
  margin-bottom: 22px;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 22px;
}

.price-amount span {
  font-size: 14px;
  font-weight: 400;
  color: #94a3b8;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.price-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #475569;
}

.price-list i {
  width: 16px;
  height: 16px;
  color: var(--secondary);
}

.card.price-img {
  overflow: hidden;
}

@media(max-width:900px) {
  .price-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ AMENITIES ============ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}

.amenity-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 18px;
  background: rgba(11, 93, 59, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .4s ease;
}

.amenity-item:hover .amenity-icon {
  transform: translateY(-6px) scale(1.05);
}

.amenity-icon i {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.amenity-item p {
  font-size: 14px;
  font-weight: 500;
}

@media(max-width:900px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:600px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery-grid img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: opacity .3s ease;
}

.gallery-grid img:hover {
  opacity: .9;
}

.g-tall {
  grid-row: span 2;
}

.image-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 9999;
}

.image-popup.active {
  opacity: 1;
  visibility: visible;
}

.image-popup img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  transition: .3s;
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 45px;
  cursor: pointer;
}

.popup-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: .3s;
}

.popup-btn:hover {
  background: #fff;
  color: #000;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

.gallery-grid img {
  cursor: pointer;
}

@media(max-width:900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
}

/* ============ LOCATION ============ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.location-text {
  flex: 1;
}

.loc-title {
  font-size: 14px;
  font-weight: 600;
}

.loc-sub {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.loc-distance {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

.map-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  height: 700px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

  .map-frame {
    height: 400px;
  }
}

/* ============ INVESTMENT BENEFITS ============ */
.section-dark-green::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(26, 147, 111, 0.35);
  filter: blur(70px);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}

.benefit-item {
  border-radius: 18px;
  padding: 28px;
  text-align: center;
}

.benefit-item i {
  width: 30px;
  height: 30px;
  color: var(--accent);
  margin-bottom: 16px;
}

.benefit-title {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}

.benefit-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.glass.benefit-item svg.lucide {
  color: #fff;
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

@media(max-width:900px) {
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============ TESTIMONIALS ============ */
.stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 14px;
  font-weight: 500;
}

.author-role {
  font-size: 12px;
  color: #94a3b8;
}

/* ============ FAQ ============ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  gap: 16px;
}

.faq-icon {
  color: var(--primary);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease;
  padding: 0 24px;
}

.accordion-content p {
  color: #64748b;
  font-size: 14px;
  padding-bottom: 24px;
  line-height: 1.7;
}

/* ============ CONTACT ============ */
.section-dark::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(11, 93, 59, 0.4);
  filter: blur(70px);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  position: relative;
}

.contact-lead {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 24px;
  max-width: 420px;
  line-height: 1.7;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-title {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.contact-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-top: 2px;
}

.contact-form-wrap {
  border-radius: 24px;
  padding: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-note {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  text-align: center;
}

@media(max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }
}

section#contact {
  border-bottom: 1px solid #444;
}

/* ============ FOOTER ============ */
.footer {
  background: #08130E;
  padding-top: 64px;
  padding-bottom: 32px;
}

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

.footer-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.7;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon i {
  width: 16px;
  height: 16px;
  color: #fff;
}

.footer-heading {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: color .3s ease;
}

.footer-list a:hover {
  color: var(--accent);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
  text-align: center;
  padding-top: 20px;
}

@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.Disclaimer .footer-text {
  text-align: center;
}

section.thank-you {
  padding: 100px 0 0;
  height: 70vh;
  text-align: center;
  display: flex;
  justify-content: center;
}

.thank-you-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section.thank-you .hero-eyebrow {
  justify-content: center;
}

.hero-eyebrow {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--primary);
}

section.thank-you .hero-headline {
  color: #333;
}

body.thank-you img {
  width: 150px;
}

body.thank-you header#mainNav {
  background: #333;
}

.hero-headline {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 600;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-headline em {
  font-style: normal;
  color: var(--primary);
}

.hero-subtext {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
  color: #111;
  margin-bottom: 44px;
  max-width: 570px;
  letter-spacing: 0.01em;
}

/* ============ FLOATING ============ */
.whatsapp-btn {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 50;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.4);
  transition: transform .3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn i {
  color: #fff;
  width: 28px;
  height: 28px;
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid #e2e8f0;
  padding: 12px 16px;
  gap: 12px;
}

.mobile-sticky-cta .btn {
  flex: 1;
  padding: 13px;
  font-size: 13px;
}

@media(max-width:1023px) {
  .mobile-sticky-cta {
    display: flex;
  }

  .whatsapp-btn {
    bottom: 96px;
  }
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: all .9s cubic-bezier(.16, .8, .28, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}