/* ══════════════════════════════════════════════
   DESIGN SYSTEM — Plants Daddy (Premium Dark Forest Spa)
   ══════════════════════════════════════════════ */

/* Force numeric characters to use DM Sans instead of Cormorant Garamond */
@font-face {
  font-family: 'NumFont';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhTg.ttf) format('truetype');
  unicode-range: U+0030-0039, U+20B9, U+002E, U+002C, U+002B, U+002D;
}

@font-face {
  font-family: 'NumFont';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhTg.ttf) format('truetype');
  unicode-range: U+0030-0039, U+20B9, U+002E, U+002C, U+002B, U+002D;
}

@font-face {
  font-family: 'NumFont';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthTg.ttf) format('truetype');
  unicode-range: U+0030-0039, U+20B9, U+002E, U+002C, U+002B, U+002D;
}

@font-face {
  font-family: 'NumFont';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/dmsans/v17/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthTg.ttf) format('truetype');
  unicode-range: U+0030-0039, U+20B9, U+002E, U+002C, U+002B, U+002D;
}

:root {
  /* Colors */
  --forest: #0F2D1C;
  --forest-2: #1B4332;
  --forest-3: #2D6A4F;
  --sage: #74A57F;
  --sage-l: #A8C5AF;
  --cream: #FAF6E8;
  --cream-d: #F0E9CF;
  --cream-dk: #DDD3B0;
  --gold: #C9A357;
  --gold-l: #E8CC8D;
  --bark: #8B6343;
  --ink: #0C1A0F;
  --white: #FFFFFF;
  --red-soft: #8B2635;

  /* Fonts */
  --font-display: 'NumFont', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;

  /* Transitions */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(0, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1299px;
  margin: 0 auto;
  padding: 0 24px;
}

@media(max-width:768px) {
  .container {
    padding: 0 20px;
  }
}

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

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

button {
  font-family: inherit;
}

/* ══════════ THIRD PARTY OVERRIDES ══════════ */
.flatpickr-calendar {
  max-width: 100vw !important;
}

@media(max-width:480px) {
  .flatpickr-calendar {
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto;
  }
  .iti { width: 100%; }
  .iti__country-list { width: 85vw !important; max-width: 320px; }
}

/* ══════════ REVEAL ANIMATION ══════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

/* ══════════ UTILITIES ══════════ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

/* ══════════ NAVBAR ══════════ */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #101C11;
  transition: all .3s var(--ease);
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.nav.scrolled {
  background: #101C11;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}

.nav-inner {
  max-width: 1299px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

@media(max-width:1024px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-mobile-toggle {
    display: block;
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity .2s;
}

.nav-logo:hover {
  opacity: 0.8;
}

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

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

.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #F3D06A;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--gold-l);
}

.nav-cta {
  background: linear-gradient(135deg, #FF7E5F, #FEB47B);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(255, 126, 95, 0.3);
  z-index: 1;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 126, 95, 0.4);
  background: linear-gradient(135deg, #FEB47B, #FF7E5F);
  color: #FFFFFF;
}

.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #101C11;
  padding: 10px 24px;
  gap: 0;
  border-bottom: 2px solid #F3D06A;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
  backdrop-filter: blur(15px);
  z-index: 99;
}

.nav-links.mobile-open li {
  width: 100%;
}

.nav-links.mobile-open a {
  display: block;
  padding: 18px 0;
  color: var(--white) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  font-size: 14px;
}

.nav-links.mobile-open a:hover {
  color: var(--gold-l) !important;
  padding-left: 8px;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #F3D06A;
  font-size: 28px;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.2s;
}

.nav-mobile-toggle:active {
  transform: scale(0.9);
}

@media(max-width:768px) {
  .nav-inner {
    height: 60px;
  }
  .nav-logo img {
    height: 50px !important;
  }
}

/* ══════════ HERO ══════════ */
.hero {
  min-height: 100vh;
  background: var(--forest);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(45, 106, 79, .5) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(27, 67, 50, .7) 0%, transparent 55%);
}

.hero-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.leaf-el {
  position: absolute;
  font-size: 180px;
  opacity: .05;
  line-height: 1;
  animation: floatLeaf 8s ease-in-out infinite;
}

.leaf-el:nth-child(1) {
  top: -40px;
  right: 5%;
  animation-delay: 0s;
  font-size: 250px;
  opacity: .04;
}

.leaf-el:nth-child(2) {
  bottom: 5%;
  left: -2%;
  animation-delay: 2s;
  font-size: 200px;
  opacity: .05;
  transform: rotate(30deg);
}

.leaf-el:nth-child(3) {
  top: 30%;
  right: 25%;
  animation-delay: 4s;
  font-size: 120px;
  opacity: .06;
  transform: rotate(-20deg);
}

@keyframes floatLeaf {

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

  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

@media(max-width:1024px) {
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-text-side {
    order: 2;
  }
  .hero-visual {
    order: 1;
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
}

@media(max-width:768px) {
  .hero-title {
    font-size: clamp(32px, 8vw, 48px);
  }
  .hero-img-frame img {
    height: 350px;
  }
}

/* SLIDER STYLES */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 500px;
}

.hero-slide {
  display: none;
  animation: slideFade 0.8s ease forwards;
}

.hero-slide.active {
  display: block;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(201, 163, 87, 0.5);
}

.hero-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--forest-2);
}

.hero-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 163, 87, .12);
  border: 1px solid rgba(201, 163, 87, .3);
  color: var(--gold-l);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 20px;
}

