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

:root {
  --primary: #0077b6;
  --primary-dark: #005f99;
  --accent: #f4a261;
  --accent-dark: #e08c4a;
  --dark: #03045e;
  --text: #1a1a2e;
  --text-light: #666;
  --white: #ffffff;
  --bg: #f8faff;
  --light: #e8f4fd;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: var(--text); overflow-x: hidden; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s, visibility 0.6s;
}
#loader.hide { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; color: white; }
.loader-logo { font-size: 32px; font-weight: 800; margin-bottom: 24px; letter-spacing: -1px; }
.loader-logo span { color: var(--accent); }
.loader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.12); border-radius: 3px; margin: 0 auto 14px; overflow: hidden; }
.loader-fill { height: 100%; background: linear-gradient(90deg, var(--accent), #f7c59f); animation: fill 2s ease forwards; }
@keyframes fill { from { width: 0; } to { width: 100%; } }
.loader-inner p { font-size: 11px; opacity: 0.4; letter-spacing: 3px; text-transform: uppercase; }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 60px;
  background: transparent;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.navbar.scrolled {
  background: rgba(3,4,94,0.97);
  backdrop-filter: blur(20px);
  padding: 14px 60px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-logo { font-size: 22px; font-weight: 800; color: white; text-decoration: none; white-space: nowrap; }
.nav-logo span { color: var(--accent); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 36px; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; position: relative; white-space: nowrap; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--accent); transition: width 0.3s; }
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--accent); }
.nav-links .nav-btn { background: var(--accent); color: white !important; padding: 10px 24px; border-radius: 8px; font-weight: 700; font-size: 14px; }
.nav-links .nav-btn::after { display: none; }
.nav-links .nav-btn:hover { background: var(--accent-dark); color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,162,97,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { width: 25px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh; min-height: 700px; width: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #03045e 0%, #0077b6 60%, #00b4d8 100%);
  padding-bottom: 140px;
}
.hero-bg {
  position: absolute; top:0; left:0; width:100%; height:100%;
  background: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1600&q=80') center/cover no-repeat;
  opacity: 0.2;
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.08); } }

.hero-overlay {
  position: absolute; top:0; left:0; width:100%; height:100%;
  background: linear-gradient(to bottom, rgba(3,4,94,0.65) 0%, rgba(0,119,182,0.3) 70%, rgba(0,180,216,0.2) 100%);
}

/* Animated gradient orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.15; animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: #00b4d8; top: -100px; right: -100px; animation-delay: 0s; }
.hero-orb-2 { width: 400px; height: 400px; background: var(--accent); bottom: -50px; left: -80px; animation-delay: 3s; }
@keyframes orbFloat { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }

.hero-content {
  position: relative; text-align: center; color: white;
  padding: 0 20px; max-width: 820px; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(244,162,97,0.15);
  border: 1px solid rgba(244,162,97,0.4);
  color: var(--accent);
  padding: 8px 20px; border-radius: 50px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 24px;
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(244,162,97,0.3); } 50% { box-shadow: 0 0 0 8px rgba(244,162,97,0); } }

.hero h1 {
  font-size: clamp(38px, 6vw, 72px); font-weight: 800;
  line-height: 1.08; margin-bottom: 20px; letter-spacing: -1.5px;
  animation: heroTitle 1s ease both;
}
@keyframes heroTitle { from { opacity:0; transform: translateY(30px); } to { opacity:1; transform: translateY(0); } }
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: clamp(15px, 2vw, 19px); opacity: 0.85; margin-bottom: 38px; line-height: 1.65;
  animation: heroTitle 1s 0.2s ease both;
}
.hero-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: heroTitle 1s 0.4s ease both;
}

/* ── SEARCH BAR ── */
.search-wrapper {
  position: absolute; bottom: 0; left: 0; right: 0;
  display: flex; justify-content: center;
  padding: 0 20px 0;
  z-index: 10;
}
.search-bar {
  background: white; border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  display: flex; gap: 16px; align-items: flex-end;
  flex-wrap: wrap; width: 100%; max-width: 920px;
  border: 1px solid rgba(0,119,182,0.1);
}
.search-field { flex: 1; min-width: 160px; }
.search-field label { display: block; font-size: 11px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.search-field select, .search-field input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid #e8eaf0; border-radius: 10px;
  font-size: 14px; outline: none; font-family: 'Inter', sans-serif;
  transition: all 0.2s; background: #fafbff;
}
.search-field select:focus, .search-field input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,119,182,0.1); background: white; }
.search-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: white;
  padding: 12px 28px; border-radius: 10px; border: none;
  font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.3s;
  white-space: nowrap; box-shadow: 0 4px 16px rgba(244,162,97,0.4);
}
.search-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,162,97,0.5); }

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white; padding: 14px 32px; border-radius: 10px; text-decoration: none;
  font-weight: 700; font-size: 15px; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; box-shadow: 0 4px 16px rgba(244,162,97,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(244,162,97,0.5); }
