@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

/* ================================
   DESIGN TOKENS
================================ */
:root {
  --primary: #0066cc;
  --primary-hover: #0052a3;
  --secondary: #ff6b35;
  --accent: #ffd166;
  --dark: #0a1628;
  --darker: #060e1a;
  --bg: #f0f6ff;
  --card-bg: #ffffff;
  --text: #1a2940;
  --muted: #5a6a80;
  --border: #dce8f5;
  --white: #ffffff;
  --success: #22c55e;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0,102,204,0.08);
  --shadow-md: 0 8px 24px rgba(0,102,204,0.12);
  --shadow-lg: 0 20px 48px rgba(0,102,204,0.18);
  --transition: 0.3s ease;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Outfit', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* UTILITIES */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; width: 100%; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.flex { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }

.section-tag {
  display: inline-block;
  background: rgba(0,102,204,0.1);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 4px 20px rgba(0,102,204,0.35); }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,102,204,0.4); }
.btn-secondary { background: var(--secondary); color: var(--white); box-shadow: 0 4px 20px rgba(255,107,53,0.35); }
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,107,53,0.4); }
.btn-outline { border: 2px solid rgba(255,255,255,0.6); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-ghost { background: rgba(0,102,204,0.08); color: var(--primary); }
.btn-ghost:hover { background: rgba(0,102,204,0.16); }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* HEADER */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  transition: var(--transition);
  padding: 1.2rem 0;
}
header.scrolled { background: var(--white); box-shadow: var(--shadow-md); padding: 0.7rem 0; }
.home-page header:not(.scrolled) { color: var(--white); }
.home-page header:not(.scrolled) .logo { color: var(--white); }
.home-page header:not(.scrolled) .nav-link { color: rgba(255,255,255,0.9); }
header.scrolled .nav-link { color: var(--text); }
header.scrolled .logo { color: var(--primary); }

nav.navbar { display: flex; justify-content: space-between; align-items: center; }

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo i { color: var(--secondary); }

.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-link { font-weight: 600; font-size: 0.95rem; color: var(--text); position: relative; padding: 0.3rem 0; }
.nav-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--secondary); transition: var(--transition); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--secondary); }

.btn-book { background: var(--primary); color: var(--white) !important; padding: 0.6rem 1.5rem; border-radius: var(--radius-full); font-weight: 700; font-size: 0.9rem; }
.btn-book:hover { background: var(--primary-hover); transform: translateY(-1px); }
header.scrolled .btn-book { background: var(--secondary); }

.menu-toggle { display: none; font-size: 1.5rem; color: var(--text); }
.home-page header:not(.scrolled) .menu-toggle { color: var(--white); }

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628, #1a4080);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?q=80&w=2070') center/cover;
  opacity: 0.25;
  animation: slowZoom 20s ease infinite alternate;
}
@keyframes slowZoom { to { transform: scale(1.1); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,22,40,0.5), rgba(10,22,40,0.3) 50%, rgba(10,22,40,0.7)); }

.hero-content {
  position: relative; z-index: 2;
  padding: 140px 0 80px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,107,53,0.2);
  border: 1px solid rgba(255,107,53,0.4);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.9s ease 0.2s both;
}
.hero h1 span { color: var(--secondary); }
.hero p { font-size: clamp(1rem, 2.5vw, 1.25rem); color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 3rem; animation: fadeUp 0.9s ease 0.4s both; }

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; animation: fadeUp 0.9s ease 0.6s both; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* Search Card */
.hero-search { margin-top: 3rem; animation: fadeUp 0.9s ease 0.8s both; }
.search-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}
.search-field { display: flex; flex-direction: column; gap: 0.4rem; }
.search-field label { font-size: 0.75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.search-field input, .search-field select { padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-md); font-size: 0.95rem; color: var(--text); background: var(--bg); transition: var(--transition); }
.search-field input:focus, .search-field select:focus { border-color: var(--primary); }

