/* ============================================
   ORLANDO TOUR PACKAGE - COMPLETE CSS
   TravelGully - Orlando 6N/7D Theme Park Adventure
   ============================================ */

/* ==========================================
   TABLE OF CONTENTS
   ==========================================
   1. CSS Variables & Root
   2. Reset & Base Styles
   3. Utility Classes
   4. Skip Link & Accessibility
   5. Preloader
   6. Back to Top Button
   7. WhatsApp Float
   8. Navbar
   9. Hero Section
   10. Quick Info Strip
   11. Package Overview
   12. Theme Parks Section
   13. Itinerary Section
   14. Photo Gallery
   15. Booking Form
   16. Reviews Section
   17. FAQ Section
   18. CTA Section
   19. Trust Badges
   20. Footer
   21. Lightbox
   22. Sticky Bottom CTA
   23. Animations & Keyframes
   24. Media Queries
   ========================================== */

/* ==========================================
   1. CSS VARIABLES & ROOT
   ========================================== */
:root {
  /* Primary Colors - Orlando Magic Theme */
  --orlando-primary: #1e3a8a;
  --orlando-primary-light: #3b82f6;
  --orlando-primary-dark: #1e40af;
  
  /* Secondary Colors - Disney Inspired */
  --orlando-secondary: #7c3aed;
  --orlando-secondary-light: #a78bfa;
  --orlando-secondary-dark: #5b21b6;
  
  /* Accent Colors */
  --orlando-accent: #f59e0b;
  --orlando-accent-light: #fbbf24;
  --orlando-accent-dark: #d97706;
  
  /* Magic Colors */
  --orlando-magic: #ec4899;
  --orlando-magic-light: #f472b6;
  --orlando-wizard: #8b5cf6;
  --orlando-adventure: #10b981;
  
  /* Neutral Colors */
  --orlando-white: #ffffff;
  --orlando-black: #0f172a;
  --orlando-gray-50: #f8fafc;
  --orlando-gray-100: #f1f5f9;
  --orlando-gray-200: #e2e8f0;
  --orlando-gray-300: #cbd5e1;
  --orlando-gray-400: #94a3b8;
  --orlando-gray-500: #64748b;
  --orlando-gray-600: #475569;
  --orlando-gray-700: #334155;
  --orlando-gray-800: #1e293b;
  --orlando-gray-900: #0f172a;
  
  /* Semantic Colors */
  --orlando-success: #10b981;
  --orlando-success-light: #d1fae5;
  --orlando-error: #ef4444;
  --orlando-error-light: #fee2e2;
  --orlando-warning: #f59e0b;
  --orlando-warning-light: #fef3c7;
  --orlando-info: #3b82f6;
  --orlando-info-light: #dbeafe;
  
  /* WhatsApp */
  --orlando-whatsapp: #25d366;
  --orlando-whatsapp-dark: #128c7e;
  
  /* Gradients */
  --orlando-gradient-primary: linear-gradient(135deg, var(--orlando-primary) 0%, var(--orlando-secondary) 100%);
  --orlando-gradient-magic: linear-gradient(135deg, var(--orlando-magic) 0%, var(--orlando-wizard) 100%);
  --orlando-gradient-adventure: linear-gradient(135deg, var(--orlando-primary-light) 0%, var(--orlando-adventure) 100%);
  --orlando-gradient-gold: linear-gradient(135deg, var(--orlando-accent) 0%, var(--orlando-accent-dark) 100%);
  --orlando-gradient-dark: linear-gradient(135deg, var(--orlando-gray-800) 0%, var(--orlando-gray-900) 100%);
  --orlando-gradient-hero: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
  
  /* Typography */
  --orlando-font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --orlando-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  
  /* Font Sizes */
  --orlando-text-xs: 0.75rem;
  --orlando-text-sm: 0.875rem;
  --orlando-text-base: 1rem;
  --orlando-text-lg: 1.125rem;
  --orlando-text-xl: 1.25rem;
  --orlando-text-2xl: 1.5rem;
  --orlando-text-3xl: 1.875rem;
  --orlando-text-4xl: 2.25rem;
  --orlando-text-5xl: 3rem;
  --orlando-text-6xl: 3.75rem;
  --orlando-text-7xl: 4.5rem;
  
  /* Font Weights */
  --orlando-font-light: 300;
  --orlando-font-normal: 400;
  --orlando-font-medium: 500;
  --orlando-font-semibold: 600;
  --orlando-font-bold: 700;
  
  /* Line Heights */
  --orlando-leading-tight: 1.25;
  --orlando-leading-snug: 1.375;
  --orlando-leading-normal: 1.5;
  --orlando-leading-relaxed: 1.625;
  --orlando-leading-loose: 2;
  
  /* Spacing */
  --orlando-space-1: 0.25rem;
  --orlando-space-2: 0.5rem;
  --orlando-space-3: 0.75rem;
  --orlando-space-4: 1rem;
  --orlando-space-5: 1.25rem;
  --orlando-space-6: 1.5rem;
  --orlando-space-8: 2rem;
  --orlando-space-10: 2.5rem;
  --orlando-space-12: 3rem;
  --orlando-space-16: 4rem;
  --orlando-space-20: 5rem;
  --orlando-space-24: 6rem;
  --orlando-space-32: 8rem;
  
  /* Border Radius */
  --orlando-radius-sm: 0.25rem;
  --orlando-radius-md: 0.5rem;
  --orlando-radius-lg: 0.75rem;
  --orlando-radius-xl: 1rem;
  --orlando-radius-2xl: 1.5rem;
  --orlando-radius-3xl: 2rem;
  --orlando-radius-full: 9999px;
  
  /* Shadows */
  --orlando-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --orlando-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --orlando-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --orlando-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --orlando-shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --orlando-shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  --orlando-shadow-magic: 0 10px 40px -10px rgba(124, 58, 237, 0.4);
  --orlando-shadow-glow: 0 0 30px rgba(59, 130, 246, 0.3);
  
  /* Transitions */
  --orlando-transition-fast: 150ms ease;
  --orlando-transition-base: 300ms ease;
  --orlando-transition-slow: 500ms ease;
  --orlando-transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Z-Index */
  --orlando-z-dropdown: 100;
  --orlando-z-sticky: 200;
  --orlando-z-fixed: 300;
  --orlando-z-modal-backdrop: 400;
  --orlando-z-modal: 500;
  --orlando-z-popover: 600;
  --orlando-z-tooltip: 700;
  --orlando-z-preloader: 9999;
  
  /* Container */
  --orlando-container-max: 1280px;
  --orlando-container-padding: 1.5rem;
  
  /* Navbar */
  --orlando-navbar-height: 80px;
  --orlando-navbar-height-scrolled: 70px;
}

/* ==========================================
   2. RESET & BASE STYLES
   ========================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--orlando-font-primary);
  font-size: var(--orlando-text-base);
  font-weight: var(--orlando-font-normal);
  line-height: var(--orlando-leading-normal);
  color: var(--orlando-gray-700);
  background-color: var(--orlando-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.orlando-menu-open {
  overflow: hidden;
}

body.orlando-lightbox-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--orlando-font-heading);
  font-weight: var(--orlando-font-bold);
  line-height: var(--orlando-leading-tight);
  color: var(--orlando-gray-900);
  margin-bottom: var(--orlando-space-4);
}

h1 { font-size: var(--orlando-text-5xl); }
h2 { font-size: var(--orlando-text-4xl); }
h3 { font-size: var(--orlando-text-2xl); }
h4 { font-size: var(--orlando-text-xl); }
h5 { font-size: var(--orlando-text-lg); }
h6 { font-size: var(--orlando-text-base); }

p {
  margin-bottom: var(--orlando-space-4);
}

a {
  color: var(--orlando-primary);
  text-decoration: none;
  transition: color var(--orlando-transition-fast);
}

a:hover {
  color: var(--orlando-primary-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background-color: var(--orlando-primary);
  color: var(--orlando-white);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--orlando-gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--orlando-gray-400);
  border-radius: var(--orlando-radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--orlando-gray-500);
}

/* ==========================================
   3. UTILITY CLASSES
   ========================================== */
.orlando-container {
  width: 100%;
  max-width: var(--orlando-container-max);
  margin: 0 auto;
  padding: 0 var(--orlando-container-padding);
}

.orlando-section {
  padding: var(--orlando-space-20) 0;
}

.orlando-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--orlando-space-12);
}

