/* ═══════════════════════════════════════════
   VIVA DVENTOURS — Tour 360° Landing Page
   ═══════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --navy:    #0a1628;
  --navy2:   #0f2044;
  --blue:    #1a3a6c;
  --teal:    #00b4d8;
  --teal2:   #0096c7;
  --teal-lt: #90e0ef;
  --orange:  #ff6b35;
  --orange2: #e85a25;
  --white:   #ffffff;
  --text:    #e8edf5;
  --muted:   #8fa3be;
  --card-bg: rgba(15, 32, 68, 0.85);
  --card-border: rgba(0, 180, 216, 0.2);

  --radius:  12px;
  --radius-lg: 20px;
  --shadow:  0 8px 32px rgba(0,0,0,0.3);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.45);

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --nav-h: 70px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── UTILITY ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.accent { color: var(--teal); }

.sec-header { text-align: center; margin-bottom: 64px; }
.sec-header h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; line-height: 1.2; margin: 8px 0 16px; }
.sec-header p { font-size: 1.05rem; color: var(--muted); max-width: 600px; margin: 0 auto; }
.sec-header.light h2 { color: var(--white); }
.sec-tag {
  display: inline-block;
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.35);
  color: var(--teal);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.5px; padding: 14px 28px; border-radius: 50px;
  transition: all 0.25s var(--ease); cursor: pointer; border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange); color: var(--white); border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange2); border-color: var(--orange2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,0.4); }
.btn-wa {
  background: #25D366; color: var(--white); border-color: #25D366;
}
.btn-wa:hover { background: #1cb555; border-color: #1cb555; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-outline-dark {
  background: transparent; color: var(--teal); border-color: var(--teal);
}
.btn-outline-dark:hover { background: var(--teal); color: var(--white); }
.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }

/* ═══════════════════════════════
   NAVBAR
═══════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(10, 22, 40, 0);
  backdrop-filter: blur(0px);
  transition: background 0.35s var(--ease), backdrop-filter 0.35s, box-shadow 0.35s;
}
#navbar.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; }
.nav-logo span { color: var(--white); }
.nav-logo em { color: var(--teal); font-style: normal; }
.nav-logo b { color: var(--orange); font-weight: 900; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.8); padding: 8px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--teal); background: rgba(0,180,216,0.1); }
.nav-cta-btn {
  background: var(--orange); color: var(--white) !important; padding: 9px 20px;
  border-radius: 50px; margin-left: 8px;
}
.nav-cta-btn:hover { background: var(--orange2); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: flex-start;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(10, 22, 40, 0.65) 55%,
    rgba(10, 22, 40, 0.25) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px; padding: 120px 24px 80px;
  margin-left: max(24px, calc(50vw - 590px));
  animation: heroIn 0.9s var(--ease) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.4);
  color: var(--teal-lt); font-size: 0.78rem; font-weight: 600; letter-spacing: 1px;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-content h1 {
  font-family: var(--font-head); line-height: 1.05; margin-bottom: 20px;
}
.h1-label {
  display: block; font-size: 0.9rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 8px;
}
.h1-main {
  display: block; font-size: clamp(3.5rem, 9vw, 6.5rem); font-weight: 900;
  color: var(--white); line-height: 1;
}
.h1-sub {
  display: block; font-size: clamp(1.2rem, 3vw, 2rem); font-weight: 600;
  color: var(--teal-lt); margin-top: 4px;
}
.hero-desc { font-size: 1.1rem; color: rgba(232,237,245,0.85); margin-bottom: 32px; max-width: 560px; }

.hero-stats {
  display: flex; align-items: center; gap: 0; margin-bottom: 36px;
  background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 0; overflow: hidden; width: fit-content;
}
.hstat { padding: 14px 24px; text-align: center; }
.hstat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }
.hn { display: block; font-family: var(--font-head); font-size: 1.6rem; font-weight: 900; color: var(--teal); }
.hl { display: block; font-size: 0.72rem; font-weight: 600; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 1px;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════
   VALUE SECTION
═══════════════════════════════ */
.value-sec { background: var(--navy2); }
.value-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px;
}
.vcard {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  opacity: 0; transform: translateY(24px);
}
.vcard.visible { opacity: 1; transform: translateY(0); }
.vcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--teal); }
.vcard-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--teal2), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white); margin-bottom: 20px;
}
.vcard h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.vcard p { font-size: 0.9rem; color: var(--muted); }