.hero-title em {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--sage-l);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-primary {
  background: #424a25;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 32px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all .2s;
}

.btn-primary:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 163, 87, .4);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 15px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all .2s;
}

.btn-whatsapp:hover {
  background: #1DB954;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold-l);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--sage-l);
  letter-spacing: .04em;
  margin-top: 4px;
}

.hero-visual {
  position: relative;
}

/* ══════════ DIVIDER ══════════ */
.divider-wave {
  background: var(--forest);
  line-height: 0;
}

.divider-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ══════════ TRUST BAR ══════════ */
.trust-bar {
  margin-top: -60px;
  position: relative;
  z-index: 20;
  padding-bottom: 60px;
}

.trust-floating-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 40px;
  box-shadow: 0 20px 50px rgba(15, 45, 28, 0.1);
  border: 1px solid var(--cream-dk);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: var(--cream-dk);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 24px;
  flex-shrink: 0;
  transition: all 0.3s;
}

.trust-item:hover .trust-icon {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-text strong {
  font-size: 14px;
  color: var(--forest);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
}

.trust-text span {
  font-size: 12px;
  color: var(--sage);
  font-weight: 500;
}

@media(max-width:1100px) {
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .trust-item:nth-child(2)::after {
    display: none;
  }
}

@media(max-width:600px) {
  .trust-bar {
    margin-top: -30px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .trust-item::after {
    display: none;
  }

  .trust-floating-card {
    padding: 24px;
  }
}

/* ══════════ HOME ABOUT SECTION ══════════ */
.home-about-section {
  padding: 120px 0 60px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}

.home-about-visual {
  position: relative;
  border-radius: 32px 0 0 32px;
  overflow: hidden;
  height: 600px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.home-about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.home-about-visual:hover img {
  transform: scale(1.05);
}

.home-about-badge {
  position: absolute;
  bottom: 40px;
  right: 10px;
  background: var(--white);
  padding: 24px 32px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

.hab-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.hab-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.3;
}

.hab-text span {
  display: block;
  font-weight: 400;
  color: var(--sage);
  font-size: 12px;
}

.home-about-content {
  background: var(--forest);
  color: var(--white);
  padding: 30px 35px 30px 35px;
  border-radius: 40px 32px 32px 40px;
  position: relative;
  z-index: 1;
}

.ha-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
}

.ha-title em {
  color: var(--gold);
  font-style: italic;
}

.ha-body {
  font-size: 16px;
  color: var(--sage-l);
  line-height: 1.8;
  margin-bottom: 32px;
}

.ha-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.ha-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--cream);
  font-weight: 500;
}

.ha-feature i {
  color: var(--gold);
  font-size: 20px;
}

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

  .home-about-visual {
    border-radius: 32px 32px 0 0;
    height: 400px;
  }

  .home-about-content {
    left: 0;
    top: -40px;
    border-radius: 0 0 32px 32px;
    padding: 60px 40px;
  }

  .home-about-badge {
    right: 20px;
    bottom: -30px;
  }
}

/* ══════════ STORY SECTION ══════════ */
.story-section {
  padding: 120px 0;
  background: var(--cream);
}

.story-intro {
  text-align: center;
  margin-bottom: 80px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--forest-3);
}

.section-sub {
  font-size: 17px;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

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

@media(max-width:768px) {
  .story-card {
    padding: 32px 24px;
  }
  .sc-title {
    font-size: 24px;
  }
}

.story-card {
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: all .4s var(--ease);
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .1);
}

.story-card.problem {
  background: #FFF8F0;
  border: 1.5px solid #F5D5B0;
}

.story-card.solution {
  background: var(--forest);
  color: var(--cream);
}

.sc-icon {
  font-size: 44px;
  margin-bottom: 20px;
}

.sc-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.story-card.problem .sc-eyebrow {
  color: #A0522D;
}

