:root {
  --netflix-50: #FFF0F0;
  --netflix-100: #FED7D7;
  --netflix-200: #FEB3B3;
  --netflix-300: #FC7F7F;
  --netflix-400: #F94A4A;
  --netflix-500: #E50914;
  --netflix-600: #B2070F;
  --netflix-700: #8B050C;
  --netflix-800: #6B0409;
  --netflix-900: #4A0306;
  --neutral-50: #FAFAFA;
  --neutral-100: #F5F5F5;
  --neutral-200: #E5E5E5;
  --neutral-300: #D4D4D4;
  --neutral-400: #A3A3A3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --amber-400: #FBBF24;
  --green-50: #F0FDF4;
  --green-200: #BBF7D0;
  --green-600: #16A34A;
  --green-700: #15803D;
  --green-800: #166534;
  --red-50: #FEF2F2;
  --red-200: #FECACA;
  --red-600: #DC2626;
  --red-800: #991B1B;
  --font-sans: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); background: #fff; color: var(--neutral-800); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* Container */
.container { max-width: 1400px; margin: 0 auto; padding: 0 12px; }
@media (min-width: 768px) { .container { padding: 0 20px; } }

/* Buttons */
.btn-primary {
  background: var(--netflix-500); background: linear-gradient(135deg, var(--netflix-500) 0%, var(--netflix-600) 100%);
  color: #fff; padding: 12px 28px; border-radius: 12px; border: none; cursor: pointer;
  font-weight: 600; transition: all .2s; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-sans); font-size: inherit; text-decoration: none;
}

.btn-primary:active { transform: scale(0.97); }

.btn-outline {
  border: 2px solid var(--netflix-500); color: var(--netflix-500); background: transparent;
  padding: 10px 24px; border-radius: 12px; font-weight: 600; transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-family: var(--font-sans);
}
.btn-outline:hover { background: var(--netflix-500); color: #fff; }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px; border: 2px solid rgba(255,255,255,0.3);
  color: #fff; font-weight: 600; padding: 12px 28px; border-radius: 12px;
  transition: background .2s; text-decoration: none;
}
.btn-whatsapp:hover { background: rgba(255,255,255,0.1); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--netflix-700); font-weight: 600;
  padding: 14px 32px; border-radius: 12px;
  transition: background .2s; border: none; cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); text-decoration: none;
}
.btn-white:hover { background: var(--neutral-100); }

/* Header */
.header { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid var(--neutral-100); transition: all .3s; background: #fff; }
.header.scrolled { box-shadow: 0 1px 6px rgba(0,0,0,0.08); background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.header-inner { max-width: 1400px; margin: 0 auto; padding: 0 12px; display: flex; align-items: center; justify-content: space-between; height: 80px; }
@media (min-width: 768px) { .header-inner { padding: 0 20px; } }
.logo img { height: 96px; width: auto; }
.nav-desktop { display: none; align-items: center; gap: 32px; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }
.nav-link { font-size: 14px; font-weight: 500; color: var(--neutral-600); transition: color .2s; }
.nav-link:hover, .nav-link.active { color: var(--netflix-500); }
.mobile-toggle { display: block; padding: 8px; color: var(--neutral-600); background: none; border: none; cursor: pointer; }
@media (min-width: 768px) { .mobile-toggle { display: none; } }
.mobile-toggle svg { width: 24px; height: 24px; }
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--neutral-100); padding: 16px 24px; }
.mobile-menu.open { display: block; }
.mobile-menu .nav-link { display: block; padding: 8px 0; }
.mobile-menu .btn-primary { margin-top: 8px; width: 100%; justify-content: center; }

/* Hero */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--neutral-900), var(--neutral-800), var(--neutral-900));
  color: #fff; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(23,23,23,.9), rgba(38,38,38,.7), transparent); }
