/* ═══ DESIGN TOKENS ═══ */
:root {
  --teal:      #00313c;
  --teal-md:   #00495a;
  --teal-lt:   #006275;
  --sky:       #9bdae7;
  --sky-pale:  #d4eff5;
  --mint:      #00c9a7;
  --amber:     #f59e0b;
  --coral:     #ff6b47;
  --bg:        #f0f9fa;
  --white:     #ffffff;
  --txt:       #0a2229;
  --txt-md:    #3d626b;
  --txt-lt:    #7fa8b0;
  --border:    #dceef1;
  --r:         16px;
}

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

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

/* ═══ FLOATING PILL NAVBAR ═══ */
.nav-pill {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(0, 49, 60, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(155, 218, 231, 0.18);
  transition: all 0.35s ease;
  white-space: nowrap;
  width: auto;
  max-width: calc(100vw - 40px);
}

.nav-pill.scrolled {
  background: rgba(0, 49, 60, 0.97);
  box-shadow: 0 8px 48px rgba(0,0,0,0.35);
}

.nav-logo {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--sky);
  text-decoration: none;
  letter-spacing: -0.5px;
  margin-right: 8px;
}

.nav-sep {
  width: 1px;
  height: 20px;
  background: rgba(155,218,231,0.2);
  margin: 0 8px;
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin-bottom: 0;
}

.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  transition: all 0.2s;
}

.nav-links a:hover {
  color: var(--sky);
  background: rgba(155,218,231,0.1);
}

.nav-cta {
  background: var(--sky);
  color: var(--teal);
  border: none;
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover {
  background: white;
  color: var(--teal);
  transform: scale(1.04);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px 8px;
}

.nav-hamburger span {
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}

/* ═══ MOBILE MENU — FULLSCREEN OVERLAY ═══ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--teal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 60px;
  /* Curtain: clip from bottom edge upward (closed = height 0) */
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
  visibility: hidden;
  transition:
    clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1),
    visibility 0s linear 0.6s;
  overflow: hidden;
}

.mobile-menu::after {
  content: 'PN';
  position: absolute;
  right: -24px;
  bottom: 40px;
  font-size: clamp(9rem, 28vw, 18rem);
  font-weight: 900;
  color: rgba(155, 218, 231, 0.04);
  letter-spacing: -12px;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.mobile-menu.open {
  visibility: visible;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition:
    clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1),
    visibility 0s linear 0s;
}

/* Keep items visible while closing (curtain hides them) */
.mobile-menu.is-closing .mobile-links li,
.mobile-menu.is-closing .mobile-cta-btn {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-links li {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.38s ease, transform 0.38s ease;
  border-bottom: 1px solid rgba(155, 218, 231, 0.08);
}

.mobile-links li:first-child {
  border-top: 1px solid rgba(155, 218, 231, 0.08);
}

.mobile-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  font-size: clamp(1.4rem, 5vw, 2rem);
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: color 0.2s ease, gap 0.25s ease;
  gap: 0;
}

.mobile-links a i {
  font-size: 1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.25s ease;
  color: var(--sky);
}

.mobile-links a:hover {
  color: var(--sky);
  gap: 8px;
}

.mobile-links a:hover i {
  opacity: 1;
  transform: translateX(0);
}

.mobile-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky);
  color: var(--teal) !important;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  margin-top: 40px;
  width: fit-content;
  opacity: 0;
  transform: translateY(22px);
  transition: background 0.2s, transform 0.38s ease, opacity 0.38s ease;
}

.mobile-cta-btn:hover {
  background: white;
  color: var(--teal) !important;
}

/* Staggered open animations */
.mobile-menu.open .mobile-links li:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.28s; }
.mobile-menu.open .mobile-links li:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.35s; }
.mobile-menu.open .mobile-links li:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.42s; }
.mobile-menu.open .mobile-links li:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.49s; }
.mobile-menu.open .mobile-links li:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.56s; }
.mobile-menu.open .mobile-cta-btn               { opacity: 1; transform: none; transition-delay: 0.63s; }

