@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --bg-dark: #0f172a;
  --bg-card: #1e293b;
  --bg-card-hover: #334155;
  --text-white: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border: rgba(148,163,184,0.15);
  --gradient-1: linear-gradient(135deg, #0ea5e9, #8b5cf6);
  --gradient-2: linear-gradient(135deg, #f59e0b, #ef4444);
  --gradient-3: linear-gradient(135deg, #10b981, #0ea5e9);
  --shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: inherit; }

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  backdrop-filter: blur(0);
}
.navbar.scrolled {
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo span { -webkit-text-fill-color: var(--accent); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-1); transition: width 0.3s;
}
.nav-links a:hover { color: var(--text-white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gradient-1); color: white;
  padding: 0.5rem 1.2rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  transition: var(--transition);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(14,165,233,0.4); }
.menu-toggle {
  display: none; background: none;
  color: var(--text-white); font-size: 1.5rem;
}
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,23,42,0.98); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-size: 1.3rem; color: var(--text-white); font-weight: 500; }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; color: white; font-size: 2rem; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.4) saturate(1.2);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(15,23,42,0.3) 0%, rgba(15,23,42,0.7) 70%, var(--bg-dark) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; width: 100%;
  padding: 0 1rem;
}
.hero-badge {
  display: inline-block;
  background: rgba(14,165,233,0.15); border: 1px solid rgba(14,165,233,0.3);
  color: var(--primary); padding: 0.4rem 1.2rem;
  border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800; line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}
.hero h1 .highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted); max-width: 600px;
  margin: 0 auto 2rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}
.btn {
  padding: 0.8rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); display: inline-flex;
  align-items: center; gap: 0.5rem;
}
.btn-primary {
  background: var(--gradient-1); color: white;
  box-shadow: 0 4px 15px rgba(14,165,233,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(14,165,233,0.5); }
.btn-outline {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  display: block; width: 24px; height: 40px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 20px; position: relative;
}
.scroll-indicator span::after {
  content: ''; width: 4px; height: 8px;
  background: var(--primary); border-radius: 2px;
  position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%);
  animation: scrollDot 2s infinite;
}

/* ===== SECTIONS COMMON ===== */
section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  color: var(--primary); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 0.8rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; margin-bottom: 1rem;
}
.section-desc { color: var(--text-muted); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-img { position: relative; border-radius: 1rem; overflow: hidden; }
.about-img img { width: 100%; height: 400px; object-fit: cover; filter: brightness(0.9) contrast(1.1); }
.about-img::after {
  content: ''; position: absolute; inset: 0;
  border: 2px solid rgba(14,165,233,0.3); border-radius: 1rem;
  pointer-events: none;
}
.about-text h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 1rem; }
.about-text p { color: var(--text-muted); margin-bottom: 1.5rem; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  background: var(--gradient-1);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { color: var(--text-dim); font-size: 0.85rem; margin-top: 0.3rem; }

/* ===== DESTINATIONS ===== */
.dest-section { background: linear-gradient(180deg, var(--bg-dark) 0%, #0c1222 100%); }
.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; }
.dest-card {
  background: var(--bg-card); border-radius: 1rem;
  overflow: hidden; border: 1px solid var(--border);
  transition: var(--transition); position: relative;
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(14,165,233,0.3); }
.dest-card-img { position: relative; height: 240px; overflow: hidden; }
.dest-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card:hover .dest-card-img img { transform: scale(1.1); }
.dest-card-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--gradient-2); color: white;
  padding: 0.3rem 0.8rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700;
}
.dest-card-body { padding: 1.5rem; }
.dest-card-body h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.5rem; }
.dest-card-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.dest-price { font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.dest-price small { font-size: 0.8rem; color: var(--text-dim); font-weight: 400; }
.dest-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem; border-top: 1px solid var(--border); margin-top: 1rem;
}
.dest-rating { display: flex; align-items: center; gap: 0.3rem; color: var(--accent); font-size: 0.9rem; }
.dest-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; transition: var(--transition); }
.dest-link:hover { color: var(--accent); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative; border-radius: 0.75rem;
  overflow: hidden; cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.85) saturate(1.1);
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(1) saturate(1.3); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 1.2rem;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { font-weight: 600; font-size: 1rem; }

