:root {
  --gold: #B88A58;
  /* Premium Brushed Bronze */
  --gold-light: #F8EFE4;
  /* Warm Soft Bronze Cream */
  --gold-dark: #8C6339;
  /* Rich Copper Bronze */
  --black: #F7F5F0;
  /* Travertine Ivory background */
  --dark: #EDEAE3;
  /* Limestone Warm-Gray background */
  --dark2: #FFFFFF;
  /* Pure White card background */
  --dark3: #E2DDD5;
  /* Stone Border warm-gray */
  --white: #1F2022;
  /* Espresso Charcoal primary text */
  --cream: #F8EFE4;
  /* Soft Cream helper */
  --text-muted: #5E6066;
  /* Muted Slate Gray body text */
  --moss: #B88A58;
  /* Premium Brushed Bronze */
  --moss-light: #F8EFE4;
  /* Soft Moss background */
  --shadow: rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 45px rgba(184, 138, 88, 0.08), 0 5px 15px rgba(0, 0, 0, 0.02);
  --gold-shadow: rgba(184, 138, 88, 0.12);
  --glass-bg: rgba(247, 245, 240, 0.85);
  --glass-border: rgba(184, 138, 88, 0.18);

  /* Curved Parameters */
  --radius-lg: 24px;
  /* Cards and large containers */
  --radius-md: 16px;
  /* Smaller blocks, badges */
  --radius-sm: 12px;
  /* Countdown plates, minor items */
  --radius-pill: 50px;
  /* Pill shape for inputs & buttons */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  width: 100%;
  overflow-x: hidden;
}

/* ─── TYPOGRAPHY OVERRIDES ─── */
h1, h2, h3, h4, .form-title, .pricing-name, .payment-hero-text h2, .location-dist, .footer-logo, .header-logo {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
}

/* ─── STICKY HEADER ─── */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(247, 245, 240, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 138, 88, 0.15);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-logo {
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--gold-dark);
  line-height: 1.1;
}

.header-logo span {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--text-muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 2px;
}

.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(184, 138, 88, 0.22);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 25%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
}

.btn-primary:hover::after {
  left: 150%;
  transition: all 0.8s ease-in-out;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(184, 138, 88, 0.38);
  color: #FFFFFF;
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 26px;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  border-radius: var(--radius-pill);
}

.btn-outline:hover {
  background: rgba(184, 138, 88, 0.08);
  border-color: var(--gold-dark);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-text-mobile {
  display: none;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/image1.png');
  background-size: cover;
  background-position: center center;
  animation: heroZoom 24s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(247, 245, 240, 0.97) 0%,
      rgba(247, 245, 240, 0.85) 45%,
      rgba(247, 245, 240, 0.2) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 150px 40px 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1.2s ease both;
}

.hero-form-wrapper {
  position: relative;
  z-index: 2;
  animation: fadeUp 1.4s ease both;
}

.hero-form-wrapper .lead-form {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(184, 138, 88, 0.2);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--gold-dark);
  display: inline-block;
  border-radius: 2px;
}

.hero-eyebrow span {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(52px, 6.5vw, 88px);
  font-weight: 800;
  line-height: 0.95;
  margin-bottom: 12px;
  color: var(--white);
  letter-spacing: -2px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300 !important;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 600;
}

.hero-price-badge {
  background: rgba(184, 138, 88, 0.06);
  border: 1px solid rgba(184, 138, 88, 0.25);
  padding: 22px 30px;
  display: inline-block;
  margin-bottom: 34px;
  position: relative;
  border-radius: var(--radius-md);
}

.hero-price-badge::before {
  content: 'INAUGURAL OFFER';
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--gold-dark);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.price-old {
  font-size: 18px;
  color: #888;
  text-decoration: line-through;
}

.price-new {
  font-size: 54px;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
  letter-spacing: -1px;
}

.price-new span {
  font-size: 24px;
}

.price-psf {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  align-self: flex-end;
  padding-bottom: 8px;
  font-weight: 600;
}

.hero-savings {
  font-size: 12px;
  color: var(--moss);
  margin-top: 10px;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
}

.stat {
  text-align: left;
}

.stat-val {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: -1px;
}

.stat-label {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 700;
}

/* ─── COUNTDOWN BANNER ─── */
.countdown-banner {
  background: var(--dark);
  border-top: 1px solid rgba(184, 138, 88, 0.15);
  border-bottom: 1px solid rgba(184, 138, 88, 0.15);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  z-index: 10;
  position: relative;
}

.countdown-label {
  color: var(--gold-dark);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 800;
}