/* Hamburger → X animation */
.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══ HERO — CENTERED ═══ */
.hero {
  min-height: 100vh;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Decorative background blobs */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 40%, rgba(155,218,231,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(0,201,167,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 35% 45% at 85% 20%, rgba(155,218,231,0.05) 0%, transparent 55%);
  pointer-events: none;
}

/* Decorative rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(155,218,231,0.07);
  pointer-events: none;
}

/* Dot grid pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(155,218,231,0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 140px 24px 80px;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(155,218,231,0.12);
  border: 1px solid rgba(155,218,231,0.25);
  color: var(--sky);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 32px;
  width: fit-content;
  letter-spacing: 0.3px;
}

.hero-tag-dot {
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 900;
  color: white;
  line-height: 1.06;
  letter-spacing: -2.5px;
  margin-bottom: 22px;
}

.hero-title .stroke {
  -webkit-text-stroke: 2px var(--sky);
  color: transparent;
}

.hero-title .sky { color: var(--sky); }

.hero-sub {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 44px;
}

/* Search Box */
.search-wrap {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(155,218,231,0.18);
  border-radius: 20px;
  padding: 22px 24px;
  backdrop-filter: blur(12px);
  width: 100%;
}

.s-tabs {
  display: flex;
  gap: 4px;
  background: rgba(0,0,0,0.25);
  border-radius: 10px;
  padding: 5px;
  margin-bottom: 18px;
  width: 100%;
}

.s-tab {
  flex: 1;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  color: rgba(255,255,255,0.5);
  transition: all 0.2s;
  border: none;
  background: none;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  white-space: nowrap;
}

.s-tab.active {
  background: var(--sky);
  color: var(--teal);
}

.s-row {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 10px;
  align-items: center;
}

/* City dropdown wrapper */
.s-city-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.s-city-icon {
  position: absolute;
  left: 14px;
  color: var(--sky);
  font-size: 1rem;
  pointer-events: none;
  z-index: 2;
}

.s-city-wrap .s-field {
  padding-left: 38px;
  cursor: pointer;
}

/* Location input wrapper */
.s-loc-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.s-loc-wrap .s-field {
  padding-right: 44px;
}

.s-loc-btn {
  position: absolute;
  right: 6px;
  width: 32px;
  height: 32px;
  background: rgba(155,218,231,0.15);
  border: 1px solid rgba(155,218,231,0.25);
  border-radius: 8px;
  color: var(--sky);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.s-loc-btn:hover { background: rgba(155,218,231,0.28); color: white; border-color: rgba(155,218,231,0.5); }
.s-loc-btn:active { transform: scale(0.94); }

.s-field {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(155,218,231,0.15);
  border-radius: 12px;
  padding: 13px 16px;
  color: white;
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.s-field::placeholder { color: rgba(255,255,255,0.35); }
.s-field:focus { border-color: rgba(155,218,231,0.5); }
.s-field option { background: var(--teal); color: white; }

.s-btn {
  background: var(--sky);
  color: var(--teal);
  border: none;
  border-radius: 12px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}

.s-btn:hover {
  background: white;
  transform: scale(1.04);
}

/* Quick search tags */
.s-quick-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(155,218,231,0.1);
}

.s-qtag-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.s-qtag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(155,218,231,0.75);
  background: rgba(155,218,231,0.08);
  border: 1px solid rgba(155,218,231,0.15);
  border-radius: 50px;
  padding: 4px 12px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.s-qtag:hover {
  background: rgba(155,218,231,0.18);
  color: var(--sky);
  border-color: rgba(155,218,231,0.35);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(155,218,231,0.1);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats .h-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(155,218,231,0.15);
  align-self: center;
}

.h-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 4px;
}

.h-stat-lbl {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══ STORY CAROUSEL ═══ */
.story-sec { background: var(--bg); }

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

.story-viewport {
  flex: 1;
  overflow: hidden;
  height: 580px;
  display: flex;
  align-items: center;
  position: relative;
}

.story-track {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  left: 50%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Individual story card */
.s-card {
  width: 390px;
  height: 530px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.55s ease,
              filter 0.55s ease,
              box-shadow 0.55s ease;
  transform: translateX(-50%) scale(0.78);
  opacity: 0.38;
  filter: brightness(0.5);
  box-shadow: none;
}

.s-card.s-adj {
  transform: translateX(-50%) scale(0.88);
  opacity: 0.62;
  filter: brightness(0.65);
  box-shadow: 0 12px 40px rgba(0,49,60,0.12);
}

.s-card.active {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  filter: brightness(1);
  box-shadow: 0 32px 80px rgba(0,49,60,0.28);
  cursor: default;
}

.s-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.s-card.active:hover img { transform: scale(1.04); }

/* Gradient overlay */
.s-card-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    transparent 35%,
    transparent 45%,
    rgba(0,20,26,0.85) 75%,
    rgba(0,20,26,0.97) 100%
  );
}

/* Top row: badge + heart */
.s-card-top {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 4;
}

.s-badge {
  font-size: 0.62rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.s-badge-amber { background: var(--amber); color: #3a2000; }
.s-badge-sky   { background: var(--sky);   color: var(--teal); }
.s-badge-mint  { background: var(--mint);  color: white; }
.s-badge-coral { background: var(--coral); color: white; }

.s-heart {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.35s ease 0.3s, transform 0.35s ease 0.3s, background 0.2s;
}

.s-card.active .s-heart {
  opacity: 1;
  transform: scale(1);
}

.s-heart:hover { background: rgba(255,70,70,0.35); }

/* Bottom info */
.s-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 24px;
  z-index: 4;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.45s ease 0.15s, opacity 0.45s ease 0.15s;
}

.s-card.active .s-card-info {
  transform: translateY(0);
  opacity: 1;
}

.s-card-loc {
  font-size: 0.72rem;
  color: var(--sky);
  font-weight: 500;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.s-card-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.s-card-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.s-meta-item {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 4px;
}

.s-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.s-card-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--sky);
  letter-spacing: -0.5px;
  line-height: 1;
}

.s-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--sky);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}

