@charset "UTF-8";

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Poppins', sans-serif; background: #060c18; color: #e0eaf4; overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
a:hover { opacity: 1; }
ul, ol { list-style: none; }

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --bg-0:      #060c18;
  --bg-1:      #080f1e;
  --bg-2:      #0b1628;
  --bg-3:      #0e1e35;
  --bg-card:   rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --accent:    #5b9bd5;
  --accent-2:  #73b8e9;
  --accent-glow: rgba(91,155,213,0.18);
  --gold:      #c9a96e;
  --gold-glow: rgba(201,169,110,0.15);
  --text-1:    #e8f0f8;
  --text-2:    #8eaac8;
  --text-3:    #4e6a85;
  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 8px 32px rgba(0,0,0,0.4);
  --transition: 0.3s ease;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 100px 0; }
.section-dark  { background: var(--bg-1); }
.section-dark2 { background: var(--bg-2); }

.section-heading { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
  padding: 5px 14px;
  border: 1px solid rgba(91,155,213,0.3);
  border-radius: 20px;
  background: rgba(91,155,213,0.07);
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--accent); }
.section-desc {
  font-size: 15px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(91,155,213,0.4);
  opacity: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--text-1);
  font-weight: 500;
  font-size: 14px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
  opacity: 1;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  background: transparent;
  color: var(--text-2);
  font-size: 14px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: var(--transition);
}
.btn-ghost:hover { color: var(--text-1); border-color: rgba(255,255,255,0.2); opacity: 1; }

.btn-wp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: #25d366;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-wp:hover { background: #1cb954; transform: translateY(-2px); opacity: 1; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 0;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(6,12,24,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--glass-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.header-logo img {
  height: 54px;
  width: auto;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.9));
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 20px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
}
.header-nav a {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.header-nav a:hover { color: #fff; opacity: 1; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-wp-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: rgba(37,211,102,0.12);
  color: #25d366;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  border: 1px solid rgba(37,211,102,0.25);
  transition: var(--transition);
}
.header-wp-btn:hover { background: #25d366; color: #fff; opacity: 1; }
.header-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger-line + .hamburger-line { margin-top: 5px; }

/* Mobile Menu */
.mobile-menus {
  position: fixed;
  left: -200% !important;
  top: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--bg-2);
  border-right: 1px solid var(--glass-border);
  z-index: 999999999999;
  padding: 80px 24px 24px;
  transition: left 0.4s ease;
  overflow-y: auto;
}
.mobile-menus.mobile-menus-active { left: 0 !important; }
.menuClose {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
  z-index: 999999999998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.menuClose.mobile-menus-active { opacity: 1; pointer-events: auto; }
html.mobile-menus-active { overflow: hidden; }
.mobile-menu-list ul li a {
  color: var(--text-1) !important;
  font-size: 15px;
  font-weight: 500;
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}
.mobile-menu-list ul li a:hover { color: var(--accent) !important; opacity: 1; }
.mobil-menu-logo img { height: 36px; filter: brightness(0) invert(1); }
.mobil-menu-inner { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobil-menu-btn { display: block; width: 22px; height: 2px; background: var(--text-1); position: relative; }
.mobil-menu-btn::before { content: ''; position: absolute; top: -7px; left: 0; width: 22px; height: 2px; background: var(--text-1); }
.mobil-menu-btn::after  { content: ''; position: absolute; top: 7px;  left: 0; width: 14px; height: 2px; background: var(--text-1); }
.mobile-hamburger-menu { padding: 8px; }
.mobile-social { display: flex; gap: 16px; margin-top: 32px; }
.mobile-social a { color: var(--text-2); font-size: 18px; transition: var(--transition); }
.mobile-social a:hover { color: var(--accent); opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/3.jpeg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 1;
  pointer-events: none;
  transition: none;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent);
  z-index: 1;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; padding-top: 100px; padding-bottom: 48px; }

.hero-inner {
  display: flex;
  align-items: flex-end;
  gap: 48px;
}
.hero-content { flex: 1; min-width: 0; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0.85;
}

.hero h1 {
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 0;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.45);
}
.hero h1 em {
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--accent-2);
  font-weight: 700;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 440px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

/* Video Card */
.hero-video-card {
  flex-shrink: 0;
  width: 300px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.hero-video-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
  border-radius: 16px;
}
.hero-video-thumb {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-thumb .video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  transition: background 0.25s;
}
.hero-video-thumb:hover .video-play { background: rgba(0,0,0,0.38); }
.hero-video-wrap video,
.hero-video-wrap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  border-radius: 16px;
}
.iframe-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.iframe-expand-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  pointer-events: all;
  transition: background 0.2s, transform 0.2s;
}
.iframe-expand-btn:hover {
  background: rgba(0,0,0,0.78);
  color: #fff;
  transform: scale(1.08);
}
.pkg-video-caption { z-index: 3; }
.hero-video-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
.hero-video-tag {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 0.5px;
}
.hero-video-label {
  font-size: 12px;
  color: var(--text-3);
}
.rbrand{
  font-size: small;
  position: absolute;
}
/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-3);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounceScroll 2s infinite;
}
@keyframes bounceScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   MULTI-STEP FORM
   ============================================================ */