.btn-outline {
  background: rgba(255,255,255,0.1); color: white;
  padding: 14px 32px; border-radius: 10px; text-decoration: none;
  font-weight: 600; font-size: 15px; border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s; backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.2); border-color: white; transform: translateY(-3px); }

/* ── STATS ── */
.stats {
  background: var(--dark);
  display: flex; justify-content: center; flex-wrap: wrap;
  padding: 70px 60px 50px;
  gap: 0; position: relative; z-index: 5;
}
.stat-item { text-align: center; padding: 20px 60px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 46px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }

/* ── SECTIONS ── */
.section { padding: 110px 60px; }
.section-tag {
  display: inline-block; background: rgba(0,119,182,0.1); color: var(--primary);
  padding: 6px 16px; border-radius: 50px; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
}
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--text); margin-bottom: 14px; letter-spacing: -0.5px; line-height: 1.15; }
.section-sub { font-size: 16px; color: var(--text-light); line-height: 1.75; max-width: 580px; }

/* ── DESTINATIONS ── */
.destinations { background: var(--bg); }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 50px auto 0; }
.dest-card {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer; position: relative;
}
.dest-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 24px 60px rgba(0,119,182,0.2); }
.dest-img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.dest-card:hover .dest-img { transform: scale(1.08); }
.dest-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px;
  background: linear-gradient(to top, rgba(3,4,94,0.92) 0%, rgba(3,4,94,0.4) 60%, transparent 100%);
  color: white;
}
.dest-info h3 { font-size: 22px; font-weight: 800; margin-bottom: 4px; letter-spacing: -0.3px; }
.dest-info p { font-size: 13px; opacity: 0.75; margin-bottom: 10px; }
.dest-tag { display: inline-block; background: var(--accent); color: white; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; }

/* ── WHY US ── */
.why { background: white; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1200px; margin: 50px auto 0; }
.why-card {
  background: var(--bg); border-radius: 20px; padding: 36px 24px; text-align: center;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid transparent;
}
.why-card:hover { transform: translateY(-8px); box-shadow: 0 20px 48px rgba(0,119,182,0.12); background: white; border-color: rgba(0,119,182,0.1); }
.why-icon { font-size: 44px; margin-bottom: 18px; display: block; transition: transform 0.3s; }
.why-card:hover .why-icon { transform: scale(1.2) rotate(-5deg); }
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.why-card p { font-size: 13px; color: var(--text-light); line-height: 1.65; }

/* ── GALLERY ── */
.gallery-section { background: var(--bg); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; max-width: 1200px; margin: 50px auto 0; }
.gallery-item { border-radius: 16px; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(3,4,94,0.75), transparent);
  opacity: 0; transition: opacity 0.35s;
  display: flex; align-items: flex-end; padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-size: 13px; font-weight: 600; }
.gallery-empty { text-align: center; color: var(--text-light); padding: 60px; font-size: 15px; grid-column: 1/-1; }

