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

:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --accent: #f97316;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --white: #ffffff;
  --radius: 12px;
}

body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ─── HEADER ─── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 64px; }
.header-spacer { height: 64px; }
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-icon { font-size: 22px; }
.logo-text { font-size: 22px; font-weight: 800; color: var(--text); letter-spacing: -0.5px; }
.logo-text span { color: var(--primary); }
.main-nav { display: flex; gap: 4px; margin-left: auto; }
.main-nav a { text-decoration: none; color: var(--text-muted); font-size: 14px; font-weight: 500; padding: 6px 14px; border-radius: 8px; transition: all .2s; }
.main-nav a:hover { background: var(--bg); color: var(--primary); }
.header-actions { display: flex; gap: 8px; }
.nav-toggle { display: none; background: none; border: none; font-size: 22px; cursor: pointer; padding: 4px 8px; }
.mobile-nav { display: none; flex-direction: column; padding: 12px 20px 16px; background: white; border-top: 1px solid var(--border); gap: 4px; }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 10px 4px; text-decoration: none; color: var(--text); font-weight: 500; border-bottom: 1px solid var(--border); }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: all .2s; white-space: nowrap; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: white; }
.btn-accent:hover { background: #ea580c; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: var(--bg); }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 10px; }
.btn-sm { padding: 7px 14px; font-size: 13px; }

/* ─── HERO ─── */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; background: linear-gradient(135deg, #0c1445 0%, #0ea5e9 100%); color: white; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1600&q=80') center/cover no-repeat; opacity: 0.25; }
.hero-content { position: relative; z-index: 1; max-width: 700px; padding: 80px 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3); color: white; font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 999px; margin-bottom: 24px; backdrop-filter: blur(8px); }
.hero h1 { font-size: clamp(32px, 5vw, 58px); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.hero h1 span { color: #fbbf24; }
.hero p { font-size: 18px; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 520px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-size: 26px; font-weight: 800; }
.hero-stat span { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ─── SECTIONS ─── */
.section { padding: 72px 0; }
.section-alt { background: var(--bg); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label { display: inline-block; background: rgba(14,165,233,0.1); color: var(--primary); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; margin-bottom: 12px; }
.section-header h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; color: var(--text); }
.section-header p { color: var(--text-muted); font-size: 16px; margin-top: 12px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ─── PACKAGES GRID ─── */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.pkg-card { background: white; border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,0.07); transition: transform .2s, box-shadow .2s; }
.pkg-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.pkg-img { position: relative; height: 200px; overflow: hidden; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.pkg-card:hover .pkg-img img { transform: scale(1.05); }
.pkg-tag { position: absolute; top: 12px; left: 12px; background: var(--accent); color: white; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.pkg-body { padding: 20px; }
.pkg-dest { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; display: flex; align-items: center; gap: 4px; }
.pkg-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; }
.pkg-includes { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.pkg-includes span { font-size: 11px; background: var(--bg); color: var(--text-muted); padding: 3px 8px; border-radius: 6px; }
.pkg-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 14px; }
.pkg-price { font-size: 20px; font-weight: 800; color: var(--primary); }
.pkg-price small { font-size: 12px; font-weight: 400; color: var(--text-muted); display: block; }
.pkg-nights { font-size: 12px; color: var(--text-muted); }

/* ─── WHY US ─── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.feature-card { text-align: center; padding: 28px 20px; background: white; border-radius: var(--radius); border: 1px solid var(--border); }
.feature-icon { font-size: 36px; margin-bottom: 14px; }
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--text-muted); }

/* ─── CTA BANNER ─── */
.cta-banner { background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%); color: white; text-align: center; padding: 72px 20px; }
.cta-banner h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 16px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── FAQ ─── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; background: white; border: none; text-align: left; padding: 18px 20px; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background .15s; }
.faq-q:hover { background: var(--bg); }
.faq-q .arrow { font-size: 18px; transition: transform .3s; }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s; font-size: 14px; color: var(--text-muted); }
.faq-item.open .faq-a { max-height: 200px; padding: 4px 20px 18px; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 16px; }
.contact-info p { color: var(--text-muted); margin-bottom: 28px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-icon { width: 40px; height: 40px; background: rgba(14,165,233,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.contact-item a { color: var(--primary); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
.contact-form { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 14px; color: var(--text); transition: border .15s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,165,233,0.12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-msg { padding: 14px 18px; border-radius: 10px; font-size: 14px; margin-bottom: 18px; font-weight: 500; }
.form-msg.success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.form-msg.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ─── ABOUT ─── */
.about-hero { background: linear-gradient(135deg, #0c1445 0%, #0ea5e9 100%); color: white; padding: 80px 0; text-align: center; }
.about-hero h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 16px; }
.about-hero p { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-img img { width: 100%; border-radius: var(--radius); box-shadow: 0 8px 40px rgba(0,0,0,0.12); }
.about-text h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.stat-box { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 16px; }
.stat-box strong { display: block; font-size: 28px; font-weight: 800; color: var(--primary); }
.stat-box span { font-size: 13px; color: var(--text-muted); }

/* ─── PAGE HEADER ─── */
.page-header { background: linear-gradient(135deg, #0c1445 0%, #0ea5e9 100%); color: white; padding: 60px 0; }
.page-header h1 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; margin-bottom: 10px; }
.page-header p { color: rgba(255,255,255,0.8); font-size: 16px; }

/* ─── FOOTER ─── */
.site-footer { background: #0f172a; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .logo-text { color: white; }
.footer-desc { font-size: 14px; line-height: 1.7; margin-top: 4px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a { font-size: 20px; text-decoration: none; opacity: 0.7; transition: opacity .2s; }
.footer-social a:hover { opacity: 1; }
.footer-col h4 { color: white; font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color .15s; }
.footer-col a:hover { color: var(--primary); }
.footer-col p { font-size: 14px; margin-bottom: 10px; }
.footer-col p a { display: inline; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; text-align: center; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--primary); }

/* ─── WHATSAPP FLOAT ─── */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 58px; height: 58px; background: #25d366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform .2s; text-decoration: none; }
.wa-float:hover { transform: scale(1.1); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}
