/* ==========================================================================
   Skyway Go - Travel & Tours | Master Design Stylesheet v13.0
   Live Comments Community Section & Supabase Ready Backend Styling
   ========================================================================== */

:root {
  /* Colors */
  --primary: #00A8E8;
  --primary-dark: #0077B6;
  --primary-light: #E0F2FE;
  --secondary: #0B192C;
  --secondary-light: #1E293B;
  --accent: #FF6B35;
  --accent-hover: #E85A24;
  --gold: #F5B041;
  --gold-dark: #D68910;
  --success: #10B981;
  --dark: #0F172A;
  --sand-bg: #F8F6F0;
  --gray-100: #F4F6F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --white: #FFFFFF;

  /* Fonts */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(11, 25, 44, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 25, 44, 0.12);
  --shadow-lg: 0 20px 48px rgba(11, 25, 44, 0.16);
  --shadow-card: 0 14px 32px rgba(0, 0, 0, 0.2);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--sand-bg);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.hidden { display: none !important; }

/* 0. PRELOADER SCREEN - SOLID WHITE BACKGROUND & FAST ZOOM LOGO */
.preloader-overlay {
  position: fixed;
  inset: 0;
  background: #FFFFFF;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.preloader-overlay.fade-out {
  opacity: 0;
  transform: scale(1.08);
  pointer-events: none;
}

.preloader-logo-large {
  max-width: 420px;
  width: 80vw;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  animation: fastZoomIn 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes fastZoomIn {
  0% {
    transform: scale(0.35);
    opacity: 0;
  }
  70% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.highlight-gradient {
  background: linear-gradient(135deg, #00A8E8 0%, #0077B6 50%, #FF6B35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle-badge {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(0, 168, 232, 0.12);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
}

.subtitle-badge.gold-badge {
  background: rgba(245, 176, 65, 0.2);
  color: var(--gold);
  border: 1px solid rgba(245, 176, 65, 0.4);
}

.section-title {
  font-size: 2.3rem;
  color: var(--secondary);
  margin-bottom: 16px;
}

.section-title.text-white {
  color: var(--white);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 680px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

.section-desc.text-light {
  color: var(--gray-200);
}

/* BRAND TRANSPARENT LOGO IMAGES */
.brand-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.brand-logo-img:hover {
  transform: scale(1.03);
}

.footer-logo-img {
  height: 64px;
  filter: brightness(0) invert(1);
  opacity: 0.98;
}

.modal-logo-img {
  height: 70px;
  margin: 0 auto 8px auto;
}

/* BUTTON SYSTEM */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 168, 232, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 168, 232, 0.45);
}

.btn-accent {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5);
}

.btn-email-submit {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0, 168, 232, 0.35);
}

.btn-email-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 168, 232, 0.5);
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary-dark);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.flex-1 {
  flex: 1;
}

/* 1. TOP ANNOUNCEMENT BAR */
.top-bar {
  background: var(--secondary);
  color: var(--white);
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1001;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-license-bar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--gold);
}

.license-text-mobile {
  display: none;
}

.top-info-toggle-btn {
  display: none;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  align-items: center;
  gap: 4px;
}

.top-collapsible-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-300);
}

.info-item:hover {
  color: var(--primary);
}

.license-badge-top {
  background: rgba(245, 176, 65, 0.12);
  border: 1px solid rgba(245, 176, 65, 0.3);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  color: var(--white);
}

.footer-license-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-label {
  color: var(--gray-300);
  font-size: 0.8rem;
}

.social-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.social-icon:hover {
  transform: translateY(-2px);
}

