/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #0f172a; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  --secondary: #7c3aed;
  --muted: #f8fafc;
  --muted-fg: #64748b;
  --border: #e2e8f0;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --radius: 12px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
}

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .625rem 1.25rem; border-radius: var(--radius); font-size: .9rem; font-weight: 500; cursor: pointer; border: none; transition: all .2s; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: #0f172a; }
.btn-outline:hover { background: var(--muted); }
.btn-white-outline { background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3); color: #fff; backdrop-filter: blur(8px); }
.btn-white-outline:hover { background: rgba(255,255,255,.25); }
.btn-lg { padding: .875rem 1.75rem; font-size: 1rem; }
.btn-secondary { background: #fff; color: var(--primary); }
.btn-secondary:hover { background: #f0f9ff; }

/* ===== HEADER ===== */
header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: .5rem; font-weight: 700; font-size: 1.2rem; }
.logo-icon { width: 40px; height: 40px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.logo span { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
nav.desktop { display: flex; align-items: center; gap: .25rem; }
nav.desktop a { padding: .5rem 1rem; border-radius: 8px; font-size: .9rem; font-weight: 500; color: #0f172a; transition: all .2s; }
nav.desktop a:hover, nav.desktop a.active { color: var(--primary); background: var(--primary-light); }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: .5rem; }
.mobile-menu-btn svg { width: 24px; height: 24px; stroke: #0f172a; fill: none; stroke-width: 2; stroke-linecap: round; }
.mobile-nav { display: none; position: fixed; top: 64px; right: 0; bottom: 0; width: 300px; background: #fff; border-left: 1px solid var(--border); padding: 1.5rem; flex-direction: column; gap: .5rem; z-index: 99; box-shadow: -4px 0 20px rgba(0,0,0,.1); }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: .75rem 1rem; border-radius: 8px; font-size: 1rem; font-weight: 500; color: #0f172a; transition: all .2s; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--primary); background: var(--primary-light); }
.mobile-nav .btn { margin-top: .5rem; justify-content: center; }
.overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 98; }
.overlay.open { display: block; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,23,42,.85) 0%, rgba(15,23,42,.6) 50%, rgba(15,23,42,.35) 100%); }
.hero-content { position: relative; z-index: 1; text-align: center; padding: 2rem 1.5rem; }
.hero-content h1 { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 1.25rem; letter-spacing: -.02em; }
.hero-content p { font-size: clamp(1rem, 2vw, 1.2rem); color: #cbd5e1; max-width: 560px; margin: 0 auto 2rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== SECTIONS ===== */
section { padding: 5rem 0; }
.section-bg { background: var(--muted); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: .75rem; letter-spacing: -.02em; }
.section-header p { font-size: 1.1rem; color: var(--muted-fg); max-width: 560px; margin: 0 auto; }

/* ===== FEATURED PACKAGES (HOME) ===== */
.packages-grid-top { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.package-card { position: relative; border-radius: 1rem; overflow: hidden; box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s; cursor: pointer; }
.package-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.package-card .card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.package-card:hover .card-img { transform: scale(1.08); }
.package-card-top .img-wrap { aspect-ratio: 16/10; overflow: hidden; }
.package-card-wide .img-wrap { aspect-ratio: 21/9; overflow: hidden; }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,.9) 0%, rgba(15,23,42,.3) 50%, transparent 100%); }
.package-card-wide .card-overlay { background: linear-gradient(to right, rgba(15,23,42,.9) 0%, rgba(15,23,42,.5) 50%, transparent 100%); }
.card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; color: #fff; }
.package-card-wide .card-body { bottom: auto; top: 50%; transform: translateY(-50%); right: 50%; padding: 2rem; }
.card-body h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: .5rem; }
.package-card-wide .card-body h3 { font-size: 1.75rem; }
.card-meta { display: flex; gap: 1rem; margin-bottom: .75rem; font-size: .85rem; }
.card-meta span { display: flex; align-items: center; gap: .25rem; }
.card-meta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card-highlights { list-style: none; margin-bottom: 1rem; }
.card-highlights li { font-size: .85rem; color: #cbd5e1; display: flex; align-items: center; gap: .5rem; margin-bottom: .25rem; }
.card-highlights li::before { content: '•'; color: var(--primary); font-size: 1.2rem; line-height: 1; }
.card-footer { display: flex; align-items: center; justify-content: space-between; }
.card-price { font-size: 1.5rem; font-weight: 700; }
.package-card-wide .card-price { font-size: 1.75rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { columns: 1; gap: 1.5rem; }
.testimonial-card { break-inside: avoid; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: var(--shadow); }
.stars { display: flex; gap: .2rem; margin-bottom: .75rem; }
.stars svg { width: 16px; height: 16px; fill: #f59e0b; stroke: #f59e0b; stroke-width: 1; }
.testimonial-card p { color: var(--muted-fg); line-height: 1.7; margin-bottom: 1rem; font-size: .95rem; }
.testimonial-author strong { font-size: .95rem; }
.testimonial-author span { font-size: .85rem; color: var(--muted-fg); }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--primary); color: #fff; text-align: center; }
.cta-section h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: .75rem; }
.cta-section p { font-size: 1.1rem; opacity: .9; max-width: 500px; margin: 0 auto 2rem; }

/* ===== PAGE HERO ===== */
.page-hero { padding: 5rem 0; background: linear-gradient(to bottom, var(--muted), #fff); text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -.02em; }
.page-hero p { font-size: 1.1rem; color: var(--muted-fg); max-width: 560px; margin: 0 auto; }

/* ===== DESTINATIONS PAGE ===== */
.dest-section-title { font-size: 1.5rem; font-weight: 600; margin-bottom: 1.5rem; }
.dest-section { margin-bottom: 3.5rem; }
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.dest-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s; background: #fff; border: 1px solid var(--border); }
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dest-img-wrap { aspect-ratio: 16/10; overflow: hidden; }
.dest-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.dest-card:hover .dest-img-wrap img { transform: scale(1.06); }
.dest-card-body { padding: 1.25rem; }
.dest-card-body h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: .25rem; }
.dest-country { font-size: .8rem; font-weight: 600; color: var(--primary); background: var(--primary-light); padding: .2rem .5rem; border-radius: 6px; display: inline-block; margin-bottom: .75rem; }
.dest-highlights { list-style: none; }
.dest-highlights li { font-size: .875rem; color: var(--muted-fg); display: flex; align-items: center; gap: .4rem; margin-bottom: .3rem; }
.dest-highlights li::before { content: '✓'; color: var(--primary); font-weight: 600; font-size: .8rem; }
.best-time { margin-top: .75rem; font-size: .8rem; color: var(--muted-fg); display: flex; align-items: center; gap: .3rem; border-top: 1px solid var(--border); padding-top: .75rem; }
.best-time strong { color: #0f172a; }

/* ===== PACKAGES PAGE ===== */
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.pkg-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .3s, box-shadow .3s; }
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pkg-card-header { padding: 1.5rem; border-bottom: 1px solid var(--border); }
.pkg-badge { font-size: .75rem; font-weight: 600; padding: .25rem .6rem; border-radius: 20px; display: inline-block; margin-bottom: .75rem; }
.pkg-badge.Adventure { background: #fef3c7; color: #92400e; }
.pkg-badge.Luxury { background: #f5f3ff; color: #5b21b6; }
.pkg-badge.Family { background: #ecfdf5; color: #065f46; }
.pkg-badge.Cultural { background: #fff7ed; color: #9a3412; }
.pkg-card-header h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
.pkg-meta { display: flex; gap: 1rem; font-size: .85rem; color: var(--muted-fg); }
.pkg-meta span { display: flex; align-items: center; gap: .3rem; }
.pkg-meta svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.pkg-card-body { padding: 1.5rem; }
.pkg-card-body h4 { font-size: .85rem; font-weight: 600; color: var(--muted-fg); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .75rem; }
.pkg-itinerary { list-style: none; }
.pkg-itinerary li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--muted-fg); margin-bottom: .4rem; }
.pkg-itinerary li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); margin-top: .45rem; flex-shrink: 0; }
.pkg-card-footer { padding: 1.25rem 1.5rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.pkg-price { font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.pkg-price small { font-size: .8rem; color: var(--muted-fg); font-weight: 400; }

/* ===== ABOUT PAGE ===== */
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-bottom: 5rem; }
.stat-item { text-align: center; }
.stat-value { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: .25rem; }
.stat-label { font-size: .9rem; color: var(--muted-fg); }
.story-block { max-width: 720px; margin-bottom: 4rem; }
.story-block h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 1.5rem; }
.story-block p { color: var(--muted-fg); line-height: 1.8; margin-bottom: 1rem; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.why-item { display: flex; gap: 1rem; }
.why-icon { width: 48px; height: 48px; border-radius: var(--radius); background: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon svg { width: 24px; height: 24px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.why-item h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: .4rem; }
.why-item p { font-size: .9rem; color: var(--muted-fg); }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 1000px; margin: 0 auto; }
.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: 1rem; padding: 2rem; box-shadow: var(--shadow-lg); }
.contact-form-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 500; margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: .625rem .875rem; border: 1.5px solid var(--border); border-radius: 8px; font-size: .9rem; font-family: inherit; color: #0f172a; transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background: #fff; cursor: pointer; }
.contact-info h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item-icon { width: 48px; height: 48px; border-radius: var(--radius); background: var(--primary-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-item h3 { font-size: .9rem; font-weight: 600; margin-bottom: .2rem; }
.contact-item p, .contact-item a { font-size: .9rem; color: var(--muted-fg); line-height: 1.6; }
.contact-item a:hover { color: var(--primary); }
.quick-response { background: var(--muted); border-radius: var(--radius); padding: 1.5rem; }
.quick-response h3 { font-weight: 600; margin-bottom: .5rem; }
.quick-response p { font-size: .9rem; color: var(--muted-fg); }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 800px; margin: 0 auto; padding: 3rem 0 5rem; }
.legal-content h1 { font-size: 2rem; font-weight: 700; margin-bottom: .5rem; }
.legal-date { color: var(--muted-fg); font-size: .9rem; margin-bottom: 2.5rem; }
.legal-section { margin-bottom: 2rem; }
.legal-section h2 { font-size: 1.2rem; font-weight: 600; margin-bottom: .75rem; }
.legal-section h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; margin-top: 1rem; }
.legal-section p, .legal-section li { color: var(--muted-fg); line-height: 1.8; font-size: .95rem; }
.legal-section ul { padding-left: 1.5rem; margin-top: .5rem; }
.legal-section li { margin-bottom: .25rem; }

/* ===== FOOTER ===== */
footer { background: var(--slate-900); color: #fff; }
.footer-inner { padding: 3rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.4fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; color: var(--slate-300); line-height: 1.6; }
.footer-col h4 { font-size: .9rem; font-weight: 600; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .875rem; color: var(--slate-300); transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact a, .footer-contact-addr { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--slate-300); transition: color .2s; }
.footer-contact a:hover { color: #fff; }
.footer-contact svg, .footer-contact-addr svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid var(--slate-800); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: .8rem; color: var(--slate-400); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { font-size: .8rem; color: var(--slate-400); transition: color .2s; }
.footer-legal a:hover { color: #fff; }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 1.5rem; right: 1.5rem; background: #0f172a; color: #fff; padding: 1rem 1.5rem; border-radius: var(--radius); font-size: .9rem; box-shadow: var(--shadow-lg); z-index: 999; transform: translateY(100px); opacity: 0; transition: all .3s; max-width: 340px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid #22c55e; }
.toast.error { border-left: 4px solid #ef4444; }

/* ===== VIEW ALL BTN ===== */
.text-center { text-align: center; }
.mt-10 { margin-top: 2.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .packages-grid-top { grid-template-columns: 1fr; }
  .package-card-wide .card-body { right: auto; transform: none; bottom: 0; top: auto; }
  .package-card-wide .card-overlay { background: linear-gradient(to top, rgba(15,23,42,.9) 0%, rgba(15,23,42,.3) 60%, transparent 100%); }
  .why-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .testimonials-grid { columns: 2; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1024px) {
  .testimonials-grid { columns: 3; }
}
@media (max-width: 768px) {
  nav.desktop, header .btn { display: none; }
  .mobile-menu-btn { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .dest-grid, .pkg-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