.story-card.solution .sc-eyebrow {
  color: var(--gold-l);
}

.sc-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.25;
}

.sc-body {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.story-card.problem .sc-body {
  color: #6B4C2A;
}

.story-card.solution .sc-body {
  color: var(--sage-l);
}

.sc-quote {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: var(--gold-l);
  line-height: 1.5;
}

.story-card.problem .sc-quote {
  border-top-color: rgba(160, 82, 45, .15);
  color: #8B4513;
}

/* ══════════ HOW IT WORKS ══════════ */
.how-section {
  background: var(--forest-2);
  padding: 120px 0;
  color: var(--cream);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
  position: relative;
}

@media(max-width:1024px) {
  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .how-steps::before {
    display: none;
  }
}

@media(max-width:600px) {
  .how-steps {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 55px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), var(--sage), var(--gold), transparent);
  opacity: 0.3;
  z-index: 0;
}

.how-step {
  text-align: center;
  position: relative;
}

.how-step-num-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.how-step-num {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-3), var(--forest));
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
  position: relative;
  z-index: 2;
  transition: all .3s var(--ease);
}

.how-step:hover .how-step-num {
  transform: scale(1.1) translateY(-6px);
  border-color: var(--gold-l);
}

.how-step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.how-step-body {
  font-size: 14px;
  color: var(--sage-l);
  line-height: 1.7;
}

/* ══════════ DAILY CARE ══════════ */
.care-section {
  padding: 120px 0;
  background: var(--cream);
}

.care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 60px;
}

@media(max-width:1024px) {
  .care-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .care-visual {
    padding: 32px 24px;
  }
}

.care-visual {
  background: var(--forest);
  border-radius: 28px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.care-timeline {
  position: relative;
  padding-left: 36px;
}

.care-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--sage), var(--gold));
}

.care-item {
  position: relative;
  margin-bottom: 36px;
}

.care-item:last-child {
  margin-bottom: 0;
}

.care-dot {
  position: absolute;
  left: -31px;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--forest);
}

.care-time {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-l);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.care-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 4px;
}

.care-body {
  font-size: 13px;
  color: var(--sage-l);
  line-height: 1.6;
}

.care-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--white);
  border-radius: 18px;
  margin-bottom: 16px;
  border: 1.5px solid var(--cream-d);
  transition: all .3s;
}

.care-feature:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
  border-color: var(--sage-l);
}

.cf-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.cf-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}

.cf-body {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

/* ══════════ PRICING ══════════ */
.pricing-section {
  background: var(--forest);
  padding: 120px 0;
}

.pricing-tabs {
  display: flex;
  gap: 6px;
  background: rgba(255, 255, 255, .07);
  border-radius: 10px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 60px;
}

.ptab {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--sage-l);
  background: none;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .2s;
}

.ptab.active {
  background: var(--gold);
  color: var(--forest);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

.price-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  padding: 40px 28px;
  transition: all .4s var(--ease);
  position: relative;
}

.price-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, .09);
}

.price-card.featured {
  background: rgba(201, 163, 87, .12);
  border-color: var(--gold);
}

.price-popular {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--forest);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 0 0 12px 12px;
}

.pc-tier-icon {
  font-size: 52px;
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s var(--ease);
}

.price-card:hover .pc-tier-icon {
  transform: scale(1.15) rotate(5deg);
}

.pc-tier-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}

.pc-tier-range {
  font-size: 12px;
  color: var(--sage-l);
  margin-bottom: 24px;
}

.pc-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--gold-l);
  line-height: 1;
}

.pc-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--sage-l);
  font-family: var(--font-body);
}

.pc-per-day {
  font-size: 12px;
  color: var(--sage);
  margin: 6px 0 24px;
}

.pc-divider {
  height: 1px;
  background: rgba(255, 255, 255, .08);
  margin-bottom: 24px;
}

.pc-features {
  list-style: none;
}

.pc-features li {
  font-size: 13px;
  color: var(--sage-l);
  padding: 6px 0;
  display: flex;
  gap: 10px;
  line-height: 1.5;
}

.pc-margin-tag {
  font-size: 11px;
  color: var(--sage);
  font-weight: 600;
  margin-top: 10px;
  opacity: 0.8;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CALCULATOR */
.calc-section {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  padding: 50px;
  margin-top: 64px;
}

.calc-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.calc-sub {
  font-size: 14px;
  color: var(--sage-l);
  margin-bottom: 40px;
}

.calc-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media(max-width:768px) {
  .calc-section {
    padding: 32px 24px;
  }
  .calc-controls {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.calc-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--sage-l);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.range-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold-l);
  display: block;
  margin-bottom: 10px;
}