/* ── LIGHTBOX ── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.94); z-index: 2000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 12px; object-fit: contain; box-shadow: 0 32px 80px rgba(0,0,0,0.5); }
.lb-close { position: absolute; top: 24px; right: 32px; color: white; font-size: 40px; cursor: pointer; border: none; background: none; opacity: 0.6; transition: opacity 0.2s, transform 0.2s; }
.lb-close:hover { opacity: 1; transform: scale(1.1); }

/* ── TESTIMONIALS ── */
.testimonials { background: linear-gradient(135deg, var(--dark) 0%, #0a1045 100%); position: relative; overflow: hidden; }
.testimonials::before { content:''; position:absolute; top:-200px; right:-200px; width:600px; height:600px; background: rgba(0,119,182,0.1); border-radius:50%; filter:blur(60px); }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1200px; margin: 50px auto 0; position: relative; z-index: 1; }
.test-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px;
  transition: all 0.4s; backdrop-filter: blur(8px);
}
.test-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-6px); border-color: rgba(244,162,97,0.2); }
.test-quote { font-size: 52px; color: var(--accent); opacity: 0.35; line-height: 1; font-family: Georgia, serif; }
.test-text { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 22px; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 14px; }
.test-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 16px; flex-shrink: 0; }
.test-author h4 { font-size: 14px; font-weight: 700; color: white; }
.test-author p { font-size: 12px; color: rgba(255,255,255,0.45); }
.stars { color: var(--accent); font-size: 13px; margin-bottom: 5px; letter-spacing: 1px; }