.section-multiform { background: var(--bg-1); }

.multiform-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.ms-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  gap: 0;
}
.ms-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  transition: var(--transition);
  flex-shrink: 0;
}
.ms-step-dot.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.ms-step-line {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: var(--glass-border);
  transition: background 0.4s ease;
}
.ms-step-line.active { background: var(--accent); }
.ms-labels {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-bottom: 36px;
}
.ms-labels span { font-size: 12px; color: var(--text-3); transition: var(--transition); }
.ms-labels span.active { color: var(--accent); font-weight: 600; }

.ms-form { position: relative; overflow: hidden; }
.ms-panel {
  display: none;
  flex-direction: column;
  gap: 14px;
  animation: fadeSlideIn 0.35s ease forwards;
}
.ms-panel.active { display: flex; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.ms-form input[type="text"],
.ms-form input[type="tel"],
.ms-form input[type="email"],
.ms-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-1);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  -webkit-appearance: none;
}
.ms-form input::placeholder,
.ms-form textarea::placeholder { color: var(--text-3); }
.ms-form input:focus,
.ms-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(91,155,213,0.07);
}
.ms-form input.invalid { border-color: #e05252; }
.ms-form textarea { resize: none; min-height: 110px; }

.ms-btn-row { display: flex; gap: 12px; margin-top: 8px; }
.ms-btn-row .btn-primary { flex: 1; justify-content: center; }
.ms-form .btn-primary { width: 100%; justify-content: center; margin-top: 8px; padding: 15px; font-size: 15px; }

/* intl-tel-input override */
.iti { width: 100%; }
.iti__flag-container { z-index: 10; }
.iti input { background: rgba(255,255,255,0.05) !important; border: 1px solid var(--glass-border) !important; color: var(--text-1) !important; border-radius: var(--radius-sm) !important; }
.iti input:focus { border-color: var(--accent) !important; background: rgba(91,155,213,0.07) !important; }
.iti__selected-flag { background: transparent !important; }
.iti__country-list { background: var(--bg-2); border: 1px solid var(--glass-border); color: var(--text-1); }
.iti__country.iti__highlight { background: var(--bg-3); }
.iti__divider { border-color: var(--glass-border); }

/* ============================================================
   BEFORE / AFTER
   ============================================================ */
.section-before-after { background: var(--bg-0); overflow: hidden; }
.section-before-after .container { margin-bottom: 0; }

.before-after-swiper {
  width: 100%;
  padding: 0 0 20px;
  margin-top: 40px;
}
.before-after-swiper .swiper-slide {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.before-after-swiper .swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1.5px;
  background: linear-gradient(
    135deg,
    rgba(201,169,110,0.7) 0%,
    rgba(91,155,213,0.4) 40%,
    rgba(201,169,110,0.15) 70%,
    rgba(91,155,213,0.5) 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.before-after-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.before-after-swiper .swiper-button-next,
.before-after-swiper .swiper-button-prev {
  color: var(--accent);
  background: rgba(6,12,24,0.7);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  top: calc(50% - 20px);
}
.before-after-swiper .swiper-button-next::after,
.before-after-swiper .swiper-button-prev::after { font-size: 14px; }

.before-after-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   PACKAGES
   ============================================================ */
.section-packages { background: var(--bg-1); }

.packages-intro {
  text-align: center;
  max-width: 680px;
  margin: -20px auto 56px;
  padding: 20px 24px;
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: var(--radius);
}
.packages-intro p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.packages-intro strong { color: var(--gold); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pkg-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pkg-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}
.pkg-card:hover { border-color: rgba(91,155,213,0.25); transform: translateY(-4px); box-shadow: var(--shadow); }
.pkg-card:hover::before { opacity: 1; }

.pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.pkg-badge.gold {
  color: var(--gold);
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.25);
}
.pkg-badge.blue {
  color: var(--accent-2);
  background: rgba(91,155,213,0.1);
  border: 1px solid rgba(91,155,213,0.25);
}

.pkg-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.pkg-header-text { display: flex; flex-direction: column; gap: 4px; }
.pkg-icon img { width: 52px; height: 52px; object-fit: contain; }
.pkg-title { font-size: 20px; font-weight: 700; color: var(--text-1); }
.pkg-subtitle { font-size: 13px; font-weight: 500; color: var(--accent, #4fa3e0); letter-spacing: 0.3px; }

.pkg-price-wrap {
  position: relative;
  isolation: isolate;
  margin: -4px 0 26px;
  padding: 16px 18px 15px;
  border: 1px solid rgba(255, 220, 120, 0.42);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 10%, rgba(255,255,255,0.9), transparent 18%),
    linear-gradient(135deg, #fff8b8 0%, #d9ae3d 42%, #8b6519 100%);
  box-shadow:
    0 18px 34px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(90,55,0,0.25);
  overflow: hidden;
}
.pkg-price-wrap::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0) 48%);
  z-index: 0;
}
.pkg-price-wrap::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -35%;
  width: 42%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: rotate(18deg);
  pointer-events: none;
  z-index: 0;
}
.pkg-price-wrap-silver {
  border-color: rgba(255,255,255,0.48);
  background:
    radial-gradient(circle at 16% 10%, rgba(255,255,255,0.95), transparent 18%),
    linear-gradient(135deg, #ffffff 0%, #dbe5ef 46%, #8d9baa 100%);
}
.pkg-price-kicker {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 2px;
  color: rgba(6,12,24,0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  line-height: 1;
  text-transform: uppercase;
}
.pkg-price {
  position: relative;
  z-index: 1;
  color: #061124;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.8px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.45);
}
.pkg-price-note {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 6px;
  color: rgba(6,12,24,0.7);
  font-size: 11px;
  font-weight: 700;
}
.pkg-list-highlight {
  background: rgba(255, 200, 50, 0.12);
  border-radius: 8px;
  padding: 8px 10px !important;
  border-bottom: none !important;
  margin: 4px 0;
}
.pkg-list-highlight i { color: #f5c518 !important; }
.pkg-list-note {
  font-size: 11px;
  color: var(--text-3);
  display: block;
  margin-top: 2px;
}
.pkg-list { list-style: none; margin-bottom: 28px; }
.pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  line-height: 1.5;
}
.pkg-list li:last-child { border-bottom: none; }
.pkg-list li i {
  font-size: 12px;
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}
.pkg-card .btn-primary { width: 100%; justify-content: center; }

/* ============================================================
   METHODS / SERVICES
   ============================================================ */
.section-methods { background: var(--bg-0); }

.methods-swiper { margin-top: 20px; }
.methods-swiper .swiper-slide {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}
.methods-swiper .swiper-slide:hover {
  border-color: rgba(91,155,213,0.25);
  transform: translateY(-4px);
}
.method-img { height: 200px; overflow: hidden; }
.method-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.methods-swiper .swiper-slide:hover .method-img img { transform: scale(1.05); }
.method-body { padding: 28px; }
.method-title { font-size: 18px; font-weight: 700; color: var(--text-1); margin-bottom: 12px; }
.method-desc { font-size: 13px; color: var(--text-2); line-height: 1.7; }
.methods-swiper .swiper-button-next,
.methods-swiper .swiper-button-prev {
  color: var(--accent);
  background: rgba(6,12,24,0.8);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
}
.methods-swiper .swiper-button-next::after,
.methods-swiper .swiper-button-prev::after { font-size: 14px; }
.methods-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   VIDEOS / SHORTS
   ============================================================ */
.section-videos { background: var(--bg-1); }

.videos-swiper { margin-top: 20px; }
.video-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.video-item a {
  display: block;
  position: relative;
}
.video-item img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.video-item:hover img { transform: scale(1.04); }
.video-item img.video-thumb-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: unset;
  pointer-events: none;
  transition: transform 0.5s ease;
}
.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6,12,24,0.35);
  transition: var(--transition);
}
.video-item:hover .video-play { background: rgba(6,12,24,0.5); }
.play-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--bg-0);
  transition: var(--transition);
}
.video-item:hover .play-circle { transform: scale(1.1); background: #fff; }

.videos-swiper .swiper-button-next,
.videos-swiper .swiper-button-prev {
  color: var(--accent);
  background: rgba(6,12,24,0.8);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
}
.videos-swiper .swiper-button-next::after,
.videos-swiper .swiper-button-prev::after { font-size: 14px; }

.featured-video {
  margin-top: 60px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.featured-video img { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.featured-video .video-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(6,12,24,0.4);
}
.featured-video .play-circle {
  width: 80px; height: 80px;
  font-size: 26px;
  background: rgba(255,255,255,0.95);
}
.videos-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.section-testimonials { background: var(--bg-2); }

.testi-stars { color: #fbbc04; font-size: 12px; letter-spacing: 1px; }
.testimonials-cta { text-align: center; margin-top: 48px; }

/* ============================================================
   ABOUT
   ============================================================ */
.section-about { background: var(--bg-1); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.about-img img { width: 100%; height: 480px; object-fit: cover; display: block; }
.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}
.about-content .section-heading { text-align: left; margin-bottom: 28px; }
.about-content .section-heading .section-label { display: inline-block; }
.about-content p { font-size: 14px; color: var(--text-2); line-height: 1.8; margin-bottom: 16px; }
.about-content p:last-of-type { margin-bottom: 28px; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.about-feat {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--text-2);
}
.about-feat i { color: var(--accent); font-size: 14px; width: 20px; }

/* ============================================================
   FAQ
   ============================================================ */
.section-faq { background: var(--bg-0); }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  padding: 0 24px;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(91,155,213,0.25); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  user-select: none;
}
.faq-question-text { font-size: 15px; font-weight: 500; color: var(--text-1); line-height: 1.5; }
.faq-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  color: var(--text-2);
  font-size: 13px;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding-bottom: 24px; }
.faq-answer-inner p { font-size: 14px; color: var(--text-2); line-height: 1.8; }
.faq-item:hover .faq-question-text { color: var(--accent); }

/* ============================================================
   MAP
   ============================================================ */
.section-map { background: var(--bg-1); padding: 100px 0 0; }
.map-iframe-wrap {
  border-radius: 0;
  overflow: hidden;
  margin-top: 60px;
  filter: saturate(0.3) brightness(0.6);
}
.map-iframe-wrap iframe { width: 100%; display: block; }

/* ============================================================
   CONTACT FORM (SIMPLE)
   ============================================================ */
.section-contact { background: var(--bg-2); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.contact-info .section-heading { text-align: left; margin-bottom: 32px; }
.contact-info .section-heading .section-label { display: inline-block; }
.contact-detail { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-glow);
  border: 1px solid rgba(91,155,213,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-detail-text span { display: block; font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-detail-text a, .contact-detail-text p { font-size: 14px; color: var(--text-2); transition: var(--transition); }
.contact-detail-text a:hover { color: var(--accent); opacity: 1; }

.simple-form { display: flex; flex-direction: column; gap: 14px; }
.simple-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.simple-form input[type="text"],
.simple-form input[type="email"],
.simple-form input[type="tel"],
.simple-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--text-1);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  -webkit-appearance: none;
}
.simple-form input::placeholder,
.simple-form textarea::placeholder { color: var(--text-3); }
.simple-form input:focus,
.simple-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(91,155,213,0.06);
}
.simple-form textarea { resize: none; min-height: 120px; }
.simple-form .btn-primary { width: 100%; justify-content: center; padding: 16px; font-size: 15px; margin-top: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand img { height: 36px; margin-bottom: 20px; }
.footer-brand p { font-size: 13px; color: var(--text-3); line-height: 1.7; max-width: 260px; }
.footer-col-title { font-size: 13px; font-weight: 600; color: var(--text-1); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--text-3); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); opacity: 1; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-contact-item i { color: var(--accent); font-size: 13px; width: 16px; }
.footer-contact-item a, .footer-contact-item span { font-size: 13px; color: var(--text-3); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--accent); opacity: 1; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--text-2);
  transition: var(--transition);
}
.footer-social a:hover { color: var(--accent); border-color: var(--accent); background: var(--accent-glow); opacity: 1; }
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p { font-size: 12px; color: var(--text-3); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-wp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.float-wp i { font-size: 20px; }
.float-wp:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37,211,102,0.45); opacity: 1; }
.float-wp-text { line-height: 1.3; }
.float-wp-text strong { display: block; font-size: 12px; }
.float-wp-text span { font-size: 11px; opacity: 0.85; }
.float-wp .bubble { display: none; }