input[type=range] {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--forest);
}

.calc-result {
  background: var(--forest-2);
  border-radius: 18px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  border: 1px solid rgba(201, 163, 87, .2);
  align-items: center;
}

@media(max-width:992px) {
  .calc-result {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  .cr-divider {
    width: 100%;
    height: 1px;
  }
}

.cr-item {
  text-align: center;
}

.cr-val {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-l);
  line-height: 1;
  margin-bottom: 6px;
}

.cr-label {
  font-size: 12px;
  color: var(--sage-l);
  text-transform: uppercase;
}

.cr-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .1);
}

/* ══════════ ADD-ONS ══════════ */
.addons-section {
  background: var(--cream-d);
  padding: 120px 0;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

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

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

.addon-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1.5px solid transparent;
  transition: all .3s;
}

.addon-card:hover {
  border-color: var(--sage);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.addon-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.addon-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
}

.addon-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

.addon-price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--bark);
}

.addon-price span {
  font-size: 13px;
  font-weight: 400;
  font-family: var(--font-body);
  color: #999;
}

/* ══════════ BALCONY ══════════ */
.balcony-section {
  background: var(--forest-2);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.balcony-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media(max-width:1024px) {
  .balcony-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.balcony-tag {
  display: inline-block;
  background: rgba(201, 163, 87, .2);
  border: 1px solid rgba(201, 163, 87, .4);
  color: var(--gold-l);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.balcony-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 45px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}

.balcony-title em {
  font-style: italic;
  color: var(--gold-l);
}

.balcony-sub {
  font-size: 17px;
  color: var(--sage-l);
  line-height: 1.8;
}

.balcony-features {
  list-style: none;
}

.balcony-features li {
  display: flex;
  gap: 14px;
  color: var(--sage-l);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 15px;
  align-items: flex-start;
}

.balcony-features li i {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.balcony-visual {
  background: var(--forest);
  border-radius: 32px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(116, 165, 127, .15);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.bv-image-container {
  position: relative;
  height: 450px;
  overflow: hidden;
}

@media(max-width:768px) {
  .bv-image-container {
    height: 300px;
  }
  .bv-text {
    font-size: 18px;
  }
  .bv-overlay {
    padding: 24px;
  }
}

.bv-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}

.balcony-visual:hover .bv-image {
  transform: scale(1.1);
}

.bv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 45, 28, 0.95) 0%, rgba(15, 45, 28, 0.4) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.bv-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.bv-chips-wrapper {
  padding: 32px 20px;
  background: var(--forest);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bv-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.balcony-chip {
  display: inline-block;
  background: rgba(201, 163, 87, .1);
  color: var(--gold-l);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(201, 163, 87, 0.15);
  transition: all 0.3s;
}

.balcony-chip:hover {
  background: var(--gold);
  color: var(--forest);
  transform: translateY(-2px);
}

/* ══════════ HEALTH ══════════ */
.health-section {
  background: var(--cream);
  padding: 120px 0;
}

.health-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
}

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

@media(max-width:768px) {
  .health-card {
    padding: 32px 24px;
  }
}

.health-card {
  border-radius: 24px;
  padding: 48px;
  position: relative;
}

.health-card.check {
  background: var(--forest-2);
  color: var(--cream);
}

.health-card.homecoming {
  background: linear-gradient(135deg, #FFF8EE, var(--cream));
  border: 2.5px solid var(--gold);
}

.hc-icon {
  font-size: 52px;
  margin-bottom: 24px;
  display: block;
}

.hc-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.health-card.check .hc-title {
  color: var(--gold-l);
}

.hc-body {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.hc-list {
  list-style: none;
}

.hc-list li {
  padding: 8px 0;
  font-size: 14px;
  display: flex;
  gap: 10px;
}

.health-card.check .hc-list li::before {
  content: '🌿';
}

.health-card.homecoming .hc-list li::before {
  content: '✨';
}

/* ══════════ EXPERT & BOOK ══════════ */
.expert-section {
  background: var(--cream-d);
  padding: 100px 0;
}

.expert-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media(max-width:992px) {
  .expert-inner {
    grid-template-columns: 1fr;
  }
}

.expert-card {
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  transition: transform .3s;
}

@media(max-width:768px) {
  .expert-card {
    padding: 32px 24px;
  }
}

.expert-card.wa {
  background: #E8F5E9;
  border: 1.5px solid #A5D6A7;
}

.expert-card.book {
  background: var(--forest);
  color: var(--cream);
  text-align: left;
}

.ec-icon {
  font-size: 52px;
  margin-bottom: 20px;
}

.ec-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.expert-card.wa .ec-title {
  color: var(--forest);
}

.expert-card.book .ec-title {
  color: var(--gold-l);
}

.ec-body {
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* BOOKING FORM */
.booking-form {
  display: grid;
  gap: 16px;
}

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

.bf-input,
.bf-select {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: var(--cream);
  font-size: 14px;
  outline: none;
}

.bf-input:focus {
  border-color: var(--gold);
}

.bf-input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bf-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--sage-l);
  letter-spacing: 0.05em;
}

.bf-select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FAF6E8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

.bf-select option {
  background: var(--forest);
  color: var(--cream);
}

.bf-note {
  font-size: 12px;
  color: var(--sage-l);
  padding: 14px;
  background: rgba(255, 255, 255, .05);
  border-radius: 8px;
  border-left: 4px solid var(--gold);
}

/* ══════════ BLOGS ══════════ */
.blogs-section {
  padding: 120px 0;
  background: var(--cream);
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

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

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

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid var(--cream-d);
  transition: all .3s;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .08);
}

.blog-img {
  height: 200px;
  background: var(--forest-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.blog-body {
  padding: 28px;
}

.blog-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--forest-3);
  text-decoration: underline;
}

/* ══════════ FAQ ══════════ */
.faq-section {
  background: var(--forest-2);
  padding: 120px 0;
  color: var(--cream);
}

.faq-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 28px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
}

.faq-arrow {
  color: var(--gold);
  transition: transform .3s;
}

.faq-q.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: all .4s var(--ease-out);
  font-size: 14px;
  color: var(--sage-l);
  line-height: 1.8;
  padding: 0 28px;
}