.hero-content { position: relative; z-index: 10; width: 100%; max-width: 1400px; margin: 0 auto; padding: 96px 12px; }
@media (min-width: 768px) { .hero-content { padding: 144px 20px; } }
.hero-text { max-width: 560px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600;
  color: var(--netflix-300); background: rgba(255,255,255,0.1); padding: 8px 16px;
  border-radius: 999px; margin-bottom: 24px; backdrop-filter: blur(4px);
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-title { font-size: 36px; font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; }
@media (min-width: 768px) { .hero-title { font-size: 60px; } }
.hero-subtitle { font-size: 18px; color: var(--neutral-300); margin-top: 20px; max-width: 500px; line-height: 1.625; }
@media (min-width: 768px) { .hero-subtitle { font-size: 20px; } }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 48px; font-size: 14px; color: var(--neutral-400); }
.hero-trust span { display: flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 16px; height: 16px; color: #4ADE80; flex-shrink: 0; }
.hero-bottom-gradient { position: absolute; bottom: 0; left: 0; right: 0; height: 96px; background: linear-gradient(to top, #fff, transparent); }

/* Section styles */
.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 96px 0; } }
.section-gray { background: var(--neutral-50); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-label { font-size: 14px; font-weight: 600; color: var(--netflix-500); text-transform: uppercase; letter-spacing: 0.1em; }
.section-title { font-size: 30px; font-weight: 700; margin-top: 12px; color: var(--neutral-900); }
@media (min-width: 768px) { .section-title { font-size: 36px; } }
.section-desc { color: var(--neutral-500); max-width: 576px; margin: 12px auto 0; }
.section-underline::after {
  content: ''; display: block; width: 2rem; height: 3px;
  background: var(--netflix-500); border-radius: 2px; margin-top: 0.5rem;
}

/* Tour Cards */
.tour-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 640px) { .tour-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tour-grid { grid-template-columns: repeat(3, 1fr); } }
.tour-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid #e5e7eb; position: relative; cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.03); transition: all .35s cubic-bezier(0.22,1,0.36,1);
  display: flex; flex-direction: column;
}
.tour-card:hover { border-color: #d1d5db; transform: translateY(-8px); box-shadow: 0 24px 48px rgba(0,0,0,0.1); }
.tour-card-image { position: relative; height: 260px; overflow: hidden; }
.tour-card-image img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .5s ease, transform .7s; transform-origin: center; pointer-events: none;
}
.tour-card-image img.active { opacity: 1; z-index: 1; }
.tour-card:hover .tour-card-image img.active { transform: scale(1.08); }
.tour-card-image::after {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.15));
}
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 36px; height: 36px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.9); color: #333; font-size: 22px; line-height: 36px;
  text-align: center; opacity: 0; transition: opacity .25s, transform .25s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.tour-card-image:hover .slider-arrow { opacity: 1; }