/* ── CONTACT ── */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 50px; max-width: 1100px; margin: 50px auto 0; align-items: start; }
.contact-info { background: linear-gradient(135deg, var(--dark), var(--primary-dark)); border-radius: 24px; padding: 44px; color: white; }
.contact-info h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.contact-info .sub { font-size: 14px; opacity: 0.7; margin-bottom: 36px; line-height: 1.65; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
.c-icon { width: 46px; height: 46px; background: rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-detail h4 { font-size: 11px; font-weight: 700; opacity: 0.55; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.contact-detail p { font-size: 15px; font-weight: 600; }

/* ── SOCIAL LINKS ── */
.social-links { display: flex; gap: 10px; margin-top: 36px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }
.social-link {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: white; text-decoration: none; font-size: 18px;
  transition: all 0.3s;
}
.social-link:hover { transform: translateY(-4px) scale(1.1); border-color: var(--accent); }
.social-link.fb:hover { background: #1877f2; }
.social-link.ig:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-link.yt:hover { background: #ff0000; }
.social-link.tw:hover { background: #000000; }
.social-link.wa:hover { background: #25d366; }

.contact-form { background: white; border-radius: 24px; padding: 44px; box-shadow: 0 8px 48px rgba(0,0,0,0.08); }
.contact-form h3 { font-size: 24px; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.contact-form .sub { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; color: #555; margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid #eaeef4; border-radius: 10px;
  font-size: 14px; outline: none; transition: all 0.2s;
  font-family: 'Inter', sans-serif; color: var(--text); background: #fafbff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,119,182,0.1); background: white; }
.form-group textarea { height: 100px; resize: vertical; }
.submit-btn { width: 100%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; padding: 14px; border: none; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 16px rgba(0,119,182,0.3); }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,119,182,0.4); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
#successMsg { display:none; background:#e8f5e9; color:#1b5e20; padding:14px; border-radius:10px; text-align:center; font-weight:600; margin-bottom:16px; font-size:14px; }

/* ── FOOTER ── */
footer { background: var(--dark); color: white; padding: 70px 60px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; max-width: 1200px; margin: 0 auto 50px; }
.footer-brand p { font-size: 13px; opacity: 0.55; line-height: 1.75; margin-top: 14px; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; color: var(--accent); }
.footer-col a { display: block; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; margin-bottom: 12px; transition: all 0.2s; }
.footer-col a:hover { color: white; padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; text-align: center; font-size: 13px; opacity: 0.35; max-width: 1200px; margin: 0 auto; }

/* Footer social */
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); text-decoration: none; font-size: 16px; transition: all 0.3s; }
.footer-social a:hover { background: var(--accent); color: white; border-color: var(--accent); transform: translateY(-3px); }

/* ── FLOATING BUTTONS ── */
.whatsapp-btn {
  position: fixed; bottom: 100px; left: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 998; text-decoration: none; transition: all 0.3s;
  animation: floatBob 3s ease-in-out infinite;
}
@keyframes floatBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.whatsapp-btn:hover { transform: scale(1.15) translateY(-4px) !important; box-shadow: 0 10px 32px rgba(37,211,102,0.6); animation: none; }
.whatsapp-btn svg { width: 28px; height: 28px; fill: white; }

#backToTop {
  position: fixed; bottom: 24px; right: 24px;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--dark));
  color: white; border: none; font-size: 22px; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,119,182,0.4);
  z-index: 998; opacity: 0; transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
}
#backToTop.show { opacity: 1; transform: translateY(0); }
#backToTop:hover { transform: translateY(-4px) !important; box-shadow: 0 10px 28px rgba(0,119,182,0.5); }

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  padding: 130px 60px 80px;
  text-align: center; color: white; overflow: hidden;
  background: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1600&q=80') center/cover no-repeat;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(3,4,94,0.88) 0%, rgba(0,119,182,0.78) 60%, rgba(0,180,216,0.65) 100%);
}
.page-hero .section-tag,
.page-hero h1,
.page-hero p { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(32px,5vw,56px); font-weight: 900; margin-bottom: 14px; letter-spacing: -1px; }
.page-hero p { font-size: 17px; opacity: 0.82; }

/* ── PAGE TRANSITIONS ── */
body { animation: pageFadeIn 0.4s ease both; }
@keyframes pageFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
body.page-exit { animation: pageFadeOut 0.3s ease forwards; }
@keyframes pageFadeOut { from { opacity: 1; transform: translateY(0); } to { opacity: 0; transform: translateY(-10px); } }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ── PACKAGES ── */
.packages { background: white; }
.pkg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; max-width: 1200px; margin: 50px auto 0; }
.pkg-card { border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.07); border: 1px solid #f0f0f0; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); }
.pkg-card:hover { transform: translateY(-8px); box-shadow: 0 20px 56px rgba(0,119,182,0.14); }
.pkg-img { width: 100%; height: 210px; object-fit: cover; transition: transform 0.5s; }
.pkg-card:hover .pkg-img { transform: scale(1.05); }
.pkg-body { padding: 24px; }
.pkg-badge { display: inline-block; background: var(--light); color: var(--primary); padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; margin-bottom: 12px; }
.pkg-body h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.pkg-body p { font-size: 13px; color: var(--text-light); line-height: 1.65; margin-bottom: 16px; }
.pkg-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.pkg-feature { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.pkg-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid #f0f0f0; }
.pkg-price { font-size: 24px; font-weight: 800; color: var(--primary); }
.pkg-price span { font-size: 12px; color: var(--text-light); font-weight: 400; }
.pkg-btn { background: linear-gradient(135deg,var(--primary),var(--primary-dark)); color: white; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-size: 13px; font-weight: 700; transition: all 0.2s; }
.pkg-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,119,182,0.35); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  html, body { overflow-x: hidden; max-width: 100vw; }
  .navbar { padding: 14px 20px; }
  .navbar.scrolled { padding: 10px 20px; }
  .nav-links { display: none; position: fixed; top:0; left:0; width:100%; height:100vh; background: var(--dark); flex-direction: column; justify-content: center; align-items: center; gap: 28px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 18px; }
  .hamburger { display: flex; }
  .hero { padding-bottom: 20px; }
  .hero h1 { font-size: 32px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; justify-content: center; }
  .search-wrapper { position: static; padding: 16px 16px 0; }
  .search-bar { flex-direction: column; border-radius: 12px; padding: 20px; }
  .section { padding: 60px 20px; }
  .stats { padding: 40px 20px; flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 16px; }
  .stat-item:last-child { border-bottom: none; }
  .dest-grid, .test-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  footer { padding: 50px 20px 0; }
  .page-hero { padding: 110px 20px 50px; }
}