.s-card-cta:hover { background: white; color: var(--teal); }

/* Progress bars */
.story-progress {
  display: flex;
  gap: 6px;
  width: 160px;
  flex-shrink: 0;
}

.sp-item {
  flex: 1;
  height: 3px;
  background: rgba(0,49,60,0.12);
  border-radius: 4px;
  overflow: hidden;
}

.sp-fill {
  height: 100%;
  width: 0%;
  background: var(--teal);
  border-radius: 4px;
  transition: width 0.3s linear;
}

.sp-item.done .sp-fill  { width: 100%; transition: none; }
.sp-item.active .sp-fill { animation: sp-anim var(--sp-dur, 5s) linear forwards; }

@keyframes sp-anim { from { width: 0% } to { width: 100% } }

/* Nav arrows */
.s-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: white;
  color: var(--teal);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,49,60,0.1);
}

.s-nav-btn:hover {
  background: var(--teal);
  color: var(--sky);
  border-color: var(--teal);
  transform: scale(1.08);
}

.s-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* Dot indicators */
.story-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.s-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.s-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--teal);
}

/* ═══ MARQUEE STRIP ═══ */
.marquee-strip {
  background: var(--sky);
  padding: 13px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 35s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0 28px;
  white-space: nowrap;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
  opacity: 0.35;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══ SECTION COMMONS ═══ */
.pad-xl { padding: 100px 0; }
.pad-lg { padding: 80px 0; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.chip-teal { background: rgba(0,49,60,0.07); color: var(--teal); }
.chip-sky  { background: rgba(155,218,231,0.15); color: var(--sky); }

.sec-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--txt);
}

.sec-title.white { color: white; }

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 10px 24px;
  border: 2px solid var(--border);
  border-radius: 50px;
  transition: all 0.2s;
}

.view-all:hover {
  border-color: var(--teal);
  color: var(--teal);
  gap: 14px;
}

/* ═══ STATS SECTION ═══ */
.stats-sec {
  background: var(--teal);
  position: relative;
  overflow: hidden;
}

.stats-bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14rem;
  font-weight: 900;
  color: rgba(155,218,231,0.04);
  letter-spacing: -8px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.stat-block {
  text-align: center;
  padding: 20px;
}

.stat-num {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  letter-spacing: -2px;
  line-height: 1;
}

.stat-num em {
  color: var(--sky);
  font-style: normal;
}

.stat-lbl {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(155,218,231,0.15);
  align-self: center;
}

/* ═══ POPULAR LOCALITIES ═══ */
.localities-sec { background: white; }

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

.locality-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  height: 220px;
  transition: transform 0.3s;
}

.locality-card:hover { transform: translateY(-6px); }
.locality-card:first-child { grid-column: span 2; height: 280px; }

