/* =========================================
   VRX TERRACE — Premium Real Estate CSS
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* Butler font via CDN fallback */
@font-face {
  font-family: 'Butler';
  src: url('https://fonts.cdnfonts.com/css/butler') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* =========================================
   CSS VARIABLES
   ========================================= */
:root {
  --primary: #52B549;
  --primary-dark: #3f8d38;
  --primary-light: #e6f6e4;
  --bg-white: #FFFFFF;
  --bg-grey: #F6F8FB;
  --text-dark: #1A1A1A;
  --text-mid: #444444;
  --text-light: #666666;
  --text-muted: #191919;
  --border: #E8ECF0;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --container: 1200px;
  --header-h: 72px;
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
  max-width: 100%;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: normal;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

h1 { font-size: clamp(30px, 4.5vw, 52px); }
h2 { font-size: clamp(26px, 3.2vw, 38px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
h4 { font-size: clamp(17px, 1.6vw, 20px); }

p { font-size: 16px; color: #1a1a1a; line-height: 1.75; }

.small { font-size: 14px; }

/* =========================================
   LAYOUT
   ========================================= */
.container {
  /* max-width: var(--container);
  margin: 0 auto; */
  padding: 0 60px;
  width: 100%;
  box-sizing: border-box;
}

section { padding: 80px 0; }

.section--grey { background: var(--bg-grey); }

/* =========================================
   HEADER
   ========================================= */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--bg-white);
  border-bottom: 1px solid transparent;
  transition: var(--transition), box-shadow 0.28s;
}

#header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.header__logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.logo__brand {
  font-family: 'Georgia', serif;
  font-size: 22px;
  font-weight: normal;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  text-transform: uppercase;
}

.logo__sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  /*color: var(--text-mid);*/
  text-transform: uppercase;
  transition: color 0.2s;
}

.header__nav a:hover { color: black; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 12px 22px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(44,155,215,0.30);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.75);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.12);
}

.btn--outline-dark {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn--outline-dark:hover {
  background: var(--primary);
  color: #fff;
}

.btn--lg { padding: 15px 30px; font-size: 15px; }
.btn--block { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 20px 24px 28px;
  flex-direction: column;
  gap: 4px;
}
 @media (max-width:480px) {
    .mobile_hero__bg{
      height: 58vh !important;
    }
   }

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary); }

/* =========================================
   HERO
   ========================================= */
#hero {
  position: relative;
  min-height: 115vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: #0f1c2a;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    
    url('assets/images/banner/banner.jpeg') center/cover no-repeat;
  z-index: 0;
  height: 115vh;
  width: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.mobile_hero__bg{
  width: 100%;
  height: 55vh;
  background:
    url('assets/images/banner/mobile.jpeg') center/cover no-repeat;
  /* border-radius: 0 0 18px 18px; */
  overflow: hidden;
}


.hero__texture {
  position: absolute;
  inset: 0;
  background-image: 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.015'%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");
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  /* layout handled by Bootstrap row/cols */
  padding: calc(var(--header-h) + 40px) 0 60px;
  
    position: relative;
    /* z-index: 2; */
    padding: calc(var(--header-h) + 40px) 0 60px;
    display: flex;
    justify-content: flex-end;

}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(44,155,215,0.18);
  border: 1px solid rgba(44,155,215,0.40);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #7dd3f5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero__badge-dot {
  width: 6px; height: 6px;
  background: #2C9BD7;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero__content h1 {
  color: #fff;
  margin-bottom: 8px;
}

.hero__content h1 em {
  font-style: italic;
  color: #7dd3f5;
}

.hero__subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 16px;
  font-weight: 400;
}

.hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item__icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(44,155,215,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item__icon svg { color: #7dd3f5; }

.trust-item__text {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.35;
}

.trust-item__text strong {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}

/* Lead Form Card */
.hero__form-card {
  background: #fff;
  border-radius: 0px;
  /* padding: 32px 28px; */
  /* box-shadow: 0 24px 64px rgba(0,0,0,0.30); */
  align-self: flex-end;
  justify-self: end;
  max-width: 420px;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
}

/* Sticky CTA — vertical fixed tab on right edge */
.sticky-cta {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1200;
  width: 56px;
  min-height: 200px;
  padding: 22px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  border: none;
  /* border-radius: 12px 0 0 12px; */
  box-shadow: -4px 0 22px rgba(82,181,73,0.35);
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.sticky-cta:hover {
  background: var(--primary-dark);
  box-shadow: -4px 0 28px rgba(82,181,73,0.5);
}

.sticky-cta__text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  white-space: nowrap;
}

/* Lead Modal — smooth open/close flow */
.lead-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lead-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lead-modal.is-open .lead-modal__backdrop {
  opacity: 1;
}

.lead-modal__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 26px 26px;
  width: 100%;
  max-width: 420px;
  margin: 16px;
  box-shadow: var(--shadow-lg);
  transform: scale(0.94);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lead-modal.is-open .lead-modal__dialog {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.05s;
}

.lead-modal__close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.04);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
}

.lead-modal__close:hover {
  background: rgba(0,0,0,0.08);
}