/* ===== VIDEO ===== */
.video-section { background: linear-gradient(180deg, #0c1222 0%, var(--bg-dark) 100%); }
.video-wrapper {
  position: relative; max-width: 900px; margin: 0 auto;
  border-radius: 1rem; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.video-wrapper iframe {
  width: 100%; aspect-ratio: 16/9; display: block; border: none;
}
.video-text-overlay {
  position: absolute; top: 1rem; left: 1rem;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  padding: 0.6rem 1.2rem; border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem; font-weight: 600; color: white;
  z-index: 5; pointer-events: none;
}
.video-wrapper video {
  width: 100%; display: block; border-radius: 1rem;
  max-height: 80vh;
}

/* ===== AUDIO ===== */
.audio-section { background: var(--bg-card); }
.audio-player {
  max-width: 700px; margin: 0 auto;
  background: linear-gradient(135deg, var(--bg-dark), #162033);
  border-radius: 1.5rem; padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.audio-info { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 2rem; }
.audio-artwork {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gradient-1);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; flex-shrink: 0;
  animation: pulse-glow 2s ease-in-out infinite;
}
.audio-artwork.playing { animation: spin 4s linear infinite, pulse-glow 2s ease-in-out infinite; }
.audio-meta h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.3rem; }
.audio-meta p { color: var(--text-muted); font-size: 0.9rem; }
.audio-progress { margin-bottom: 1.5rem; }
.progress-bar {
  width: 100%; height: 6px; background: rgba(255,255,255,0.1);
  border-radius: 3px; cursor: pointer; position: relative; overflow: hidden;
}
.progress-fill {
  height: 100%; background: var(--gradient-1);
  border-radius: 3px; width: 0%; transition: width 0.1s;
}
.progress-times { display: flex; justify-content: space-between; margin-top: 0.5rem; }
.progress-times span { font-size: 0.75rem; color: var(--text-dim); }
.audio-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; }
.audio-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient-1); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; transition: var(--transition);
}
.audio-btn:hover { transform: scale(1.1); box-shadow: 0 0 25px rgba(14,165,233,0.5); }
.audio-btn-sm {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.audio-btn-sm:hover { background: rgba(255,255,255,0.2); color: white; }
.volume-control { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; justify-content: center; }
.volume-slider {
  width: 120px; height: 4px; -webkit-appearance: none; appearance: none;
  background: rgba(255,255,255,0.15); border-radius: 2px; outline: none;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 14px; height: 14px;
  border-radius: 50%; background: var(--primary); cursor: pointer;
}

/* ===== MAP ===== */
.map-container {
  height: 500px; border-radius: 1rem;
  overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
#map { width: 100%; height: 100%; }

/* ===== INFOGRAPHIC ===== */
.infographic-section { background: linear-gradient(180deg, var(--bg-dark), #0c1222); }
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.info-card {
  background: var(--bg-card); border-radius: 1rem;
  padding: 2rem; border: 1px solid var(--border);
  text-align: center; transition: var(--transition);
}
.info-card:hover { border-color: rgba(14,165,233,0.3); transform: translateY(-4px); }
.info-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.info-card h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.5rem; }
.info-card p { color: var(--text-muted); font-size: 0.85rem; }
.info-bar { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; margin-top: 1rem; overflow: hidden; }
.info-bar-fill { height: 100%; border-radius: 4px; width: 0%; transition: width 1.5s ease-out; }
.info-bar-fill.sky { background: var(--gradient-1); }
.info-bar-fill.amber { background: var(--gradient-2); }
.info-bar-fill.emerald { background: var(--gradient-3); }

/* ===== CONTACT ===== */
.contact-section { background: var(--bg-card); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(14,165,233,0.15); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-item h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.contact-item p { color: var(--text-muted); font-size: 0.9rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.form-group input, .form-group textarea, .form-group select {
  background: var(--bg-dark); border: 1px solid var(--border);
  border-radius: 0.75rem; padding: 0.8rem 1rem;
  color: var(--text-white); font-family: var(--font-body);
  font-size: 0.9rem; transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,165,233,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  background: var(--gradient-1); color: white;
  padding: 0.9rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  transition: var(--transition); width: fit-content;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(14,165,233,0.4); }

/* ===== FOOTER ===== */
.footer {
  background: #080d1a; border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 1rem; max-width: 300px; }
.footer h4 { font-size: 1rem; margin-bottom: 1rem; font-weight: 600; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer ul a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; text-align: center; color: var(--text-dim); font-size: 0.85rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }
@keyframes scrollDot { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 24px; } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pulse-glow { 0%,100% { box-shadow: 0 0 20px rgba(14,165,233,0.3); } 50% { box-shadow: 0 0 40px rgba(14,165,233,0.6); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: 0.5rem; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; color: white; font-size: 2rem; cursor: pointer;
}

/* ===== RESPONSIVE ===== */

/* Tablet Landscape */
@media (max-width: 1024px) {
  .container { padding: 0 1.25rem; }
  .about-grid { gap: 2.5rem; }
  .dest-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
  .contact-grid { gap: 2rem; }
}

/* Tablet Portrait */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img img { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
  .video-text-overlay { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
}

/* Large Phone */
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  .section-desc { font-size: 0.95rem; }
  .hero-badge { font-size: 0.7rem; letter-spacing: 1.5px; padding: 0.3rem 1rem; }
  .hero h1 { margin-bottom: 1rem; }
  .hero p { margin-bottom: 1.5rem; }
  .about-text h3 { font-size: 1.5rem; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stat-num { font-size: 1.8rem; }
  .dest-card-img { height: 200px; }
  .dest-card-body { padding: 1.2rem; }
  .dest-card-body h3 { font-size: 1.2rem; }
  .dest-price { font-size: 1.3rem; }
  .info-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .info-card { padding: 1.5rem; }
  .contact-icon { width: 42px; height: 42px; font-size: 1rem; }
  .footer { padding: 3rem 0 1.5rem; }
  .footer-grid { margin-bottom: 2rem; }
}

/* Phone */
@media (max-width: 640px) {
  .container { padding: 0 1rem; }
  section { padding: 2.5rem 0; }
  .section-header { margin-bottom: 2rem; }
  .section-title { margin-bottom: 0.7rem; }
  .section-desc { font-size: 0.9rem; padding: 0 0.5rem; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 0.5rem; }
  .hero-badge { margin-bottom: 1rem; }
  .hero p { font-size: 0.95rem; }
  .hero-btns { flex-direction: column; align-items: center; width: 100%; }
  .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }
  .scroll-indicator { bottom: 1rem; }

  /* About */
  .about-img img { height: 250px; }
  .about-text h3 { font-size: 1.3rem; }
  .about-text p { font-size: 0.9rem; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.75rem; }

  /* Destinations */
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card-img { height: 220px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .gallery-item { border-radius: 0.5rem; }
  .gallery-item-overlay { padding: 0.8rem; }
  .gallery-item-overlay span { font-size: 0.85rem; }

  /* Video */
  .video-wrapper { border-radius: 0.75rem; }
  .video-text-overlay { font-size: 0.65rem; padding: 0.3rem 0.6rem; top: 0.5rem; left: 0.5rem; }

  /* Infographic */
  .info-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .info-card { padding: 1.2rem; }
  .info-card-icon { font-size: 2rem; margin-bottom: 0.5rem; }
  .info-card h4 { font-size: 0.95rem; }
  .info-card p { font-size: 0.8rem; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .form-group input, .form-group textarea, .form-group select {
    padding: 0.75rem 0.9rem; font-size: 1rem; /* prevent iOS zoom */
  }
  .btn-submit { width: 100%; text-align: center; justify-content: center; display: flex; }

  /* Footer */
  .footer { padding: 2.5rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }

  /* Lightbox */
  .lightbox img { max-width: 95%; max-height: 80vh; }
  .lightbox-close { top: 1rem; right: 1rem; font-size: 1.5rem; }
}

/* Small Phone */
@media (max-width: 380px) {
  html { font-size: 14px; }
  .container { padding: 0 0.75rem; }
  .nav-logo { font-size: 1.3rem; }
  .hero-badge { font-size: 0.6rem; }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .stat-num { font-size: 1.3rem; }
  .info-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Touch-friendly: bigger tap targets on mobile */
@media (hover: none) and (pointer: coarse) {
  .nav-cta { padding: 0.6rem 1.4rem; }
  .btn { padding: 0.9rem 2rem; min-height: 48px; }
  .btn-submit { min-height: 48px; }
  .mobile-menu a { padding: 0.5rem 1rem; font-size: 1.4rem; }
  .gallery-item-overlay { opacity: 1; }
  .dest-card:hover { transform: none; }
}

/* Landscape phone */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 5rem 0 3rem; }
  .hero h1 { font-size: 2rem; }
  .scroll-indicator { display: none; }
}

/* Print styles */
@media print {
  .navbar, .mobile-menu, .scroll-indicator, .lightbox, .menu-toggle { display: none !important; }
  body { background: white; color: black; }
  section { padding: 1rem 0; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