/* ═══════════════════════════════
   MID BANNER
═══════════════════════════════ */
.mid-banner { position: relative; padding: 100px 0; overflow: hidden; }
.mid-banner-bg { position: absolute; inset: 0; }
.mid-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.mid-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.8) 0%, rgba(0,180,216,0.3) 100%);
}
.mid-banner-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center;
}
.mid-banner-content blockquote {
  font-family: var(--font-head); font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800; color: var(--white); font-style: italic;
  max-width: 700px; line-height: 1.3;
}

/* ═══════════════════════════════
   ITINERARY
═══════════════════════════════ */
.itinerary-sec { background: var(--navy); }
.tabs-wrapper { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--card-border); }

.tabs-nav {
  display: flex; background: rgba(15,32,68,0.9);
  border-bottom: 1px solid var(--card-border);
}
.tab-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: 16px 8px; gap: 4px;
  font-family: var(--font-head);
  color: var(--muted); border-bottom: 3px solid transparent;
  transition: all 0.25s;
}
.tab-btn:hover { color: var(--teal); background: rgba(0,180,216,0.05); }
.tab-btn.active { color: var(--teal); border-bottom-color: var(--teal); background: rgba(0,180,216,0.08); }
.tab-btn.active-star { position: relative; }
.td { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.5px; }
.tt { font-size: 0.7rem; font-weight: 500; }

.tab-pane { display: none; }
.tab-pane.active { display: grid; grid-template-columns: 1fr 1fr; }

.day-img { position: relative; min-height: 340px; overflow: hidden; }
.day-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.day-img:hover img { transform: scale(1.04); }

/* ── Carrusel de día (itinerario) ── */
.day-carousel { position: relative; min-height: 340px; overflow: hidden; }
.day-carousel .dc-slides { position: absolute; inset: 0; }
.dc-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease; }
.dc-slide.active { opacity: 1; }
.dc-slide img { width: 100%; height: 100%; object-fit: cover; }
.dc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%; z-index: 3;
  background: rgba(10,22,40,0.5); border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.9rem;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.2s;
}
.dc-arrow:hover { background: var(--teal); transform: translateY(-50%) scale(1.08); }
.dc-prev { left: 12px; }
.dc-next { right: 12px; }
.dc-dots {
  position: absolute; left: 0; right: 0; bottom: 54px; z-index: 3;
  display: flex; justify-content: center; gap: 8px;
}
.dc-dot {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.55); transition: background 0.25s, transform 0.25s;
}
.dc-dot.active { background: var(--teal); transform: scale(1.3); }
.day-carousel .day-img-label { z-index: 2; }
.day-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 60px 24px 20px; font-family: var(--font-head); font-weight: 700;
  font-size: 1rem; color: var(--white);
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, transparent 100%);
}

.day-acts {
  background: var(--card-bg); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.act { display: flex; gap: 16px; }
.act-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 10px;
  background: rgba(0,180,216,0.15); border: 1px solid rgba(0,180,216,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 0.9rem; margin-top: 2px;
}
.act-body h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.act-body p { font-size: 0.85rem; color: var(--muted); }

/* Day 4 special */
.day4-acts .act.act-numbered { align-items: flex-start; }
.act-num {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal2), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 0.9rem; font-weight: 900;
  color: var(--white); margin-top: 2px;
}
.day4-note {
  display: flex; align-items: center; gap: 10px;
  background: rgba(0,180,216,0.12); border: 1px solid rgba(0,180,216,0.3);
  border-radius: 10px; padding: 12px 16px;
  color: var(--teal-lt); font-size: 0.85rem;
}
.day4-note i { color: var(--teal); font-size: 1rem; flex-shrink: 0; }

/* Day 5 closure */
.d5-closure {
  background: linear-gradient(135deg, var(--blue), var(--navy2));
  padding: 40px 32px; text-align: center; display: flex;
  flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.d5-closure h4 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--white); }
.d5-closure p { color: var(--muted); font-size: 0.9rem; margin-bottom: 8px; }