.float-cta {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.float-cta:hover { color: var(--accent); border-color: var(--accent); opacity: 1; }
.float-cta svg { width: 18px; height: 18px; fill: var(--accent); }

/* Mobile contact bar */
.mContact {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99999;
}
.mContact .col-md-6 { width: 50%; float: left; padding: 0 !important; }
.mContact .col-md-6 a { padding: 14px; font-size: 14px; display: block; text-align: center; }
.mContact .wp { background: #25d366; color: #fff; font-weight: 600; }
.mContact .tl { background: linear-gradient(to bottom, #00488e, #021930); color: #fff; font-weight: 600; }
.mContact img { width: 22px; display: inline-block; margin-right: 6px; vertical-align: middle; }
.mContact span { color: #fff; font-weight: bold; vertical-align: middle; }

/* ============================================================
   SWIPER OVERRIDES (global)
   ============================================================ */
.swiper-button-next, .swiper-button-prev { outline: none; }
.swiper-pagination-bullet { background: var(--text-3); }
.swiper-pagination-bullet-active { background: var(--accent); }

/* ============================================================
   AOS FALLBACK
   ============================================================ */
[data-aos] { pointer-events: auto !important; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.img-fluid   { max-width: 100%; height: auto; }
.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.col-md-6 { width: 50%; padding: 0 12px; }
.col-md-12 { width: 100%; padding: 0 12px; }

/* ============================================================
   THEME TOGGLE BUTTON
   ============================================================ */
.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  color: var(--text-2);
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.theme-toggle-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-glow);
}

/* ============================================================
   ZONE PICKER (multi-step form step 1)
   ============================================================ */
.zone-step-intro {
  text-align: center;
  margin-bottom: 6px;
}
.zone-step-intro h3 {
  font-size: 20px;
  color: var(--text-1);
  margin-bottom: 6px;
}
.zone-step-intro p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}
.hair-zone-picker {
  display: flex;
  justify-content: center;
  margin: 6px 0 4px;
}
.hair-zone-head {
  width: 100%;
  max-width: 240px;
}
.head-illustration {
  position: relative;
  width: 100%;
  aspect-ratio: 0.75;
  margin: 0 auto;
}
.head-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 22px;
}
.zone-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.zone {
  fill: transparent;
  stroke: transparent;
  stroke-width: 3;
  cursor: pointer;
  pointer-events: all;
  transition: fill 0.2s ease, stroke 0.2s ease, opacity 0.2s ease;
}
.zone:hover {
  fill: var(--zone-color, rgba(91,155,213,0.18));
  stroke: rgba(91,155,213,0.4);
}
.zone.active {
  fill: var(--zone-color, rgba(91,155,213,0.38));
  stroke: rgba(255,255,255,0.78);
}
.zone-1 { --zone-color: rgba(184,222,115,0.5); }
.zone-2 { --zone-color: rgba(244,167,186,0.45); }
.zone-3 { --zone-color: rgba(248,234,108,0.52); }
.zone-4 { --zone-color: rgba(255,229,138,0.42); }
.zone-5 { --zone-color: rgba(241,246,255,0.54); }
.zone-6 { --zone-color: rgba(255,146,146,0.46); }

.zone-selection-summary {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.06);
}
.zone-selection-summary.invalid { border-color: #e05252; }
.zone-selection-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.zone-selection-empty { font-size: 14px; color: var(--text-3); }
.zone-selection-list { display: flex; flex-wrap: wrap; gap: 8px; }
.zone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--accent-glow);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

/* ============================================================
   FEATURED PACKAGE CARDS + VIDEO FRAME
   ============================================================ */
.pkg-card-featured {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border-color: rgba(255,255,255,0.12);
}
.pkg-video-frame {
  position: relative;
  margin-bottom: 24px;
  border-radius: 18px;
  overflow: hidden;
  background: #0d1822;
  box-shadow: 0 16px 28px rgba(0,0,0,0.3);
}
.pkg-video-frame video,
.pkg-video-frame iframe {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  opacity: 0.92;
  border: none;
}
.pkg-video-frame > img {
  width: 100%;
  height: auto;
  display: block;
}
.pkg-video-thumb {
  display: block;
  position: relative;
  overflow: hidden;
}
.pkg-video-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}
.pkg-video-thumb:hover img {
  transform: scale(1.05);
}
.pkg-video-thumb .video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  transition: background 0.25s;
}
.pkg-video-thumb:hover .video-play {
  background: rgba(0,0,0,0.4);
}
.pkg-video-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.82) 100%);
  color: #fff;
}
.pkg-video-caption strong {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.pkg-video-caption span {
  display: block;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
}

.review-swiper { margin-top: 22px; padding: 4px 2px 52px; }
.review-swiper .swiper-slide { height: auto; }
.mini-review-card {
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 22px 20px;
  box-shadow: var(--shadow);
}
.mini-review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.mini-review-head strong { font-size: 14px; color: var(--text-1); }
.mini-review-card p { font-size: 13px; color: var(--text-2); line-height: 1.75; }
.review-swiper .swiper-button-next,
.review-swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  color: var(--accent);
  top: auto;
  bottom: 0;
}
.review-swiper .swiper-button-prev { left: calc(50% - 52px); }
.review-swiper .swiper-button-next { right: calc(50% - 52px); }
.review-swiper .swiper-button-next::after,
.review-swiper .swiper-button-prev::after { font-size: 13px; font-weight: 700; }

