/* ============================================================
   KASH TRACK HOLIDAYS — FINAL CSS v4
   Theme: Deep Forest Green + Warm Saffron — Kashmir Inspired
   ============================================================ */

:root {
  /* PRIMARY — Deep Forest Green */
  --primary:       #1b4332;
  --primary-dark:  #0d2b1f;
  --primary-mid:   #2d6a4f;
  --primary-light: #52b788;
  --primary-pale:  #edf7f2;

  /* ACCENT — Warm Saffron/Amber */
  --accent:        #f4a228;
  --accent-dark:   #d4861a;
  --accent-light:  #f7bd5e;
  --accent-pale:   #fef8ec;

  /* NEUTRALS */
  --white:         #ffffff;
  --off-white:     #f9fafb;
  --snow:          #f2f5f0;
  --border:        #dde8e2;
  --text-dark:     #111827;
  --text-body:     #374151;
  --text-muted:    #6b7280;
  --text-light:    #9ca3af;

  /* DARK / FOOTER */
  --dark:          #060f08;
  --footer-bg:     #040c18;

  /* SHADOWS */
  --shadow-sm:     0 2px 8px rgba(27,67,50,0.08);
  --shadow-md:     0 8px 30px rgba(27,67,50,0.12);
  --shadow-lg:     0 20px 60px rgba(27,67,50,0.18);
  --shadow-accent: 0 8px 28px rgba(244,162,40,0.35);

  /* RADII */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* TRANSITIONS */
  --t-fast: all 0.15s ease;
  --t-base: all 0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.7; color: var(--text-body); background: #fff; overflow-x: hidden; }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.25; color: var(--text-dark); }
a { text-decoration: none; transition: var(--t-base); }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; }

/* ===== UTILITIES ===== */
.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-pale); border: 1px solid rgba(244,162,40,0.3);
  color: var(--accent-dark); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--r-full); margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--text-dark); margin-bottom: 14px; }
.section-title em { color: var(--primary-mid); font-style: italic; }
.section-subtitle { font-size: 1rem; color: var(--text-muted); max-width: 540px; margin: 0 auto; }
.section-pad { padding: 80px 0; }

/* ===== NAVBAR ===== */
#mainNav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: var(--white); padding: 13px 0;
  box-shadow: 0 2px 20px rgba(27,67,50,0.1);
  transition: var(--t-base);
}
#mainNav.nav-transparent { background: transparent; box-shadow: none; }
#mainNav.nav-scrolled    { background: var(--white) !important; box-shadow: 0 2px 20px rgba(27,67,50,0.12) !important; padding: 10px 0; }

/* Brand — solid */
.brand-logo-icon {
  width: 42px; height: 42px; border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--accent); border: 1px solid rgba(244,162,40,0.4);
  flex-shrink: 0;
}
.brand-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--primary); }
.brand-sub  { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; color: var(--accent); margin-top: 2px; display: block; }

/* Transparent overrides */
#mainNav.nav-transparent .brand-name { color: #fff; }
#mainNav.nav-transparent .brand-sub  { color: rgba(255,255,255,0.7); }
#mainNav.nav-transparent .nav-link   { color: rgba(255,255,255,0.9) !important; }
#mainNav.nav-transparent .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
/* Scrolled overrides */
#mainNav.nav-scrolled .brand-name { color: var(--primary) !important; }
#mainNav.nav-scrolled .brand-sub  { color: var(--accent) !important; }
#mainNav.nav-scrolled .nav-link   { color: var(--text-dark) !important; }

.nav-link { font-size: 0.88rem; font-weight: 500; padding: 8px 14px !important; color: var(--text-dark) !important; }
.nav-link:hover { color: var(--primary) !important; }
.nav-link.active { color: var(--primary) !important; font-weight: 700; }

.nav-cta {
  background: var(--accent) !important; color: var(--white) !important;
  font-weight: 700 !important; border-radius: var(--r-md) !important;
  padding: 9px 20px !important; font-size: 0.85rem !important;
  box-shadow: var(--shadow-accent) !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; color: var(--white) !important; transform: translateY(-1px); }