.social-icon.facebook-social:hover { background: #1877F2; }
.social-icon.instagram-social:hover { background: #E4405F; }
.social-icon.tiktok-social:hover { background: #000000; color: #00F2FE; }
.social-icon.whatsapp-top:hover { background: #25D366; }

/* 2. MAIN NAVBAR */
.navbar {
  position: relative;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  margin-top: 0;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-phone-pill {
  flex-shrink: 0;
  margin: 0 8px;
}

.header-phone-pill a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--primary);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  background: var(--gray-100);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.header-phone-pill a:hover {
  background: var(--primary);
  color: var(--white);
}

.header-phone-pill i {
  font-size: 1rem;
  color: var(--primary);
}

.header-phone-pill a:hover i {
  color: var(--white);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 1;
}

.nav-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gray-800);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-dark);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: 10px;
}

.header-actions .btn-primary {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary);
  cursor: pointer;
}

/* SECTION 1: HERO PORTADA WITH BLURRED OPAQUE RESORT HOTEL BACKDROP */
.hero-section {
  position: relative;
  min-height: calc(100vh - 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 0 20px 0;
  background-image: url('assets/images/hero_resort_bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg, 
    rgba(11, 25, 44, 0.78) 0%, 
    rgba(0, 119, 182, 0.65) 50%, 
    rgba(11, 25, 44, 0.82) 100%
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  width: 100%;
  position: relative;
  z-index: 10;
}

.hero-headline {
  margin-top: 0;
  margin-bottom: 16px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #00E5FF !important;
  border: 1px solid rgba(0, 229, 255, 0.5) !important;
  backdrop-filter: blur(10px);
  font-weight: 800;
  letter-spacing: 1.5px;
}

.hero-main-title {
  font-size: 3.2rem;
  color: var(--white);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-top: 4px;
  line-height: 1.25;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.title-line-1 {
  display: inline;
}

.title-line-2 {
  display: inline;
}

.highlight-gradient-hero {
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
  background: none;
  font-weight: 900;
}

.poster-carousel-wrapper {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--secondary);
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.carousel-arrow:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 24px rgba(0, 168, 232, 0.4);
}

.arrow-prev { left: -10px; }
.arrow-next { right: -10px; }

.poster-cards-track {
  position: relative;
  width: 100%;
  height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.poster-card {
  position: absolute;
  width: 320px;
  height: 460px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border: 3px solid var(--white);
  user-select: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.poster-card.card-active {
  transform: translateX(0) scale(1.05);
  z-index: 20;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.35);
  border-color: var(--gold);
}

.poster-card.card-prev {
  transform: translateX(-310px) scale(0.88);
  z-index: 10;
  opacity: 0.88;
  filter: brightness(0.95);
}

.poster-card.card-next {
  transform: translateX(310px) scale(0.88);
  z-index: 10;
  opacity: 0.88;
  filter: brightness(0.95);
}

.poster-card:not(.card-active):not(.card-prev):not(.card-next) {
  transform: translateX(0) scale(0.65);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.poster-image-box {
  position: relative;
  height: 370px;
  overflow: hidden;
}

.poster-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.poster-card:hover .poster-image-box img {
  transform: scale(1.06);
}

.poster-overlay-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom, 
    rgba(0, 0, 0, 0.4) 0%, 
    transparent 35%, 
    rgba(11, 25, 44, 0.85) 75%, 
    rgba(11, 25, 44, 0.95) 100%
  );
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.poster-badge-top {
  align-self: flex-start;
  background: var(--accent);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 3px 8px rgba(0,0,0,0.3);
}

.poster-badge-top.alt {
  background: var(--primary);
}

.poster-script-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: #00E5FF;
  line-height: 1.1;
  margin-bottom: 2px;
  letter-spacing: -0.5px;
}

.poster-script-title.gold {
  color: var(--gold);
}

.poster-year-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.poster-tagline {
  font-size: 0.85rem;
  color: var(--gray-200);
  line-height: 1.3;
  margin-bottom: 8px;
}

.poster-price-highlight {
  font-size: 0.92rem;
  color: var(--gold);
  font-weight: 800;
}

.poster-subtext {
  font-size: 0.75rem;
  color: var(--gray-300);
}

.poster-card-footer {
  height: 90px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-poster-action {
  background: var(--secondary);
  color: var(--white);
  width: 100%;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  border: none;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-fast);
}

.btn-poster-action:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(255, 107, 53, 0.4);
}

.btn-poster-action.dark {
  background: var(--secondary);
}

.btn-poster-action.dark:hover {
  background: var(--primary);
}

.poster-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.pdot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pdot.active {
  background: #00E5FF;
  width: 30px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.7);
}