.countdown-timer {
  display: flex;
  gap: 14px;
  align-items: center;
}

.cd-unit {
  text-align: center;
}

.cd-num {
  background: #FFFFFF;
  color: var(--gold-dark);
  border: 1px solid rgba(184, 138, 88, 0.2);
  font-size: 30px;
  font-weight: 800;
  padding: 6px 16px;
  min-width: 56px;
  display: block;
  line-height: 1;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.cd-lbl {
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 6px;
}

.cd-sep {
  font-size: 24px;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
}

/* ─── SECTION BASE ─── */
section {
  padding: 100px 60px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-eyebrow span {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
}

.section-title {
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.section-title em {
  font-style: italic;
  font-weight: 300 !important;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ─── WHY NOW ─── */
.why-now {
  background: var(--dark);
  padding: 100px 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.urgency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: transparent;
  border: none;
  margin-top: 50px;
}

.urgency-card {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius-lg);
  padding: 38px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.urgency-card:hover {
  background: #FFFFFF;
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.urgency-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(184, 138, 88, 0.15);
}

.urgency-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.urgency-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ─── PRICING ─── */
.pricing-section {
  background: var(--black);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pricing-card {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(184, 138, 88, 0.12);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}

.pricing-card-header {
  background: linear-gradient(135deg, rgba(184, 138, 88, 0.04) 0%, rgba(184, 138, 88, 0) 100%);
  border-bottom: 1px solid var(--dark3);
  padding: 32px;
}

.pricing-type {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.pricing-name {
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
}

.pricing-size {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.pricing-card-body {
  padding: 32px;
}

.pricing-from {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 600;
}

.pricing-amount {
  font-size: 46px;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
  letter-spacing: -1.5px;
}

.pricing-amount span {
  font-size: 22px;
}

.pricing-range {
  font-size: 12.5px;
  color: var(--gold-dark);
  margin-top: 8px;
  margin-bottom: 24px;
  font-weight: 700;
}

.pricing-features {
  list-style: none;
}

.pricing-features li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 13.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li::before {
  content: '◆';
  color: var(--gold);
  font-size: 8px;
  flex-shrink: 0;
}

/* ─── PAYMENT PLAN ─── */
.payment-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.payment-section::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(184, 138, 88, 0.05) 0%, transparent 70%);
  pointer-events: none;
  transform: translateY(-50%);
}

.payment-hero {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  padding: 36px 44px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(184, 138, 88, 0.15);
}

.payment-hero-text h2 {
  font-size: 42px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -1.5px;
}

.payment-hero-text p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 8px;
  font-weight: 700;
}

.payment-only-10 {
  text-align: right;
}

.payment-only-10 .big {
  font-size: 72px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 0.9;
  letter-spacing: -2px;
}

.payment-only-10 .small {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.payment-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-step {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.payment-step:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(184, 138, 88, 0.08);
}

.step-num {
  width: 44px;
  height: 44px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-dark);
  flex-shrink: 0;
  background: var(--gold-light);
  box-shadow: 0 4px 10px rgba(184, 138, 88, 0.1);
}

.step-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-desc strong {
  display: block;
  color: var(--white);
  font-size: 15.5px;
  margin-bottom: 4px;
  font-weight: 700;
}

.step-pct {
  font-size: 34px;
  font-weight: 800;
  color: var(--gold-dark);
  white-space: nowrap;
  letter-spacing: -1px;
}

/* ─── GALLERY ─── */
.gallery-section {
  background: var(--black);
  padding: 100px 0;
}

.gallery-header {
  padding: 0 60px 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 16px;
  padding: 0 40px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(247, 245, 240, 0.96));
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ─── DOWNLOADS ─── */
.downloads-section {
  background: var(--black);
  padding: 100px 60px;
}

/* ─── DOWNLOADS SECTION ROW LAYOUT ─── */
.downloads-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.downloads-left {
  text-align: left;
}

.downloads-left .section-title {
  margin-top: 12px;
  margin-bottom: 24px;
}

.downloads-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  font-family: 'Plus Jakarta Sans', sans-serif;
  max-width: 540px;
}

.downloads-right {
  display: flex;
  justify-content: center;
  width: 100%;
}

.downloads-right .download-card {
  width: 100%;
  max-width: 440px;
  margin: 0;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.download-card {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius-lg);
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.download-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.download-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(184, 138, 88, 0.12);
}

.download-meta {
  margin-bottom: 28px;
}

.download-meta h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.download-meta p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.file-size {
  display: inline-block;
  background: var(--dark);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.download-card .btn-primary {
  width: 100%;
  text-align: center;
}

/* ─── AMENITIES ─── */
.amenities-section {
  background: var(--dark);
  padding: 100px 60px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  background: transparent;
  border: none;
  margin-top: 50px;
}

.amenity-item {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.amenity-item:hover {
  background: #FFFFFF;
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.amenity-icon {
  font-size: 30px;
  margin-bottom: 12px;
  filter: drop-shadow(0 2px 6px rgba(184, 138, 88, 0.15));
}

.amenity-name {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
  font-weight: 700;
}

/* ─── LOCATION ─── */
.location-section {
  background: var(--black);
  padding: 100px 60px;
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-image {
  height: 480px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 138, 88, 0.25);
  box-shadow: var(--shadow-lg);
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.location-dist {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold-dark);
  min-width: 80px;
  line-height: 1;
  letter-spacing: -0.5px;
}

.location-info strong {
  display: block;
  font-size: 14.5px;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 700;
}

.location-info span {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ─── LEAD FORM SECTION ─── */
.form-section {
  background: var(--dark);
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: 'SKYNEST';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 180px;
  font-weight: 800;
  color: rgba(184, 138, 88, 0.03);
  letter-spacing: 10px;
  pointer-events: none;
  white-space: nowrap;
}

.form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-left h2 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.form-left h2 em {
  font-style: italic;
  font-weight: 300 !important;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.form-left p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
}

.offer-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer-badge {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--dark2);
  border: 1px solid var(--dark3);
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.offer-badge:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(184, 138, 88, 0.06);
}

.offer-badge-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(184, 138, 88, 0.12);
}

.offer-badge-text strong {
  display: block;
  font-size: 13.5px;
  color: var(--gold-dark);
  margin-bottom: 4px;
  font-weight: 700;
}

.offer-badge-text span {
  font-size: 11.5px;
  color: var(--text-muted);
}

.lead-form {
  background: var(--dark2);
  border: 1px solid var(--dark3);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 26px;
  color: var(--gold-dark);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 700;
}

.form-group input,
.form-group select {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--dark3);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  padding: 15px 24px;
  outline: none;
  transition: all 0.3s ease;
  border-radius: var(--radius-pill);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: #FFFFFF;
  box-shadow: 0 0 0 2px rgba(184, 138, 88, 0.15);
}

.form-group select option {
  background: #FFFFFF;
  color: var(--white);
}

.form-group input::placeholder {
  color: #aaa;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 18px 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 8px;
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(184, 138, 88, 0.25);
}

.btn-submit::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 25%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
}

.btn-submit:hover::after {
  left: 150%;
  transition: all 0.8s ease-in-out;
}

.btn-submit:hover {
  box-shadow: 0 12px 30px rgba(184, 138, 88, 0.42);
  transform: translateY(-2px);
  color: #FFFFFF;
}

.form-disclaimer {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--black);
  padding: 30px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-weight: 600;
}

/* ─── FOOTER ─── */
footer {
  background: #1F2022;
  padding: 40px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-logo {
  font-size: 20px;
  color: var(--gold);
  letter-spacing: 1px;
}

.footer-text {
  font-size: 10.5px;
  color: #8E9096;
  letter-spacing: 1px;
  font-weight: 500;
}

.footer-disclaimer {
  font-size: 10px;
  color: #7E8086;
  text-align: center;
  padding: 24px 60px;
  background: #1F2022;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  animation: bounce 2.2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  animation: none;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ─── RIBBON ─── */
.ribbon {
  position: absolute;
  top: 18px;
  right: -28px;
  background: var(--gold-dark);
  color: #FFFFFF;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 36px;
  transform: rotate(45deg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ─── TOAST NOTIFICATION SYSTEM ─── */
#toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: 380px;
  width: 100%;
}

.toast {
  pointer-events: auto;
  background: #FFFFFF !important;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white) !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  border: 1px solid rgba(184, 138, 88, 0.25);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  opacity: 0;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.hide {
  transform: translateY(-20px);
  opacity: 0;
}

.toast-success {
  border-left: 5px solid var(--moss) !important;
}

.toast-error {
  border-left: 5px solid #D32F2F !important;
}

.toast-info {
  border-left: 5px solid var(--gold) !important;
}

.toast-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-message {
  flex-grow: 1;
}

.toast-close {
  background: transparent;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  padding: 0;
  margin-left: 8px;
  transition: color 0.2s;
}

.toast-close:hover {
  color: var(--white);
}

/* ─── POPUP MODAL ─── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 10, 13, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 40px 20px;
}

.popup-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.popup-content {
  background: var(--dark2);
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 138, 88, 0.25);
  margin: auto;
}

.popup-overlay.show .popup-content {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  z-index: 10;
}

.popup-close:hover {
  color: var(--white);
}

/* ─── FLOATING SIDEBAR DRAWER ─── */
.sidebar-trigger {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1005;
  background: var(--gold-dark);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  padding: 22px 10px;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  cursor: pointer;
  box-shadow: -4px 0 20px rgba(184, 138, 88, 0.2);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sidebar-trigger:hover {
  background: var(--gold);
  padding-right: 16px;
  box-shadow: -6px 0 25px rgba(184, 138, 88, 0.35);
}

.sidebar-trigger .trigger-icon {
  transform: rotate(90deg);
  display: inline-block;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(9, 10, 13, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1900; /* below popup-overlay (2000) so popup is on top */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.sidebar-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.sidebar-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100%;
  background: var(--black);
  border-left: 1px solid var(--glass-border);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.1);
  z-index: 1910;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.sidebar-overlay.show .sidebar-drawer {
  transform: translateX(0);
}

.sidebar-header {
  padding: 30px;
  border-bottom: 1px solid rgba(184, 138, 88, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-header h2 {
  font-size: 22px;
  color: var(--white);
  line-height: 1.2;
}

.sidebar-header h2 em {
  font-style: italic;
  font-weight: 300 !important;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.sidebar-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.sidebar-close:hover {
  background: rgba(184, 138, 88, 0.08);
  color: var(--white);
}

.sidebar-content {
  flex: 1;
  overflow-y: auto;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sidebar-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 8px;
}

.sidebar-card {
  background: var(--dark2);
  border: 1px solid rgba(184, 138, 88, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sidebar-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184, 138, 88, 0.35);
}

.sidebar-card-info {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sidebar-card-icon {
  font-size: 24px;
  line-height: 1;
  padding: 10px;
  background: var(--gold-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-card-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sidebar-card-details h3 {
  font-size: 15px;
  color: var(--white);
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700;
}

.sidebar-card-details p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

.sidebar-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-card-size {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.sidebar-card .btn-primary {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  font-size: 10.5px;
  letter-spacing: 1.5px;
}

@media (max-width: 900px) {
  .sidebar-drawer {
    width: 360px;
  }
}

@media (max-width: 480px) {
  .sidebar-drawer {
    width: 100%;
    border-radius: 0;
  }
  .sidebar-header {
    padding: 20px;
  }
  .sidebar-content {
    padding: 20px;
    gap: 16px;
  }
/* ─── COMPACT DOWNLOAD MODAL ─── */
.download-popup-content {
  max-width: 380px !important;
  border-radius: var(--radius-lg) !important;
  border: 1px solid rgba(184, 138, 88, 0.3) !important;
  box-shadow: 0 15px 40px rgba(184, 138, 88, 0.15) !important;
}

.download-lead-form {
  padding: 24px 20px !important;
}

.download-lead-form .form-title {
  font-size: 18px !important;
  margin-bottom: 6px !important;
  text-align: center;
  color: var(--white);
}

.download-lead-form .form-subtitle {
  font-size: 12px !important;
  color: var(--text-muted);
  margin-bottom: 20px !important;
  line-height: 1.4 !important;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.download-lead-form .form-group {
  margin-bottom: 14px !important;
}

.download-lead-form .form-group label {
  font-size: 11px !important;
  margin-bottom: 6px !important;
  color: var(--white);
}

.download-lead-form .form-group input {
  padding: 12px 18px !important;
  font-size: 13px !important;
  border-radius: var(--radius-pill) !important;
}

.download-lead-form .btn-submit {
  padding: 12px 24px !important;
  font-size: 12px !important;
  margin-top: 6px !important;
  border-radius: var(--radius-pill) !important;
  width: 100% !important;
}

.download-lead-form .form-disclaimer {
  font-size: 9px !important;
  margin-top: 10px !important;
  line-height: 1.3 !important;
  color: var(--text-muted);
  text-align: center;
}

/* ─── MOBILE RESPONSIVENESS ─── */
@media (max-width: 900px) {
  .sticky-header {
    padding: 12px 20px;
  }

  .header-logo {
    font-size: 18px;
    letter-spacing: 1px;
  }

  .header-logo span {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .sticky-header .btn-primary,
  .sticky-header .btn-outline {
    font-size: 10px;
    padding: 8px 16px;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .btn-text-desktop {
    display: none;
  }

  .btn-text-mobile {
    display: inline;
  }

  section {
    padding: 60px 20px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 110px 20px 40px;
  }

  .hero-content {
    padding: 0;
  }

  .gallery-header {
    padding: 0 20px 30px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    padding: 0 10px;
    gap: 10px;
  }

  .gallery-item:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
    height: 280px;
  }

  .gallery-item {
    height: 200px;
  }

  .form-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .payment-only-10 .big {
    font-size: 54px;
  }

  footer {
    padding: 30px 20px;
  }

  .footer-disclaimer {
    padding: 18px 20px;
  }

  .trust-bar {
    padding: 24px 20px;
    gap: 24px;
  }

  .form-section {
    padding: 60px 20px;
  }

  .form-section::before {
    display: none;
  }

  .lead-form {
    padding: 32px 24px;
  }

  .why-now {
    padding: 60px 20px;
  }

  .urgency-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 36px;
  }

  .urgency-card {
    padding: 28px 24px;
  }

  .downloads-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .downloads-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .downloads-desc {
    max-width: 100%;
  }

  .downloads-right {
    justify-content: center;
  }

  .downloads-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 36px;
    width: 100%;
  }

  .download-card {
    padding: 30px 24px;
    width: 100%;
  }

  .amenities-section {
    padding: 60px 20px;
  }

  .amenities-grid {
    gap: 12px;
    margin-top: 36px;
  }

  .amenity-item {
    padding: 24px 16px;
  }

  .location-section {
    padding: 60px 20px;
  }

  .location-image {
    height: 300px;
  }

  .countdown-banner {
    padding: 16px 20px;
    gap: 20px;
  }

  .payment-section {
    padding: 60px 20px;
  }

  .pricing-section {
    padding: 60px 20px;
  }

  .payment-step {
    grid-template-columns: 50px 1fr 60px;
    gap: 16px;
    padding: 16px 20px;
  }

  .form-group input,
  .form-group select {
    font-size: 16px !important;
  }

  .download-lead-form .form-group input {
    font-size: 16px !important;
  }

  #toast-container {
    top: 24px;
    bottom: auto;
    right: 0;
    left: 0;
    padding: 0 20px;
    max-width: 100%;
  }

  .toast {
    transform: translateY(-120%);
  }

  .toast.show {
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .urgency-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .payment-step {
    grid-template-columns: 36px 1fr auto;
    gap: 12px;
    padding: 12px 14px;
  }
  .step-num {
    width: 30px;
    height: 30px;
    line-height: 28px;
    font-size: 13px;
  }
  .step-pct {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: clamp(34px, 10vw, 42px) !important;
    line-height: 1.1 !important;
  }
  .hero-sub {
    font-size: 11px !important;
    letter-spacing: 2px !important;
  }
  .price-new {
    font-size: 40px !important;
  }
  .price-new span {
    font-size: 20px !important;
  }
  .sidebar-trigger {
    position: fixed !important;
    bottom: 80px !important;
    right: 16px !important;
    top: auto !important;
    transform: none !important;
    z-index: 999 !important;
    background: var(--gold) !important;
    color: #FFFFFF !important;
    border: none !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    box-shadow: 0 8px 24px rgba(184, 138, 88, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    font-size: 0 !important;
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    gap: 0 !important;
  }
  .sidebar-trigger:hover {
    background: var(--gold-dark) !important;
    padding: 0 !important;
    box-shadow: 0 10px 28px rgba(184, 138, 88, 0.45) !important;
  }
  .sidebar-trigger .trigger-icon {
    font-size: 20px !important;
    margin: 0 !important;
    transform: none !important;
  }
  .sidebar-trigger .sidebar-text {
    display: none !important;
  }
  /* Countdown Timer Mobile Scale */
  .countdown-timer {
    gap: 8px !important;
  }
  .cd-num {
    font-size: 22px !important;
    padding: 6px 10px !important;
    min-width: 46px !important;
  }
  .cd-sep {
    font-size: 18px !important;
    margin-bottom: 12px !important;
  }
  .cd-lbl {
    font-size: 7.5px !important;
    letter-spacing: 1px !important;
  }
  .whatsapp-float {
    bottom: 16px !important;
    right: 16px !important;
    width: 50px !important;
    height: 50px !important;
  }
  .whatsapp-float svg {
    width: 24px !important;
    height: 24px !important;
  }
}

@media (max-width: 380px) {
  .sticky-header {
    padding: 10px 12px;
  }
  .header-logo {
    font-size: 15px;
  }
  .header-actions {
    gap: 6px;
  }
  .sticky-header .btn-primary,
  .sticky-header .btn-outline {
    font-size: 9px;
    padding: 6px 10px;
    letter-spacing: 0.5px;
  }
}