.navbar-toggler { border: none !important; }
.navbar-toggler:focus { box-shadow: none !important; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231b4332' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
@media (max-width: 991.98px) {
  .navbar-collapse { background: var(--white); border-radius: var(--r-lg); padding: 16px 20px; margin-top: 10px; box-shadow: var(--shadow-md); }
  .navbar-collapse .nav-link { color: var(--text-dark) !important; padding: 10px 0 !important; border-bottom: 1px solid var(--border); }
  .navbar-collapse .nav-link:last-child { border-bottom: none; }
}

/* ===== HERO ===== */
#hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden;
  background: linear-gradient(150deg, #060f08 0%, #1b4332 45%, #2d6a4f 75%, #0d2b1f 100%);
}
#hero::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 45%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 280'%3E%3Cpath fill='rgba(255,255,255,0.025)' d='M0,280L0,200L80,160L160,180L240,120L320,80L400,110L480,60L560,90L640,30L720,70L800,40L880,80L960,50L1040,100L1120,70L1200,110L1280,90L1360,130L1440,100L1440,280Z'/%3E%3Cpath fill='rgba(255,255,255,0.04)' d='M0,280L0,220L120,180L200,200L300,150L380,110L460,140L560,80L640,110L720,60L820,100L900,70L1000,120L1080,90L1180,130L1260,100L1360,150L1440,120L1440,280Z'/%3E%3Cpath fill='rgba(255,255,255,0.06)' d='M0,280L0,255L100,238L200,248L320,218L440,198L560,222L680,190L800,210L920,182L1040,200L1160,176L1300,195L1440,180L1440,280Z'/%3E%3C/svg%3E") bottom/cover no-repeat;
  pointer-events: none;
}
#hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 10% 15%, rgba(244,162,40,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 90% 80%, rgba(82,183,136,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding: 130px 0 80px; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(244,162,40,0.15); border: 1px solid rgba(244,162,40,0.4);
  color: var(--accent-light); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 8px 20px; border-radius: var(--r-full); margin-bottom: 22px;
  font-family: 'Inter', sans-serif;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: dotPulse 2s ease infinite; }
@keyframes dotPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:0.5} }

.hero-title { font-size: clamp(2.8rem, 6vw, 4.5rem); color: #fff; font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.hero-title .golden { color: var(--accent); font-style: italic; display: block; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,0.72); max-width: 480px; line-height: 1.8; margin-bottom: 30px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 38px; }

.btn-primary-custom {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff; font-weight: 700;
  padding: 13px 28px; border-radius: var(--r-md); font-size: 0.9rem;
  font-family: 'Inter', sans-serif; box-shadow: var(--shadow-accent); transition: var(--t-fast);
}
.btn-primary-custom:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff; font-weight: 700;
  padding: 13px 24px; border-radius: var(--r-md); font-size: 0.9rem; transition: var(--t-fast);
}
.btn-whatsapp:hover { background: #1aab52; color: #fff; transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.4); color: #fff; font-weight: 500;
  padding: 12px 22px; border-radius: var(--r-md); font-size: 0.9rem; transition: var(--t-fast);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 22px; }
.hero-stat .stat-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; color: var(--accent); }
.hero-stat .stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.58); margin-top: 2px; }
.hero-divider { width: 1px; height: 34px; background: rgba(255,255,255,0.15); align-self: center; }

/* ===== HERO FORM ===== */
.hero-form-wrap { background: #fff; border-radius: var(--r-xl); padding: 30px 26px; box-shadow: 0 30px 80px rgba(0,0,0,0.3); position: relative; z-index: 3; }
.form-header-top { text-align: center; padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.form-header-top h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 4px; }
.form-header-top p  { font-size: 0.8rem; color: var(--text-muted); font-family: 'Inter', sans-serif; }

.form-field { margin-bottom: 10px; }
.form-field label { display: block; font-size: 0.7rem; font-weight: 700; color: var(--text-dark); letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 4px; font-family: 'Inter', sans-serif; }
.form-field label span { color: var(--accent); }

.form-control-custom {
  width: 100%; background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: var(--r-md); padding: 10px 13px;
  font-size: 0.9rem; color: var(--text-dark); font-family: 'Inter', sans-serif;
  transition: var(--t-fast); outline: none; appearance: none; -webkit-appearance: none;
}
.form-control-custom:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(27,67,50,0.1); }
.form-control-custom::placeholder { color: var(--text-light); }
select.form-control-custom {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; padding-right: 34px;
}