.slider-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.slider-prev { left: 10px; }
.slider-next { right: 10px; }
.slider-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; gap: 6px; opacity: 0; transition: opacity .25s;
}
.tour-card-image:hover .slider-dots { opacity: 1; }
.slider-dots span {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5);
  cursor: pointer; transition: all .25s;
}
.slider-dots span.active { background: #fff; transform: scale(1.2); }
.tour-card-duration {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--netflix-500), #e03a2e);
  color: #fff; padding: 6px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.3px;
  box-shadow: 0 4px 10px rgba(229,62,62,0.35); z-index: 6;
}
.tour-card-badge {
  position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px); color: #fff; padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600; box-shadow: 0 2px 8px rgba(0,0,0,0.25); z-index: 1;
}
.tour-card-body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.tour-card-body .stars { margin-bottom: 14px; gap: 2px; }
.tour-card-body .stars .star { font-size: 16px; }
.tour-card-body .stars .star-empty { font-size: 16px; }
.tour-card-body .stars .star-count { font-size: 13px; color: var(--neutral-500); font-weight: 500; margin-left: 6px; }
.tour-card-title { font-size: 20px; font-weight: 700; color: var(--neutral-900); margin: 0 0 8px; line-height: 1.3; }
.tour-card-dest { font-size: 14px; color: var(--neutral-500); margin: 0 0 14px; line-height: 1.6; }
.tour-card-departure {
  font-size: 14px; color: #374151; margin: 0 0 18px; padding: 12px 16px;
  background: linear-gradient(135deg, #fafafa, #f3f4f6); border-radius: 12px;
  border: 1px solid #e5e7eb; line-height: 1.5; font-weight: 500;
}
.tour-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 20px; border-top: 1px solid #e5e7eb; }
.tour-card-price { font-size: 12px; color: var(--neutral-400); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.tour-card-price-value { font-size: 26px; font-weight: 800; color: var(--neutral-900); margin: 2px 0; line-height: 1.2; }
.tour-card-price-label { font-size: 13px; color: var(--neutral-400); font-weight: 400; }
.tour-card-footer .btn-primary {
  font-size: 14px; padding: 10px 24px; border-radius: 999px; font-weight: 600;
  letter-spacing: 0.3px; box-shadow: 0 4px 12px rgba(229,62,62,0.25);
  transition: all .25s;
}
.tour-card-footer .btn-primary:hover {
  transform: translateY(-1px); box-shadow: 0 6px 20px rgba(229,62,62,0.35);
}

/* Star Rating */
.stars { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.star { color: var(--amber-400); font-size: 16px; }
.star-empty { color: var(--neutral-200); font-size: 16px; }
.star-count { color: var(--neutral-400); margin-left: 6px; font-size: 12px; }

/* Why Choose Us */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  text-align: center; background: #fff; border-radius: 16px; padding: 32px;
  border: 1px solid var(--neutral-100); box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all .3s;
}
.why-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.why-icon {
  width: 56px; height: 56px; border-radius: 12px; background: var(--netflix-50);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.why-icon svg { width: 28px; height: 28px; color: var(--netflix-500); }
.why-title { font-weight: 600; color: var(--neutral-900); font-size: 18px; }
.why-desc { font-size: 14px; color: var(--neutral-500); margin-top: 8px; line-height: 1.625; }

/* Destinations Grid */
.dest-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (min-width: 768px) { .dest-grid { grid-template-columns: repeat(4, 1fr); } }
.dest-card {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 3/4;
  cursor: pointer; transition: all .3s; box-shadow: 0 1px 3px rgba(0,0,0,0.05); display: block;
}
.dest-card:hover { box-shadow: 0 12px 24px rgba(0,0,0,0.15); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.dest-card:hover img { transform: scale(1.1); }
.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.2), transparent);
}
.dest-info { position: absolute; bottom: 20px; left: 20px; right: 20px; color: #fff; }
.dest-name { font-size: 20px; font-weight: 700; }
.dest-tours { font-size: 14px; color: rgba(255,255,255,.7); margin-top: 4px; }

/* Testimonials */
.test-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .test-grid { grid-template-columns: repeat(3, 1fr); } }
.test-card {
  background: #fff; padding: 28px; border-radius: 16px; border: 1px solid var(--neutral-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05); transition: all .3s;
}
.test-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.test-stars { display: flex; gap: 4px; color: var(--amber-400); font-size: 20px; margin-bottom: 16px; }
.test-text { font-size: 14px; color: var(--neutral-600); line-height: 1.625; }
.test-author { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--neutral-100); }
.test-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--netflix-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--netflix-600); font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.test-name { font-size: 14px; font-weight: 600; color: var(--neutral-900); }
.test-country { font-size: 12px; color: var(--neutral-400); }

/* YouTube Section */
.youtube-wrapper { max-width: 896px; margin: 0 auto; }
.youtube-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--neutral-200); border-radius: 999px;
  padding: 8px 20px; font-size: 14px; font-weight: 500; color: var(--neutral-600);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05); margin-bottom: 20px;
}
.youtube-badge svg { width: 20px; height: 20px; color: #EF4444; }
.youtube-card {
  background: #fff; border-radius: 16px; padding: 12px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); border: 1px solid var(--neutral-100);
}
@media (min-width: 768px) { .youtube-card { padding: 16px; } }
.video-wrapper { position: relative; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; background: var(--neutral-900); }
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.youtube-footer { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; margin-top: 24px; font-size: 14px; }
@media (min-width: 640px) { .youtube-footer { flex-direction: row; } }
.youtube-author-icon {
  width: 36px; height: 36px; border-radius: 50%; background: var(--red-50);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.youtube-author-icon svg { width: 16px; height: 16px; color: #EF4444; }

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--netflix-500), var(--netflix-700));
  border-radius: 24px; padding: 48px; text-align: center; color: #fff; box-shadow: 0 12px 24px -6px rgba(0,0,0,0.2);
}
@media (min-width: 768px) { .cta { padding: 48px; } }
.cta h2 { font-size: 30px; font-weight: 700; letter-spacing: -0.025em; }
@media (min-width: 768px) { .cta h2 { font-size: 36px; } }
.cta p { color: rgba(255,255,255,.75); margin-top: 12px; max-width: 512px; margin-left: auto; margin-right: auto; font-size: 18px; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 32px; }