.form-card__title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 25px;
  display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.mob-banner{
  display: none;
  overflow-x: hidden;
  max-width: 100%;
}
@media (max-width: 768px) {
  .mob-banner{
    display: block;
    /*padding: 0 0 32px;*/
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
  }

  .mob-banner__form-wrap{
    padding: 0 16px;
    margin-top: 16px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .mob-banner__form-wrap .hero__form-card{
    max-width: 420px;
    margin: 0 auto;
  }

  /* Fix Bootstrap row negative margins causing horizontal overflow */
  .row {
    margin-left: 0;
    margin-right: 0;
  }

  /* Prevent any wide child elements from overflowing */
  section, div, article, aside {
    max-width: 100%;
  }
}


.form-card__sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  width: 100%;
  height: 48px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(44,155,215,0.12);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.form-disclaimer--inline {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.form-disclaimer__icon {
  display: inline-flex;
  flex-shrink: 0;
}

.form-disclaimer__icon img {
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* =========================================
   TRUST BAR
   ========================================= */
#trust-bar {
  padding: 0;
  background: var(--text-dark);
}

.trust-bar__inner {
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.trust-bar__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.trust-bar__item:last-child { border-right: none; }

.trust-bar__icon {
  color: var(--primary);
  flex-shrink: 0;
}

.trust-bar__label {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}

.trust-bar__value {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}

/* =========================================
   SECTION HEADERS
   ========================================= */
.section-header {
  margin-bottom: 20px;
}

.section-header--center { text-align: center; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-header h2 {
  margin-bottom: 14px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-light);
  max-width: 1200px;
}

.section-header--center p { margin: 0 auto; }

.divider {
  width: 48px;
  height: 2px;
  background: var(--primary);
  margin-top: 18px;
}

.section-header--center .divider { margin-left: auto; margin-right: auto; }

/* =========================================
   PROJECT INTRO
   ========================================= */
#intro .intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.intro__image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 0px;
}

.intro__image img {
  width: 100%; height: 100%;
  /* object-fit: cover; */
  transition: transform 0.6s ease;
}

.intro__image:hover img { transform: scale(1.04); }

.intro__tag {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(10,20,35,0.82);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.intro__tag span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  margin-bottom: 2px;
}

.intro__content .section-header { margin-bottom: 24px; }

.intro__content p { margin-bottom: 16px; }

/* =========================================
   WHY VRX / FEATURE CARDS
   ========================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(44,155,215,0.2);
}

.card__icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary);
}

.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { font-size: 14px; line-height: 1.7; }

/* =========================================
   LOCATION
   ========================================= */
#location .location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.location__map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #ffffff;
}

.location__map img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.location__map-overlay {
  /* position: absolute; */
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  display: none;
}

.map-pin {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 16px rgba(44,155,215,0.50);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-pin svg { transform: rotate(45deg); color: #fff; }

.location__highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 28px;
}

.location__highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
}

.location__highlight-item svg { color: var(--primary); flex-shrink: 0; }

/* =========================================
   CONFIGURATIONS
   ========================================= */
.config-cards {
  display: grid;
  /*grid-template-columns: repeat(2, 1fr);*/
  gap: 28px;
  max-width: 780px;
  margin: 0 auto;
}

.config-cta {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.config-cta .btn {
  flex: 0 0 auto;
  min-width: 150px;
  text-align: center;
}

.config-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.config-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.config-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.config-card:hover::before { transform: scaleX(1); }

.config-card__type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.config-card h3 { font-size: 34px; margin-bottom: 4px; }
.config-card p { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }

/* =========================================
   AMENITIES
   ========================================= */
.amenities__highlight {
  background: linear-gradient(135deg, var(--primary) 0%, #1e7ab5 100%);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  box-shadow: 0 12px 40px rgba(44,155,215,0.35);
}

.amenities__highlight-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.amenities__highlight h3 { font-size: 28px; color: #fff; margin-bottom: 6px; }
.amenities__highlight p { color: rgba(255,255,255,0.80); font-size: 15px; }

/* Amenities carousel */
.amenities-carousel {
  position: relative;
  padding: 0 52px;
}

.amenities-carousel__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 28px;
  overscroll-behavior-x: contain;
}

.amenities-carousel__track::-webkit-scrollbar {
  display: none;
}

/* ─── Image + Text Card ─── */
.amenity-card {
  flex: 0 0 calc(25% - 15px);
  min-width: calc(25% - 15px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--bg-white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.amenity-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 28px rgba(82,181,73,0.18);
  transform: translateY(-4px);
}

/* Image area */
.amenity-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.amenity-card__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Unique gradient per card */
.amenity-card__img--1 { background: linear-gradient(135deg, #52B549 0%, #2d7a26 100%); }
.amenity-card__img--2 { background: linear-gradient(135deg, #10b981 0%, #047857 100%); }
.amenity-card__img--3 { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
.amenity-card__img--4 { background: linear-gradient(135deg, #84cc16 0%, #4d7c0f 100%); }
.amenity-card__img--5 { background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%); }
.amenity-card__img--6 { background: linear-gradient(135deg, #8b5cf6 0%, #5b21b6 100%); }
.amenity-card__img--7 { background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%); }
.amenity-card__img--8 { background: linear-gradient(135deg, #64748b 0%, #334155 100%); }
.amenity-card__img--9 { background: linear-gradient(135deg, #0f766e 0%, #134e4a 100%); }

.amenity-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.18) 100%);
  pointer-events: none;
}

.amenity-card__img > svg {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
  transition: transform 0.3s ease;
}

.amenity-card:hover .amenity-card__img > svg {
  transform: scale(1.12);
}

/* Text area */
.amenity-card__body {
  padding: 18px 20px 20px;
}

.amenity-card__body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.amenity-card__body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
}

/* Carousel arrows */
.amenities-carousel__prev,
.amenities-carousel__next {
  position: absolute;
  top: calc(50% - 14px); /* offset for dots below */
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-white);
  color: var(--text-mid);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.amenities-carousel__prev { left: 0; }
.amenities-carousel__next { right: 0; }

.amenities-carousel__prev:hover,
.amenities-carousel__next:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

/* Carousel dots */
.amenities-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.amenities-carousel__dot {
  width: 24px;
  height: 6px;
  border-radius: 3px;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.amenities-carousel__dot.is-active {
  background: var(--primary);
  width: 36px;
}

.amenities-carousel__dot:hover:not(.is-active) {
  background: #aab4be;
}

/* =========================================
   LIFESTYLE / DESIGN SECTION
   ========================================= */
#lifestyle {
  position: relative;
  overflow: hidden;
  background: #0f1c2a;
  padding: 100px 0;
}

#lifestyle::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,20,35,0.75) 0%, rgba(10,20,35,0.45) 100%),
    url('https://images.unsplash.com/photo-1582268611958-ebfd161ef9cf?w=1600&q=80') center/cover no-repeat;
}

.lifestyle__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.lifestyle__content .section-tag { color: #7dd3f5; }
.lifestyle__content h2 { color: #fff; margin-bottom: 16px; }
.lifestyle__content p { color: rgba(255,255,255,0.65); margin-bottom: 16px; }

.lifestyle__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 32px;
}

.lifestyle__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.80);
  font-size: 15px;
}

.lifestyle__feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.lifestyle__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lifestyle__stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.lifestyle__stat-num {
  font-family: 'Georgia', serif;
  font-size: 36px;
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.lifestyle__stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* =========================================
   HIGHLIGHTS
   ========================================= */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}

.highlight-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.highlight-card__num {
  font-family: 'Georgia', serif;
  font-size: 42px;
  color: var(--primary);
  display: block;
  margin-bottom: 4px;
}

.highlight-card__label { font-size: 14px; color: var(--text-light); }


/* =========================================
   FLOOR PLANS
   ========================================= */
#floor-plans {
  background: #ffffff;
}

.floor-plans__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 40px;
}

.floor-plan-card {
  background: #ffffff;
  /* border-radius: 18px; */
  padding: 18px 18px 22px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floor-plan-card__media {
  position: relative;
  width: 100%;
  border-radius: 0px;
  overflow: hidden;
  background: #0f172a;
}

.floor-plan-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  transform: scale(1.02);
  opacity: 0.9;
  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
}

.floor-plan-card__cta {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 10px 24px;
  border-radius: 0px;
  border: none;
  background: var(--primary);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.5);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.floor-plan-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  /* border-radius: inherit; */
  background: linear-gradient(to bottom right, rgba(15,23,42,0.75), rgba(15,23,42,0.2));
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.floor-plan-card:hover .floor-plan-card__media img {
  filter: blur(1px);
  transform: scale(1.04);
  opacity: 1;
}

.floor-plan-card:hover .floor-plan-card__media::before {
  opacity: 0.35;
}

.floor-plan-card:hover .floor-plan-card__cta {
  background: #ffffff;
  color: var(--primary);
  transform: translate(-50%, -50%) translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
}

.floor-plan-card__title {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  text-align: center;
}

@media (max-width: 1024px) {
  .floor-plans__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .floor-plans__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   DEVELOPER TRUST
   ========================================= */
#developer {
  background: var(--bg-grey);
}

.developer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.developer__trust-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.developer__trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.developer__trust-item svg { color: var(--primary); flex-shrink: 0; }

.developer__trust-item strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.developer__trust-item span {
  font-size: 13px;
  color: var(--text-light);
}

.developer__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.developer__image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* =========================================
   CTA / BOOKINGS
   ========================================= */
#bookings {
  background: linear-gradient(135deg, #0a1423 0%, #0f2035 100%);
  padding: 100px 0;
  text-align: center;
}

#bookings .section-tag { color: #7dd3f5; }
#bookings h2 { color: #fff; margin-bottom: 16px; }
#bookings > .container > p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 16px; }

.bookings__note {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  font-style: italic;
  margin-bottom: 36px !important;
}

.bookings__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   FINAL LEAD FORM
   ========================================= */
#contact {
  background: var(--bg-grey);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contact__info h2 { margin-bottom: 16px; }
.contact__info p { margin-bottom: 24px; }

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-mid);
}

.contact__detail svg { color: var(--primary); flex-shrink: 0; }

.contact__form-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.contact__form-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.contact__form-card .sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
}

/* =========================================
   FOOTER
   ========================================= */
#footer {
  background: #111111;
  /* padding: 64px 0 0; */
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .logo__brand { color: #fff; font-size: 20px; margin-bottom: 14px; display: block; }

.footer__brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--primary); }

.footer__rera {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer__rera strong { color: rgba(255,255,255,0.70); }

.footer__bottom {
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  line-height: 1.7;
  flex: 1;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
  padding-top: 2px;
}

/* Simple footer — single line, centered (kept for reference) */
#footer.footer--simple {
  padding: 20px 0;
  background: #0f1c2a;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* =========================================
   COMPLIANCE FOOTER
   ========================================= */
#footer.footer--compliance {
  background: radial-gradient(circle at top, #0f172a 0%, #020617 60%);
  border-top: 3px solid var(--primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── Project Info Bar ── */
.footer__info-bar {
  background: transparent;
  padding: 32px 0 28px;
  border-bottom: 1px solid rgba(148,163,184,0.25);
}

.footer__info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  justify-content: space-between;
}

.footer__info-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 160px;
  margin-bottom: 20px;
}

.footer__info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.footer__info-value {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  line-height: 1.4;
}

.footer__info-value--rera {
  color: var(--primary);
  font-size: 12px;
  letter-spacing: 0.03em;
}

.footer__info-value a {
  color: #60b8ff;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__info-value a:hover {
  color: #90d0ff;
  text-decoration: underline;
}

/* ── Disclaimer Bar ── */
.footer__disclaimer-bar {
  background: rgba(15,23,42,0.96);
  padding: 26px 0 24px;
  border-top: 1px solid rgba(15,23,42,1);
  border-bottom: 1px solid rgba(15,23,42,1);
}

.footer__disclaimer-text {
  font-size: 12px;
  color: rgba(209,213,219,0.85);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 1080px;
}

.footer__disclaimer-text strong {
  color: #e5e7eb;
  font-weight: 600;
}

.footer__tnrera-notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(15,23,42,0.9);
  border-radius: 6px;
  border: 1px solid rgba(251,191,36,0.28);
  padding: 14px 18px;
  box-shadow: 0 10px 30px rgba(15,23,42,0.8);
}

.footer__tnrera-icon {
  font-size: 16px;
  color: #fbbf24;
  flex-shrink: 0;
  line-height: 1.5;
}

.footer__tnrera-notice p {
  font-size: 12px;
  color: rgba(249,250,251,0.85);
  line-height: 1.7;
  margin: 0;
}

.footer__tnrera-notice p strong {
  color: #fbbf24;
  font-weight: 600;
}

/* ── Bottom Bar ── */
.footer__bottom-bar {
  background: #070f18;
  padding: 16px 0;
}

.footer__bottom-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__bottom-bar .footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  margin: 0;
  white-space: nowrap;
}

.footer__bottom-bar .footer__credit {
  font-size: 12px;
  color: rgba(255,255,255,0.30);
  margin: 0;
}

.footer__bottom-bar .footer__credit a {
  color: #fbbf24;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__bottom-bar .footer__credit a:hover {
  color: #fcd34d;
  text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .footer__info-bar { padding: 28px 0 8px; }

  .footer__info-grid { flex-direction: column; gap: 0; }

  .footer__info-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0 0 16px;
    margin: 0 0 16px;
  }

  .footer__info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .footer__bottom-bar .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* =========================================
   RESPONSIVE — TABLET (≤ 1024px)
   ========================================= */
@media (max-width: 1024px) {
  .hero__inner {
   
  }
  .hero__form-card { max-width: 480px; }

  .intro__grid,
  .location__grid,
  .developer__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }

  .lifestyle__inner { grid-template-columns: 1fr; gap: 40px; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  /* Amenities: 2 cards visible on tablet */
  .amenity-card { flex: 0 0 calc(50% - 10px); min-width: calc(50% - 10px); }
  .amenities-carousel { padding: 0 48px; }

  .footer__grid { grid-template-columns: 1fr 1fr; }

  .trust-bar__inner { flex-wrap: wrap; }
  .trust-bar__item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* =========================================
   RESPONSIVE — TABLET 768px
   ========================================= */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  #hero{
    display: none !important;
  }
  section { padding: 64px 0; }

  #hero {
    min-height: 60vh;
    padding: 0;
  }

  .hero__inner {
   
  }

  .hero__form-card {
    margin: 0 auto;
  }

   .sticky-cta {
     width: 44px;
     min-height: 160px;
     padding: 20px 8px;
   }
   .sticky-cta__text {
     font-size: 12px;
   }

  .header__nav { display: none; }
  .hamburger { display: flex; }

  .cards-grid { grid-template-columns: 1fr; }
  .config-cards { grid-template-columns: 1fr; max-width: 380px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }

  .amenities__highlight { flex-direction: column; text-align: center; padding: 28px 24px; }

  /* Amenities carousel: 1 card on mobile */
  .amenities-carousel { padding: 0 40px; }
  .amenity-card { flex: 0 0 100%; min-width: 100%; }

  .lifestyle__stats { grid-template-columns: repeat(2, 1fr); }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================================
   RESPONSIVE — MOBILE (≤ 480px)
   ========================================= */
@media (max-width: 480px) {
  section { padding: 48px 0; }
  .container { padding: 0 16px; }

  h1 { font-size: 30px; }
  h2 { font-size: 26px; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }

  .hero__trust { flex-direction: column; gap: 14px; }

  .highlights-grid { grid-template-columns: 1fr; }

  .amenities-carousel { padding: 0 36px; }

  .trust-bar__item { flex: 1 1 100%; }

  .bookings__actions { flex-direction: column; align-items: center; }
  .bookings__actions .btn { width: 100%; max-width: 320px; }

  .contact__form-card { padding: 24px 18px; }

  .footer__bottom { flex-direction: column; gap: 12px; }

  .config-cta {
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1500px;
  }
}


@media (max-width: 768px) {
  #intro .intro__grid{
    display: flex;
    flex-direction: column;
  }
  #location .location__grid{
    display: flex;
    flex-direction: column;
  }
}
/* =========================================
   GALLERY CAROUSEL
   ========================================= */