.btn-form-submit {
  width: 100%; background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff; font-weight: 700; padding: 13px; border-radius: var(--r-md);
  border: none; cursor: pointer; font-size: 0.95rem; font-family: 'Inter', sans-serif;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 8px 25px rgba(27,67,50,0.3); transition: var(--t-fast);
}
.btn-form-submit:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); transform: translateY(-1px); }

.form-alt-ctas { display: flex; gap: 8px; margin-top: 10px; }
.form-alt-wa, .form-alt-call {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 6px; padding: 10px 6px; border-radius: var(--r-md);
  font-size: 0.82rem; font-weight: 700; transition: var(--t-fast); font-family: 'Inter', sans-serif;
}
.form-alt-wa   { background: #f0faf4; border: 1.5px solid #25d366; color: #1a7a45; }
.form-alt-wa:hover   { background: #25d366; color: #fff; }
.form-alt-call { background: var(--primary-pale); border: 1.5px solid var(--primary-light); color: var(--primary); }
.form-alt-call:hover { background: var(--primary); color: #fff; }

.form-trust-line { display: flex; justify-content: center; gap: 12px; margin-top: 10px; font-size: 0.72rem; color: var(--text-muted); font-family: 'Inter', sans-serif; }
.form-trust-line i { color: var(--primary); margin-right: 3px; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--primary); padding: 14px 0; }
.trust-bar-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 500; }
.trust-bar-item i { color: var(--accent); font-size: 1rem; }
.trust-bar-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.2); }