.faq-a.open {
  max-height: 400px;
  padding-bottom: 24px;
}

/* ══════════ POLICIES ══════════ */
.policies-section {
  background: var(--forest);
  padding: 100px 0;
}

.policies-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.pol-tab {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--sage-l);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all .2s;
}

.pol-tab.active {
  background: var(--gold);
  color: var(--forest);
  border-color: var(--gold);
}

.pol-panel {
  display: none;
}

.pol-panel.active {
  display: block;
  animation: fadeUp .4s ease;
}

.pol-content {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  padding: 48px;
  font-size: 14px;
  color: var(--sage-l);
  line-height: 1.9;
  max-width: 800px;
  margin: 0 auto;
}

.pol-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--cream);
  margin-bottom: 20px;
}

.pol-content p {
  margin-bottom: 12px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

/* ══════════ CONTACT ══════════ */
.contact-section {
  background: var(--cream-d);
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.about-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 20px;
}

.about-body {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

.mission-box {
  background: var(--forest);
  border-radius: 20px;
  padding: 32px;
  margin-top: 32px;
}

.mission-box p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--sage-l);
  line-height: 1.6;
}

.mission-box p strong {
  color: var(--gold-l);
  font-style: normal;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.cf-input {
  width: 100%;
  padding: 15px 20px;
  background: var(--white);
  border: 1.5px solid var(--cream-dk);
  border-radius: 10px;
  font-size: 15px;
  outline: none;
}

.cf-input:focus {
  border-color: var(--forest);
}

.cf-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  align-items: center;
}

.btn-small {
  padding: 10px 18px;
  font-size: 12px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--forest-3);
  font-size: 14px;
}

/* ══════════ FOOTER ══════════ */
.footer {
  background: var(--ink);
  padding: 80px 0 40px;
  color: var(--sage-l);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}

@media(max-width:1100px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
  }
}

@media(max-width:768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }
  .footer-brand {
    grid-column: span 1;
    text-align: left;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .footer-social {
    justify-content: center;
  }
}

.fb-name {
  margin-bottom: 16px;
}

.fb-name img {
  display: block;
  max-height: 60px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--sage-l);
  transition: all .2s;
}

.footer-col ul li a:hover {
  color: var(--gold-l);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all .2s;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--forest);
}

/* ══════════ STICKY WA ══════════ */
.sticky-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .4);
  animation: wa-pulse 3s infinite;
}

@keyframes wa-pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4)
  }

  50% {
    box-shadow: 0 4px 40px rgba(37, 211, 102, .7)
  }
}

.sticky-wa-tooltip {
  position: absolute;
  right: 76px;
  background: var(--forest);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: .3s;
}

.sticky-wa:hover .sticky-wa-tooltip {
  opacity: 1;
}

/* ══════════ RESPONSIVE ══════════ */
@media(max-width:1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    display: none;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-slider {
    min-height: 400px;
  }
}