/* ═══════════════════════════════
   INCLUDED
═══════════════════════════════ */
.included-sec { background: var(--navy2); }
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.inc-card {
  border-radius: var(--radius-lg); padding: 40px 36px;
  border: 1px solid var(--card-border);
}
.inc-card.inc-yes { background: rgba(0, 180, 216, 0.07); border-color: rgba(0,180,216,0.3); }
.inc-card.inc-no  { background: rgba(255, 107, 53, 0.05); border-color: rgba(255,107,53,0.25); }
.inc-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.inc-card-head i { font-size: 1.4rem; }
.inc-yes .inc-card-head i { color: var(--teal); }
.inc-no  .inc-card-head i { color: var(--orange); }
.inc-card-head h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--white); }
.inc-card ul { display: flex; flex-direction: column; gap: 12px; }
.inc-card ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.92rem; color: var(--text); }
.inc-yes li i { color: #4ade80; flex-shrink: 0; margin-top: 3px; }
.inc-no  li i { color: var(--muted); flex-shrink: 0; margin-top: 3px; }
.sublist { margin-top: 8px; margin-left: 0; display: flex; flex-direction: column; gap: 4px; }
.sublist li { font-size: 0.82rem; color: var(--muted); padding-left: 16px; border-left: 2px solid rgba(255,107,53,0.3); display: block; }
.inc-note {
  display: flex; align-items: flex-start; gap: 10px; margin-top: 20px;
  background: rgba(255,107,53,0.1); border-radius: 8px; padding: 12px 14px;
  font-size: 0.83rem; color: rgba(255,107,53,0.9);
}
.inc-note i { color: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════════════
   GALLERY
═══════════════════════════════ */
.gallery-sec { background: var(--navy); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gi { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gi img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.gi:hover img { transform: scale(1.07); }
.gi-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 16px; color: var(--white); font-size: 0.85rem; font-weight: 600;
}
.gi:hover .gi-overlay { opacity: 1; }
.gi-overlay i { font-size: 1rem; color: var(--teal); }
.gi-lg { grid-column: span 2; grid-row: span 2; }
.gi-wide { grid-column: span 2; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  display: none; align-items: center; justify-content: center;
}
.lightbox.lb-open { display: flex; }
.lb-backdrop { position: absolute; inset: 0; background: rgba(5,12,25,0.95); }
.lb-media {
  position: relative; z-index: 1; max-width: 90vw; max-height: 90vh;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  animation: lbIn 0.25s var(--ease);
}
@keyframes lbIn { from { opacity:0; transform:scale(0.92); } to { opacity:1; transform:scale(1); } }
.lb-media img { max-width: 90vw; max-height: 80vh; border-radius: var(--radius); object-fit: contain; }
#lbCaption { color: var(--teal-lt); font-size: 0.9rem; text-align: center; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: var(--white); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--teal2); }
.lb-close { top: 16px; right: 16px; }
.lb-prev  { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 16px; top: 50%; transform: translateY(-50%); }

/* ═══════════════════════════════
   PRICING
═══════════════════════════════ */
.pricing-sec { background: var(--navy2); }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 40px; }
.p-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 40px 36px;
  display: flex; flex-direction: column; gap: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0; transform: translateY(24px);
}
.p-card.visible { opacity: 1; transform: translateY(0); }
.p-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.p-card.p-featured {
  border-color: var(--teal); background: rgba(0,150,199,0.1);
  position: relative;
}
.p-badge {
  display: inline-block; font-family: var(--font-head); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  background: var(--orange); color: var(--white); padding: 4px 12px; border-radius: 100px;
  width: fit-content;
}
.p-featured .p-badge { background: var(--teal); }
.p-icon { font-size: 2rem; color: var(--teal); }
.p-card h3 { font-family: var(--font-head); font-size: 1.3rem; font-weight: 800; color: var(--white); }
.p-prices { display: flex; flex-direction: column; gap: 12px; }
.p-price-row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.p-price-row span { color: var(--muted); font-size: 0.88rem; }
.p-price-row strong { font-family: var(--font-head); font-weight: 900; color: var(--white); font-size: 1.5rem; }
.p-price-row.main strong { font-size: 2rem; color: var(--teal); }
.p-price-row strong small { font-size: 0.75rem; font-weight: 500; color: var(--muted); }
.p-features { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.p-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text); }
.p-features li i { color: #4ade80; width: 14px; flex-shrink: 0; }

.payment-note {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  background: rgba(255,107,53,0.08); border: 1px solid rgba(255,107,53,0.2);
  border-radius: var(--radius); padding: 18px 28px; font-size: 0.9rem; color: var(--text);
}
.payment-note i { color: var(--orange); font-size: 1.2rem; }

.how-book { margin-top: 48px; text-align: center; }
.how-book h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 32px; }
.steps-row {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.step { display: flex; flex-direction: column; align-items: center; gap: 12px; max-width: 160px; text-align: center; }
.step-n {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal2), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.2rem; font-weight: 900; color: var(--white);
}
.step p { font-size: 0.85rem; color: var(--muted); }
.step-arr { color: var(--teal); opacity: 0.5; font-size: 1rem; }