/* ===== FEATURE CARDS ===== */
.feature-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 22px; text-align: center; transition: var(--t-base); height: 100%; }
.feature-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-icon { width: 58px; height: 58px; background: var(--primary-pale); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.3rem; color: var(--primary); transition: var(--t-base); }
.feature-card:hover .feature-icon { background: var(--primary); color: #fff; }
.feature-card h4 { font-size: 1rem; margin-bottom: 8px; font-family: 'Inter', sans-serif; font-weight: 700; }
.feature-card p  { font-size: 0.875rem; color: var(--text-muted); margin: 0; }

/* ===== PACKAGE CARDS ===== */
.package-card { background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--t-base); height: 100%; display: flex; flex-direction: column; }
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.pkg-img-wrap { position: relative; overflow: hidden; height: 220px; }
.pkg-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.package-card:hover .pkg-img-wrap img { transform: scale(1.06); }
.pkg-img-overlay { position: absolute; inset: 0; background: rgba(27,67,50,0.78); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.2s ease; }
.package-card:hover .pkg-img-overlay { opacity: 1; }
.pkg-overlay-btn { display: inline-flex; align-items: center; gap: 8px; background: #25d366; color: #fff; font-weight: 700; padding: 11px 22px; border-radius: var(--r-md); font-size: 0.88rem; font-family: 'Inter', sans-serif; transform: translateY(10px); transition: transform 0.2s ease; }
.package-card:hover .pkg-overlay-btn { transform: translateY(0); }
.pkg-overlay-btn:hover { background: #1aab52; color: #fff; }
.pkg-badge { position: absolute; top: 14px; left: 14px; background: var(--accent); color: #fff; font-size: 0.68rem; font-weight: 700; padding: 4px 12px; border-radius: var(--r-full); text-transform: uppercase; letter-spacing: 0.05em; font-family: 'Inter', sans-serif; }

.pkg-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.pkg-dest-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 8px; }
.pkg-dest-tag { background: var(--primary-pale); color: var(--primary); font-size: 0.68rem; font-weight: 600; padding: 2px 8px; border-radius: 20px; font-family: 'Inter', sans-serif; }
.pkg-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.pkg-duration { font-size: 0.78rem; color: var(--text-muted); font-family: 'Inter', sans-serif; }
.pkg-rating   { font-size: 0.78rem; color: var(--accent); font-family: 'Inter', sans-serif; font-weight: 700; }
.pkg-title    { font-size: 1.1rem; margin-bottom: 3px; color: var(--text-dark); }
.pkg-subtitle { font-size: 0.76rem; color: var(--accent-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-family: 'Inter', sans-serif; margin-bottom: 10px; }
.pkg-highlights { list-style: none; padding: 0; margin: 0 0 12px; flex: 1; }
.pkg-highlights li { font-size: 0.82rem; color: var(--text-muted); padding: 2px 0; display: flex; align-items: flex-start; gap: 6px; }
.pkg-highlights li::before { content: '✓'; color: var(--primary); font-weight: 700; font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }

.pkg-price-row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 12px; gap: 8px; }
.pkg-price { display: flex; align-items: baseline; gap: 3px; flex-wrap: wrap; }
.pkg-price-label  { font-size: 0.68rem; color: var(--text-muted); font-family: 'Inter', sans-serif; text-transform: uppercase; width: 100%; }
.pkg-price-amount { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.pkg-price-per    { font-size: 0.72rem; color: var(--text-muted); }
.pkg-details-link { font-size: 0.78rem; font-weight: 700; color: var(--primary); font-family: 'Inter', sans-serif; display: flex; align-items: center; gap: 3px; white-space: nowrap; flex-shrink: 0; }
.pkg-details-link:hover { color: var(--accent); }

/* LEAD BUTTONS */
.pkg-cta-group { display: flex; gap: 8px; }
.pkg-btn-wa, .pkg-btn-call {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 6px; padding: 11px 8px; border-radius: var(--r-md);
  font-weight: 700; font-size: 0.85rem; font-family: 'Inter', sans-serif; transition: var(--t-fast);
}
.pkg-btn-wa   { background: #25d366; color: #fff; box-shadow: 0 4px 14px rgba(37,211,102,0.3); }
.pkg-btn-wa:hover   { background: #1aab52; color: #fff; transform: translateY(-2px); }
.pkg-btn-call { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(27,67,50,0.25); }
.pkg-btn-call:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }

/* ===== DESTINATION CARDS ===== */
.dest-card { position: relative; border-radius: var(--r-lg); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); transition: var(--t-base); }
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dest-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.dest-card:hover .dest-img-wrap img { transform: scale(1.08); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,15,8,0.78) 0%, transparent 55%); }
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 16px; }
.dest-info h4 { color: #fff; font-size: 1.05rem; margin-bottom: 3px; }
.dest-info p  { color: rgba(255,255,255,0.72); font-size: 0.78rem; font-family: 'Inter', sans-serif; margin: 0; }
.dest-tag { display: inline-block; background: var(--accent); color: #fff; font-size: 0.68rem; padding: 3px 10px; border-radius: var(--r-full); margin-bottom: 5px; font-family: 'Inter', sans-serif; font-weight: 700; }

/* ===== COUNTERS ===== */
.counters-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-mid)); padding: 60px 0; }
.counter-num { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--accent); line-height: 1; }
.counter-label { color: rgba(255,255,255,0.78); font-size: 0.85rem; margin-top: 8px; font-family: 'Inter', sans-serif; text-align: center; }
.counter-item { text-align: center; }

