/* ═══════════════════════════════════════
   ZOOMFLY — MAIN STYLESHEET
   ═══════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: #fff; overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── VARIABLES ─── */
:root {
  --blue:       #1B4F8A;
  --blue-dark:  #0f3460;
  --blue-mid:   #1a5fa8;
  --blue-light: #2d6bc4;
  --gold:       #C8960C;
  --gold-light: #f0c040;
  --sand:       #FDF8F0;
  --sand-dark:  #F5EFE2;
  --text:       #1a1a2e;
  --text-muted: #6b7280;
  --border:     #e5e7eb;
  --white:      #ffffff;
  --green:      #16a34a;
  --red:        #dc2626;
  --shadow-sm:  0 2px 8px rgba(27,79,138,0.08);
  --shadow:     0 4px 24px rgba(27,79,138,0.10);
  --shadow-lg:  0 16px 48px rgba(27,79,138,0.16);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-xs:  6px;
}

/* ─── UTILITIES ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,150,12,0.10);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--blue); }
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 560px; line-height: 1.7; margin-bottom: 48px; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 0.92rem; border-radius: 100px; padding: 13px 30px; transition: all 0.25s ease; cursor: pointer; border: none; font-family: inherit; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 4px 20px rgba(27,79,138,0.25); }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(27,79,138,0.35); }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 4px 16px rgba(200,150,12,0.3); }
.btn-gold:hover { background: #b07d0a; transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-white { background: #fff; color: var(--blue); box-shadow: var(--shadow); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost-white { background: rgba(255,255,255,0.15); color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.25); }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-full { width: 100%; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5d; }

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(27,79,138,0.10);
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 4px; font-size: 1.45rem; font-weight: 700; }
.logo-zoom { color: #fff; transition: color 0.3s; }
.logo-fly  { color: var(--gold-light); transition: color 0.3s; }
.logo-plane { width: 18px; height: 18px; transition: color 0.3s; color: var(--gold-light); margin-left: 2px; }
.nav.scrolled .logo-zoom  { color: var(--blue); }
.nav.scrolled .logo-fly   { color: var(--gold); }
.nav.scrolled .logo-plane { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.88); transition: color 0.2s; position: relative; }
.nav-links a::after { content:''; position:absolute; bottom:-3px; left:0; right:0; height:2px; background:var(--gold-light); border-radius:2px; transform:scaleX(0); transition:transform 0.2s; }
.nav-links a:hover::after { transform:scaleX(1); }
.nav.scrolled .nav-links a { color: var(--text-muted); }
.nav.scrolled .nav-links a::after { background: var(--blue); }
.nav-links a:hover { color: var(--gold-light); }
.nav.scrolled .nav-links a:hover { color: var(--blue); }
.nav-cta { background: var(--gold) !important; color: #fff !important; padding: 9px 22px; border-radius: 100px; font-weight: 600 !important; transition: background 0.2s !important; }
.nav-cta::after { display: none !important; }
.nav.scrolled .nav-cta { background: var(--blue) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.nav.scrolled .hamburger span { background: var(--text); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* DARK NAV (for non-hero pages) */
.nav-dark { background: var(--blue-dark) !important; }
.nav-dark .logo-zoom { color: #fff !important; }
.nav-dark .logo-fly  { color: var(--gold-light) !important; }
.nav-dark .logo-plane { color: var(--gold-light) !important; }
.nav-dark .nav-links a { color: rgba(255,255,255,0.85) !important; }
.nav-dark .hamburger span { background: #fff !important; }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed; inset: 0; background: #fff; z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mm-link { font-size: 1.3rem; font-weight: 600; color: var(--text); transition: color 0.2s; }
.mm-link:hover { color: var(--blue); }
.mm-cta { background: var(--blue); color: #fff !important; padding: 14px 44px; border-radius: 100px; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, #1e6ec8 100%);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(212,160,23,0.12), transparent 60%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; color: #fff; margin-bottom: 16px; }
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ─── CARDS ─── */
.card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); border: 1px solid var(--border); transition: all 0.3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* ─── BADGES ─── */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 12px; border-radius: 100px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.badge-gold { background: var(--gold); color: #fff; }
.badge-blue { background: var(--blue); color: #fff; }
.badge-green { background: var(--green); color: #fff; }
.badge-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text-muted); }

/* ─── RATING STARS ─── */
.stars { color: #f59e0b; letter-spacing: 2px; font-size: 0.9rem; }

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.wa-float::before {
  content: 'Chat with us';
  position: absolute; right: 70px;
  background: #fff; color: var(--text);
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.8rem; font-weight: 600; white-space: nowrap;
  box-shadow: var(--shadow); opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.wa-float:hover::before { opacity: 1; }

/* ─── FOOTER ─── */
.footer { background: var(--blue-dark); padding: 80px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-zoom { color: #fff; }
.footer-brand .logo-fly  { color: var(--gold-light); }
.footer-brand .logo-plane { color: var(--gold-light); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.87rem; line-height: 1.7; max-width: 270px; margin-bottom: 24px; }
.footer-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.trust-badge { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.08); padding: 6px 14px; border-radius: 100px; font-size: 0.72rem; color: rgba(255,255,255,0.7); font-weight: 500; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background 0.2s; }
.social-links a:hover { background: var(--blue-light); }
.footer-col h4 { color: #fff; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.78rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); font-size: 0.78rem; transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── NEWSLETTER ─── */
.newsletter { background: var(--sand); padding: 70px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.newsletter-text h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 8px; }
.newsletter-text h3 em { font-style: italic; color: var(--blue); }
.newsletter-text p { color: var(--text-muted); }
.newsletter-form { display: flex; gap: 12px; flex: 1; max-width: 460px; }
.newsletter-form input { flex: 1; padding: 13px 18px; border: 2px solid var(--border); border-radius: 100px; font-size: 0.9rem; outline: none; transition: border-color 0.2s; }
.newsletter-form input:focus { border-color: var(--blue); }

/* ─── FORM ELEMENTS ─── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.76rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-size: 0.9rem; color: var(--text); outline: none;
  transition: border-color 0.2s; background: #fff; resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form { width: 100%; max-width: 100%; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-radius: var(--radius-sm); }
}