#gallery {
  padding: 80px 0;
  background: var(--bg-white);
}

.gallery-carousel {
  position: relative;
  padding: 0 52px;
  margin-top: 40px;
}

.gallery-carousel__wrapper {
  overflow: hidden;
}

.gallery-carousel__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px 4px 28px;
  overscroll-behavior-x: contain;
}

.gallery-carousel__track::-webkit-scrollbar {
  display: none;
}

/* Each gallery item — desktop: 4 per view, mobile: 1 per view */
.gallery-item {
  flex: 0 0 calc(33.333% - 12px);
  min-width: calc(33.333% - 12px);
  scroll-snap-align: start;
}

.gallery-item__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eee;
  cursor: zoom-in;
}

.gallery-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item__img:hover img {
  transform: scale(1.06);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item__img:hover .gallery-item__overlay {
  opacity: 1;
}

.gallery-item__overlay span {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Prev / Next Buttons */
.gallery-carousel__prev,
.gallery-carousel__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transition: var(--transition);
}

.gallery-carousel__prev:hover,
.gallery-carousel__next:hover {
  background: var(--primary);
  color: #fff;
}

.gallery-carousel__prev {
  left: -24px;
}

.gallery-carousel__next {
  right: -24px;
}

.gallery-carousel__prev:disabled,
.gallery-carousel__next:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* Dots */
.gallery-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.gallery-carousel__dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.gallery-carousel__dots .dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* Mobile: 1 image per view */
@media (max-width: 767px) {
  .gallery-item {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .gallery-carousel__prev {
    left: -8px;
  }

  .gallery-carousel__next {
    right: -8px;
  }

  .gallery-carousel__prev,
  .gallery-carousel__next {
    width: 38px;
    height: 38px;
  }
}

/* =========================================
   THANK YOU PAGE BUTTON
   ========================================= */
.ty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 0;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ty-btn--primary {
  background: linear-gradient(135deg, #52B549 0%, #3f8d38 100%);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(63, 141, 56, 0.35);
}

.ty-btn--primary:hover {
  background: linear-gradient(135deg, #4aa344 0%, #366f31 100%);
  transform: translateY(-1px);
  box-shadow: 0 14px 38px rgba(63, 141, 56, 0.45);
}

.ty-btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 20px rgba(63, 141, 56, 0.3);
}

.ty-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ty-btn__icon svg {
  display: block;
}

@media (max-width: 480px) {
  .ty-btn {
    width: 100%;
    max-width: 260px;
  }
}

/* =========================================
   GALLERY LIGHTBOX (POPUP + ZOOM)
   ========================================= */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.85));
}

.gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  max-height: 90vh;
  margin: 16px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.45);
  display: flex;
  flex-direction: column;
  padding: 20px 20px 16px;
}

.gallery-lightbox__close {
  position: absolute;
  top: 10px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.06);
  color: #0f172a;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox__close:hover {
  background: rgba(15, 23, 42, 0.12);
}

.gallery-lightbox__viewport {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  border-radius: 8px;
  overflow: hidden;
  background: radial-gradient(circle at top, #f3f4f6 0%, #e5e7eb 55%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  transform-origin: center center;
  transition: transform 0.2s ease-out;
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
  display: block;
}

.gallery-lightbox__img.zoomed {
  cursor: zoom-out;
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.gallery-lightbox__nav--prev {
  left: 10px;
}

.gallery-lightbox__nav--next {
  right: 10px;
}

.gallery-lightbox__nav svg {
  width: 22px;
  height: 22px;
}

.gallery-lightbox__nav:hover {
  background: rgba(34, 197, 94, 0.9);
  color: #fff;
}

.gallery-lightbox__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: #e5e7eb;
  font-size: 13px;
}

.gallery-lightbox__zoom-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gallery-lightbox__zoom-btn {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox__zoom-btn:hover {
  background: rgba(34, 197, 94, 0.9);
  border-color: rgba(34, 197, 94, 1);
}

.gallery-lightbox__zoom-label {
  font-size: 12px;
  color: #9ca3af;
}

.gallery-lightbox__caption {
  flex: 1;
  text-align: right;
  font-size: 13px;
  color: #d1d5db;
}

@media (max-width: 768px) {
  .gallery-lightbox__dialog {
    padding: 14px 12px 10px;
  }

  .gallery-lightbox__nav {
    width: 38px;
    height: 38px;
  }
}

/* Tablet: 2 images per view */
@media (min-width: 768px) and (max-width: 1023px) {
  .gallery-item {
    flex: 0 0 calc(50% - 8px);
    min-width: calc(50% - 8px);
  }
}

@media (max-width: 768px) {
  .location__map.fade-up.visible {
    width: 350px !important;
}

}


/* MOBILE STICKY FOOTER */

.mobile-sticky-footer{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  z-index: 9999;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.mobile-sticky-footer a,
.mobile-sticky-footer button{
  width: 50%;
  padding: 14px 10px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  border: none;
  color: white;
  text-decoration: none;
}

.sticky-call{
  background: #0f8a44;
}

.sticky-enquire{
  background: #17a34a;
}

/* ICON */
.mobile-sticky-footer .icon{
  margin-right: 6px;
}

/* HEARTBEAT ANIMATION */
@keyframes heartbeat{
0%{transform:scale(1);}
50%{transform:scale(1.05);}
100%{transform:scale(1);}
}

.heartbeat{
animation:heartbeat 2s ease-in-out infinite;
}

/* SHOW ONLY MOBILE */

@media (max-width:768px){

  .mobile-sticky-footer{
    display: flex;
  }

  body{
    padding-bottom:60px;
  }

}

.phone-flag-prefix .flag-emoji{
    display: none;
}