.orlando-section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--orlando-space-2);
  padding: var(--orlando-space-2) var(--orlando-space-4);
  background: var(--orlando-gradient-primary);
  color: var(--orlando-white);
  font-size: var(--orlando-text-sm);
  font-weight: var(--orlando-font-semibold);
  border-radius: var(--orlando-radius-full);
  margin-bottom: var(--orlando-space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.orlando-section-title {
  font-size: var(--orlando-text-4xl);
  margin-bottom: var(--orlando-space-4);
}

.orlando-section-title span {
  background: var(--orlando-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.orlando-section-subtitle {
  font-size: var(--orlando-text-lg);
  color: var(--orlando-gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.orlando-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--orlando-space-2);
  padding: var(--orlando-space-3) var(--orlando-space-6);
  font-size: var(--orlando-text-base);
  font-weight: var(--orlando-font-semibold);
  border-radius: var(--orlando-radius-lg);
  transition: all var(--orlando-transition-base);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.orlando-btn:hover {
  transform: translateY(-2px);
}

.orlando-btn:active {
  transform: translateY(0);
}

.orlando-btn-primary {
  background: var(--orlando-gradient-primary);
  color: var(--orlando-white);
  border-color: transparent;
}

.orlando-btn-primary:hover {
  box-shadow: var(--orlando-shadow-magic);
  color: var(--orlando-white);
}

.orlando-btn-outline {
  background: transparent;
  color: var(--orlando-primary);
  border-color: var(--orlando-primary);
}

.orlando-btn-outline:hover {
  background: var(--orlando-primary);
  color: var(--orlando-white);
}

.orlando-btn-outline-light {
  background: transparent;
  color: var(--orlando-white);
  border-color: var(--orlando-white);
}

.orlando-btn-outline-light:hover {
  background: var(--orlando-white);
  color: var(--orlando-primary);
}

.orlando-btn-whatsapp {
  background: var(--orlando-whatsapp);
  color: var(--orlando-white);
  border-color: var(--orlando-whatsapp);
}

.orlando-btn-whatsapp:hover {
  background: var(--orlando-whatsapp-dark);
  border-color: var(--orlando-whatsapp-dark);
  color: var(--orlando-white);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.orlando-btn-call {
  background: var(--orlando-gradient-gold);
  color: var(--orlando-white);
}

.orlando-btn-call:hover {
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
  color: var(--orlando-white);
}

.orlando-btn-sm {
  padding: var(--orlando-space-2) var(--orlando-space-4);
  font-size: var(--orlando-text-sm);
}

.orlando-btn-lg {
  padding: var(--orlando-space-4) var(--orlando-space-8);
  font-size: var(--orlando-text-lg);
}

.orlando-btn-block {
  width: 100%;
}

/* ==========================================
   4. SKIP LINK & ACCESSIBILITY
   ========================================== */
.orlando-skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orlando-primary);
  color: var(--orlando-white);
  padding: var(--orlando-space-3) var(--orlando-space-6);
  border-radius: var(--orlando-radius-md);
  z-index: var(--orlando-z-preloader);
  transition: top var(--orlando-transition-base);
}

.orlando-skip-link:focus {
  top: 10px;
  color: var(--orlando-white);
}

/* Focus States */
:focus-visible {
  outline: 3px solid var(--orlando-primary-light);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--orlando-primary-light);
  outline-offset: 2px;
}

/* ==========================================
   5. PRELOADER
   ========================================== */
.orlando-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--orlando-gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--orlando-z-preloader);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.orlando-preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.orlando-preloader-content {
  text-align: center;
  color: var(--orlando-white);
}

.orlando-preloader-icon {
  font-size: 5rem;
  margin-bottom: var(--orlando-space-4);
  animation: orlando-bounce 1s infinite;
}

.orlando-preloader-content h3 {
  font-size: var(--orlando-text-2xl);
  color: var(--orlando-white);
  margin-bottom: var(--orlando-space-2);
}

.orlando-preloader-content p {
  font-size: var(--orlando-text-base);
  color: var(--orlando-gray-400);
  margin-bottom: var(--orlando-space-6);
}

.orlando-preloader-bar {
  width: 200px;
  height: 4px;
  background: var(--orlando-gray-700);
  border-radius: var(--orlando-radius-full);
  overflow: hidden;
  margin: 0 auto;
}

.orlando-preloader-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orlando-gradient-magic);
  border-radius: var(--orlando-radius-full);
  animation: orlando-loading 2s ease-in-out infinite;
}

/* ==========================================
   6. BACK TO TOP BUTTON
   ========================================== */
.orlando-back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--orlando-gradient-primary);
  color: var(--orlando-white);
  border: none;
  border-radius: var(--orlando-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--orlando-text-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--orlando-transition-base);
  z-index: var(--orlando-z-fixed);
  box-shadow: var(--orlando-shadow-lg);
}

.orlando-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.orlando-back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--orlando-shadow-magic);
}

/* ==========================================
   7. WHATSAPP FLOAT
   ========================================== */
.orlando-whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: var(--orlando-space-2);
  background: var(--orlando-whatsapp);
  color: var(--orlando-white);
  padding: var(--orlando-space-3) var(--orlando-space-5);
  border-radius: var(--orlando-radius-full);
  font-weight: var(--orlando-font-semibold);
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  z-index: var(--orlando-z-fixed);
  transition: all var(--orlando-transition-base);
  animation: orlando-pulse 2s infinite;
}

.orlando-whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
  color: var(--orlando-white);
}

.orlando-whatsapp-float i {
  font-size: var(--orlando-text-xl);
}

.orlando-whatsapp-float span {
  display: none;
}

@media (min-width: 768px) {
  .orlando-whatsapp-float span {
    display: inline;
  }
}

/* ==========================================
   8. NAVBAR
   ========================================== */
.orlando-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--orlando-navbar-height);
  background: transparent;
  z-index: var(--orlando-z-sticky);
  transition: all var(--orlando-transition-base);
}

.orlando-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: var(--orlando-navbar-height-scrolled);
  box-shadow: var(--orlando-shadow-md);
}

.orlando-nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--orlando-container-max);
  margin: 0 auto;
  padding: 0 var(--orlando-container-padding);
}

/* Logo */
.orlando-nav-logo {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-2);
  font-size: var(--orlando-text-xl);
  font-weight: var(--orlando-font-bold);
  color: var(--orlando-white);
  transition: color var(--orlando-transition-fast);
  z-index: 10;
}

.orlando-navbar.scrolled .orlando-nav-logo {
  color: var(--orlando-gray-900);
}

.orlando-logo-icon {
  font-size: var(--orlando-text-2xl);
}

.orlando-logo-text span {
  background: var(--orlando-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hamburger */
.orlando-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 0;
}

.orlando-hamburger-line {
  width: 25px;
  height: 3px;
  background: var(--orlando-white);
  border-radius: var(--orlando-radius-full);
  transition: all var(--orlando-transition-base);
  margin: 3px 0;
}

.orlando-navbar.scrolled .orlando-hamburger-line {
  background: var(--orlando-gray-800);
}

.orlando-hamburger.active .orlando-hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.orlando-hamburger.active .orlando-hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.orlando-hamburger.active .orlando-hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Navigation Links */
.orlando-nav-links {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--orlando-gradient-dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--orlando-space-6);
  opacity: 0;
  visibility: hidden;
  transition: all var(--orlando-transition-base);
}

.orlando-nav-links.active {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.orlando-nav-links li a {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-2);
  color: var(--orlando-white);
  font-size: var(--orlando-text-lg);
  font-weight: var(--orlando-font-medium);
  padding: var(--orlando-space-3) var(--orlando-space-6);
  border-radius: var(--orlando-radius-lg);
  transition: all var(--orlando-transition-fast);
}

.orlando-nav-links li a:hover,
.orlando-nav-links li a.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--orlando-accent);
}

.orlando-nav-links li a i {
  font-size: var(--orlando-text-base);
}

/* Nav Actions */
.orlando-nav-actions {
  display: none;
  align-items: center;
  gap: var(--orlando-space-4);
}

.orlando-nav-phone {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-2);
  color: var(--orlando-white);
  font-weight: var(--orlando-font-medium);
  transition: color var(--orlando-transition-fast);
}

.orlando-navbar.scrolled .orlando-nav-phone {
  color: var(--orlando-gray-700);
}

.orlando-nav-phone:hover {
  color: var(--orlando-accent);
}

/* Nav Overlay */
.orlando-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--orlando-transition-base);
  z-index: -1;
}

.orlando-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Desktop Navbar */
@media (min-width: 1024px) {
  .orlando-hamburger {
    display: none;
  }

  .orlando-nav-links {
    display: flex;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    flex-direction: row;
    gap: var(--orlando-space-1);
    opacity: 1;
    visibility: visible;
  }

  .orlando-nav-links li a {
    font-size: var(--orlando-text-sm);
    padding: var(--orlando-space-2) var(--orlando-space-3);
    color: var(--orlando-white);
  }

  .orlando-navbar.scrolled .orlando-nav-links li a {
    color: var(--orlando-gray-700);
  }

  .orlando-nav-links li a:hover,
  .orlando-nav-links li a.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--orlando-accent);
  }

  .orlando-navbar.scrolled .orlando-nav-links li a:hover,
  .orlando-navbar.scrolled .orlando-nav-links li a.active {
    background: var(--orlando-gray-100);
    color: var(--orlando-primary);
  }

  .orlando-nav-links li a i {
    display: none;
  }

  .orlando-nav-actions {
    display: flex;
  }
}