/* ===== TESTIMONIALS ===== */
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 24px 20px; height: 100%; transition: var(--t-base); }
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.testi-stars { color: var(--accent); font-size: 0.88rem; margin-bottom: 12px; }
.testi-text  { font-size: 0.88rem; color: var(--text-body); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testi-text::before { content: '"'; font-size: 1.5rem; color: var(--primary); line-height: 0; vertical-align: -8px; margin-right: 2px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-mid)); display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-weight: 700; color: #fff; font-size: 1rem; flex-shrink: 0; }
.testi-name     { font-weight: 700; font-size: 0.88rem; color: var(--text-dark); font-family: 'Inter', sans-serif; }
.testi-location { font-size: 0.76rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--border); border-radius: var(--r-md); margin-bottom: 10px; overflow: hidden; }
.faq-item.active { border-color: var(--primary-light); }
.faq-question { width: 100%; text-align: left; background: #fff; border: none; padding: 15px 18px; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-weight: 600; font-size: 0.9rem; color: var(--text-dark); font-family: 'Inter', sans-serif; transition: var(--t-fast); }
.faq-item.active .faq-question { color: var(--primary); }
.faq-icon { width: 24px; height: 24px; background: var(--primary-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.7rem; transition: var(--t-fast); flex-shrink: 0; }
.faq-item.active .faq-icon { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 18px 14px; font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; font-family: 'Inter', sans-serif; }
.faq-item.active .faq-answer { display: block; }

/* ===== CTA SECTION ===== */
.cta-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-mid)); padding: 80px 0; position: relative; overflow: hidden; }
.cta-title { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 14px; }
.cta-subtitle { color: rgba(255,255,255,0.78); font-size: 1rem; margin-bottom: 30px; }
.btn-cta-wa { display: inline-flex; align-items: center; gap: 9px; background: #25d366; color: #fff; font-weight: 700; padding: 14px 30px; border-radius: var(--r-md); font-size: 0.95rem; box-shadow: 0 8px 25px rgba(37,211,102,0.35); transition: var(--t-fast); font-family: 'Inter', sans-serif; }
.btn-cta-wa:hover { background: #1aab52; color: #fff; transform: translateY(-2px); }
.btn-cta-outline { display: inline-flex; align-items: center; gap: 9px; border: 2px solid rgba(255,255,255,0.4); color: #fff; font-weight: 600; padding: 13px 26px; border-radius: var(--r-md); font-size: 0.9rem; transition: var(--t-fast); font-family: 'Inter', sans-serif; }
.btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

/* ===== HOW IT WORKS ===== */
.step-card { text-align: center; position: relative; }
.step-num { width: 56px; height: 56px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; }
.step-connector { position: absolute; top: 28px; left: 70%; right: -30%; height: 2px; background: linear-gradient(90deg, var(--primary), transparent); }
.step-card:last-child .step-connector { display: none; }
.step-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; font-family: 'Inter', sans-serif; }
.step-text  { font-size: 0.82rem; color: var(--text-muted); }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-mid)); padding: 110px 0 60px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 50px; background: #fff; clip-path: ellipse(55% 100% at 50% 100%); }
.page-hero.snow-after::after { background: var(--snow); }
.page-hero-title { font-size: clamp(2rem, 5vw, 3.2rem); color: #fff; margin-bottom: 10px; }
.breadcrumb-item a { color: var(--accent); }
.breadcrumb-item.active { color: rgba(255,255,255,0.65); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ===== ABOUT PAGE ===== */
.about-img-wrap { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-badge-float { position: absolute; bottom: 24px; left: -18px; background: #fff; border-radius: var(--r-lg); padding: 14px 18px; box-shadow: var(--shadow-md); text-align: center; min-width: 130px; }
.about-badge-float .num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--primary); line-height: 1; }
.about-badge-float .label { font-size: 0.72rem; color: var(--text-muted); font-family: 'Inter', sans-serif; margin-top: 4px; }
.team-card { text-align: center; padding: 24px 18px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); transition: var(--t-base); }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar { width: 76px; height: 76px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-mid)); margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #fff; }
.team-name { font-size: 1rem; font-weight: 700; margin-bottom: 3px; font-family: 'Inter', sans-serif; }
.team-role { font-size: 0.78rem; color: var(--accent-dark); font-family: 'Inter', sans-serif; font-weight: 600; }
.timeline { position: relative; padding-left: 30px; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--accent)); }
.timeline-item { position: relative; padding-bottom: 26px; }
.timeline-dot  { position: absolute; left: -25px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--primary); border: 2px solid #fff; box-shadow: 0 0 0 3px var(--primary-light); }
.timeline-year  { font-size: 0.72rem; font-weight: 700; color: var(--accent-dark); text-transform: uppercase; letter-spacing: 0.1em; font-family: 'Inter', sans-serif; margin-bottom: 3px; }
.timeline-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; font-family: 'Inter', sans-serif; }
.timeline-text  { font-size: 0.84rem; color: var(--text-muted); }