@media(max-width:900px) {
  .how-steps::before {
    display: none;
  }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .balcony-inner {
    grid-template-columns: 1fr;
  }

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

  .expert-inner {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }  .faq-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: block;
  }
}

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

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

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

  .calc-controls {
    grid-template-columns: 1fr;
  }

  .calc-result {
    grid-template-columns: 1fr;
  }

  .cr-divider {
    width: 100%;
    height: 1px;
  }

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

/* ── POLICY BLOCKS ── */
.policy-block {
  margin-bottom: 80px;
  scroll-margin-top: 32px
}

.policy-header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--cream-dk)
}

.policy-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px
}

.policy-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--forest2);
  line-height: 1.1;
  margin-bottom: 8px
}

.policy-intro {
  font-size: 15px;
  color: var(--bark);
  line-height: 1.75;
  max-width: 640px
}

/* ── CONTENT ELEMENTS ── */
.policy-section {
  margin-bottom: 28px
}

.ps-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px
}

.ps-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dk)
}

.ps-body {
  font-size: 14px;
  color: #3A2E24;
  line-height: 1.85
}

.ps-body p {
  margin-bottom: 12px
}

.ps-body p:last-child {
  margin-bottom: 0
}

.ps-body strong {
  color: var(--forest2);
  font-weight: 600
}

.ps-body em {
  color: var(--bark);
  font-style: normal
}

/* HIGHLIGHT BOXES */
.box-note {
  background: #F0F7F2;
  border: 1px solid #B5D4BE;
  border-left: 4px solid var(--forest);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--forest2)
}

.box-note strong {
  font-weight: 600;
  color: var(--forest2)
}

.box-warning {
  background: var(--amber-l);
  border: 1px solid #E2C882;
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.75;
  color: #5A3E0A
}

.box-warning strong {
  font-weight: 600
}

.box-important {
  background: var(--red-l);
  border: 1px solid #F0BEC4;
  border-left: 4px solid var(--red-soft);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.75;
  color: #4A1220
}

.box-important strong {
  font-weight: 600
}

.box-blue {
  background: var(--blue-l);
  border: 1px solid #BBDCF0;
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.75;
  color: #0F3A5A
}

.box-blue strong {
  font-weight: 600
}

/* TABLE */
.policy-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 16px 0;
  border-radius: 8px;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 600px;
}

@media(max-width:768px) {
  .policy-table-wrapper::after {
    content: '← Swipe →';
    display: block;
    text-align: center;
    font-size: 10px;
    color: #999;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
}

.policy-table th {
  background: var(--forest2);
  color: var(--cream);
  padding: 11px 16px;
  text-align: left;
  font-weight: 600;
  letter-spacing: .04em;
  font-size: 12px
}

.policy-table th:first-child {
  border-radius: 8px 0 0 0
}

.policy-table th:last-child {
  border-radius: 0 8px 0 0
}

.policy-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--cream-dk);
  color: #3A2E24;
  vertical-align: top
}

.policy-table tr:hover td {
  background: #F5F0E4
}

.policy-table tr:last-child td {
  border-bottom: none
}

.td-green {
  color: var(--forest);
  font-weight: 600
}

.td-red {
  color: var(--red-soft);
  font-weight: 600
}

.td-amber {
  color: var(--amber);
  font-weight: 600
}

/* STEP LIST */
.step-list {
  list-style: none;
  counter-reset: steps;
  margin: 12px 0
}

.step-list li {
  counter-increment: steps;
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-d);
  font-size: 14px;
  color: #3A2E24;
  line-height: 1.7
}

.step-list li:last-child {
  border-bottom: none
}

.step-list li::before {
  content: counter(steps);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px
}

.policy-intro {
  font-size: 15px;
  color: var(--bark);
  line-height: 1.75;
  max-width: 640px
}

/* ── CONTENT ELEMENTS ── */
.policy-section {
  margin-bottom: 28px
}

.ps-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px
}

.ps-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dk)
}

.ps-body {
  font-size: 14px;
  color: #3A2E24;
  line-height: 1.85
}

.ps-body p {
  margin-bottom: 12px
}

.ps-body p:last-child {
  margin-bottom: 0
}

.ps-body strong {
  color: var(--forest2);
  font-weight: 600
}

.ps-body em {
  color: var(--bark);
  font-style: normal
}

/* HIGHLIGHT BOXES */
.box-note {
  background: #F0F7F2;
  border: 1px solid #B5D4BE;
  border-left: 4px solid var(--forest);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--forest2)
}

.box-note strong {
  font-weight: 600;
  color: var(--forest2)
}

.box-warning {
  background: var(--amber-l);
  border: 1px solid #E2C882;
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.75;
  color: #5A3E0A
}

.box-warning strong {
  font-weight: 600
}

.box-important {
  background: var(--red-l);
  border: 1px solid #F0BEC4;
  border-left: 4px solid var(--red-soft);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.75;
  color: #4A1220
}