/* ==========================================
   9. HERO SECTION
   ========================================== */
.orlando-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero Slider */
.orlando-hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.orlando-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.orlando-hero-slide.active {
  opacity: 1;
}

.orlando-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.orlando-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--orlando-gradient-hero);
  z-index: 1;
}

/* Hero Content */
.orlando-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: var(--orlando-space-8) var(--orlando-container-padding);
  margin-top: var(--orlando-navbar-height);
}

/* Breadcrumb */
.orlando-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--orlando-space-2);
  margin-bottom: var(--orlando-space-6);
  font-size: var(--orlando-text-sm);
}

.orlando-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--orlando-transition-fast);
}

.orlando-breadcrumb a:hover {
  color: var(--orlando-white);
}

.orlando-breadcrumb i {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--orlando-text-xs);
}

.orlando-breadcrumb span {
  color: var(--orlando-accent);
  font-weight: var(--orlando-font-medium);
}

/* Hero Badges */
.orlando-hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--orlando-space-3);
  margin-bottom: var(--orlando-space-6);
}

.orlando-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--orlando-space-2);
  padding: var(--orlando-space-2) var(--orlando-space-4);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--orlando-radius-full);
  color: var(--orlando-white);
  font-size: var(--orlando-text-sm);
  font-weight: var(--orlando-font-medium);
}

.orlando-badge-magic {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
  border-color: rgba(236, 72, 153, 0.4);
}

.orlando-badge-adventure {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(16, 185, 129, 0.3) 100%);
  border-color: rgba(59, 130, 246, 0.4);
}

.orlando-badge-rated {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.3) 0%, rgba(217, 119, 6, 0.3) 100%);
  border-color: rgba(245, 158, 11, 0.4);
}

/* Hero Title */
.orlando-hero-title {
  font-size: var(--orlando-text-5xl);
  color: var(--orlando-white);
  margin-bottom: var(--orlando-space-4);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.orlando-hero-title span {
  background: var(--orlando-gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Subtitle */
.orlando-hero-subtitle {
  font-size: var(--orlando-text-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto var(--orlando-space-6);
  line-height: var(--orlando-leading-relaxed);
}

/* Hero Meta */
.orlando-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--orlando-space-4);
  margin-bottom: var(--orlando-space-8);
}

.orlando-hero-meta-item {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-2);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--orlando-text-sm);
}

.orlando-hero-meta-item i {
  color: var(--orlando-accent);
}

/* Hero CTA */
.orlando-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--orlando-space-4);
}

.orlando-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--orlando-space-4);
}

.orlando-hero-trust {
  font-size: var(--orlando-text-sm);
  color: rgba(255, 255, 255, 0.7);
}

.orlando-hero-trust i {
  color: var(--orlando-accent);
  margin-right: var(--orlando-space-1);
}

/* Hero Controls */
.orlando-hero-controls {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--orlando-space-4);
  z-index: 3;
}

.orlando-hero-prev,
.orlando-hero-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--orlando-radius-full);
  color: var(--orlando-white);
  font-size: var(--orlando-text-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--orlando-transition-fast);
}

.orlando-hero-prev:hover,
.orlando-hero-next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.orlando-hero-dots {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-2);
}

.orlando-hero-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  border-radius: var(--orlando-radius-full);
  cursor: pointer;
  transition: all var(--orlando-transition-fast);
}

.orlando-hero-dot.active,
.orlando-hero-dot:hover {
  background: var(--orlando-white);
  transform: scale(1.2);
}

/* Scroll Indicator */
.orlando-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--orlando-space-2);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--orlando-text-sm);
  z-index: 3;
  animation: orlando-float 2s ease-in-out infinite;
}

.orlando-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  position: relative;
}

.orlando-wheel {
  width: 4px;
  height: 8px;
  background: var(--orlando-white);
  border-radius: var(--orlando-radius-full);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: orlando-scroll-wheel 1.5s infinite;
}

/* Hero Responsive */
@media (min-width: 768px) {
  .orlando-hero-title {
    font-size: var(--orlando-text-6xl);
  }

  .orlando-hero-subtitle {
    font-size: var(--orlando-text-xl);
  }
}

@media (min-width: 1024px) {
  .orlando-hero-title {
    font-size: var(--orlando-text-7xl);
  }
}

/* ==========================================
   10. QUICK INFO STRIP
   ========================================== */
.orlando-quick-info {
  background: var(--orlando-gradient-dark);
  padding: var(--orlando-space-8) 0;
  position: relative;
  overflow: hidden;
}

.orlando-quick-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.orlando-quick-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--orlando-space-6);
  position: relative;
  z-index: 1;
}

.orlando-quick-info-item {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-3);
  color: var(--orlando-white);
}

.orlando-quick-info-item i {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--orlando-radius-lg);
  font-size: var(--orlando-text-lg);
  color: var(--orlando-accent);
  flex-shrink: 0;
}

.orlando-quick-info-item div {
  display: flex;
  flex-direction: column;
}

.orlando-quick-info-item strong {
  font-size: var(--orlando-text-sm);
  font-weight: var(--orlando-font-semibold);
  color: var(--orlando-gray-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.orlando-quick-info-item span {
  font-size: var(--orlando-text-base);
  color: var(--orlando-white);
}

@media (min-width: 768px) {
  .orlando-quick-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .orlando-quick-info-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ==========================================
   11. PACKAGE OVERVIEW
   ========================================== */
.orlando-overview {
  background: var(--orlando-gray-50);
}

.orlando-overview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--orlando-space-10);
}

.orlando-overview-content h3 {
  font-size: var(--orlando-text-2xl);
  margin-bottom: var(--orlando-space-4);
}

.orlando-overview-content p {
  color: var(--orlando-gray-600);
  line-height: var(--orlando-leading-relaxed);
}

/* Highlights Grid */
.orlando-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--orlando-space-3);
  margin: var(--orlando-space-8) 0;
}

.orlando-highlight-item {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-3);
  padding: var(--orlando-space-4);
  background: var(--orlando-white);
  border-radius: var(--orlando-radius-lg);
  box-shadow: var(--orlando-shadow-sm);
  transition: all var(--orlando-transition-base);
}

.orlando-highlight-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--orlando-shadow-md);
}

.orlando-highlight-item i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orlando-gradient-primary);
  border-radius: var(--orlando-radius-md);
  color: var(--orlando-white);
  font-size: var(--orlando-text-lg);
  flex-shrink: 0;
}

.orlando-highlight-item span {
  font-weight: var(--orlando-font-medium);
  color: var(--orlando-gray-700);
}

/* Why Choose */
.orlando-why-choose {
  background: var(--orlando-white);
  padding: var(--orlando-space-6);
  border-radius: var(--orlando-radius-xl);
  box-shadow: var(--orlando-shadow-md);
}

.orlando-why-choose h4 {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-2);
  font-size: var(--orlando-text-lg);
  margin-bottom: var(--orlando-space-4);
}

.orlando-why-choose h4 i {
  color: var(--orlando-success);
}

.orlando-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--orlando-space-3);
}

.orlando-why-item {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-2);
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-600);
}

.orlando-why-item i {
  color: var(--orlando-primary);
}

/* Sidebar */
.orlando-overview-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--orlando-space-6);
}

/* Inclusions/Exclusions Cards */
.orlando-inc-exc-card {
  background: var(--orlando-white);
  border-radius: var(--orlando-radius-xl);
  padding: var(--orlando-space-6);
  box-shadow: var(--orlando-shadow-md);
}

.orlando-inc-exc-card h4 {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-2);
  font-size: var(--orlando-text-lg);
  margin-bottom: var(--orlando-space-4);
  padding-bottom: var(--orlando-space-3);
  border-bottom: 2px solid var(--orlando-gray-100);
}

.orlando-inclusions h4 {
  color: var(--orlando-success);
}

.orlando-inclusions h4 i {
  color: var(--orlando-success);
}

.orlando-exclusions h4 {
  color: var(--orlando-error);
}

.orlando-exclusions h4 i {
  color: var(--orlando-error);
}

.orlando-inc-exc-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--orlando-space-3);
}

.orlando-inc-exc-card li {
  display: flex;
  align-items: flex-start;
  gap: var(--orlando-space-3);
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-600);
}

.orlando-inc-exc-card li i {
  margin-top: 2px;
  flex-shrink: 0;
}

.orlando-inclusions li i {
  color: var(--orlando-success);
}

.orlando-exclusions li i {
  color: var(--orlando-error);
}

/* Best Time Card */
.orlando-best-time h4 {
  color: var(--orlando-primary);
}

.orlando-best-time h4 i {
  color: var(--orlando-primary);
}