/* RISA TRAVEL PARALLAX IMAGE BANDS */
.parallax-band-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  background: var(--secondary);
}

.parallax-band-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.parallax-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 25, 44, 0.75) 0%, rgba(0, 119, 182, 0.65) 100%);
  z-index: 2;
}

.parallax-band-overlay.dark {
  background: linear-gradient(135deg, rgba(11, 25, 44, 0.88) 0%, rgba(11, 25, 44, 0.82) 100%);
}

.relative-z {
  position: relative;
  z-index: 10;
}

.glass-panel-parallax {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.glass-franja-card {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25) !important;
}

.glass-franja-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35) !important;
}

/* SECTION 2: SEARCH FORM */
.search-parallax-band {
  margin-top: 0;
  padding: 80px 0;
}

.search-grid-full {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: flex-end;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row.three-cols {
  grid-template-columns: 1fr 1fr 1.2fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-group label i {
  color: var(--primary);
}

.form-input {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--dark);
  background-color: var(--gray-100);
  outline: none;
  transition: border-color var(--transition-fast);
  -webkit-user-select: text !important;
  user-select: text !important;
}

.form-input:focus {
  border-color: var(--primary);
  background-color: var(--white);
}

.btn-search-submit {
  height: 48px;
  font-size: 0.98rem;
}

/* SECTION 3: DESTINATIONS CATALOG */
.destinations-section {
  padding: 100px 0;
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(0, 168, 232, 0.45);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.dest-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  display: flex;
  flex-direction: column;
}

.dest-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--white);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  z-index: 5;
}

.dest-badge.alt {
  background: var(--secondary);
}

.dest-img-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.dest-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-img-box img {
  transform: scale(1.08);
}

.dest-overlay-info {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  padding: 16px;
  color: var(--white);
  display: flex;
  gap: 14px;
  font-size: 0.82rem;
  font-weight: 600;
}

.dest-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dest-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.dest-header h3 {
  font-size: 1.25rem;
  color: var(--secondary);
}

.dest-rating {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.9rem;
}

.dest-location {
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.dest-text {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex: 1;
}

.dest-price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}

.dest-price-label {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-600);
  text-transform: uppercase;
}

.dest-price-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary);
}

/* SECTION 4: WHY US */
.why-us-section {
  padding: 90px 0;
  background: var(--sand-bg);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.why-cards-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 30px 0;
}

.why-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

.why-card:hover {
  transform: translateX(8px);
  background: var(--primary-light);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.why-text h4 {
  font-size: 1.15rem;
  color: var(--secondary);
  margin-bottom: 4px;
}

.why-text p {
  color: var(--gray-600);
  font-size: 0.92rem;
}

.visual-stack {
  position: relative;
}

.visual-stack .img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.floating-badge-experience {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--secondary);
  color: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid var(--primary);
}

.exp-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
}

.exp-text {
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  max-width: 140px;
}

.floating-badge-call {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--gray-200);
  cursor: pointer;
}

.floating-badge-call i {
  font-size: 1.8rem;
  color: #25D366;
}

/* SECTION 5: TESTIMONIALS */
.testimonials-section {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background: var(--gray-100);
}

.testimonial-card .stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.review-text {
  font-style: italic;
  color: var(--gray-800);
  font-size: 0.98rem;
  margin-bottom: 24px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.reviewer-info strong {
  display: block;
  color: var(--secondary);
  font-size: 0.95rem;
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--primary-dark);
  font-weight: 600;
}

/* NEW SECTION: LIVE COMMENTS & COMMUNITY (SUPABASE READY) */
.comments-section {
  padding: 90px 0;
  background: var(--sand-bg);
  border-top: 1px solid var(--gray-200);
}