/* ============================================================
   LIGHT MODE OVERRIDES
   ============================================================ */
/* preload class prevents flash before JS runs */
html.light-mode-preload body { background: #f5efe6 !important; }

body.light-mode {
  background: #f5efe6;
  color: #1b2b3a;
  --bg-0:         #f5efe6;
  --bg-1:         #fbf7f1;
  --bg-2:         #f2eadf;
  --bg-3:         #eadfce;
  --bg-card:      rgba(255,255,255,0.82);
  --glass-border: rgba(39,69,92,0.12);
  --accent:       #2d7089;
  --accent-2:     #5fa0b6;
  --accent-glow:  rgba(45,112,137,0.12);
  --gold:         #b8843d;
  --gold-glow:    rgba(184,132,61,0.14);
  --text-1:       #132433;
  --text-2:       #4d6678;
  --text-3:       #7d8f9d;
  --shadow:       0 18px 40px rgba(80,67,48,0.10);
}

/* Header – light */
body.light-mode .site-header.scrolled {
  background: rgba(251,247,241,0.95);
}
body.light-mode .header-nav {
  background: rgba(255,255,255,0.45);
  border-color: rgba(39,69,92,0.15);
}
body.light-mode .header-nav a {
  color: var(--text-1);
}
body.light-mode .header-nav a:hover {
  color: var(--accent);
}
body.light-mode .header-logo img,
body.light-mode .mobil-menu-logo img {
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.2));
}
body.light-mode .mobile-menus {
  background: rgba(251,247,241,0.98);
}