.orlando-season-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--orlando-space-3);
}

.orlando-season-item {
  padding: var(--orlando-space-3);
  border-radius: var(--orlando-radius-md);
  text-align: center;
}

.orlando-season-name {
  display: block;
  font-weight: var(--orlando-font-semibold);
  margin-bottom: var(--orlando-space-1);
}

.orlando-season-label {
  font-size: var(--orlando-text-xs);
}

.orlando-season-best {
  background: var(--orlando-success-light);
  border: 1px solid var(--orlando-success);
}

.orlando-season-best .orlando-season-name {
  color: var(--orlando-success);
}

.orlando-season-good {
  background: var(--orlando-info-light);
  border: 1px solid var(--orlando-info);
}

.orlando-season-good .orlando-season-name {
  color: var(--orlando-info);
}

.orlando-season-avoid {
  background: var(--orlando-error-light);
  border: 1px solid var(--orlando-error);
}

.orlando-season-avoid .orlando-season-name {
  color: var(--orlando-error);
}

@media (min-width: 768px) {
  .orlando-highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .orlando-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .orlando-overview-grid {
    grid-template-columns: 1.5fr 1fr;
  }

  .orlando-highlights-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ==========================================
   12. THEME PARKS SECTION
   ========================================== */
.orlando-parks-section {
  background: var(--orlando-white);
}

.orlando-parks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--orlando-space-6);
}

.orlando-park-card {
  background: var(--orlando-white);
  border-radius: var(--orlando-radius-xl);
  overflow: hidden;
  box-shadow: var(--orlando-shadow-md);
  transition: all var(--orlando-transition-base);
}

.orlando-park-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--orlando-shadow-xl);
}

.orlando-park-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.orlando-park-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--orlando-transition-slow);
}

.orlando-park-card:hover .orlando-park-image img {
  transform: scale(1.1);
}

.orlando-park-tag {
  position: absolute;
  top: var(--orlando-space-4);
  left: var(--orlando-space-4);
  padding: var(--orlando-space-1) var(--orlando-space-3);
  background: var(--orlando-primary);
  color: var(--orlando-white);
  font-size: var(--orlando-text-xs);
  font-weight: var(--orlando-font-semibold);
  border-radius: var(--orlando-radius-full);
  text-transform: uppercase;
}

.orlando-park-badge {
  position: absolute;
  top: var(--orlando-space-4);
  right: var(--orlando-space-4);
  display: flex;
  align-items: center;
  gap: var(--orlando-space-1);
  padding: var(--orlando-space-1) var(--orlando-space-3);
  background: var(--orlando-gradient-magic);
  color: var(--orlando-white);
  font-size: var(--orlando-text-xs);
  font-weight: var(--orlando-font-semibold);
  border-radius: var(--orlando-radius-full);
}

.orlando-park-content {
  padding: var(--orlando-space-5);
}

.orlando-park-content h4 {
  font-size: var(--orlando-text-xl);
  margin-bottom: var(--orlando-space-2);
}

.orlando-park-content p {
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-600);
  margin-bottom: var(--orlando-space-4);
}

.orlando-park-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--orlando-space-2);
  margin-bottom: var(--orlando-space-4);
}

.orlando-park-highlights span {
  display: inline-flex;
  align-items: center;
  gap: var(--orlando-space-1);
  padding: var(--orlando-space-1) var(--orlando-space-2);
  background: var(--orlando-gray-100);
  border-radius: var(--orlando-radius-sm);
  font-size: var(--orlando-text-xs);
  color: var(--orlando-gray-600);
}

.orlando-park-highlights span i {
  color: var(--orlando-success);
  font-size: 10px;
}

.orlando-park-meta {
  display: flex;
  gap: var(--orlando-space-4);
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-500);
}

.orlando-park-meta span {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-1);
}

.orlando-park-meta i {
  color: var(--orlando-primary);
}

/* Featured Park */
.orlando-park-featured {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .orlando-parks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .orlando-park-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .orlando-park-featured .orlando-park-image {
    height: 100%;
    min-height: 300px;
  }

  .orlando-park-featured .orlando-park-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .orlando-parks-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .orlando-park-featured {
    grid-column: span 2;
  }
}

/* ==========================================
   13. ITINERARY SECTION
   ========================================== */
.orlando-itinerary-section {
  background: var(--orlando-gray-50);
}

.orlando-itinerary-timeline {
  max-width: 900px;
  margin: 0 auto;
}

/* Day Card */
.orlando-day-card {
  display: flex;
  gap: var(--orlando-space-6);
  margin-bottom: var(--orlando-space-8);
}

.orlando-day-card:last-child {
  margin-bottom: 0;
}

/* Day Marker */
.orlando-day-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.orlando-day-number {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orlando-gradient-primary);
  color: var(--orlando-white);
  font-size: var(--orlando-text-xl);
  font-weight: var(--orlando-font-bold);
  border-radius: var(--orlando-radius-full);
  box-shadow: var(--orlando-shadow-lg);
}

.orlando-day-line {
  width: 3px;
  flex-grow: 1;
  background: linear-gradient(180deg, var(--orlando-primary) 0%, var(--orlando-gray-200) 100%);
  margin-top: var(--orlando-space-4);
  border-radius: var(--orlando-radius-full);
}

.orlando-day-card:last-child .orlando-day-line {
  display: none;
}

/* Day Content */
.orlando-day-content {
  flex-grow: 1;
  background: var(--orlando-white);
  border-radius: var(--orlando-radius-xl);
  box-shadow: var(--orlando-shadow-md);
  overflow: hidden;
}

/* Day Header */
.orlando-day-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--orlando-space-4);
  padding: var(--orlando-space-5);
  background: var(--orlando-gray-50);
  border-bottom: 1px solid var(--orlando-gray-100);
}

.orlando-day-title h3 {
  font-size: var(--orlando-text-lg);
  margin-bottom: var(--orlando-space-2);
  line-height: var(--orlando-leading-snug);
}

.orlando-day-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--orlando-space-1);
  padding: var(--orlando-space-1) var(--orlando-space-3);
  background: var(--orlando-gradient-primary);
  color: var(--orlando-white);
  font-size: var(--orlando-text-xs);
  font-weight: var(--orlando-font-semibold);
  border-radius: var(--orlando-radius-full);
}

.orlando-day-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orlando-white);
  border: 2px solid var(--orlando-gray-200);
  border-radius: var(--orlando-radius-full);
  color: var(--orlando-gray-600);
  cursor: pointer;
  transition: all var(--orlando-transition-fast);
  flex-shrink: 0;
}

.orlando-day-toggle:hover {
  background: var(--orlando-primary);
  border-color: var(--orlando-primary);
  color: var(--orlando-white);
}

.orlando-day-toggle i {
  transition: transform var(--orlando-transition-fast);
}

.orlando-day-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* Day Summary */
.orlando-day-summary {
  padding: var(--orlando-space-5);
  border-bottom: 1px solid var(--orlando-gray-100);
}

.orlando-day-summary p {
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-600);
  margin: 0;
}

/* Day Details */
.orlando-day-details {
  display: none;
  padding: var(--orlando-space-5);
}

.orlando-day-details.active {
  display: block;
}

/* Day Image */
.orlando-day-image {
  border-radius: var(--orlando-radius-lg);
  overflow: hidden;
  margin-bottom: var(--orlando-space-5);
}

.orlando-day-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Day Schedule */
.orlando-day-schedule {
  display: flex;
  flex-direction: column;
  gap: var(--orlando-space-4);
  margin-bottom: var(--orlando-space-5);
}

.orlando-schedule-item {
  display: flex;
  gap: var(--orlando-space-4);
  padding: var(--orlando-space-3);
  background: var(--orlando-gray-50);
  border-radius: var(--orlando-radius-md);
  border-left: 4px solid var(--orlando-primary);
}

.orlando-time {
  flex-shrink: 0;
  font-size: var(--orlando-text-sm);
  font-weight: var(--orlando-font-semibold);
  color: var(--orlando-primary);
  min-width: 80px;
}

.orlando-activity {
  display: flex;
  gap: var(--orlando-space-3);
  flex-grow: 1;
}

.orlando-activity > i {
  color: var(--orlando-accent);
  font-size: var(--orlando-text-lg);
  margin-top: 2px;
  flex-shrink: 0;
}

.orlando-activity strong {
  display: block;
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-800);
  margin-bottom: var(--orlando-space-1);
}

.orlando-activity p {
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-600);
  margin: 0;
}

/* Day Meals */
.orlando-day-meals {
  display: flex;
  flex-wrap: wrap;
  gap: var(--orlando-space-3);
  margin-bottom: var(--orlando-space-4);
}