.comments-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  margin-top: 20px;
  align-items: flex-start;
}

.glass-panel-light {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.comment-form-card h3 {
  font-size: 1.35rem;
  color: var(--secondary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-form-card h3 i {
  color: var(--primary);
}

.form-subtext {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 24px;
}

.comment-status-msg {
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 14px;
  text-align: center;
}

.comment-status-msg.success {
  background: rgba(16, 185, 129, 0.12);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.comment-status-msg.error {
  background: rgba(255, 107, 53, 0.12);
  color: var(--accent);
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.comments-feed-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}

.feed-header h4 {
  font-size: 1.2rem;
  color: var(--secondary);
}

.supabase-live-badge {
  font-size: 0.78rem;
  font-weight: 800;
  color: #10B981;
  background: rgba(16, 185, 129, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(16, 185, 129, 0.3);
}

.comments-feed-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 520px;
  overflow-y: auto;
  padding-right: 6px;
}

.comment-item-card {
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.comment-item-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.comment-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comment-author-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar-initial {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 168, 232, 0.25);
}

.author-info-box strong {
  display: block;
  font-size: 0.95rem;
  color: var(--secondary);
}

.author-info-box span {
  font-size: 0.78rem;
  color: var(--gray-600);
}

.comment-dest-tag {
  font-size: 0.78rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.comment-stars {
  color: var(--gold);
  font-size: 0.85rem;
}

.comment-text-content {
  color: var(--gray-800);
  font-size: 0.94rem;
  line-height: 1.5;
}

.comment-footer-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--gray-600);
  padding-top: 8px;
  border-top: 1px solid var(--gray-100);
}

.like-comment-btn {
  background: none;
  border: none;
  color: var(--gray-600);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.like-comment-btn:hover, .like-comment-btn.liked {
  color: var(--accent);
}

/* SECTION 6: FAQ ACCORDION */
.faq-section {
  padding: 80px 0 100px 0;
  background: var(--sand-bg);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--secondary);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.faq-question:hover {
  background: rgba(0, 168, 232, 0.06);
}

.faq-question i {
  color: var(--primary);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
  background: var(--white);
  color: var(--gray-600);
  font-size: 0.98rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 16px 24px 24px 24px;
  border-top: 1px solid var(--gray-200);
}

/* SECTION 7: PARALLAX CTA BANNER */
.cta-banner-section {
  position: relative;
  padding: 100px 0;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 25, 44, 0.92) 0%, rgba(0, 119, 182, 0.88) 100%);
}

.cta-banner-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.cta-banner-container h2 {
  font-size: 3rem;
  margin-bottom: 16px;
}

.cta-banner-container p {
  font-size: 1.2rem;
  color: var(--gray-300);
  margin-bottom: 36px;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-cta-phone {
  background: var(--accent);
  color: var(--white);
  padding: 18px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
  font-weight: 800;
  cursor: pointer;
  border: none;
}

.btn-cta-phone:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
}

.btn-cta-modal {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid var(--white);
  color: var(--white);
  padding: 18px 36px;
  font-size: 1.1rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
}

.btn-cta-modal:hover {
  background: var(--white);
  color: var(--secondary);
}

/* FINAL SOCIAL BANNER BAR */
.final-social-bar {
  background: linear-gradient(135deg, var(--secondary) 0%, #1E293B 100%);
  color: var(--white);
  padding: 50px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.final-social-bar h3 {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.final-social-bar p {
  color: var(--gray-300);
  margin-bottom: 24px;
}

.final-social-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.social-banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.fb-banner-btn { background: #1877F2; }
.ig-banner-btn { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.tk-banner-btn { background: #000000; border: 1.5px solid rgba(255,255,255,0.3); }
.wa-banner-btn { background: #25D366; }
.mail-banner-btn { background: var(--primary-dark); }

/* FOOTER */
.site-footer {
  background: var(--secondary);
  color: var(--white);
  padding: 80px 0 30px 0;
  border-top: 4px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-desc {
  color: var(--gray-300);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.footer-social-box {
  margin-top: 14px;
}

.footer-social-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-300);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.05rem;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  transform: translateY(-3px);
}

.social-btn.facebook-social:hover { background: #1877F2; }
.social-btn.instagram-social:hover { background: #E4405F; }
.social-btn.tiktok-social:hover { background: #000000; color: #00F2FE; }
.social-btn.mail-social:hover { background: var(--primary); }

.footer-heading {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--gray-300);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-info li {
  display: flex;
  gap: 14px;
  color: var(--gray-300);
  font-size: 0.92rem;
}

.footer-contact-info i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 4px;
}

.footer-contact-info strong {
  display: block;
  color: var(--white);
}

.footer-contact-info a {
  color: var(--gold);
}

.footer-contact-info a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-300);
  font-size: 0.88rem;
}

.footer-policy-links {
  display: flex;
  gap: 14px;
}

.footer-policy-links a:hover {
  color: var(--white);
}

/* FLOATING BUTTONS STACK ON THE RIGHT SIDE */
.float-btn {
  position: fixed;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* Floating WhatsApp Button (Bottom Right) */
.float-whatsapp {
  bottom: 28px;
  background: #25D366;
}

/* Floating Email Button (Right Side Stacked Above WhatsApp!) */
.float-email {
  bottom: 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: 2px solid var(--white);
}

.float-tooltip {
  position: absolute;
  right: 74px;
  background: var(--secondary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

.float-call {
  left: 28px;
  bottom: 28px;
  right: auto;
  background: var(--accent);
  display: none;
}

/* MODAL SYSTEM WITH DUAL SUBMIT BUTTONS */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 25, 44, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.glass-modal {
  background: var(--white);
  width: 100%;
  max-width: 680px;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform var(--transition-normal);
}

.modal-backdrop.active .glass-modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gray-100);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--gray-600);
  cursor: pointer;
}

.modal-close:hover {
  background: var(--accent);
  color: var(--white);
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header h3 {
  font-size: 1.6rem;
  color: var(--secondary);
}

.modal-header p {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-submit-buttons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.modal-footer-note {
  font-size: 0.8rem;
  color: var(--gray-600);
  text-align: center;
  margin-top: 10px;
}

.modal-success-view {
  padding: 30px 0;
}

.success-icon {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 16px;
}

.contact-direct-highlight {
  background: var(--primary-light);
  padding: 16px;
  border-radius: var(--radius-md);
  color: var(--secondary);
  margin: 20px 0;
}

/* RESPONSIVE MEDIA QUERIES & MOBILE FIXES */
html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
}

@media (max-width: 1150px) {
  .form-row-compact {
    grid-template-columns: 1fr 1fr;
  }
  .comments-layout-grid {
    grid-template-columns: 1fr;
  }
  .nav-menu {
    gap: 12px;
  }
  .nav-link {
    font-size: 0.82rem;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Ultra-slim Top Bar Header for Mobile */
  .top-bar {
    padding: 4px 0;
    min-height: 26px;
  }

  .top-bar-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 12px;
  }
  
  .license-text-desktop {
    display: none;
  }

  .license-text-mobile {
    display: inline;
    font-size: 0.68rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .top-info-toggle-btn {
    display: inline-flex;
  }

  .top-collapsible-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary-light);
    flex-direction: column;
    padding: 12px 16px;
    gap: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    border-bottom: 2px solid var(--primary);
    display: none;
    z-index: 1002;
  }

  .top-collapsible-wrapper.active {
    display: flex;
  }

  .top-info {
    flex-direction: column;
    gap: 6px;
    font-size: 0.78rem;
  }

  .top-social {
    justify-content: center;
  }

  .header-phone-pill {
    display: none;
  }
  
  .navbar-container {
    height: 62px;
    padding: 0 16px;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--gray-200);
    display: none;
    z-index: 1000;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  /* Hero 3D Carousel Mobile 3D Blurred Layered Depth Stack */
  .hero-section {
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .hero-headline {
    padding: 0 10px;
    margin-bottom: 6px;
  }
  
  .hero-main-title {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  .title-line-1 {
    display: block;
    font-size: 1.4rem;
    white-space: nowrap;
  }

  .title-line-2 {
    display: block;
    font-size: 2.25rem;
    margin-top: 2px;
  }

  .poster-carousel-wrapper {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    margin-top: -12px;
  }

  .poster-cards-track {
    height: 385px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .poster-card {
    width: 78vw;
    max-width: 270px;
    height: 365px;
    position: absolute;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }

  /* 3D Layered Blurred Side Cards peeking from behind on Mobile */
  .poster-card.card-prev {
    transform: translateX(-65px) scale(0.82) !important;
    opacity: 0.7 !important;
    filter: blur(3.5px) brightness(0.65) !important;
    z-index: 1 !important;
    visibility: visible !important;
    pointer-events: none;
  }

  .poster-card.card-next {
    transform: translateX(65px) scale(0.82) !important;
    opacity: 0.7 !important;
    filter: blur(3.5px) brightness(0.65) !important;
    z-index: 1 !important;
    visibility: visible !important;
    pointer-events: none;
  }

  .poster-card.card-active {
    transform: translateX(0) scale(1) !important;
    opacity: 1 !important;
    filter: none !important;
    z-index: 10 !important;
    visibility: visible !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
    z-index: 15;
  }
  .arrow-prev { left: 4px; }
  .arrow-next { right: 4px; }
  
  /* Form & Grid Layout Mobile Stacking */
  .form-row-compact, .form-row, .form-row.three-cols, .modal-submit-buttons {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }

  .why-cards-list {
    gap: 16px;
  }
  
  .why-card {
    padding: 16px;
  }

  .visual-stack .img-main {
    width: 100%;
    height: auto;
  }

  .floating-badge-experience {
    top: -10px;
    right: 10px;
    padding: 12px 16px;
  }
  .exp-number { font-size: 1.8rem; }

  .floating-badge-call {
    bottom: -10px;
    left: 10px;
    padding: 12px 16px;
  }
  
  .cta-banner-container h2 {
    font-size: 1.8rem;
  }

  .cta-banner-container p {
    font-size: 0.95rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .brand-logo-img {
    height: 42px;
  }

  .float-email {
    bottom: 86px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .float-whatsapp {
    bottom: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }
  
  .float-call {
    display: flex;
    left: 16px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
  }

  .glass-modal {
    padding: 24px 16px;
    max-width: 94vw;
  }

  /* Admin CMS Mobile Touch Optimization */
  .admin-tabs {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    scrollbar-width: thin;
  }

  .tab-btn {
    flex-shrink: 0;
    padding: 10px 16px;
    font-size: 0.82rem;
    border-radius: var(--radius-full);
  }

  .admin-card-section {
    padding: 18px 14px;
    border-radius: var(--radius-md);
  }

  .admin-item-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
  }

  .admin-item-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-sm);
  }
}

@media (max-width: 480px) {
  .hero-main-title {
    font-size: 1.95rem;
    line-height: 1.2;
  }

  .title-line-1 {
    display: block;
    font-size: 1.22rem;
    white-space: nowrap;
  }

  .title-line-2 {
    display: block;
    font-size: 1.95rem;
    margin-top: 2px;
  }

  .poster-card {
    width: 90vw;
    max-width: 290px;
    height: 370px;
  }

  .admin-tabs {
    gap: 6px;
  }

  .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}


/* LEGAL MODAL STYLES */
.legal-tab-content h3 {
  color: var(--secondary);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-top: 0;
  margin-bottom: 12px;
}

.legal-tab-content h4 {
  color: var(--primary-dark);
  font-size: 1.02rem;
  margin-top: 18px;
  margin-bottom: 6px;
  font-weight: 700;
}

.legal-tab-content p, .legal-tab-content li {
  color: var(--gray-700);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 8px;
}

.legal-tab-content ul {
  padding-left: 20px;
  margin: 10px 0;
}