.box-important strong {
  font-weight: 600
}

.box-blue {
  background: var(--blue-l);
  border: 1px solid #BBDCF0;
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.75;
  color: #0F3A5A
}

.box-blue strong {
  font-weight: 600
}

/* TABLE */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 13px
}

.policy-table th {
  background: var(--forest2);
  color: var(--cream);
  padding: 11px 16px;
  text-align: left;
  font-weight: 600;
  letter-spacing: .04em;
  font-size: 12px
}

.policy-table th:first-child {
  border-radius: 8px 0 0 0
}

.policy-table th:last-child {
  border-radius: 0 8px 0 0
}

.policy-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--cream-dk);
  color: #3A2E24;
  vertical-align: top
}

.policy-table tr:hover td {
  background: #F5F0E4
}

.policy-table tr:last-child td {
  border-bottom: none
}

.td-green {
  color: var(--forest);
  font-weight: 600
}

.td-red {
  color: var(--red-soft);
  font-weight: 600
}

.td-amber {
  color: var(--amber);
  font-weight: 600
}

/* STEP LIST */
.step-list {
  list-style: none;
  counter-reset: steps;
  margin: 12px 0
}

.step-list li {
  counter-increment: steps;
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-d);
  font-size: 14px;
  color: #3A2E24;
  line-height: 1.7
}

.step-list li:last-child {
  border-bottom: none
}

.step-list li::before {
  content: counter(steps);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px
}

/* BULLET LIST */
.policy-list {
  list-style: none;
  margin: 12px 0
}

.policy-list li {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: #3A2E24;
  line-height: 1.7;
  border-bottom: 1px solid rgba(218, 211, 195, .4)
}

.policy-list li:last-child {
  border-bottom: none
}

.policy-list li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px
}

.policy-list li strong {
  color: var(--forest2);
  font-weight: 600
}

/* CLAUSE GRID */
.clause-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0
}

@media(max-width:600px) {
  .clause-grid {
    grid-template-columns: 1fr
  }
}

.clause-card {
  background: var(--white);
  border: 1.5px solid var(--cream-d);
  border-radius: 12px;
  padding: 18px
}

.cc-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 8px
}

/* ── POLICY BLOCKS ── */
.policy-block {
  margin-bottom: 80px;
  scroll-margin-top: 32px
}

.policy-header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--cream-dk)
}

.policy-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px
}

.policy-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--forest2);
  line-height: 1.1;
  margin-bottom: 8px
}

.policy-intro {
  font-size: 15px;
  color: var(--bark);
  line-height: 1.75;
  max-width: 640px
}

/* ── CONTENT ELEMENTS ── */
.policy-section {
  margin-bottom: 28px
}

.ps-heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px
}

.ps-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--cream-dk)
}

.ps-body {
  font-size: 14px;
  color: #3A2E24;
  line-height: 1.85
}

.ps-body p {
  margin-bottom: 12px
}

.ps-body p:last-child {
  margin-bottom: 0
}

.ps-body strong {
  color: var(--forest2);
  font-weight: 600
}

.ps-body em {
  color: var(--bark);
  font-style: normal
}

/* HIGHLIGHT BOXES */
.box-note {
  background: #F0F7F2;
  border: 1px solid #B5D4BE;
  border-left: 4px solid var(--forest);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--forest2)
}

.box-note strong {
  font-weight: 600;
  color: var(--forest2)
}

.box-warning {
  background: var(--amber-l);
  border: 1px solid #E2C882;
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.75;
  color: #5A3E0A
}

.box-warning strong {
  font-weight: 600
}

.box-important {
  background: var(--red-l);
  border: 1px solid #F0BEC4;
  border-left: 4px solid var(--red-soft);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.75;
  color: #4A1220
}

.box-important strong {
  font-weight: 600
}

.box-blue {
  background: var(--blue-l);
  border: 1px solid #BBDCF0;
  border-left: 4px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.75;
  color: #0F3A5A
}

.box-blue strong {
  font-weight: 600
}

/* TABLE */
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 13px
}

.policy-table th {
  background: var(--forest2);
  color: var(--cream);
  padding: 11px 16px;
  text-align: left;
  font-weight: 600;
  letter-spacing: .04em;
  font-size: 12px
}

.policy-table th:first-child {
  border-radius: 8px 0 0 0
}

.policy-table th:last-child {
  border-radius: 0 8px 0 0
}

.policy-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--cream-dk);
  color: #3A2E24;
  vertical-align: top
}

.policy-table tr:hover td {
  background: #F5F0E4
}

.policy-table tr:last-child td {
  border-bottom: none
}