/* ═══════════════════════════════
   FOUNDER BIO
═══════════════════════════════ */
.founder-sec { background: var(--navy); }

.founder-wrapper {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: center;
}

/* Image column */
.founder-img-col { display: flex; flex-direction: column; align-items: center; gap: 20px; }

.founder-img-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  border: 2px solid var(--card-border);
}
.founder-img-frame img {
  width: 100%; height: 460px; object-fit: cover; object-position: top center;
  transition: transform 0.5s var(--ease);
}
.founder-img-frame:hover img { transform: scale(1.04); }

.founder-img-badge {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.95) 0%, transparent 100%);
  padding: 32px 20px 18px;
  display: flex; align-items: center; gap: 8px;
  color: var(--teal-lt); font-size: 0.82rem; font-weight: 600;
}
.founder-img-badge i { color: var(--teal); font-size: 1rem; }

.founder-years {
  display: flex; flex-direction: column; align-items: center;
  background: linear-gradient(135deg, var(--teal2), var(--blue));
  border-radius: var(--radius); padding: 16px 32px; width: 100%;
  text-align: center;
}
.fy-num  { font-family: var(--font-head); font-size: 2.5rem; font-weight: 900; color: var(--white); line-height: 1; }
.fy-label { font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.75); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* Content column */
.founder-content { display: flex; flex-direction: column; gap: 20px; }
.founder-content .sec-tag { margin-bottom: 4px; display: inline-block; }
.founder-content h2 { font-family: var(--font-head); font-size: clamp(2rem,4vw,2.8rem); font-weight: 800; color: var(--white); line-height: 1.15; }

.founder-intro { font-size: 1.05rem; color: var(--text); line-height: 1.75; }
.founder-content > p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }
.founder-content > p strong { color: var(--teal); }

.founder-commitment {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(0,180,216,0.07);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: var(--radius); padding: 20px;
}
.fc-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--teal2), var(--blue));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem; margin-top: 2px;
}
.founder-commitment h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.founder-commitment p  { font-size: 0.88rem; color: var(--muted); }