/* Hero Stats */
.hero-stats { display: flex; justify-content: center; gap: 3rem; margin-top: 4rem; animation: fadeUp 0.9s ease 1s both; }
.stat-item { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800; color: var(--white); line-height: 1; display: block; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 0.3rem; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.15); height: 60px; }
.scroll-down { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: 0.83rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* DESTINATION CARDS */
.destinations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }
.dest-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-md); transition: var(--transition); aspect-ratio: 3/2; background: var(--dark); }
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }
.dest-card:hover img { transform: scale(1.08); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.9), rgba(10,22,40,0.1) 60%, transparent); }
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.8rem; color: var(--white); }
.dest-tag { display: inline-block; background: var(--secondary); color: var(--white); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 0.25rem 0.75rem; border-radius: var(--radius-full); margin-bottom: 0.6rem; }
.dest-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.4rem; }
.dest-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 0.6rem; }
.dest-price { font-size: 1.1rem; font-weight: 700; }
.dest-price small { font-size: 0.78rem; font-weight: 400; opacity: 0.7; }
.dest-rating { display: flex; align-items: center; gap: 0.3rem; font-size: 0.88rem; }
.dest-rating i { color: var(--accent); }
.dest-action { position: absolute; top: 1.2rem; right: 1.2rem; width: 38px; height: 38px; background: rgba(255,255,255,0.12); backdrop-filter: blur(6px); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transform: scale(0); transition: var(--transition); }
.dest-card:hover .dest-action { transform: scale(1); }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.feature-card { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem 2rem; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.feature-icon { width: 70px; height: 70px; background: linear-gradient(135deg, rgba(0,102,204,0.1), rgba(0,102,204,0.2)); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.8rem; color: var(--primary); }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.8rem; }
.feature-card p { color: var(--muted); font-size: 0.9rem; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.test-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); position: relative; overflow: hidden; }
.test-card::before { content: '"'; position: absolute; top: 1rem; right: 1.5rem; font-family: 'Playfair Display', serif; font-size: 5rem; color: rgba(0,102,204,0.07); line-height: 1; }
.test-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.test-stars { color: var(--accent); margin-bottom: 1rem; font-size: 0.9rem; }
.test-text { color: var(--muted); font-size: 0.92rem; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.test-author { display: flex; align-items: center; gap: 1rem; }
.test-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 3px solid var(--border); }
.test-name { font-weight: 700; font-size: 0.95rem; }
.test-place { color: var(--muted); font-size: 0.8rem; }