.orlando-meal {
  display: inline-flex;
  align-items: center;
  gap: var(--orlando-space-2);
  padding: var(--orlando-space-2) var(--orlando-space-3);
  background: var(--orlando-success-light);
  color: var(--orlando-success);
  font-size: var(--orlando-text-sm);
  font-weight: var(--orlando-font-medium);
  border-radius: var(--orlando-radius-full);
}

/* Day Tips */
.orlando-day-tips {
  display: flex;
  gap: var(--orlando-space-3);
  padding: var(--orlando-space-4);
  background: var(--orlando-info-light);
  border-radius: var(--orlando-radius-lg);
  border-left: 4px solid var(--orlando-info);
  margin-bottom: var(--orlando-space-4);
}

.orlando-day-tips i {
  color: var(--orlando-info);
  font-size: var(--orlando-text-lg);
  flex-shrink: 0;
}

.orlando-day-tips p {
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-700);
  margin: 0;
  line-height: var(--orlando-leading-relaxed);
}

/* Day Stay */
.orlando-day-stay {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-3);
  padding: var(--orlando-space-4);
  background: var(--orlando-gray-100);
  border-radius: var(--orlando-radius-lg);
}

.orlando-day-stay i {
  color: var(--orlando-primary);
}

.orlando-day-stay span {
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-700);
  font-weight: var(--orlando-font-medium);
}

/* Itinerary Actions */
.orlando-itinerary-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--orlando-space-4);
  margin-top: var(--orlando-space-12);
  padding-top: var(--orlando-space-8);
  border-top: 2px solid var(--orlando-gray-200);
}

/* Responsive */
@media (max-width: 767px) {
  .orlando-day-card {
    flex-direction: column;
  }

  .orlando-day-marker {
    flex-direction: row;
    gap: var(--orlando-space-4);
  }

  .orlando-day-line {
    display: none;
  }

  .orlando-day-number {
    width: 50px;
    height: 50px;
    font-size: var(--orlando-text-lg);
  }

  .orlando-day-header {
    flex-direction: column;
  }

  .orlando-schedule-item {
    flex-direction: column;
    gap: var(--orlando-space-2);
  }

  .orlando-time {
    min-width: auto;
  }
}

/* ==========================================
   14. PHOTO GALLERY
   ========================================== */
.orlando-gallery-section {
  background: var(--orlando-white);
}

.orlando-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--orlando-space-4);
}

.orlando-gallery-item {
  position: relative;
  border-radius: var(--orlando-radius-xl);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.orlando-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--orlando-transition-slow);
}

.orlando-gallery-item:hover img {
  transform: scale(1.1);
}

.orlando-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--orlando-space-4);
  opacity: 0;
  transition: opacity var(--orlando-transition-base);
}

.orlando-gallery-item:hover .orlando-gallery-overlay,
.orlando-gallery-item:focus .orlando-gallery-overlay {
  opacity: 1;
}

.orlando-gallery-overlay span {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-2);
  color: var(--orlando-white);
  font-weight: var(--orlando-font-medium);
}

/* Special Sizes */
.orlando-gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.orlando-gallery-tall {
  grid-row: span 2;
}

.orlando-gallery-cta {
  text-align: center;
  margin-top: var(--orlando-space-8);
}

@media (min-width: 768px) {
  .orlando-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================
   15. BOOKING FORM
   ========================================== */
.orlando-booking-section {
  background: var(--orlando-gray-50);
  padding: var(--orlando-space-20) 0;
}

.orlando-booking-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--orlando-space-10);
  max-width: 1200px;
  margin: 0 auto;
}

/* Booking Info */
.orlando-booking-info {
  padding: var(--orlando-space-6);
}

.orlando-booking-info h2 {
  font-size: var(--orlando-text-3xl);
  margin-bottom: var(--orlando-space-4);
}

.orlando-booking-info > p {
  font-size: var(--orlando-text-base);
  color: var(--orlando-gray-600);
  line-height: var(--orlando-leading-relaxed);
  margin-bottom: var(--orlando-space-8);
}

/* Booking Features */
.orlando-booking-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--orlando-space-3);
  margin-bottom: var(--orlando-space-8);
}

.orlando-booking-feature {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-2);
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-700);
}

.orlando-booking-feature i {
  color: var(--orlando-success);
}

/* Trust Items */
.orlando-booking-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--orlando-space-6);
  margin-bottom: var(--orlando-space-8);
  padding: var(--orlando-space-6);
  background: var(--orlando-white);
  border-radius: var(--orlando-radius-xl);
  box-shadow: var(--orlando-shadow-sm);
}

.orlando-trust-item {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-3);
}

.orlando-trust-item i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orlando-gradient-primary);
  border-radius: var(--orlando-radius-lg);
  color: var(--orlando-white);
  font-size: var(--orlando-text-xl);
}

.orlando-trust-item strong {
  display: block;
  font-size: var(--orlando-text-xl);
  color: var(--orlando-gray-900);
}

.orlando-trust-item span {
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-500);
}

/* Contact Items */
.orlando-booking-contact {
  padding: var(--orlando-space-6);
  background: var(--orlando-white);
  border-radius: var(--orlando-radius-xl);
  box-shadow: var(--orlando-shadow-sm);
}

.orlando-booking-contact p {
  font-weight: var(--orlando-font-semibold);
  margin-bottom: var(--orlando-space-4);
}

.orlando-contact-item {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-3);
  padding: var(--orlando-space-3);
  color: var(--orlando-gray-700);
  border-radius: var(--orlando-radius-md);
  transition: all var(--orlando-transition-fast);
  margin-bottom: var(--orlando-space-2);
}

.orlando-contact-item:hover {
  background: var(--orlando-gray-100);
  color: var(--orlando-primary);
}

.orlando-contact-item i {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orlando-primary);
  border-radius: var(--orlando-radius-md);
  color: var(--orlando-white);
}

/* Booking Form Container */
.orlando-booking-form-container {
  background: var(--orlando-white);
  padding: var(--orlando-space-8);
  border-radius: var(--orlando-radius-2xl);
  box-shadow: var(--orlando-shadow-xl);
}

/* Form Styles */
.orlando-booking-form {
  display: flex;
  flex-direction: column;
  gap: var(--orlando-space-5);
}

.orlando-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--orlando-space-5);
}

.orlando-form-group {
  display: flex;
  flex-direction: column;
}

.orlando-form-group label {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-2);
  font-size: var(--orlando-text-sm);
  font-weight: var(--orlando-font-medium);
  color: var(--orlando-gray-700);
  margin-bottom: var(--orlando-space-2);
}

.orlando-form-group label i {
  color: var(--orlando-primary);
}

.orlando-form-group label span {
  color: var(--orlando-error);
}

.orlando-form-group input,
.orlando-form-group select,
.orlando-form-group textarea {
  width: 100%;
  padding: var(--orlando-space-3) var(--orlando-space-4);
  border: 2px solid var(--orlando-gray-200);
  border-radius: var(--orlando-radius-lg);
  font-size: var(--orlando-text-base);
  color: var(--orlando-gray-800);
  background: var(--orlando-white);
  transition: all var(--orlando-transition-fast);
}

.orlando-form-group input:focus,
.orlando-form-group select:focus,
.orlando-form-group textarea:focus {
  outline: none;
  border-color: var(--orlando-primary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.orlando-form-group input.error,
.orlando-form-group select.error,
.orlando-form-group textarea.error {
  border-color: var(--orlando-error);
}

.orlando-error-message {
  font-size: var(--orlando-text-sm);
  color: var(--orlando-error);
  margin-top: var(--orlando-space-1);
  display: none;
}

.orlando-form-group.has-error .orlando-error-message {
  display: block;
}

/* Phone Input */
.orlando-phone-input {
  display: flex;
  gap: var(--orlando-space-2);
}

.orlando-phone-input select {
  width: 100px;
  flex-shrink: 0;
}

.orlando-phone-input input {
  flex-grow: 1;
}

/* Hotel Options */
.orlando-hotel-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--orlando-space-3);
}

.orlando-hotel-option {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-2);
  padding: var(--orlando-space-3) var(--orlando-space-4);
  background: var(--orlando-gray-50);
  border: 2px solid var(--orlando-gray-200);
  border-radius: var(--orlando-radius-lg);
  cursor: pointer;
  transition: all var(--orlando-transition-fast);
}

.orlando-hotel-option:hover {
  border-color: var(--orlando-primary-light);
}

.orlando-hotel-option input {
  width: auto;
  accent-color: var(--orlando-primary);
}

.orlando-hotel-option input:checked + span {
  color: var(--orlando-primary);
  font-weight: var(--orlando-font-semibold);
}

.orlando-hotel-option span {
  font-size: var(--orlando-text-sm);
}

/* Addon Options */
.orlando-addon-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--orlando-space-2);
}

.orlando-addon-option {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-2);
  padding: var(--orlando-space-2) var(--orlando-space-3);
  background: var(--orlando-gray-50);
  border: 1px solid var(--orlando-gray-200);
  border-radius: var(--orlando-radius-md);
  cursor: pointer;
  transition: all var(--orlando-transition-fast);
  font-size: var(--orlando-text-sm);
}