.td-green {
  color: var(--forest);
  font-weight: 600
}

.td-red {
  color: var(--red-soft);
  font-weight: 600
}

.td-amber {
  color: var(--amber);
  font-weight: 600
}

/* STEP LIST */
.step-list {
  list-style: none;
  counter-reset: steps;
  margin: 12px 0
}

.step-list li {
  counter-increment: steps;
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-d);
  font-size: 14px;
  color: #3A2E24;
  line-height: 1.7
}

.step-list li:last-child {
  border-bottom: none
}

.step-list li::before {
  content: counter(steps);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px
}

/* BULLET LIST */
.policy-list {
  list-style: none;
  margin: 12px 0
}

.policy-list li {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: #3A2E24;
  line-height: 1.7;
  border-bottom: 1px solid rgba(218, 211, 195, .4)
}

.policy-list li:last-child {
  border-bottom: none
}

.policy-list li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px
}

.policy-list li strong {
  color: var(--forest2);
  font-weight: 600
}

/* CLAUSE GRID */
.clause-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0
}

@media(max-width:600px) {
  .clause-grid {
    grid-template-columns: 1fr
  }
}

.clause-card {
  background: var(--white);
  border: 1.5px solid var(--cream-d);
  border-radius: 12px;
  padding: 18px
}

.cc-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 8px
}

.cc-body {
  font-size: 13px;
  color: #4A3C2C;
  line-height: 1.7
}

/* CONTACT BLOCK */
.contact-block {
  background: var(--forest);
  color: var(--cream);
  border-radius: 14px;
  padding: 28px 32px;
  margin-top: 48px
}

.cb-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--gold-l);
  margin-bottom: 8px
}

.cb-body {
  font-size: 13px;
  color: var(--sage-l);
  line-height: 1.8
}

.cb-body strong {
  color: var(--cream);
  font-weight: 600
}

/* Keep policy titles inline */
.policy-hero .hero-title em {
  display: inline;
}

/* ══════════ PREMIUM BOOKING CALENDAR (Custom Brand Theme) ══════════ */
.flatpickr-calendar {
  background: var(--white) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4) !important;
  border-radius: 16px !important;
  border: 1px solid var(--cream-dk) !important;
  z-index: 999999 !important;
  width: 320px !important;
}

.flatpickr-months {
  background: var(--forest) !important;
  border-radius: 16px 16px 0 0 !important;
  padding: 10px 0 !important;
}

.flatpickr-months .flatpickr-month {
  color: var(--white) !important;
  fill: var(--white) !important;
}

.flatpickr-current-month {
  color: var(--white) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 0 !important;
}

/* Month Dropdown Visibility */
.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: var(--forest-2) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  padding: 4px 8px !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: var(--forest-3) !important;
}

/* Year Input Visibility */
.flatpickr-current-month .numInputWrapper {
  width: 70px !important;
  background: var(--forest-2) !important;
  border-radius: 6px !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}

.flatpickr-current-month input.cur-year {
  color: var(--white) !important;
  font-weight: 700 !important;
  padding-left: 10px !important;
}

.flatpickr-current-month .numInputWrapper span {
  border-left: 1px solid rgba(255,255,255,0.1) !important;
}

.flatpickr-months .flatpickr-prev-month, 
.flatpickr-months .flatpickr-next-month {
  color: var(--white) !important;
  fill: var(--white) !important;
}

/* Weekdays */
.flatpickr-weekdays {
  background: var(--forest) !important;
  padding: 5px 0 !important;
}

.flatpickr-weekday {
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 700 !important;
  font-size: 11px !important;
}

/* Days */
.flatpickr-day {
  color: var(--forest) !important;
  border-radius: 8px !important;
  margin: 2px !important;
}

.flatpickr-day.today {
  border-color: var(--gold) !important;
  color: var(--forest) !important;
  font-weight: 700 !important;
}

.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange {
  background: var(--forest) !important;
  border-color: var(--forest) !important;
  color: var(--white) !important;
}

.flatpickr-day.flatpickr-disabled {
  color: #ccc !important;
}

/* Input Styling */
.flatpickr-input[readonly] {
  cursor: pointer;
  background: rgba(255, 255, 255, 0.15) !important;
  color: var(--white) !important;
  font-weight: 500 !important;
}

/* ══════════ INTERNATIONAL TEL INPUT ══════════ */
.iti {
  display: block !important;
  width: 100%;
}

.iti__country-list {
  z-index: 1000 !important;
  color: var(--ink);
}

.bf-input.iti__tel-input {
  padding-left: 90px !important;
}

/* ══════════ FORM ENHANCEMENTS ══════════ */
.booking-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  filter: grayscale(1);
}