/* Hero – light */
body.light-mode .hero-bg { opacity: 1; }

/* Form inputs – light (multi-step + simple form) */
body.light-mode .ms-form input,
body.light-mode .ms-form textarea,
body.light-mode .simple-form input,
body.light-mode .simple-form textarea {
  background: rgba(255,255,255,0.86);
  border-color: rgba(39,69,92,0.15);
  color: #132433;
}
body.light-mode .ms-form input::placeholder,
body.light-mode .ms-form textarea::placeholder,
body.light-mode .simple-form input::placeholder,
body.light-mode .simple-form textarea::placeholder { color: #7d8f9d; }
body.light-mode .zone-selection-summary { background: rgba(255,255,255,0.78); }
body.light-mode .iti input { background: rgba(255,255,255,0.86) !important; color: #132433 !important; }
body.light-mode .iti__country-list { background: #fffaf4; color: #132433; }

/* Package featured card – light */
body.light-mode .pkg-card-featured {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(250,245,237,0.92));
}
body.light-mode .pkg-list li { border-bottom-color: rgba(19,36,51,0.06); }

/* Videos – light */
body.light-mode .video-play { background: rgba(19,36,51,0.28); }
body.light-mode .video-item:hover .video-play { background: rgba(19,36,51,0.44); }
body.light-mode .play-circle { background: rgba(255,255,255,0.9); color: #132433; }
body.light-mode .video-item:hover .play-circle { background: #fff; }
body.light-mode .videos-swiper .swiper-button-next,
body.light-mode .videos-swiper .swiper-button-prev { background: rgba(255,255,255,0.94); }

/* Hotel & Clinic – light */
body.light-mode .hotel-video-card .video-play { background: rgba(19,36,51,0.28); }
body.light-mode .hotel-video-card .play-circle { background: rgba(255,255,255,0.95); color: #132433; }

/* Testimonials/Reviews – light */
body.light-mode .review-tab-btn { background: rgba(255,255,255,0.7); }
body.light-mode .mini-review-card { background: rgba(255,255,255,0.72); box-shadow: 0 12px 28px rgba(80,67,48,0.08); }
body.light-mode .review-swiper .swiper-button-next,
body.light-mode .review-swiper .swiper-button-prev { background: rgba(255,255,255,0.92); }

/* Testi cards – light */
body.light-mode .testi-card { background: rgba(255,255,255,0.72); }
body.light-mode .testi-avatar { background: var(--accent); color: #fff; }

/* FAQ – light */
body.light-mode .faq-item { background: rgba(255,255,255,0.72); }

/* Footer – light */
body.light-mode .footer-brand img { filter: none; }
body.light-mode .footer { background: var(--bg-1); }

/* Theme toggle icon – light mode shows sun */
body.light-mode .theme-toggle-btn { color: var(--gold); border-color: var(--gold); }

/* Swiper nav – light mode general */
body.light-mode .before-after-swiper .swiper-button-next,
body.light-mode .before-after-swiper .swiper-button-prev { color: var(--accent); background: rgba(255,255,255,0.9); }

/* Before/After – light */
body.light-mode .before-after-swiper .swiper-slide {
  border-color: rgba(39,69,92,0.12);
}

/* FAQ – light */
body.light-mode .faq-item { background: rgba(255,255,255,0.8); border-color: rgba(39,69,92,0.1); }
body.light-mode .faq-item:hover { border-color: rgba(45,112,137,0.25); }

/* ============================================================
   WHATSAPP POPUP
   ============================================================ */
.wp-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 0 16px 0;
}
.wp-popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.wp-popup-box {
  width: 100%;
  max-width: 480px;
  background: var(--bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 28px 28px 0 0;
  padding: 32px 28px 40px;
  position: relative;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34,1.1,0.64,1);
  box-shadow: 0 -16px 48px rgba(0,0,0,0.35);
}
.wp-popup-overlay.active .wp-popup-box {
  transform: translateY(0);
}
.wp-popup-close {
  position: absolute;
  top: 16px; right: 20px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  color: var(--text-2);
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.wp-popup-close:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.wp-popup-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: #25d366;
  margin-bottom: 16px;
}
.wp-popup-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 6px;
}
.wp-popup-box > p {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 22px;
  line-height: 1.6;
}
.wp-popup-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.wp-popup-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  color: var(--text-1);
  text-decoration: none;
  transition: var(--transition);
}
.wp-popup-option:hover {
  border-color: #25d366;
  background: rgba(37,211,102,0.06);
  opacity: 1;
  transform: translateX(4px);
}
.wp-popup-option-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(37,211,102,0.1);
  color: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.wp-popup-option-body { flex: 1; }
.wp-popup-option-body strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.wp-popup-option-body span { font-size: 12px; color: var(--text-2); }
.wp-popup-arrow { color: var(--text-3); font-size: 11px; flex-shrink: 0; }
.wp-popup-note {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.wp-popup-note i { color: var(--accent); }
.wp-popup-note strong { color: var(--text-2); }

/* Popup – light mode */
body.light-mode .wp-popup-box { background: #fbf7f1; }
body.light-mode .wp-popup-option { background: rgba(255,255,255,0.85); }
body.light-mode .wp-popup-option:hover { background: rgba(37,211,102,0.07); }