/* Continuing from .orlando-addon-option:hover */
.orlando-addon-option:hover {
  background: var(--orlando-primary-light);
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--orlando-primary-light);
}

.orlando-addon-option input {
  width: auto;
  accent-color: var(--orlando-primary);
}

.orlando-addon-option input:checked + span {
  color: var(--orlando-primary);
  font-weight: var(--orlando-font-medium);
}

.orlando-addon-option span {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-2);
}

.orlando-addon-option span i {
  color: var(--orlando-primary);
  font-size: var(--orlando-text-xs);
}

/* Form Consent */
.orlando-form-consent {
  padding: var(--orlando-space-4);
  background: var(--orlando-gray-50);
  border-radius: var(--orlando-radius-lg);
}

.orlando-consent-option {
  display: flex;
  align-items: flex-start;
  gap: var(--orlando-space-3);
  cursor: pointer;
}

.orlando-consent-option input {
  width: auto;
  margin-top: 4px;
  accent-color: var(--orlando-primary);
}

.orlando-consent-option span {
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-600);
  line-height: var(--orlando-leading-relaxed);
}

.orlando-consent-option span a {
  color: var(--orlando-primary);
  text-decoration: underline;
}

/* Form Note */
.orlando-form-note {
  text-align: center;
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-500);
  margin-top: var(--orlando-space-2);
}

.orlando-form-note i {
  color: var(--orlando-primary);
  margin-right: var(--orlando-space-1);
}

/* Button Loader */
.orlando-btn-text,
.orlando-btn-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--orlando-space-2);
}

/* Form Messages */
.orlando-form-message {
  display: flex;
  align-items: flex-start;
  gap: var(--orlando-space-4);
  padding: var(--orlando-space-5);
  border-radius: var(--orlando-radius-xl);
  margin-top: var(--orlando-space-4);
}

.orlando-form-message i {
  font-size: var(--orlando-text-2xl);
  flex-shrink: 0;
}

.orlando-form-message strong {
  display: block;
  font-size: var(--orlando-text-lg);
  margin-bottom: var(--orlando-space-1);
}

.orlando-form-message p {
  font-size: var(--orlando-text-sm);
  margin: 0;
}

.orlando-form-message a {
  font-weight: var(--orlando-font-semibold);
}

.orlando-form-success {
  background: var(--orlando-success-light);
  border: 1px solid var(--orlando-success);
}

.orlando-form-success i {
  color: var(--orlando-success);
}

.orlando-form-success strong {
  color: var(--orlando-success);
}

.orlando-form-error {
  background: var(--orlando-error-light);
  border: 1px solid var(--orlando-error);
}

.orlando-form-error i {
  color: var(--orlando-error);
}

.orlando-form-error strong {
  color: var(--orlando-error);
}

/* Booking Form Responsive */
@media (min-width: 768px) {
  .orlando-form-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .orlando-hotel-options {
    grid-template-columns: repeat(4, 1fr);
  }

  .orlando-addon-options {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .orlando-booking-wrapper {
    grid-template-columns: 1fr 1.2fr;
  }

  .orlando-booking-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================
   16. REVIEWS SECTION
   ========================================== */
.orlando-reviews-section {
  background: var(--orlando-white);
}

/* Rating Summary */
.orlando-reviews-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--orlando-space-8);
  padding: var(--orlando-space-8);
  background: var(--orlando-gradient-dark);
  border-radius: var(--orlando-radius-2xl);
  margin-bottom: var(--orlando-space-10);
}

.orlando-rating-big {
  text-align: center;
  color: var(--orlando-white);
}

.orlando-rating-number {
  font-size: var(--orlando-text-6xl);
  font-weight: var(--orlando-font-bold);
  font-family: var(--orlando-font-heading);
  line-height: 1;
  display: block;
  margin-bottom: var(--orlando-space-2);
}

.orlando-rating-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--orlando-space-1);
  margin-bottom: var(--orlando-space-2);
}

.orlando-rating-stars i {
  color: var(--orlando-accent);
  font-size: var(--orlando-text-xl);
}

.orlando-rating-count {
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-400);
}

/* Rating Bars */
.orlando-rating-bars {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--orlando-space-2);
}

.orlando-rating-bar {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-3);
  color: var(--orlando-white);
  font-size: var(--orlando-text-sm);
}

.orlando-rating-bar > span:first-child {
  width: 40px;
  flex-shrink: 0;
}

.orlando-rating-bar .orlando-bar {
  flex-grow: 1;
  height: 8px;
  background: var(--orlando-gray-700);
  border-radius: var(--orlando-radius-full);
  overflow: hidden;
}

.orlando-rating-bar .orlando-bar span {
  display: block;
  height: 100%;
  background: var(--orlando-gradient-gold);
  border-radius: var(--orlando-radius-full);
  transition: width 1s ease;
}

.orlando-rating-bar > span:last-child {
  width: 40px;
  text-align: right;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .orlando-reviews-summary {
    flex-direction: row;
    justify-content: center;
  }

  .orlando-rating-big {
    padding-right: var(--orlando-space-10);
    border-right: 1px solid var(--orlando-gray-700);
  }

  .orlando-rating-bars {
    padding-left: var(--orlando-space-10);
  }
}

/* Reviews Grid */
.orlando-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--orlando-space-6);
}

/* Review Card */
.orlando-review-card {
  background: var(--orlando-white);
  padding: var(--orlando-space-6);
  border-radius: var(--orlando-radius-xl);
  box-shadow: var(--orlando-shadow-md);
  border: 1px solid var(--orlando-gray-100);
  transition: all var(--orlando-transition-base);
}

.orlando-review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--orlando-shadow-lg);
}

.orlando-review-header {
  display: flex;
  align-items: flex-start;
  gap: var(--orlando-space-4);
  margin-bottom: var(--orlando-space-4);
}

.orlando-review-header img {
  width: 60px;
  height: 60px;
  border-radius: var(--orlando-radius-full);
  object-fit: cover;
  flex-shrink: 0;
}

.orlando-review-header > div:nth-child(2) {
  flex-grow: 1;
}

.orlando-review-header h4 {
  font-size: var(--orlando-text-base);
  font-family: var(--orlando-font-primary);
  margin-bottom: var(--orlando-space-1);
}

.orlando-review-header > div > span {
  display: block;
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-500);
}

.orlando-verified {
  display: inline-flex;
  align-items: center;
  gap: var(--orlando-space-1);
  color: var(--orlando-success);
  font-size: var(--orlando-text-xs);
  font-weight: var(--orlando-font-medium);
  margin-top: var(--orlando-space-1);
}

.orlando-review-rating {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.orlando-review-rating i {
  color: var(--orlando-accent);
  font-size: var(--orlando-text-sm);
}

.orlando-review-card > p {
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-600);
  line-height: var(--orlando-leading-relaxed);
  margin-bottom: var(--orlando-space-4);
}

/* Review Images */
.orlando-review-images {
  display: flex;
  gap: var(--orlando-space-2);
  margin-bottom: var(--orlando-space-4);
}

.orlando-review-images img {
  width: 60px;
  height: 60px;
  border-radius: var(--orlando-radius-md);
  object-fit: cover;
}

/* Review Helpful */
.orlando-review-helpful {
  padding-top: var(--orlando-space-4);
  border-top: 1px solid var(--orlando-gray-100);
}

.orlando-review-helpful span {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-2);
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-500);
}

.orlando-review-helpful i {
  color: var(--orlando-primary);
}

/* Reviews CTA */
.orlando-reviews-cta {
  text-align: center;
  margin-top: var(--orlando-space-10);
}

@media (min-width: 768px) {
  .orlando-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .orlando-reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================
   17. FAQ SECTION
   ========================================== */
.orlando-faq-section {
  background: var(--orlando-gray-50);
}

.orlando-faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--orlando-space-4);
}

/* FAQ Item */
.orlando-faq-item {
  background: var(--orlando-white);
  border-radius: var(--orlando-radius-xl);
  box-shadow: var(--orlando-shadow-sm);
  overflow: hidden;
  border: 1px solid var(--orlando-gray-100);
}

.orlando-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--orlando-space-4);
  padding: var(--orlando-space-5) var(--orlando-space-6);
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: all var(--orlando-transition-fast);
}

.orlando-faq-question:hover {
  background: var(--orlando-gray-50);
}

.orlando-faq-question span {
  font-size: var(--orlando-text-base);
  font-weight: var(--orlando-font-semibold);
  color: var(--orlando-gray-800);
}

.orlando-faq-question i {
  font-size: var(--orlando-text-sm);
  color: var(--orlando-primary);
  transition: transform var(--orlando-transition-fast);
  flex-shrink: 0;
}