/* Footer */
.footer { background: var(--neutral-900); color: var(--neutral-300); }
.footer-inner { max-width: 1400px; margin: 0 auto; padding: 64px 12px; }
@media (min-width: 768px) { .footer-inner { padding: 64px 20px; } }
@media (min-width: 768px) { .footer-inner { padding: 64px 32px; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand .logo-text { font-size: 20px; font-weight: 700; color: #fff; }
.footer-brand .logo-text span { color: var(--netflix-500); }
.footer-desc { font-size: 14px; margin-top: 12px; line-height: 1.625; }
.footer-social { display: flex; gap: 16px; margin-top: 16px; }
.footer-social a { color: var(--neutral-400); transition: color .2s; }
.footer-social a:hover { color: #fff; }
.footer-social svg { width: 20px; height: 20px; }
.footer h4 { font-size: 14px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul li a { font-size: 14px; color: var(--neutral-300); transition: color .2s; }
.footer ul li a:hover { color: #fff; }
.footer-contact { font-size: 14px; line-height: 1.625; }
.footer-contact a { color: var(--neutral-300); transition: color .2s; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--neutral-800); margin-top: 40px; padding-top: 32px; text-align: center; font-size: 14px; color: var(--neutral-500); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 40;
  background: #25D366; color: #fff; width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4); transition: all .3s; border: none; cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* Animations */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes slideUp { from { transform: scale(0.95) translateY(10px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }
@keyframes checkPop { 0% { transform: scale(0); } 50% { transform: scale(1.2); } 100% { transform: scale(1); } }
@keyframes pulseGlow { 0%, 100% { box-shadow: 0 0 0 0 rgba(229,9,20,0.4); } 50% { box-shadow: 0 0 0 12px rgba(229,9,20,0); } }

.animate-fade-in { animation: fadeIn 0.5s ease forwards; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.animate-fade-in-down { animation: fadeInDown 0.6s ease forwards; }
.animate-fade-in-left { animation: fadeInLeft 0.6s ease forwards; }
.animate-fade-in-right { animation: fadeInRight 0.6s ease forwards; }
.animate-scale-in { animation: scaleIn 0.5s ease forwards; }
.animate-slide-up { animation: slideUp 0.4s ease forwards; }
.animate-pulse-glow { animation: pulseGlow 2s ease-in-out infinite; }

.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }
.animate-delay-600 { animation-delay: 0.6s; }
.animate-delay-700 { animation-delay: 0.7s; }
.animate-delay-800 { animation-delay: 0.8s; }

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1); will-change: transform, opacity; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1); will-change: transform, opacity; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1); will-change: transform, opacity; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.5s cubic-bezier(0.22,1,0.36,1), transform 0.5s cubic-bezier(0.22,1,0.36,1); will-change: transform, opacity; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Gradient Overlay */
.gradient-overlay { background: linear-gradient(to top, rgba(0,0,0,.6), transparent); }

/* Itinerary */
.itinerary-line { background: linear-gradient(to bottom, var(--netflix-200) 0%, var(--netflix-500) 50%, var(--netflix-200) 100%); }

/* Page Header */
.page-header { padding-top: 80px; padding-bottom: 64px; }
.page-title { font-size: 36px; font-weight: 700; color: var(--neutral-900); margin-bottom: 24px; }
.page-subtitle { color: var(--neutral-600); font-size: 18px; margin-bottom: 40px; max-width: 640px; }

/* Blog Grid */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 32px; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

/* Contact Form */
.contact-form { max-width: 640px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 14px; font-weight: 500; color: var(--neutral-700); margin-bottom: 4px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--neutral-300); border-radius: 12px;
  font-size: 14px; outline: none; font-family: var(--font-sans); transition: border-color .2s, box-shadow .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--netflix-500); box-shadow: 0 0 0 3px rgba(229,9,20,0.1); }
.form-textarea { resize: vertical; min-height: 120px; }

/* Admin Styles */
.admin-body { background: #F9FAFB; }
.admin-header { background: var(--netflix-500); color: #fff; padding: 16px 32px; display: flex; align-items: center; justify-content: space-between; }
.admin-header h1 { font-size: 20px; font-weight: 700; }
.admin-header a { color: #fff; text-decoration: none; font-size: 14px; }
.admin-sidebar { width: 260px; background: #fff; border-right: 1px solid var(--neutral-200); min-height: 100vh; padding: 24px 0; }
.admin-sidebar a { display: block; padding: 12px 24px; color: var(--neutral-600); font-size: 14px; transition: all .2s; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: var(--netflix-50); color: var(--netflix-500); }
.admin-content { flex: 1; padding: 32px; }
.admin-card { background: #fff; border-radius: 12px; border: 1px solid var(--neutral-200); padding: 24px; margin-bottom: 24px; }
.admin-card h2 { font-size: 18px; font-weight: 600; color: var(--neutral-900); margin-bottom: 16px; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 32px; }
.admin-stat { background: #fff; border-radius: 12px; border: 1px solid var(--neutral-200); padding: 20px; }
.admin-stat-value { font-size: 28px; font-weight: 700; color: var(--neutral-900); }
.admin-stat-label { font-size: 14px; color: var(--neutral-500); margin-top: 4px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { text-align: left; padding: 12px; font-size: 12px; font-weight: 600; color: var(--neutral-500); text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--neutral-200); }
.admin-table td { padding: 12px; font-size: 14px; border-bottom: 1px solid var(--neutral-100); }
.admin-table tr:hover td { background: var(--neutral-50); }
.admin-btn { padding: 8px 16px; border-radius: 8px; font-size: 13px; font-weight: 500; border: none; cursor: pointer; transition: all .2s; }
.admin-btn-primary { background: var(--netflix-500); color: #fff; }
.admin-btn-primary:hover { background: var(--netflix-600); }
.admin-btn-edit { background: #3B82F6; color: #fff; }
.admin-btn-edit:hover { background: #2563EB; }
.admin-btn-delete { background: #EF4444; color: #fff; }
.admin-btn-delete:hover { background: #DC2626; }
.admin-btn-success { background: #10B981; color: #fff; }
.admin-btn-success:hover { background: #059669; }
.badge { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.badge-active { background: #D1FAE5; color: #065F46; }
.badge-inactive { background: #FEE2E2; color: #991B1B; }
.badge-new { background: #DBEAFE; color: #1E40AF; }
.badge-read { background: #FEF3C7; color: #92400E; }
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: #F9FAFB; }
.admin-login-box { background: #fff; border-radius: 16px; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); width: 400px; }
.mobile-bottom-bar { display: none; }
@media (max-width: 767px) {
  .mobile-bottom-bar { display: flex; position: fixed; bottom: 0; inset-x: 0; z-index: 40; background: #fff; border-top: 1px solid var(--neutral-200); padding: 16px; align-items: center; justify-content: space-between; }
  body { padding-bottom: 80px; }
}

/* Tour Detail */
.tour-detail-grid { display: flex; flex-direction: column; gap: 40px; }
@media (min-width: 768px) { .tour-detail-grid { flex-direction: row; gap: 64px; } }
.tour-detail-main { flex: 1; min-width: 0; }
.tour-detail-sidebar { width: 360px; flex-shrink: 0; display: none; }
@media (min-width: 768px) { .tour-detail-sidebar { display: block; } }
.photo-grid { display: none; gap: 8px; border-radius: 16px; overflow: hidden; margin-bottom: 32px; }
@media (min-width: 768px) { .photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); } }
.photo-grid .main-photo { grid-column: span 2; grid-row: span 2; height: 400px; }
.photo-grid .side-photo { height: 196px; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; }
.photo-mobile { display: block; margin-bottom: 24px; }
@media (min-width: 768px) { .photo-mobile { display: none; } }
.photo-mobile-inner { position: relative; border-radius: 16px; overflow: hidden; height: 280px; }
.photo-mobile-inner img { width: 100%; height: 100%; object-fit: cover; }
.photo-see-all { position: absolute; bottom: 12px; right: 12px; background: rgba(255,255,255,.9); backdrop-filter: blur(4px); padding: 6px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; border: none; cursor: pointer; }
.tour-info-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.tour-info-tag { background: var(--netflix-100); color: var(--netflix-600); font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 999px; }
.tour-info-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.tour-meta-item { display: flex; align-items: center; gap: 4px; color: var(--neutral-500); font-size: 14px; }
.tour-meta-item svg { width: 16px; height: 16px; }

/* Highlight cards */
.highlight-card { display: flex; gap: 16px; background: #fff; border: 1px solid var(--neutral-200); border-radius: 16px; padding: 16px; transition: box-shadow .3s; }
.highlight-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.highlight-card img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }

/* Pricing cards */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { background: #fff; border: 1px solid var(--neutral-200); border-radius: 16px; padding: 20px; text-align: center; transition: box-shadow .3s; }
.pricing-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.pricing-card.popular { border: 2px solid var(--netflix-500); position: relative; margin-top: 12px; }
.pricing-card .popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--netflix-500); color: #fff; font-size: 12px; font-weight: 600;
  padding: 2px 12px; border-radius: 999px; white-space: nowrap;
}
.pricing-label { font-size: 12px; font-weight: 600; color: var(--netflix-500); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.pricing-value { font-size: 24px; font-weight: 700; color: var(--neutral-900); }
.pricing-unit { font-size: 12px; color: var(--neutral-400); margin-top: 4px; }

/* Section spacing */
.space-y-10 > * + * { margin-top: 40px; }

/* Utility */
.text-center { text-align: center; }
.text-netflix { color: var(--netflix-500); }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.mb-6 { margin-bottom: 24px; }
.shadow-sm { box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.rounded-2xl { border-radius: 16px; }
.overflow-hidden { overflow: hidden; }

/* Lightbox */
.lightbox-overlay { position: fixed; inset: 0; z-index: 60; background: rgba(0,0,0,.9); display: flex; align-items: center; justify-content: center; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-content img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.lightbox-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,.2); border: none; color: #fff; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 24px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lightbox-close:hover { background: rgba(255,255,255,.4); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.2); border: none; color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 24px; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lightbox-nav:hover { background: rgba(255,255,255,.4); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 14px; background: rgba(0,0,0,.5); padding: 4px 12px; border-radius: 999px; }

/* Responsive visibility */
@media (min-width: 768px) { .hide-desktop { display: none !important; } }
@media (max-width: 767px) { .hide-mobile { display: none !important; } }

/* Booking form */
.booking-form { background: #fff; border-radius: 16px; }
.booking-form.compact { border: 1px solid var(--neutral-200); padding: 24px; }
.booking-form .form-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 768px) { .booking-form .form-row.compact { grid-template-columns: 1fr; } .booking-form .form-row:not(.compact) { grid-template-columns: repeat(2, 1fr); } }
.booking-form .form-row { margin-bottom: 12px; }
.booking-form .price-display { font-size: 36px; font-weight: 700; color: var(--neutral-900); }
.booking-form .price-from { font-size: 18px; font-weight: 600; color: var(--neutral-900); }
.booking-success { background: var(--green-50); border: 1px solid var(--green-200); border-radius: 16px; padding: 32px; text-align: center; }
.booking-success h3 { font-size: 18px; font-weight: 600; color: var(--green-800); margin-bottom: 4px; }
.booking-success p { color: var(--green-700); font-size: 14px; }

/* Blog post */
.blog-content { max-width: 720px; margin: 0 auto; }
.blog-content h2 { font-size: 24px; font-weight: 700; color: var(--neutral-900); margin-top: 32px; margin-bottom: 16px; }
.blog-content p { font-size: 16px; line-height: 1.75; color: var(--neutral-600); margin-bottom: 16px; }

/* Details / FAQ */
details { background: #fff; border: 1px solid var(--neutral-200); border-radius: 16px; }
details summary { display: flex; align-items: center; justify-content: space-between; padding: 20px; cursor: pointer; list-style: none; font-weight: 600; color: var(--neutral-900); }
details summary::-webkit-details-marker { display: none; }
details summary svg { transition: transform .3s; }
details[open] summary svg { transform: rotate(180deg); }
details[open] .detail-content { padding: 0 20px 20px; }

/* Contact persons */
.contact-person { display: flex; align-items: flex-start; gap: 12px; }
.contact-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon.green { background: #D1FAE5; }
.contact-icon.red { background: var(--netflix-100); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .animate-fade-in, .animate-fade-in-up, .animate-fade-in-down, .animate-fade-in-left, .animate-fade-in-right, .animate-scale-in, .animate-slide-up { animation: none; opacity: 1; transform: none; }
  .tour-card { transition: none; }
  .tour-card:hover { transform: none; }
  html { scroll-behavior: auto; }
}

/* ===== Admin Panel ===== */
* { box-sizing: border-box; }

.admin-header { height: 52px; background: #fff; border-bottom: 1px solid #e5e7eb; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; position: sticky; top: 0; z-index: 100; }
.admin-header-brand { font-size: 16px; font-weight: 700; color: #1f2937; letter-spacing: -.3px; }
.admin-header-brand span { color: #9ca3af; font-weight: 400; }
.admin-header-nav { display: flex; align-items: center; gap: 16px; font-size: 13px; }
.admin-header-nav a { color: #6b7280; text-decoration: none; }
.admin-header-nav a:hover { color: #1f2937; }

.admin-body { display: flex; min-height: calc(100vh - 52px); }

.admin-sidebar { width: 220px; background: #fff; border-right: 1px solid #e5e7eb; padding: 8px 0; flex-shrink: 0; display: flex; flex-direction: column; }
.admin-sidebar-group { padding: 16px 16px 4px; font-size: 11px; font-weight: 600; color: #9ca3af; text-transform: uppercase; letter-spacing: .06em; }
.admin-sidebar a { display: flex; align-items: center; gap: 10px; padding: 8px 16px; font-size: 14px; color: #6b7280; text-decoration: none; margin: 1px 8px; border-radius: 6px; transition: all .12s; }
.admin-sidebar a svg { flex-shrink: 0; opacity: .7; }
.admin-sidebar a:hover svg, .admin-sidebar a.active svg { opacity: 1; }
.admin-sidebar a:hover { background: #FFF0F0; color: #E50914; }
.admin-sidebar a.active { background: #FFF0F0; color: #E50914; font-weight: 600; }

.sidebar-footer { margin-top: auto; padding: 12px 16px; border-top: 1px solid #f3f4f6; }
.sidebar-footer a { margin: 0 8px !important; font-size: 13px; color: #9ca3af; }
.sidebar-footer a:hover { background: #FFF0F0; color: #E50914; }

.admin-main { flex: 1; padding: 24px; min-width: 0; background: #f3f4f6; }

.admin-main .admin-main .page-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.admin-main .page-header h1 { font-size: 22px; font-weight: 700; margin: 0; color: #1f2937; }
.admin-main .page-header p { margin: 2px 0 0; font-size: 14px; color: #6b7280; }
.page-header-actions { display: flex; gap: 8px; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
.stat-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 20px; }
.stat-card-label { font-size: 13px; color: #6b7280; margin-bottom: 4px; }
.stat-card-value { font-size: 26px; font-weight: 700; color: #1f2937; letter-spacing: -.5px; }
.stat-card-footer { margin-top: 8px; font-size: 12px; }
.stat-card-footer a { color: #E50914; text-decoration: none; }
.stat-card-footer a:hover { text-decoration: underline; }

.alert { padding: 12px 16px; border-radius: 8px; font-size: 14px; display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.alert-warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert a { color: inherit; font-weight: 600; text-decoration: underline; margin-left: auto; }

.card { background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 20px; }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.card-header h2 { font-size: 15px; font-weight: 600; margin: 0; color: #1f2937; }
.card-header a { font-size: 13px; color: #E50914; text-decoration: none; }
.card-header a:hover { text-decoration: underline; }

.cols-2 { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }

table.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
table.admin-table th { text-align: left; padding: 8px 12px; font-weight: 600; color: #6b7280; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; border-bottom: 2px solid #e5e7eb; }
table.admin-table td { padding: 10px 12px; border-bottom: 1px solid #f3f4f6; }
table.admin-table tr:last-child td { border-bottom: none; }

.badge { display: inline-block; padding: 2px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-pending { background: #fef3c7; color: #d97706; }
.badge-confirmed, .badge-approved { background: #dbeafe; color: #1d4ed8; }
.badge-completed { background: #d1fae5; color: #059669; }
.badge-cancelled { background: #fee2e2; color: #dc2626; }

.review-item { padding: 12px; border-radius: 8px; background: var(--bg); margin-bottom: 8px; }
.review-item:last-child { margin-bottom: 0; }
.review-item-name { font-weight: 600; font-size: 13px; margin-bottom: 2px; }
.review-item-text { font-size: 13px; color: var(--text-secondary); line-height: 1.4; margin: 0; }

.btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 500; text-decoration: none; border: none; cursor: pointer; transition: all .12s; }



.empty-state { text-align: center; padding: 48px 0; color: var(--text-muted); font-size: 14px; }

.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 4px; color: var(--text); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 8px 12px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; font-family: inherit; color: var(--text); background: var(--bg-card); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-checkbox { display: flex; align-items: center; gap: 8px; }
.form-checkbox input[type="checkbox"] { width: auto; }

.settings-section { margin-bottom: 32px; }
.settings-section h2 { font-size: 16px; font-weight: 600; margin: 0 0 4px; }
.settings-section > p { font-size: 13px; color: var(--text-secondary); margin: 0 0 16px; }