.locality-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.locality-card:hover img { transform: scale(1.08); }

.locality-grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,25,31,0.9) 0%, rgba(0,49,60,0.2) 55%, transparent 100%); }
.locality-info { position: absolute; bottom: 0; padding: 20px 20px; }
.locality-name { font-size: 1.08rem; font-weight: 700; color: white; margin-bottom: 4px; }
.locality-meta { font-size: 0.72rem; color: var(--sky); display: flex; align-items: center; gap: 12px; }

.locality-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,201,167,0.9); color: white;
  font-size: 0.62rem; font-weight: 700; padding: 4px 10px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: 0.5px;
}

/* ═══ PROCESS ═══ */
.process-sec {
  background: var(--teal);
  position: relative;
  overflow: hidden;
}

.process-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(155,218,231,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(0,201,167,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-line {
  position: absolute;
  top: 44px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  border-top: 2px dashed rgba(155,218,231,0.2);
  z-index: 0;
}

.p-step {
  text-align: center;
  padding: 0 20px 20px;
  position: relative;
  z-index: 1;
}

.p-step-num {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px solid rgba(155,218,231,0.25);
  background: rgba(155,218,231,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto 24px;
}

.p-step-num i {
  font-size: 1.6rem;
  color: var(--sky);
  margin-bottom: 2px;
}

.p-step-n {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(155,218,231,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.p-title {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}

.p-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.44);
  line-height: 1.7;
}

/* ═══ CTA SECTION ═══ */
.cta-sec {
  background: var(--teal);
  position: relative;
  overflow: hidden;
}

.cta-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(155,218,231,0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(0,201,167,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* ═══ BUTTONS ═══ */
.btn-prim {
  background: var(--sky);
  color: var(--teal);
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.92rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-prim:hover {
  background: white;
  color: var(--teal);
  transform: scale(1.04);
}

.btn-outl {
  background: transparent;
  color: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(155,218,231,0.35);
  border-radius: 50px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.92rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-outl:hover {
  border-color: rgba(155,218,231,0.7);
  color: var(--sky);
  background: rgba(155,218,231,0.06);
}

/* ═══ FOOTER ═══ */
.footer {
  background: #001b22;
  color: rgba(255,255,255,0.5);
  padding: 72px 0 32px;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--sky);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 0.82rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.38);
  max-width: 250px;
}

.footer-h {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}

.footer-ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-ul a {
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.2s;
}

.footer-ul a:hover { color: var(--sky); }

.footer-hr {
  border-color: rgba(255,255,255,0.07);
  margin: 44px 0 24px;
}

.footer-bottom {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
}

.social-btn:hover {
  background: rgba(155,218,231,0.12);
  color: var(--sky);
  border-color: rgba(155,218,231,0.25);
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* ═══ RESPONSIVE ═══ */
@media (max-width: 991px) {
  .hero-center { padding: 130px 24px 60px; }
  .nav-links, .nav-sep { display: none; }
  .nav-hamburger { display: flex; }
  .story-viewport { height: 500px; }
  .s-card { width: 320px; height: 450px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
  .locality-grid { grid-template-columns: repeat(2, 1fr); }
  .locality-card:first-child { grid-column: span 2; }
}

@media (max-width: 767px) {
  .s-row { grid-template-columns: 1fr 1fr; }
  .s-btn { grid-column: span 2; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stats-bg-word { font-size: 5rem; }
  .nav-pill { width: calc(100% - 32px); }
  .nav-cta { font-size: 0.75rem; padding: 7px 14px; }
  .story-viewport { height: 460px; }
  .s-card { width: 280px; height: 420px; }
  .s-nav-btn { display: none; }
  .s-card-name { font-size: 1.05rem; }
}

@media (max-width: 576px) {
  .s-row { grid-template-columns: 1fr; }
  .s-btn { grid-column: span 1; width: 100%; justify-content: center; }
  .s-quick-tags { gap: 6px; }
  .hero-stats > div { min-width: calc(50% - 20px); }
  .pad-xl { padding: 70px 0; }
  .pad-lg { padding: 56px 0; }
  .s-card { width: 260px; height: 400px; }
  .locality-grid { grid-template-columns: 1fr 1fr; }
  .locality-card:first-child { grid-column: span 2; height: 200px; }
}