.founder-quote {
  border-left: 3px solid var(--teal);
  padding: 20px 24px;
  background: rgba(15,32,68,0.6);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.founder-quote i { color: var(--teal); opacity: 0.5; font-size: 1.2rem; display: block; margin-bottom: 10px; }
.founder-quote p { font-size: 0.95rem; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 10px; }
.founder-quote cite { font-size: 0.82rem; color: var(--teal); font-style: normal; font-weight: 600; }

.founder-trust-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.ft-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.84rem; color: var(--text);
}
.ft-item i { color: #4ade80; font-size: 0.9rem; flex-shrink: 0; }

/* ═══════════════════════════════
   CONTACT
═══════════════════════════════ */
.contact-sec { background: var(--navy); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info .sec-tag { margin-bottom: 16px; display: inline-block; }
.contact-info h2 { font-family: var(--font-head); font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; margin-bottom: 16px; color: var(--white); }
.contact-info > p { color: var(--muted); margin-bottom: 32px; }
.contact-feats { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.cf { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; }
.cf i { color: var(--teal); width: 20px; }
.contact-direct-btns { display: flex; flex-direction: column; gap: 12px; }
.cdb {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: var(--radius); border: 1px solid;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cdb:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.cdb i { font-size: 1.8rem; flex-shrink: 0; }
.cdb span { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; display: block; color: var(--white); }
.cdb small { font-size: 0.78rem; color: var(--muted); }
.cdb-wa  { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.3); }
.cdb-wa  i { color: #25D366; }
.cdb-cal { background: rgba(0,180,216,0.1); border-color: rgba(0,180,216,0.3); }
.cdb-cal i { color: var(--teal); }

/* Form */
.contact-form-wrap {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-lg); padding: 40px;
}
.cform { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { display: flex; flex-direction: column; gap: 6px; position: relative; }
.fg-full { grid-column: 1 / -1; }
.fg label { font-size: 0.82rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.fg label span { color: var(--orange); }
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 12px 16px; color: var(--text);
  font: inherit; font-size: 0.9rem; transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--teal); background: rgba(0,180,216,0.05);
}
.fg input.error, .fg select.error, .fg textarea.error { border-color: #f87171; }
.fg select option { background: var(--navy2); }
.fg textarea { resize: vertical; min-height: 100px; }
.ferr { display: none; font-size: 0.78rem; color: #f87171; }
.fg.has-error .ferr { display: block; }

.fg-check { flex-direction: column; gap: 6px; }
.check-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.check-label input[type="checkbox"] { width: 18px; height: 18px; margin-top: 1px; accent-color: var(--teal); flex-shrink: 0; }
.check-label span { font-size: 0.82rem; color: var(--muted); }

.form-success {
  text-align: center; padding: 32px; border-radius: var(--radius);
  background: rgba(0,180,216,0.1); border: 1px solid rgba(0,180,216,0.3);
  animation: fadeIn 0.4s;
}
.form-success i { font-size: 2.5rem; color: #4ade80; margin-bottom: 12px; }
.form-success h4 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.form-success p { color: var(--muted); font-size: 0.9rem; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.footer { position: relative; padding: 80px 0 32px; }
.footer-bg { position: absolute; inset: 0; }
.footer-bg img { width: 100%; height: 100%; object-fit: cover; }
.footer-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.97) 0%, rgba(10,22,40,0.95) 100%);
}
.footer-inner { position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 56px; }
.footer-logo { font-family: var(--font-head); font-size: 1.4rem; font-weight: 900; margin-bottom: 16px; }
.footer-logo span { color: var(--white); }
.footer-logo em   { color: var(--teal); font-style: normal; }
.footer-logo b    { color: var(--orange); }
.fg-brand p { color: var(--muted); font-size: 0.88rem; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all 0.2s;
}
.footer-social a:hover { background: var(--teal); color: var(--white); }
.fg-links h4, .fg-contact h4 { font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--white); margin-bottom: 18px; }
.fg-links ul { display: flex; flex-direction: column; gap: 10px; }
.fg-links ul li a { font-size: 0.88rem; color: var(--muted); transition: color 0.2s; }
.fg-links ul li a:hover { color: var(--teal); }
.fg-contact p { font-size: 0.88rem; color: var(--muted); display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.fg-contact p i { color: var(--teal); width: 16px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem; color: var(--muted);
}
.footer-bottom i { color: var(--orange); }

/* ═══════════════════════════════
   FABs
═══════════════════════════════ */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white); font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.6); animation: none; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 0 0 10px rgba(37,211,102,0.12); }
}
.wa-tooltip {
  position: absolute; right: 70px; background: rgba(10,22,40,0.95);
  color: var(--white); font-family: var(--font-head); font-size: 0.78rem;
  font-weight: 600; white-space: nowrap; padding: 6px 12px; border-radius: 8px;
  opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.wa-fab:hover .wa-tooltip { opacity: 1; }

.btt {
  position: fixed; bottom: 28px; left: 28px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(0,180,216,0.2); border: 1px solid var(--teal);
  color: var(--teal); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
}
.btt:hover { background: var(--teal); color: var(--white); }

/* ═══════════════════════════════
   AOS ANIMATIONS
═══════════════════════════════ */
[data-aos] { opacity: 0; transform: translateY(28px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-aos].visible { opacity: 1; transform: translateY(0); }
[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="150"] { transition-delay: 0.15s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gi-lg { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

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

  /* Nav */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,22,40,0.98); backdrop-filter: blur(12px);
    flex-direction: column; padding: 16px; gap: 4px;
    transform: translateY(-120%); opacity: 0;
    transition: transform 0.35s var(--ease), opacity 0.35s;
    pointer-events: none;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { width: 100%; text-align: center; padding: 12px; }
  .nav-cta-btn { margin: 8px 0 0; }

  /* Hero */
  .hero-content { padding: 100px 24px 80px; margin-left: 0; }
  .hero-stats { flex-wrap: wrap; }
  .hstat-sep { display: none; }
  .hstat { padding: 10px 16px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }

  /* Tabs */
  .tab-pane.active { grid-template-columns: 1fr; }
  .tabs-nav { overflow-x: auto; }
  .tab-btn { min-width: 90px; }

  /* Included */
  .included-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gi-lg { grid-column: span 2; grid-row: span 1; }
  .gi-wide { grid-column: span 2; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Steps */
  .steps-row { flex-direction: column; gap: 20px; }
  .step-arr { transform: rotate(90deg); }

  /* Founder */
  .founder-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .founder-img-frame img { height: 360px; }
  .founder-trust-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gi-lg, .gi-wide { grid-column: span 1; }
  .inc-card { padding: 28px 20px; }
  .contact-form-wrap { padding: 24px 20px; }
}