/* NEWSLETTER */
.newsletter-section { background: linear-gradient(135deg, var(--primary), #0041a0); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.newsletter-section h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--white); margin-bottom: 1rem; }
.newsletter-section p { color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; font-size: 1.05rem; }
.newsletter-form { display: flex; max-width: 520px; margin: 0 auto; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-full); padding: 0.4rem 0.4rem 0.4rem 1.5rem; }
.newsletter-form input { flex: 1; background: none; border: none; color: var(--white); font-size: 0.95rem; padding: 0.5rem 0; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form button { background: var(--white); color: var(--primary); font-weight: 700; padding: 0.7rem 1.8rem; border-radius: var(--radius-full); font-size: 0.9rem; transition: var(--transition); flex-shrink: 0; }
.newsletter-form button:hover { background: var(--accent); color: var(--dark); }

/* PAGE HERO (inner pages) */
.page-hero { background: linear-gradient(135deg, var(--dark), #1a3a6e); padding: 160px 0 80px; text-align: center; color: var(--white); position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1488085061387-422e29b40080?q=80&w=2031') center/cover; opacity: 0.18; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 4rem); color: var(--white); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 550px; margin: 0 auto; }

/* FILTER BAR */
.filters-bar { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem 2rem; box-shadow: var(--shadow-md); display: flex; gap: 1rem; flex-wrap: wrap; align-items: end; margin-bottom: 3rem; }
.filter-group { display: flex; flex-direction: column; gap: 0.3rem; flex: 1; min-width: 150px; }
.filter-group label { font-size: 0.72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.filter-group input, .filter-group select { padding: 0.65rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--text); background: var(--bg); transition: var(--transition); }
.filter-group input:focus, .filter-group select:focus { border-color: var(--primary); }

/* TOUR DETAIL */
.tour-gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 280px 140px; gap: 0.75rem; border-radius: var(--radius-lg); overflow: hidden; }
.tour-gallery .gallery-main { grid-row: span 2; }
.tour-gallery img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: var(--transition); }
.tour-gallery img:hover { opacity: 0.85; }
.gallery-more { position: relative; }
.gallery-more img { filter: brightness(0.5); }
.gallery-more-label { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; color: var(--white); }

.tour-layout { display: grid; grid-template-columns: 1fr 380px; gap: 3rem; margin-top: 3rem; align-items: start; }

.tabs-nav { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 2rem; }
.tab-btn { padding: 0.85rem 1.8rem; font-weight: 600; font-size: 0.95rem; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -2px; transition: var(--transition); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-btn:hover { color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.itinerary-day { border-left: 3px solid var(--border); padding-left: 1.5rem; margin-bottom: 2rem; position: relative; }
.itinerary-day::before { content: ''; position: absolute; left: -7px; top: 0.4rem; width: 14px; height: 14px; background: var(--primary); border-radius: 50%; border: 2px solid var(--white); box-shadow: 0 0 0 3px var(--primary); }
.itinerary-day h4 { font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
.itinerary-day p { color: var(--muted); font-size: 0.9rem; }

.inclusion-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.inclusion-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; }
.inclusion-item.yes i { color: var(--success); }
.inclusion-item.no { opacity: 0.5; }
.inclusion-item.no i { color: #ef4444; }

.booking-widget { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-lg); border: 1px solid var(--border); position: sticky; top: 100px; }
.booking-price { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 0.2rem; }
.booking-price span { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 400; color: var(--muted); }
.booking-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.75rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.form-group input, .form-group select, .form-group textarea { padding: 0.75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-md); font-size: 0.92rem; color: var(--text); background: var(--bg); transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 90px; }

/* ABOUT */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.stat-box { background: var(--white); text-align: center; padding: 3rem 2rem; }
.stat-box .counter { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; color: var(--primary); display: block; }
.stat-box p { color: var(--muted); font-size: 0.9rem; margin-top: 0.5rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2rem; }
.team-card { text-align: center; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-img { width: 100%; aspect-ratio: 1; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-info { padding: 1.5rem; }
.team-info h3 { font-weight: 700; margin-bottom: 0.3rem; }
.team-info p { color: var(--muted); font-size: 0.87rem; }
.team-social { margin-top: 1rem; display: flex; justify-content: center; gap: 0.7rem; }
.team-social a { width: 34px; height: 34px; background: var(--bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 0.82rem; transition: var(--transition); }
.team-social a:hover { background: var(--primary); color: var(--white); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info-item { display: flex; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-icon { width: 52px; height: 52px; flex-shrink: 0; background: rgba(0,102,204,0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: var(--primary); }
.contact-text h4 { font-weight: 700; margin-bottom: 0.3rem; }
.contact-text p { color: var(--muted); font-size: 0.9rem; }
.contact-form-card { background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 4rem; }
.map-embed iframe { width: 100%; height: 380px; border: none; display: block; }

.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border); overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: var(--primary); }
.faq-question { padding: 1.2rem 1.5rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; font-size: 0.95rem; }
.faq-question i { transition: var(--transition); color: var(--primary); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; color: var(--muted); font-size: 0.93rem; line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 1.5rem 1.2rem; }

/* FOOTER */
footer { background: var(--darker); color: rgba(255,255,255,0.65); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 290px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.7rem; }
.footer-socials a { width: 38px; height: 38px; background: rgba(255,255,255,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); font-size: 0.85rem; transition: var(--transition); }
.footer-socials a:hover { background: var(--primary); color: var(--white); }
.footer-col h4 { color: var(--white); font-weight: 700; font-size: 1rem; margin-bottom: 1.5rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col li a { font-size: 0.87rem; transition: var(--transition); }
.footer-col li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.83rem; }

/* TOAST */
.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--dark); color: var(--white); padding: 1rem 1.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); z-index: 9999; display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem; max-width: 360px; animation: slideIn 0.3s ease; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.toast.success i { color: var(--success); }
.toast.error i { color: #ef4444; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .tour-layout { grid-template-columns: 1fr; }
  .booking-widget { position: static; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  header { padding: 1rem 0; }
  .nav-links { display: none; position: fixed; top: 0; right: 0; width: 80%; max-width: 320px; height: 100vh; background: var(--white); flex-direction: column; justify-content: center; gap: 2rem; box-shadow: var(--shadow-lg); z-index: 998; transition: 0.4s ease; transform: translateX(100%); }
  .nav-links.open { display: flex; transform: translateX(0); }
  .nav-link { color: var(--text) !important; font-size: 1.1rem; }
  .menu-toggle { display: block; z-index: 999; }
  .search-card { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  .stat-divider { display: none; }
  .inclusion-list { grid-template-columns: 1fr; }
  .tour-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .tour-gallery .gallery-main { grid-row: span 1; height: 250px; }
  .tour-gallery .gallery-more, .tour-gallery .gallery-side { height: 150px; }
}
@media (max-width: 520px) {
  .section { padding: 70px 0; }
  .search-card { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius-lg); gap: 0.8rem; padding: 1.5rem; }
  .newsletter-form button { border-radius: var(--radius-md); width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
}