.orlando-faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.orlando-faq-question[aria-expanded="true"] {
  background: var(--orlando-primary);
}

.orlando-faq-question[aria-expanded="true"] span,
.orlando-faq-question[aria-expanded="true"] i {
  color: var(--orlando-white);
}

/* FAQ Answer */
.orlando-faq-answer {
  display: none;
  padding: 0 var(--orlando-space-6) var(--orlando-space-6);
}

.orlando-faq-answer.active {
  display: block;
  animation: orlando-fade-in 0.3s ease;
}

.orlando-faq-answer p {
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-600);
  line-height: var(--orlando-leading-relaxed);
  margin-bottom: var(--orlando-space-4);
}

.orlando-faq-answer p:last-child {
  margin-bottom: 0;
}

.orlando-faq-answer ul {
  margin-bottom: var(--orlando-space-4);
  padding-left: var(--orlando-space-4);
}

.orlando-faq-answer li {
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-600);
  margin-bottom: var(--orlando-space-2);
  position: relative;
  padding-left: var(--orlando-space-4);
}

.orlando-faq-answer li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--orlando-primary);
  font-weight: bold;
}

.orlando-faq-answer li strong {
  color: var(--orlando-gray-800);
}

/* FAQ CTA */
.orlando-faq-cta {
  text-align: center;
  margin-top: var(--orlando-space-10);
  padding: var(--orlando-space-8);
  background: var(--orlando-white);
  border-radius: var(--orlando-radius-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--orlando-shadow-md);
}

.orlando-faq-cta p {
  font-size: var(--orlando-text-lg);
  font-weight: var(--orlando-font-semibold);
  margin-bottom: var(--orlando-space-4);
}

.orlando-faq-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--orlando-space-4);
}

/* ==========================================
   18. CTA SECTION
   ========================================== */
.orlando-cta-section {
  position: relative;
  padding: var(--orlando-space-24) 0;
  overflow: hidden;
}

.orlando-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.orlando-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.orlando-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(124, 58, 237, 0.9) 100%);
}

.orlando-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.orlando-cta-content h2 {
  font-size: var(--orlando-text-4xl);
  color: var(--orlando-white);
  margin-bottom: var(--orlando-space-4);
}

.orlando-cta-content > p {
  font-size: var(--orlando-text-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--orlando-space-6);
}

.orlando-cta-features {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--orlando-space-6);
  margin-bottom: var(--orlando-space-8);
}

.orlando-cta-features span {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-2);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--orlando-text-base);
  font-weight: var(--orlando-font-medium);
}

.orlando-cta-features span i {
  color: var(--orlando-accent);
}

.orlando-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--orlando-space-4);
  margin-bottom: var(--orlando-space-6);
}

.orlando-cta-note {
  font-size: var(--orlando-text-sm);
  color: rgba(255, 255, 255, 0.7);
}

.orlando-cta-note i {
  color: var(--orlando-accent);
  margin-right: var(--orlando-space-1);
}

@media (min-width: 768px) {
  .orlando-cta-content h2 {
    font-size: var(--orlando-text-5xl);
  }
}

/* ==========================================
   19. TRUST BADGES
   ========================================== */
.orlando-trust-section {
  background: var(--orlando-white);
  padding: var(--orlando-space-10) 0;
  border-top: 1px solid var(--orlando-gray-100);
  border-bottom: 1px solid var(--orlando-gray-100);
}

.orlando-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--orlando-space-6);
}

.orlando-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--orlando-space-3);
  padding: var(--orlando-space-4);
  text-align: center;
}

.orlando-trust-badge i {
  font-size: var(--orlando-text-2xl);
  color: var(--orlando-primary);
}

.orlando-trust-badge span {
  font-size: var(--orlando-text-sm);
  font-weight: var(--orlando-font-medium);
  color: var(--orlando-gray-700);
}

@media (min-width: 768px) {
  .orlando-trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .orlando-trust-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .orlando-trust-badge {
    flex-direction: column;
    gap: var(--orlando-space-2);
  }
}

/* ==========================================
   20. FOOTER
   ========================================== */
.orlando-footer {
  background: var(--orlando-gradient-dark);
  color: var(--orlando-white);
}

.orlando-footer-top {
  padding: var(--orlando-space-16) 0;
}

.orlando-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--orlando-space-10);
}

/* Footer About */
.orlando-footer-about {
  max-width: 350px;
}

.orlando-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: var(--orlando-space-2);
  font-size: var(--orlando-text-xl);
  font-weight: var(--orlando-font-bold);
  color: var(--orlando-white);
  margin-bottom: var(--orlando-space-4);
}

.orlando-footer-logo:hover {
  color: var(--orlando-white);
}

.orlando-footer-about p {
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-400);
  line-height: var(--orlando-leading-relaxed);
  margin-bottom: var(--orlando-space-6);
}

/* Footer Social */
.orlando-footer-social {
  display: flex;
  gap: var(--orlando-space-3);
}

.orlando-footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--orlando-radius-full);
  color: var(--orlando-white);
  font-size: var(--orlando-text-base);
  transition: all var(--orlando-transition-fast);
}

.orlando-footer-social a:hover {
  background: var(--orlando-primary);
  transform: translateY(-3px);
}

/* Footer Columns */
.orlando-footer-col h4 {
  font-size: var(--orlando-text-lg);
  font-family: var(--orlando-font-primary);
  color: var(--orlando-white);
  margin-bottom: var(--orlando-space-5);
  padding-bottom: var(--orlando-space-3);
  border-bottom: 2px solid var(--orlando-primary);
  display: inline-block;
}

.orlando-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--orlando-space-3);
}

.orlando-footer-col ul li a {
  color: var(--orlando-gray-400);
  font-size: var(--orlando-text-sm);
  transition: all var(--orlando-transition-fast);
}

.orlando-footer-col ul li a:hover,
.orlando-footer-col ul li a.active {
  color: var(--orlando-white);
  padding-left: var(--orlando-space-2);
}

/* Footer Contact */
.orlando-footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: var(--orlando-space-3);
}

.orlando-footer-contact ul li i {
  color: var(--orlando-primary);
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.orlando-footer-contact ul li span,
.orlando-footer-contact ul li a {
  color: var(--orlando-gray-400);
  font-size: var(--orlando-text-sm);
}

.orlando-footer-contact ul li a:hover {
  color: var(--orlando-white);
  padding-left: 0;
}

/* Newsletter */
.orlando-footer-newsletter {
  margin-top: var(--orlando-space-12);
  padding-top: var(--orlando-space-8);
  border-top: 1px solid var(--orlando-gray-700);
  text-align: center;
}

.orlando-footer-newsletter h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--orlando-space-2);
  font-family: var(--orlando-font-primary);
  font-size: var(--orlando-text-lg);
  color: var(--orlando-white);
  margin-bottom: var(--orlando-space-2);
}

.orlando-footer-newsletter p {
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-400);
  margin-bottom: var(--orlando-space-4);
}

.orlando-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--orlando-space-3);
  max-width: 500px;
  margin: 0 auto;
}

.orlando-newsletter-form input {
  padding: var(--orlando-space-4);
  border: 2px solid var(--orlando-gray-700);
  border-radius: var(--orlando-radius-lg);
  background: var(--orlando-gray-800);
  color: var(--orlando-white);
  font-size: var(--orlando-text-base);
}

.orlando-newsletter-form input::placeholder {
  color: var(--orlando-gray-500);
}

.orlando-newsletter-form input:focus {
  outline: none;
  border-color: var(--orlando-primary);
}

/* Footer Bottom */
.orlando-footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: var(--orlando-space-6) 0;
}

.orlando-footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--orlando-space-4);
  text-align: center;
}

.orlando-footer-bottom-content p {
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-400);
  margin: 0;
}

.orlando-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--orlando-space-4);
}

.orlando-footer-links a {
  font-size: var(--orlando-text-sm);
  color: var(--orlando-gray-400);
  transition: color var(--orlando-transition-fast);
}

.orlando-footer-links a:hover {
  color: var(--orlando-white);
}

/* Payment Methods */
.orlando-payment-methods {
  display: flex;
  align-items: center;
  gap: var(--orlando-space-3);
  color: var(--orlando-gray-400);
  font-size: var(--orlando-text-sm);
}

.orlando-payment-methods i {
  font-size: var(--orlando-text-2xl);
}

/* Footer Responsive */
@media (min-width: 768px) {
  .orlando-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .orlando-newsletter-form {
    flex-direction: row;
  }

  .orlando-newsletter-form input {
    flex-grow: 1;
  }
}

@media (min-width: 1024px) {
  .orlando-footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }

  .orlando-footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ==========================================
   21. LIGHTBOX
   ========================================== */
.orlando-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: var(--orlando-z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--orlando-transition-base);
}

.orlando-lightbox[hidden] {
  display: none;
}