/* ===== CONTACT PAGE ===== */
.contact-info-card { background: #fff; border-radius: var(--r-xl); padding: 36px 30px; box-shadow: var(--shadow-md); border: 1px solid var(--border); height: 100%; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 22px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-icon { width: 46px; height: 46px; flex-shrink: 0; background: var(--primary-pale); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--primary); }
.contact-label { font-size: 0.72rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-family: 'Inter', sans-serif; margin-bottom: 3px; }
.contact-value { font-size: 0.92rem; color: var(--text-dark); font-weight: 600; font-family: 'Inter', sans-serif; }
.contact-value a { color: var(--text-dark); }
.contact-value a:hover { color: var(--primary); }

.contact-form-card { background: #fff; border-radius: var(--r-xl); padding: 36px 32px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }

.btn-contact-submit {
  width: 100%; background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff; font-weight: 700; font-size: 1rem; padding: 14px;
  border-radius: var(--r-md); border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: var(--t-fast);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 8px 25px rgba(27,67,50,0.3);
}
.btn-contact-submit:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); transform: translateY(-1px); }

.btn-contact-wa {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff; font-weight: 700; padding: 13px;
  border-radius: var(--r-md); font-size: 0.92rem; font-family: 'Inter', sans-serif;
  transition: var(--t-fast);
}
.btn-contact-wa:hover { background: #1aab52; color: #fff; }

.btn-contact-call {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: #fff; font-weight: 700; padding: 13px;
  border-radius: var(--r-md); font-size: 0.92rem; font-family: 'Inter', sans-serif;
  transition: var(--t-fast);
}
.btn-contact-call:hover { background: var(--accent-dark); color: #fff; }

/* ===== FOOTER ===== */
.site-footer { background: var(--footer-bg); color: rgba(255,255,255,0.62); }
.footer-wave svg { display: block; }
.footer-main { padding: 56px 0 36px; }
.footer-logo-link { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-icon { width: 42px; height: 42px; background: linear-gradient(135deg, var(--primary), var(--primary-mid)); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--accent); border: 1px solid rgba(244,162,40,0.3); }
.footer-logo-name { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.05rem; display: block; }
.footer-logo-tag  { font-size: 0.6rem; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; font-family: 'Inter', sans-serif; }
.footer-desc { font-size: 0.84rem; line-height: 1.8; margin-bottom: 18px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0 0 18px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.83rem; margin-bottom: 8px; }
.footer-contact-list li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.62); }
.footer-contact-list a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.62); font-size: 0.83rem; transition: var(--t-fast); }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-widget-title { font-family: 'Inter', sans-serif; font-size: 0.74rem; font-weight: 700; color: #fff; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 7px; }
.footer-links a { color: rgba(255,255,255,0.52); font-size: 0.83rem; transition: var(--t-fast); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-trust-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.trust-badge-item { display: flex; align-items: center; gap: 5px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-sm); padding: 5px 10px; font-size: 0.72rem; color: rgba(255,255,255,0.62); font-family: 'Inter', sans-serif; }
.trust-badge-item i { color: var(--accent); }
.footer-newsletter-inp { display: flex; gap: 7px; }
.footer-newsletter-inp input { flex: 1; padding: 9px 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-md); color: #fff; font-size: 0.84rem; outline: none; font-family: 'Inter', sans-serif; }
.footer-newsletter-inp input::placeholder { color: rgba(255,255,255,0.28); }
.footer-newsletter-inp input:focus { border-color: var(--accent); }
.footer-newsletter-inp button { background: var(--accent); color: #fff; border: none; border-radius: var(--r-md); padding: 9px 14px; cursor: pointer; font-size: 0.84rem; transition: var(--t-fast); }
.footer-newsletter-inp button:hover { background: var(--accent-dark); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0; }
.footer-copy { font-size: 0.82rem; margin: 0; }
.footer-copy .fa-heart { color: var(--accent); }
.footer-bottom-links { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: var(--t-fast); }
.footer-bottom-links a:hover { color: var(--accent); }
.footer-bottom-links .sep { color: rgba(255,255,255,0.18); }

/* ===== FLOATING WA + STICKY MOBILE CTA ===== */
.floating-wa { position: fixed; bottom: 90px; right: 22px; width: 54px; height: 54px; background: #25d366; border-radius: 50%; z-index: 999; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: #fff; box-shadow: 0 8px 25px rgba(37,211,102,0.45); transition: var(--t-fast); }
.floating-wa:hover { transform: scale(1.1); color: #fff; }
.floating-wa::before { content: ''; position: absolute; inset: -6px; border: 2px solid rgba(37,211,102,0.35); border-radius: 50%; animation: waPulse 2.5s ease infinite; }
@keyframes waPulse { 0%{transform:scale(1);opacity:0.8} 70%{transform:scale(1.35);opacity:0} 100%{opacity:0} }

.sticky-mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 998; display: flex; box-shadow: 0 -4px 20px rgba(0,0,0,0.15); }
.sticky-cta-call { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; font-weight: 700; font-size: 0.9rem; font-family: 'Inter', sans-serif; background: var(--primary); color: #fff; }
.sticky-cta-wa   { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 14px; font-weight: 700; font-size: 0.9rem; font-family: 'Inter', sans-serif; background: #25d366; color: #fff; }
.sticky-cta-call:hover { background: var(--primary-dark); color: #fff; }
.sticky-cta-wa:hover   { background: #1aab52; color: #fff; }

/* ===== SUCCESS MODAL ===== */
.success-checkmark { width: 70px; height: 70px; border-radius: 50%; background: linear-gradient(135deg, #25d366, #1aab52); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #fff; animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes popIn { from{transform:scale(0)} to{transform:scale(1)} }

/* ===== THANK YOU / 404 ===== */
.thankyou-section { min-height: 100vh; display: flex; align-items: center; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.thankyou-card { background: #fff; border-radius: var(--r-xl); padding: 52px 44px; text-align: center; box-shadow: 0 40px 100px rgba(0,0,0,0.3); }
.thankyou-icon { width: 88px; height: 88px; border-radius: 50%; background: linear-gradient(135deg, #25d366, #1aab52); margin: 0 auto 22px; display: flex; align-items: center; justify-content: center; font-size: 2.3rem; color: #fff; animation: popIn 0.5s 0.2s both; }
.notfound-section { min-height: 100vh; display: flex; align-items: center; background: var(--snow); }
.error-num { font-size: 8rem; font-weight: 700; color: var(--primary); line-height: 1; opacity: 0.1; }

/* ===== PKG FILTER ===== */
.pkg-filter-btn, .filter-btn { padding: 8px 22px; border-radius: var(--r-full); border: 1.5px solid var(--border); background: #fff; color: var(--text-muted); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: var(--t-fast); font-family: 'Inter', sans-serif; }
.pkg-filter-btn:hover, .pkg-filter-btn.active, .filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ===== PRIVACY/TERMS ===== */
.legal-section-icon { width: 32px; height: 32px; background: var(--primary-pale); border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; font-size: .85rem; color: var(--primary); flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width:991.98px) {
  .hero-content { padding: 110px 0 50px; }
  .hero-form-wrap { margin-top: 36px; }
  .step-connector { display: none; }
  body { padding-bottom: 60px; }
  .floating-wa { bottom: 78px; right: 14px; width: 50px; height: 50px; font-size: 1.3rem; }
}
@media (max-width:767.98px) {
  .hero-title { font-size: 2.4rem; }
  .section-pad { padding: 56px 0; }
  .trust-bar-divider { display: none; }
  .pkg-img-wrap { height: 190px; }
  .footer-main { padding: 40px 0 28px; }
  .about-badge-float { left: 10px; }
}
@media (max-width:575.98px) {
  .hero-actions { flex-direction: column; }
  .hero-actions a { justify-content: center; }
  .footer-bottom .row > div { text-align: center !important; margin-bottom: 8px; }
  .footer-bottom-links { justify-content: center; }
}