.orlando-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.orlando-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--orlando-radius-full);
  color: var(--orlando-white);
  font-size: var(--orlando-text-xl);
  cursor: pointer;
  transition: all var(--orlando-transition-fast);
  z-index: 10;
}

.orlando-lightbox-close:hover {
  background: var(--orlando-error);
  transform: rotate(90deg);
}

.orlando-lightbox-prev,
.orlando-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--orlando-radius-full);
  color: var(--orlando-white);
  font-size: var(--orlando-text-xl);
  cursor: pointer;
  transition: all var(--orlando-transition-fast);
  z-index: 10;
}

.orlando-lightbox-prev {
  left: 20px;
}

.orlando-lightbox-next {
  right: 20px;
}

.orlando-lightbox-prev:hover,
.orlando-lightbox-next:hover {
  background: var(--orlando-primary);
  transform: translateY(-50%) scale(1.1);
}

.orlando-lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  text-align: center;
}

.orlando-lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--orlando-radius-lg);
}

.orlando-lightbox-caption {
  color: var(--orlando-white);
  font-size: var(--orlando-text-lg);
  margin-top: var(--orlando-space-4);
}

/* ==========================================
   22. STICKY BOTTOM CTA (MOBILE)
   ========================================== */
.orlando-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  background: var(--orlando-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: var(--orlando-z-fixed);
  transform: translateY(100%);
  transition: transform var(--orlando-transition-base);
}

.orlando-sticky-cta.visible {
  transform: translateY(0);
}

.orlando-sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--orlando-space-1);
  padding: var(--orlando-space-3);
  font-size: var(--orlando-text-xs);
  font-weight: var(--orlando-font-semibold);
  text-decoration: none;
  transition: all var(--orlando-transition-fast);
}

.orlando-sticky-btn i {
  font-size: var(--orlando-text-lg);
}

.orlando-sticky-call {
  background: var(--orlando-white);
  color: var(--orlando-primary);
}

.orlando-sticky-call:hover {
  background: var(--orlando-gray-100);
  color: var(--orlando-primary);
}

.orlando-sticky-whatsapp {
  background: var(--orlando-whatsapp);
  color: var(--orlando-white);
}

.orlando-sticky-whatsapp:hover {
  background: var(--orlando-whatsapp-dark);
  color: var(--orlando-white);
}

.orlando-sticky-enquire {
  background: var(--orlando-gradient-primary);
  color: var(--orlando-white);
}

.orlando-sticky-enquire:hover {
  color: var(--orlando-white);
}

/* Hide on desktop */
@media (min-width: 1024px) {
  .orlando-sticky-cta {
    display: none;
  }
}

/* ==========================================
   23. ANIMATIONS & KEYFRAMES
   ========================================== */
@keyframes orlando-bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

@keyframes orlando-loading {
  0% {
    width: 0;
    margin-left: 0;
  }
  50% {
    width: 100%;
    margin-left: 0;
  }
  100% {
    width: 0;
    margin-left: 100%;
  }
}

@keyframes orlando-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes orlando-float {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes orlando-scroll-wheel {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

@keyframes orlando-fade-in {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orlando-slide-up {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orlando-scale-in {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes orlando-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Animation Classes */
.orlando-animate-fade-in {
  animation: orlando-fade-in 0.5s ease forwards;
}

.orlando-animate-slide-up {
  animation: orlando-slide-up 0.5s ease forwards;
}

.orlando-animate-scale-in {
  animation: orlando-scale-in 0.3s ease forwards;
}

/* Intersection Observer Animation Classes */
.orlando-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.orlando-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.orlando-reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.orlando-reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.orlando-reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}

.orlando-reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.orlando-reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease;
}

.orlando-reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Animation Delays */
.orlando-stagger-1 { transition-delay: 0.1s; }
.orlando-stagger-2 { transition-delay: 0.2s; }
.orlando-stagger-3 { transition-delay: 0.3s; }
.orlando-stagger-4 { transition-delay: 0.4s; }
.orlando-stagger-5 { transition-delay: 0.5s; }
.orlando-stagger-6 { transition-delay: 0.6s; }

/* ==========================================
   24. MEDIA QUERIES
   ========================================== */

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  :root {
    --orlando-container-padding: 1rem;
  }

  .orlando-section {
    padding: var(--orlando-space-12) 0;
  }

  .orlando-section-title {
    font-size: var(--orlando-text-2xl);
  }

  .orlando-hero-title {
    font-size: var(--orlando-text-3xl);
  }

  .orlando-hero-subtitle {
    font-size: var(--orlando-text-base);
  }

  .orlando-hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .orlando-hero-buttons .orlando-btn {
    width: 100%;
  }

  .orlando-hero-controls {
    bottom: 100px;
  }

  .orlando-quick-info-grid {
    grid-template-columns: 1fr;
  }

  .orlando-highlights-grid {
    grid-template-columns: 1fr;
  }

  .orlando-why-grid {
    grid-template-columns: 1fr;
  }

  .orlando-season-grid {
    grid-template-columns: 1fr;
  }

  .orlando-parks-grid {
    grid-template-columns: 1fr;
  }

  .orlando-park-featured {
    grid-column: 1;
  }

  .orlando-gallery-grid {
    grid-template-columns: 1fr;
  }

  .orlando-gallery-large,
  .orlando-gallery-tall {
    grid-column: 1;
    grid-row: auto;
  }

  .orlando-booking-form-container {
    padding: var(--orlando-space-5);
  }

  .orlando-hotel-options,
  .orlando-addon-options {
    grid-template-columns: 1fr;
  }

  .orlando-reviews-grid {
    grid-template-columns: 1fr;
  }

  .orlando-cta-content h2 {
    font-size: var(--orlando-text-2xl);
  }

  .orlando-cta-content > p {
    font-size: var(--orlando-text-base);
  }

  .orlando-cta-buttons {
    flex-direction: column;
  }

  .orlando-cta-buttons .orlando-btn {
    width: 100%;
  }

  .orlando-trust-grid {
    grid-template-columns: 1fr;
  }

  .orlando-faq-buttons {
    flex-direction: column;
  }

  .orlando-faq-buttons .orlando-btn {
    width: 100%;
  }

  .orlando-itinerary-actions {
    flex-direction: column;
  }

  .orlando-itinerary-actions .orlando-btn {
    width: 100%;
  }

  .orlando-back-to-top {
    right: 15px;
    bottom: 80px;
    width: 45px;
    height: 45px;
  }

  .orlando-whatsapp-float {
    right: 15px;
    bottom: 15px;
    padding: var(--orlando-space-3);
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .orlando-hero-title {
    font-size: var(--orlando-text-4xl);
  }

  .orlando-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 1023.98px) {
  .orlando-hero-title {
    font-size: var(--orlando-text-5xl);
  }

  .orlando-parks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .orlando-park-featured {
    grid-column: 1 / -1;
  }
}

/* Large Devices (desktops, 1024px and up) */
@media (min-width: 1024px) {
  .orlando-whatsapp-float {
    bottom: 30px;
    right: 30px;
  }

  .orlando-back-to-top {
    bottom: 100px;
    right: 30px;
  }
}

/* Extra Large Devices (large desktops, 1280px and up) */
@media (min-width: 1280px) {
  .orlando-container {
    padding: 0 var(--orlando-space-8);
  }
}

/* High Resolution / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .orlando-hero-slide img,
  .orlando-gallery-item img,
  .orlando-park-image img,
  .orlando-day-image img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .orlando-preloader-icon,
  .orlando-whatsapp-float,
  .orlando-scroll-indicator,
  .orlando-wheel {
    animation: none;
  }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
  /* Uncomment below to enable auto dark mode */
  /*
  :root {
    --orlando-white: #0f172a;
    --orlando-black: #f8fafc;
    --orlando-gray-50: #1e293b;
    --orlando-gray-100: #334155;
    --orlando-gray-200: #475569;
    --orlando-gray-600: #cbd5e1;
    --orlando-gray-700: #e2e8f0;
    --orlando-gray-800: #f1f5f9;
    --orlando-gray-900: #f8fafc;
  }
  */
}

/* Print Styles */
@media print {
  .orlando-navbar,
  .orlando-preloader,
  .orlando-back-to-top,
  .orlando-whatsapp-float,
  .orlando-sticky-cta,
  .orlando-hero-controls,
  .orlando-scroll-indicator,
  .orlando-lightbox,
  .orlando-booking-section,
  .orlando-cta-section {
    display: none !important;
  }

  .orlando-hero {
    min-height: auto;
    padding: var(--orlando-space-8) 0;
  }

  .orlando-hero-content {
    margin-top: 0;
  }

  .orlando-section {
    padding: var(--orlando-space-8) 0;
    page-break-inside: avoid;
  }

  .orlando-day-details {
    display: block !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  img {
    max-width: 100% !important;
  }
}

/* ==========================================
   END OF ORLANDO CSS
   ========================================== */