/* =====================================================
   ITALY TOUR PACKAGE - COMPLETE CSS
   TravelGully - Premium Travel Experience
   ===================================================== */

/* =====================================================
   1. CSS VARIABLES & ROOT SETTINGS
   ===================================================== */
:root {
  /* Primary Colors - Italian Theme (Terracotta, Green, Red) */
  --italy-terracotta: #C75B39;
  --italy-terracotta-light: #E8A790;
  --italy-terracotta-dark: #A04425;
  --italy-green: #1E5631;
  --italy-green-light: #4A7C59;
  --italy-red: #CE2B37;
  --italy-cream: #FDF5E6;
  --italy-gold: #DAA520;
  --italy-navy: #1B2A4E;
  
  /* Gradient Colors */
  --italy-gradient-primary: linear-gradient(135deg, #C75B39 0%, #E8A790 50%, #C75B39 100%);
  --italy-gradient-dark: linear-gradient(135deg, #1B2A4E 0%, #2D3E5F 100%);
  --italy-gradient-hero: linear-gradient(135deg, rgba(27, 42, 78, 0.9) 0%, rgba(30, 86, 49, 0.8) 100%);
  --italy-gradient-sunset: linear-gradient(135deg, #C75B39 0%, #DAA520 100%);
  
  /* Text Colors */
  --italy-text-primary: #1B2A4E;
  --italy-text-secondary: #4A5568;
  --italy-text-muted: #718096;
  --italy-text-light: #A0AEC0;
  --italy-text-white: #FFFFFF;
  
  /* Background Colors */
  --italy-bg-primary: #FFFFFF;
  --italy-bg-secondary: #FDF8F5;
  --italy-bg-tertiary: #F5EFEA;
  --italy-bg-dark: #1B2A4E;
  
  /* Status Colors */
  --italy-success: #48BB78;
  --italy-success-light: #C6F6D5;
  --italy-warning: #ED8936;
  --italy-warning-light: #FEEBC8;
  --italy-error: #E53E3E;
  --italy-error-light: #FED7D7;
  --italy-info: #4299E1;
  --italy-info-light: #BEE3F8;
  
  /* WhatsApp Color */
  --italy-whatsapp: #25D366;
  --italy-whatsapp-dark: #128C7E;
  
  /* Shadows */
  --italy-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --italy-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --italy-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --italy-shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
  --italy-shadow-terracotta: 0 4px 20px rgba(199, 91, 57, 0.3);
  
  /* Border Radius */
  --italy-radius-sm: 4px;
  --italy-radius-md: 8px;
  --italy-radius-lg: 12px;
  --italy-radius-xl: 20px;
  --italy-radius-full: 50%;
  
  /* Typography */
  --italy-font-primary: 'Poppins', sans-serif;
  --italy-font-heading: 'Playfair Display', serif;
  --italy-font-accent: 'Cormorant Garamond', serif;
  
  /* Transitions */
  --italy-transition-fast: 0.15s ease;
  --italy-transition-base: 0.3s ease;
  --italy-transition-slow: 0.5s ease;
  
  /* Z-Index Scale */
  --italy-z-dropdown: 100;
  --italy-z-sticky: 200;
  --italy-z-fixed: 300;
  --italy-z-modal-backdrop: 400;
  --italy-z-modal: 500;
  --italy-z-popover: 600;
  --italy-z-tooltip: 700;
}

/* =====================================================
   2. RESET & BASE STYLES
   ===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body.italy-page {
  font-family: var(--italy-font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--italy-text-primary);
  background-color: var(--italy-bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Accessibility - Skip Link */
.italy-skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--italy-terracotta);
  color: var(--italy-text-white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--italy-radius-md);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--italy-transition-fast);
}

.italy-skip-link:focus {
  top: 10px;
}

/* Visually Hidden */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =====================================================
   3. TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--italy-font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--italy-text-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--italy-text-secondary);
}

a {
  color: var(--italy-terracotta);
  text-decoration: none;
  transition: color var(--italy-transition-fast);
}

a:hover {
  color: var(--italy-terracotta-dark);
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =====================================================
   4. CONTAINER & LAYOUT
   ===================================================== */
.italy-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .italy-container {
    padding: 0 1rem;
  }
}

.italy-section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  .italy-section {
    padding: 3rem 0;
  }
}

/* Section Headers */
.italy-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.italy-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--italy-terracotta-light);
  color: var(--italy-terracotta-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.italy-section-title {
  margin-bottom: 1rem;
}

.italy-section-title span {
  color: var(--italy-terracotta);
}

.italy-section-subtitle {
  font-size: 1.125rem;
  color: var(--italy-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* =====================================================
   5. BUTTONS
   ===================================================== */
.italy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--italy-font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--italy-radius-md);
  cursor: pointer;
  transition: all var(--italy-transition-base);
  white-space: nowrap;
}

.italy-btn:focus {
  outline: 3px solid var(--italy-terracotta);
  outline-offset: 2px;
}

/* Primary Button */
.italy-btn-primary {
  background: var(--italy-gradient-primary);
  background-size: 200% 200%;
  color: var(--italy-text-white);
  border-color: var(--italy-terracotta);
  box-shadow: var(--italy-shadow-terracotta);
}

.italy-btn-primary:hover {
  background-position: 100% 100%;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(199, 91, 57, 0.4);
  color: var(--italy-text-white);
}

/* Outline Button */
.italy-btn-outline {
  background: transparent;
  color: var(--italy-terracotta);
  border-color: var(--italy-terracotta);
}

.italy-btn-outline:hover {
  background: var(--italy-terracotta);
  color: var(--italy-text-white);
}

/* Outline Light Button */
.italy-btn-outline-light {
  background: transparent;
  color: var(--italy-text-white);
  border-color: var(--italy-text-white);
}

.italy-btn-outline-light:hover {
  background: var(--italy-text-white);
  color: var(--italy-text-primary);
}

/* WhatsApp Button */
.italy-btn-whatsapp {
  background: var(--italy-whatsapp);
  color: white;
  border-color: var(--italy-whatsapp);
}

.italy-btn-whatsapp:hover {
  background: var(--italy-whatsapp-dark);
  border-color: var(--italy-whatsapp-dark);
  color: white;
  transform: translateY(-2px);
}

/* Call Button */
.italy-btn-call {
  background: var(--italy-green);
  color: white;
  border-color: var(--italy-green);
}

.italy-btn-call:hover {
  background: var(--italy-green-light);
  border-color: var(--italy-green-light);
  color: white;
}

/* Button Sizes */
.italy-btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.italy-btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.italy-btn-block {
  width: 100%;
}

/* =====================================================
   6. PRELOADER
   ===================================================== */
.italy-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--italy-gradient-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.italy-preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.italy-preloader-content {
  text-align: center;
  color: white;
}

.italy-preloader-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: italy-bounce 1s infinite;
}

.italy-preloader-content h3 {
  color: var(--italy-terracotta-light);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: var(--italy-font-accent);
  font-style: italic;
}

.italy-preloader-content p {
  color: var(--italy-text-light);
  margin-bottom: 1.5rem;
}

.italy-preloader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.italy-preloader-bar span {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--italy-terracotta);
  border-radius: 2px;
  animation: italy-loading 1.5s infinite;
}

@keyframes italy-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes italy-loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* =====================================================
   7. BACK TO TOP BUTTON
   ===================================================== */
.italy-back-to-top {
  position: fixed;
  bottom: 100px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--italy-terracotta);
  color: var(--italy-text-white);
  border: none;
  border-radius: var(--italy-radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--italy-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--italy-transition-base);
  z-index: var(--italy-z-fixed);
}

.italy-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.italy-back-to-top:hover {
  background: var(--italy-terracotta-dark);
  transform: translateY(-5px);
  box-shadow: var(--italy-shadow-xl);
}

@media (max-width: 768px) {
  .italy-back-to-top {
    bottom: 140px;
    right: 15px;
    width: 45px;
    height: 45px;
  }
}

/* =====================================================
   8. WHATSAPP FLOATING BUTTON
   ===================================================== */
.italy-whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--italy-whatsapp);
  color: white;
  padding: 0.875rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: var(--italy-z-fixed);
  transition: all var(--italy-transition-base);
}

.italy-whatsapp-float i {
  font-size: 1.5rem;
}

.italy-whatsapp-float:hover {
  background: var(--italy-whatsapp-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
  color: white;
}

@media (max-width: 768px) {
  .italy-whatsapp-float {
    bottom: 80px;
    padding: 0.75rem;
    border-radius: var(--italy-radius-full);
  }
  
  .italy-whatsapp-float .italy-whatsapp-text {
    display: none;
  }
}

/* =====================================================
   9. NAVBAR
   ===================================================== */
.italy-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  z-index: var(--italy-z-sticky);
  transition: all var(--italy-transition-base);
}

.italy-navbar.scrolled {
  background: rgba(27, 42, 78, 0.98);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  box-shadow: var(--italy-shadow-lg);
}

.italy-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.italy-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.italy-logo-icon {
  font-size: 2rem;
}

.italy-logo-text {
  font-family: var(--italy-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.italy-logo-text span {
  color: var(--italy-terracotta-light);
}

/* Nav Links */
.italy-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.italy-nav-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--italy-radius-md);
  transition: all var(--italy-transition-fast);
}

.italy-nav-links a:hover,
.italy-nav-links a.active {
  color: var(--italy-terracotta-light);
  background: rgba(199, 91, 57, 0.1);
}

.italy-nav-links a i {
  font-size: 0.85rem;
}

/* Nav Actions */
.italy-nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.italy-nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 500;
}

.italy-nav-phone i {
  color: var(--italy-terracotta-light);
}

/* Hamburger Menu */
.italy-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 100;
}

.italy-hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all var(--italy-transition-fast);
}

.italy-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.italy-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.italy-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
  .italy-hamburger {
    display: flex;
  }
  
  .italy-nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--italy-gradient-dark);
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all var(--italy-transition-base);
  }
  
  .italy-nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  
  .italy-nav-links a {
    font-size: 1.125rem;
    padding: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .italy-nav-actions {
    display: none;
  }
}

@media (max-width: 768px) {
  .italy-nav-phone span {
    display: none;
  }
}

/* =====================================================
   10. HERO SECTION
   ===================================================== */
.italy-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero Slider */
.italy-hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.italy-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.italy-hero-slide.active {
  opacity: 1;
}

.italy-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Overlay */
.italy-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--italy-gradient-hero);
  z-index: 1;
}

/* Hero Content */
.italy-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  margin-top: 60px;
}

/* Breadcrumb */
.italy-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.italy-breadcrumb a,
.italy-breadcrumb span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.italy-breadcrumb a:hover {
  color: var(--italy-terracotta-light);
}

.italy-breadcrumb i {
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.5);
}

.italy-breadcrumb span[aria-current] {
  color: var(--italy-terracotta-light);
}

/* Hero Badges */
.italy-hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.italy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.italy-badge-romantic {
  background: linear-gradient(135deg, #E91E63, #C2185B);
  color: white;
}

.italy-badge-culture {
  background: linear-gradient(135deg, #1E5631, #4A7C59);
  color: white;
}

.italy-badge-rated {
  background: var(--italy-terracotta);
  color: white;
}

/* Hero Title */
.italy-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.italy-hero-title span {
  color: var(--italy-terracotta-light);
  display: block;
  font-family: var(--italy-font-accent);
  font-style: italic;
}

/* Hero Subtitle */
.italy-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

/* Hero Meta */
.italy-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.italy-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.italy-hero-meta-item i {
  color: var(--italy-terracotta-light);
}

/* Hero CTA */
.italy-hero-cta {
  margin-bottom: 2rem;
}

.italy-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.italy-hero-trust {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.italy-hero-trust i {
  color: var(--italy-terracotta-light);
}

/* Hero Controls */
.italy-hero-controls {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.italy-hero-prev,
.italy-hero-next {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--italy-radius-full);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--italy-transition-fast);
}

.italy-hero-prev:hover,
.italy-hero-next:hover {
  background: var(--italy-terracotta);
  border-color: var(--italy-terracotta);
  color: white;
}

.italy-hero-dots {
  display: flex;
  gap: 0.5rem;
}

.italy-hero-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  border-radius: var(--italy-radius-full);
  cursor: pointer;
  transition: all var(--italy-transition-fast);
}

.italy-hero-dot.active,
.italy-hero-dot:hover {
  background: var(--italy-terracotta);
  transform: scale(1.2);
}

/* Scroll Indicator */
.italy-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  transition: all var(--italy-transition-base);
}

.italy-scroll-indicator:hover {
  color: var(--italy-terracotta-light);
}

.italy-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 13px;
  position: relative;
}

.italy-wheel {
  width: 4px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: italy-scroll 1.5s infinite;
}

@keyframes italy-scroll {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@media (max-width: 768px) {
  .italy-hero-content {
    padding: 1.5rem;
    margin-top: 80px;
  }
  
  .italy-hero-controls {
    bottom: 80px;
  }
  
  .italy-hero-buttons .italy-btn {
    width: 100%;
    max-width: 280px;
  }
  
  .italy-scroll-indicator {
    display: none;
  }
}

/* =====================================================
   11. QUICK INFO STRIP
   ===================================================== */
.italy-quick-info {
  background: var(--italy-bg-dark);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(199, 91, 57, 0.2);
}

.italy-quick-info-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.italy-quick-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  padding: 0.5rem;
}

.italy-quick-info-item i {
  font-size: 1.25rem;
  color: var(--italy-terracotta-light);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(199, 91, 57, 0.15);
  border-radius: var(--italy-radius-md);
}

.italy-quick-info-item div {
  display: flex;
  flex-direction: column;
}

.italy-quick-info-item strong {
  font-size: 0.875rem;
  color: var(--italy-terracotta-light);
}

.italy-quick-info-item span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .italy-quick-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .italy-quick-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =====================================================
   12. OVERVIEW SECTION
   ===================================================== */
.italy-overview {
  background: var(--italy-bg-secondary);
}

.italy-overview-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .italy-overview-grid {
    grid-template-columns: 1fr;
  }
}

/* Overview Content */
.italy-overview-content h3 {
  margin-bottom: 1rem;
  color: var(--italy-text-primary);
}

.italy-overview-content p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Highlights Grid */
.italy-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.italy-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background: white;
  border-radius: var(--italy-radius-md);
  box-shadow: var(--italy-shadow-sm);
  transition: all var(--italy-transition-fast);
  border-left: 3px solid var(--italy-terracotta);
}

.italy-highlight-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--italy-shadow-md);
}

.italy-highlight-item i {
  color: var(--italy-terracotta);
  font-size: 1.125rem;
}

.italy-highlight-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--italy-text-primary);
}

/* Why Choose */
.italy-why-choose {
  background: white;
  padding: 1.5rem;
  border-radius: var(--italy-radius-lg);
  box-shadow: var(--italy-shadow-md);
  border-top: 4px solid var(--italy-green);
}

.italy-why-choose h4 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--italy-text-primary);
}

.italy-why-choose h4 i {
  color: var(--italy-green);
}

.italy-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.italy-why-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem;
  background: var(--italy-bg-secondary);
  border-radius: var(--italy-radius-sm);
  font-size: 0.875rem;
}

.italy-why-item i {
  color: var(--italy-terracotta);
}

/* Sidebar Cards */
.italy-overview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.italy-inc-exc-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--italy-radius-lg);
  box-shadow: var(--italy-shadow-md);
}

.italy-inc-exc-card h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.italy-inclusions h4 {
  color: var(--italy-success);
}

.italy-exclusions h4 {
  color: var(--italy-error);
}

.italy-inc-exc-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.italy-inc-exc-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--italy-text-secondary);
}

.italy-inclusions li i {
  color: var(--italy-success);
  margin-top: 3px;
}

.italy-exclusions li i {
  color: var(--italy-error);
  margin-top: 3px;
}

/* Best Time Card */
.italy-best-time h4 {
  color: var(--italy-terracotta);
}

.italy-season-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.italy-season-item {
  padding: 0.875rem;
  border-radius: var(--italy-radius-md);
  background: var(--italy-bg-secondary);
}

.italy-season-name {
  display: block;
  font-weight: 600;
  color: var(--italy-text-primary);
  margin-bottom: 0.25rem;
}

.italy-season-label {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 50px;
  margin-bottom: 0.375rem;
}

.italy-season-best .italy-season-label {
  background: var(--italy-success-light);
  color: var(--italy-success);
}

.italy-season-good .italy-season-label {
  background: var(--italy-info-light);
  color: var(--italy-info);
}

.italy-season-hot .italy-season-label {
  background: var(--italy-warning-light);
  color: var(--italy-warning);
}

.italy-season-item p {
  font-size: 0.8rem;
  color: var(--italy-text-muted);
  margin: 0;
}

/* =====================================================
   13. DESTINATIONS SECTION
   ===================================================== */
.italy-destinations-section {
  background: white;
}

.italy-destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .italy-destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .italy-destinations-grid {
    grid-template-columns: 1fr;
  }
}

.italy-destination-card {
  background: white;
  border-radius: var(--italy-radius-lg);
  overflow: hidden;
  box-shadow: var(--italy-shadow-md);
  transition: all var(--italy-transition-base);
}

.italy-destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--italy-shadow-xl);
}

.italy-destination-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.italy-destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--italy-transition-slow);
}

.italy-destination-card:hover .italy-destination-image img {
  transform: scale(1.1);
}

.italy-destination-day {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--italy-terracotta);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.italy-destination-content {
  padding: 1.25rem;
}

.italy-destination-content h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.italy-destination-content p {
  font-size: 0.85rem;
  color: var(--italy-text-muted);
  margin-bottom: 1rem;
}

.italy-destination-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.italy-destination-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--italy-bg-secondary);
  padding: 0.375rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  color: var(--italy-text-secondary);
}

.italy-destination-highlights span i {
  color: var(--italy-terracotta);
  font-size: 0.6rem;
}

/* =====================================================
   14. ITINERARY SECTION
   ===================================================== */
.italy-itinerary-section {
  background: var(--italy-bg-secondary);
}

.italy-itinerary-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Day Card */
.italy-day-card {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.italy-day-card:last-child {
  margin-bottom: 0;
}

/* Day Marker */
.italy-day-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.italy-day-number {
  width: 60px;
  height: 60px;
  background: var(--italy-gradient-sunset);
  color: white;
  border-radius: var(--italy-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--italy-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: var(--italy-shadow-terracotta);
}

.italy-day-line {
  width: 3px;
  flex: 1;
  background: linear-gradient(to bottom, var(--italy-terracotta), var(--italy-terracotta-light));
  margin-top: 0.5rem;
  min-height: 50px;
}

.italy-day-card:last-child .italy-day-line {
  display: none;
}

/* Day Content */
.italy-day-content {
  flex: 1;
  background: white;
  border-radius: var(--italy-radius-lg);
  box-shadow: var(--italy-shadow-md);
  overflow: hidden;
}

.italy-day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, var(--italy-navy) 0%, #2D3E5F 100%);
  cursor: pointer;
  position: relative;
}

.italy-day-title {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.italy-day-title h3 {
  color: white;
  font-size: 1.125rem;
  margin: 0;
}

.italy-day-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(199, 91, 57, 0.2);
  color: var(--italy-terracotta-light);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
}

.italy-day-toggle {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--italy-radius-full);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--italy-transition-fast);
}

.italy-day-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.italy-day-toggle i {
  transition: transform var(--italy-transition-base);
}

.italy-day-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* Day Summary */
.italy-day-summary {
  padding: 1rem 1.5rem;
  background: var(--italy-bg-secondary);
  border-bottom: 1px solid var(--italy-bg-tertiary);
}

.italy-day-summary p {
  margin: 0;
  color: var(--italy-text-secondary);
  font-size: 0.95rem;
}

/* Day Details */
.italy-day-details {
  display: none;
  padding: 1.5rem;
}

.italy-day-details.active {
  display: block;
}

/* Day Image */
.italy-day-image {
  margin-bottom: 1.5rem;
  border-radius: var(--italy-radius-md);
  overflow: hidden;
}

.italy-day-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Day Schedule */
.italy-day-schedule {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.italy-schedule-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--italy-bg-tertiary);
}

.italy-schedule-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.italy-time {
  flex-shrink: 0;
  width: 80px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--italy-terracotta);
  text-align: right;
}

.italy-activity {
  display: flex;
  gap: 0.75rem;
  flex: 1;
}

.italy-activity > i {
  width: 35px;
  height: 35px;
  background: var(--italy-terracotta-light);
  color: var(--italy-terracotta-dark);
  border-radius: var(--italy-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.italy-activity strong {
  display: block;
  color: var(--italy-text-primary);
  margin-bottom: 0.25rem;
}

.italy-activity p {
  font-size: 0.875rem;
  color: var(--italy-text-muted);
  margin: 0;
}

/* Day Meals */
.italy-day-meals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.italy-meal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--italy-success-light);
  color: var(--italy-success);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Day Tips */
.italy-day-tips {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--italy-info-light);
  border-radius: var(--italy-radius-md);
  margin-bottom: 1rem;
}

.italy-day-tips i {
  color: var(--italy-info);
  font-size: 1.125rem;
  flex-shrink: 0;
}

.italy-day-tips p {
  font-size: 0.875rem;
  color: var(--italy-text-secondary);
  margin: 0;
}

/* Day Stay */
.italy-day-stay {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--italy-bg-secondary);
  border-radius: var(--italy-radius-md);
  border-left: 4px solid var(--italy-terracotta);
}

.italy-day-stay i {
  color: var(--italy-terracotta);
}

.italy-day-stay span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--italy-text-secondary);
}

/* Itinerary Actions */
.italy-itinerary-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .italy-day-card {
    flex-direction: column;
    gap: 0;
  }
  
  .italy-day-marker {
    flex-direction: row;
    margin-bottom: 0;
  }
  
  .italy-day-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  .italy-day-line {
    width: auto;
    height: 3px;
    flex: 1;
    margin-left: 0.5rem;
    margin-top: 0;
    min-height: auto;
  }
  
  .italy-day-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .italy-day-toggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  
  .italy-time {
    width: 70px;
    text-align: left;
    font-size: 0.75rem;
  }
  
  .italy-itinerary-actions .italy-btn {
    width: 100%;
  }
}

/* =====================================================
   15. GALLERY SECTION
   ===================================================== */
.italy-gallery-section {
  background: var(--italy-bg-dark);
}

.italy-gallery-section .italy-section-title,
.italy-gallery-section .italy-section-subtitle {
  color: white;
}

.italy-gallery-section .italy-section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.italy-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}

.italy-gallery-item {
  position: relative;
  border-radius: var(--italy-radius-md);
  overflow: hidden;
  cursor: pointer;
}

.italy-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--italy-transition-slow);
}

.italy-gallery-item:hover img {
  transform: scale(1.1);
}

.italy-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 42, 78, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--italy-transition-base);
}

.italy-gallery-item:hover .italy-gallery-overlay {
  opacity: 1;
}

.italy-gallery-overlay span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 500;
}

.italy-gallery-overlay i {
  color: var(--italy-terracotta-light);
}

/* Gallery Large & Tall Items */
.italy-gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.italy-gallery-tall {
  grid-row: span 2;
}

.italy-gallery-cta {
  text-align: center;
  margin-top: 2rem;
}

@media (max-width: 1024px) {
  .italy-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
  
  .italy-gallery-large {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 640px) {
  .italy-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  
  .italy-gallery-large,
  .italy-gallery-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* =====================================================
   16. LIGHTBOX
   ===================================================== */
.italy-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: var(--italy-z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--italy-transition-base);
}

.italy-lightbox:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

.italy-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--italy-radius-full);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--italy-transition-fast);
}

.italy-lightbox-close:hover {
  background: var(--italy-terracotta);
  color: white;
}

.italy-lightbox-prev,
.italy-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--italy-radius-full);
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--italy-transition-fast);
}

.italy-lightbox-prev {
  left: 20px;
}

.italy-lightbox-next {
  right: 20px;
}

.italy-lightbox-prev:hover,
.italy-lightbox-next:hover {
  background: var(--italy-terracotta);
  color: white;
}

.italy-lightbox-content {
  max-width: 90%;
  max-height: 80%;
  text-align: center;
}

.italy-lightbox-content img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--italy-radius-md);
}

.italy-lightbox-caption {
  color: white;
  margin-top: 1rem;
  font-size: 1.125rem;
}

/* =====================================================
   17. BOOKING SECTION
   ===================================================== */
.italy-booking-section {
  background: linear-gradient(135deg, var(--italy-navy) 0%, #2D3E5F 50%, var(--italy-green) 100%);
  position: relative;
  overflow: hidden;
}

.italy-booking-section::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='%23C75B39' fill-opacity='0.05'%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;
}

.italy-booking-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .italy-booking-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Booking Info */
.italy-booking-info {
  color: white;
}

.italy-booking-info .italy-section-badge {
  background: rgba(199, 91, 57, 0.2);
  color: var(--italy-terracotta-light);
}

.italy-booking-info h2 {
  color: white;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.italy-booking-info > p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Booking Features */
.italy-booking-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.italy-booking-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.italy-booking-feature i {
  color: var(--italy-terracotta-light);
  font-size: 1.125rem;
}

/* Trust Items */
.italy-booking-trust {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.italy-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  border-radius: var(--italy-radius-md);
  backdrop-filter: blur(5px);
}

.italy-trust-item i {
  font-size: 1.5rem;
  color: var(--italy-terracotta-light);
}

.italy-trust-item strong {
  display: block;
  color: white;
  font-size: 1.125rem;
}

.italy-trust-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Booking Contact */
.italy-booking-contact {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.italy-booking-contact > p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.italy-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  margin: 0.25rem;
  font-size: 0.9rem;
  transition: all var(--italy-transition-fast);
}

.italy-contact-item:hover {
  background: var(--italy-terracotta);
  color: white;
}

.italy-contact-item i {
  color: var(--italy-terracotta-light);
}

.italy-contact-item:hover i {
  color: white;
}

/* Booking Form Container */
.italy-booking-form-container {
  background: white;
  padding: 2.5rem;
  border-radius: var(--italy-radius-xl);
  box-shadow: var(--italy-shadow-xl);
}

@media (max-width: 640px) {
  .italy-booking-form-container {
    padding: 1.5rem;
  }
}

/* Form Styles */
.italy-booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.italy-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 640px) {
  .italy-form-row {
    grid-template-columns: 1fr;
  }
}

.italy-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.italy-form-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--italy-text-primary);
}

.italy-form-group label i {
  color: var(--italy-terracotta);
}

.italy-form-group label span[aria-label="required"] {
  color: var(--italy-error);
}

/* Input Styles */
.italy-form-group input[type="text"],
.italy-form-group input[type="email"],
.italy-form-group input[type="tel"],
.italy-form-group input[type="month"],
.italy-form-group select,
.italy-form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid var(--italy-bg-tertiary);
  border-radius: var(--italy-radius-md);
  font-family: var(--italy-font-primary);
  font-size: 1rem;
  color: var(--italy-text-primary);
  background: white;
  transition: all var(--italy-transition-fast);
}

.italy-form-group input:focus,
.italy-form-group select:focus,
.italy-form-group textarea:focus {
  outline: none;
  border-color: var(--italy-terracotta);
  box-shadow: 0 0 0 3px rgba(199, 91, 57, 0.15);
}

.italy-form-group input::placeholder,
.italy-form-group textarea::placeholder {
  color: var(--italy-text-light);
}

/* Phone Input */
.italy-phone-input {
  display: flex;
  gap: 0.5rem;
}

.italy-phone-input select {
  width: 110px;
  flex-shrink: 0;
}

.italy-phone-input input {
  flex: 1;
}

/* Select Styles */
.italy-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Trip Type Options */
.italy-trip-type-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.italy-trip-option {
  display: inline-flex;
  cursor: pointer;
}

.italy-trip-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.italy-trip-option span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: var(--italy-bg-secondary);
  border: 2px solid var(--italy-bg-tertiary);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--italy-text-secondary);
  transition: all var(--italy-transition-fast);
}

.italy-trip-option input:checked + span {
  background: var(--italy-terracotta-light);
  border-color: var(--italy-terracotta);
  color: var(--italy-terracotta-dark);
}

.italy-trip-option:hover span {
  border-color: var(--italy-terracotta);
}

/* Hotel Options */
.italy-hotel-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.italy-hotel-option {
  display: inline-flex;
  cursor: pointer;
}

/* Hotel Options (continued) */
.italy-hotel-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.italy-hotel-option span {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: var(--italy-bg-secondary);
  border: 2px solid var(--italy-bg-tertiary);
  border-radius: var(--italy-radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--italy-text-secondary);
  transition: all var(--italy-transition-fast);
}

.italy-hotel-option input:checked + span {
  background: var(--italy-terracotta-light);
  border-color: var(--italy-terracotta);
  color: var(--italy-terracotta-dark);
}

.italy-hotel-option:hover span {
  border-color: var(--italy-terracotta);
}

/* Add-on Options */
.italy-addon-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.italy-addon-option {
  display: inline-flex;
  cursor: pointer;
}

.italy-addon-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.italy-addon-option span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  background: var(--italy-bg-secondary);
  border: 2px solid var(--italy-bg-tertiary);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--italy-text-secondary);
  transition: all var(--italy-transition-fast);
}

.italy-addon-option input:checked + span {
  background: var(--italy-green);
  border-color: var(--italy-green);
  color: white;
}

.italy-addon-option:hover span {
  border-color: var(--italy-green);
}

/* Consent */
.italy-form-consent {
  margin-top: 0.5rem;
}

.italy-consent-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.italy-consent-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--italy-terracotta);
  cursor: pointer;
}

.italy-consent-option span {
  font-size: 0.85rem;
  color: var(--italy-text-secondary);
  line-height: 1.5;
}

.italy-consent-option a {
  color: var(--italy-terracotta);
  text-decoration: underline;
}

/* Error Messages */
.italy-error-message {
  display: none;
  color: var(--italy-error);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.italy-form-group.has-error input,
.italy-form-group.has-error select,
.italy-form-group.has-error textarea {
  border-color: var(--italy-error);
}

.italy-form-group.has-error .italy-error-message {
  display: block;
}

/* Submit Button */
#italySubmitBtn {
  margin-top: 0.5rem;
}

.italy-btn-loader {
  display: none;
}

#italySubmitBtn.loading .italy-btn-text {
  display: none;
}

#italySubmitBtn.loading .italy-btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Form Note */
.italy-form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--italy-text-muted);
  margin-top: 1rem;
  margin-bottom: 0;
}

.italy-form-note i {
  color: var(--italy-terracotta);
  margin-right: 0.25rem;
}

/* Form Messages */
.italy-form-message {
  display: none;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--italy-radius-md);
  margin-top: 1.5rem;
}

.italy-form-message i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.italy-form-message strong {
  display: block;
  margin-bottom: 0.25rem;
}

.italy-form-message p {
  margin: 0;
  font-size: 0.9rem;
}

.italy-form-success {
  background: var(--italy-success-light);
  color: var(--italy-success);
}

.italy-form-error {
  background: var(--italy-error-light);
  color: var(--italy-error);
}

.italy-form-error a {
  color: inherit;
  font-weight: 600;
}

/* =====================================================
   18. REVIEWS SECTION
   ===================================================== */
.italy-reviews-section {
  background: var(--italy-bg-secondary);
}

/* Reviews Summary */
.italy-reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border-radius: var(--italy-radius-lg);
  box-shadow: var(--italy-shadow-md);
  flex-wrap: wrap;
}

.italy-rating-big {
  text-align: center;
}

.italy-rating-number {
  font-family: var(--italy-font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: var(--italy-text-primary);
  line-height: 1;
}

.italy-rating-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin: 0.5rem 0;
}

.italy-rating-stars i {
  color: var(--italy-terracotta);
  font-size: 1.25rem;
}

.italy-rating-count {
  font-size: 0.9rem;
  color: var(--italy-text-muted);
}

.italy-rating-bars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 250px;
}

.italy-rating-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--italy-text-secondary);
}

.italy-rating-bar .italy-bar {
  flex: 1;
  height: 8px;
  background: var(--italy-bg-tertiary);
  border-radius: 4px;
  overflow: hidden;
}

.italy-rating-bar .italy-bar span {
  display: block;
  height: 100%;
  background: var(--italy-terracotta);
  border-radius: 4px;
}

/* Reviews Grid */
.italy-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .italy-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .italy-reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* Review Card */
.italy-review-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--italy-radius-lg);
  box-shadow: var(--italy-shadow-md);
  transition: all var(--italy-transition-base);
  border-top: 3px solid var(--italy-terracotta);
}

.italy-review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--italy-shadow-lg);
}

.italy-review-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.italy-review-header img {
  width: 50px;
  height: 50px;
  border-radius: var(--italy-radius-full);
  object-fit: cover;
  border: 2px solid var(--italy-terracotta-light);
}

.italy-review-header h4 {
  font-size: 1rem;
  margin-bottom: 0.125rem;
}

.italy-review-header > div:not(.italy-review-rating) span {
  display: block;
  font-size: 0.8rem;
  color: var(--italy-text-muted);
}

.italy-verified {
  color: var(--italy-success) !important;
  font-weight: 500;
  display: inline-flex !important;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.italy-review-rating {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 0.125rem;
}

.italy-review-rating i {
  color: var(--italy-terracotta);
  font-size: 0.875rem;
}

.italy-review-card > p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--italy-text-secondary);
  margin-bottom: 1rem;
}

/* Review Images */
.italy-review-images {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.italy-review-images img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--italy-radius-sm);
  cursor: pointer;
  transition: transform var(--italy-transition-fast);
  border: 2px solid var(--italy-bg-tertiary);
}

.italy-review-images img:hover {
  transform: scale(1.1);
  border-color: var(--italy-terracotta);
}

/* Review Helpful */
.italy-review-helpful {
  padding-top: 1rem;
  border-top: 1px solid var(--italy-bg-tertiary);
}

.italy-review-helpful span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--italy-text-muted);
}

.italy-review-helpful i {
  color: var(--italy-green);
}

/* Reviews CTA */
.italy-reviews-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* =====================================================
   19. FAQ SECTION
   ===================================================== */
.italy-faq-section {
  background: white;
}

.italy-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.italy-faq-item {
  background: var(--italy-bg-secondary);
  border-radius: var(--italy-radius-lg);
  overflow: hidden;
  transition: all var(--italy-transition-base);
  border-left: 4px solid transparent;
}

.italy-faq-item:hover {
  box-shadow: var(--italy-shadow-md);
  border-left-color: var(--italy-terracotta);
}

.italy-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--italy-font-primary);
  transition: all var(--italy-transition-fast);
}

.italy-faq-question span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--italy-text-primary);
  padding-right: 1rem;
}

.italy-faq-question i {
  color: var(--italy-terracotta);
  font-size: 1rem;
  transition: transform var(--italy-transition-base);
  flex-shrink: 0;
}

.italy-faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.italy-faq-question:hover {
  background: rgba(199, 91, 57, 0.1);
}

.italy-faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
}

.italy-faq-answer.active {
  display: block;
}

.italy-faq-answer p {
  color: var(--italy-text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.italy-faq-answer p:last-child {
  margin-bottom: 0;
}

.italy-faq-answer ul {
  padding-left: 0;
  margin-bottom: 1rem;
}

.italy-faq-answer ul:last-child {
  margin-bottom: 0;
}

.italy-faq-answer li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--italy-text-secondary);
  line-height: 1.6;
}

.italy-faq-answer li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: var(--italy-terracotta);
  border-radius: 50%;
}

.italy-faq-answer strong {
  color: var(--italy-text-primary);
}

/* FAQ CTA */
.italy-faq-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--italy-bg-secondary);
  border-radius: var(--italy-radius-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.italy-faq-cta p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--italy-text-primary);
  margin-bottom: 1.25rem;
}

.italy-faq-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =====================================================
   20. RELATED PACKAGES SECTION
   ===================================================== */
.italy-related-section {
  background: var(--italy-bg-secondary);
}

.italy-related-slider-container {
  position: relative;
  overflow: hidden;
  padding: 0 50px;
}

@media (max-width: 768px) {
  .italy-related-slider-container {
    padding: 0;
  }
}

.italy-related-slider {
  overflow: hidden;
}

.italy-related-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.italy-related-card {
  flex: 0 0 calc(25% - 1.125rem);
  min-width: 280px;
  display: block;
  background: white;
  border-radius: var(--italy-radius-lg);
  overflow: hidden;
  box-shadow: var(--italy-shadow-md);
  text-decoration: none;
  transition: all var(--italy-transition-base);
}

@media (max-width: 1024px) {
  .italy-related-card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 640px) {
  .italy-related-card {
    flex: 0 0 100%;
  }
}

.italy-related-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--italy-shadow-xl);
}

.italy-related-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.italy-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--italy-transition-slow);
}

.italy-related-card:hover .italy-related-image img {
  transform: scale(1.1);
}

.italy-related-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--italy-terracotta);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
}

.italy-related-duration {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
}

.italy-related-content {
  padding: 1.25rem;
}

.italy-related-content h4 {
  font-size: 1.1rem;
  color: var(--italy-text-primary);
  margin-bottom: 0.375rem;
}

.italy-related-content > p {
  font-size: 0.85rem;
  color: var(--italy-text-muted);
  margin-bottom: 0.75rem;
}

.italy-related-highlights {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
}

.italy-related-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.7rem;
  color: var(--italy-text-secondary);
  background: var(--italy-bg-secondary);
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
}

.italy-related-highlights span i {
  color: var(--italy-terracotta);
  font-size: 0.65rem;
}

.italy-related-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.italy-related-rating {
  font-size: 0.8rem;
  color: var(--italy-text-secondary);
}

.italy-related-rating i {
  color: var(--italy-terracotta);
  margin-right: 0.25rem;
}

.italy-related-enquire {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--italy-terracotta);
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: color var(--italy-transition-fast);
}

.italy-related-card:hover .italy-related-enquire {
  color: var(--italy-terracotta-dark);
}

.italy-related-enquire i {
  font-size: 0.75rem;
  transition: transform var(--italy-transition-fast);
}

.italy-related-card:hover .italy-related-enquire i {
  transform: translateX(3px);
}

/* Related Navigation Arrows */
.italy-related-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background: white;
  border: 2px solid var(--italy-terracotta);
  border-radius: var(--italy-radius-full);
  color: var(--italy-terracotta);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--italy-transition-fast);
  z-index: 10;
  box-shadow: var(--italy-shadow-md);
}

.italy-related-nav:hover {
  background: var(--italy-terracotta);
  color: white;
}

.italy-related-prev {
  left: 0;
}

.italy-related-next {
  right: 0;
}

@media (max-width: 768px) {
  .italy-related-nav {
    display: none;
  }
}

/* Related Dots */
.italy-related-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.italy-related-dot {
  width: 10px;
  height: 10px;
  background: var(--italy-bg-tertiary);
  border: none;
  border-radius: var(--italy-radius-full);
  cursor: pointer;
  transition: all var(--italy-transition-fast);
}

.italy-related-dot.active,
.italy-related-dot:hover {
  background: var(--italy-terracotta);
  transform: scale(1.2);
}

/* =====================================================
   21. CTA SECTION
   ===================================================== */
.italy-cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.italy-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.italy-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.italy-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(27, 42, 78, 0.92) 0%, rgba(30, 86, 49, 0.88) 100%);
}

.italy-cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.italy-cta-content h2 {
  color: white;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.italy-cta-content > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.italy-cta-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.italy-cta-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.italy-cta-features i {
  color: var(--italy-terracotta-light);
}

.italy-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.italy-cta-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.italy-cta-note i {
  color: var(--italy-terracotta-light);
  margin: 0 0.25rem;
}

/* =====================================================
   22. TRUST BADGES SECTION
   ===================================================== */
.italy-trust-section {
  background: white;
  padding: 2rem 0;
  border-top: 1px solid var(--italy-bg-tertiary);
  border-bottom: 1px solid var(--italy-bg-tertiary);
}

.italy-trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.italy-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--italy-text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.italy-trust-badge i {
  font-size: 1.25rem;
  color: var(--italy-terracotta);
}

@media (max-width: 768px) {
  .italy-trust-grid {
    gap: 1.25rem;
  }
  
  .italy-trust-badge {
    font-size: 0.8rem;
  }
}

/* =====================================================
   23. FOOTER
   ===================================================== */
.italy-footer {
  background: var(--italy-bg-dark);
  color: white;
}

.italy-footer-top {
  padding: 4rem 0 3rem;
}

.italy-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
}

@media (max-width: 1024px) {
  .italy-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .italy-footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Footer About */
.italy-footer-about {
  max-width: 350px;
}

@media (max-width: 640px) {
  .italy-footer-about {
    max-width: 100%;
  }
}

.italy-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.italy-footer-logo .italy-logo-icon {
  font-size: 2rem;
}

.italy-footer-logo .italy-logo-text {
  font-family: var(--italy-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.italy-footer-logo .italy-logo-text span {
  color: var(--italy-terracotta-light);
}

.italy-footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Footer Social */
.italy-footer-social {
  display: flex;
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .italy-footer-social {
    justify-content: center;
  }
}

.italy-footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--italy-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  transition: all var(--italy-transition-fast);
}

.italy-footer-social a:hover {
  background: var(--italy-terracotta);
  color: white;
  transform: translateY(-3px);
}

/* Footer Columns */
.italy-footer-col h4 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.italy-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--italy-terracotta);
  border-radius: 2px;
}

@media (max-width: 640px) {
  .italy-footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.italy-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.italy-footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all var(--italy-transition-fast);
  display: inline-block;
}

.italy-footer-col ul li a:hover {
  color: var(--italy-terracotta-light);
  transform: translateX(5px);
}

@media (max-width: 640px) {
  .italy-footer-col ul li a:hover {
    transform: none;
  }
}

/* Footer Contact */
.italy-footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  .italy-footer-contact ul li {
    justify-content: center;
  }
}

.italy-footer-contact ul li i {
  color: var(--italy-terracotta-light);
  font-size: 1rem;
  margin-top: 2px;
}

.italy-footer-contact ul li a {
  color: rgba(255, 255, 255, 0.7);
}

.italy-footer-contact ul li a:hover {
  color: var(--italy-terracotta-light);
  transform: none;
}

/* Footer Newsletter */
.italy-footer-newsletter {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.italy-footer-newsletter h4 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.italy-footer-newsletter h4 i {
  color: var(--italy-terracotta-light);
}

.italy-footer-newsletter > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.italy-newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0.75rem;
}

.italy-newsletter-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--italy-radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all var(--italy-transition-fast);
}

.italy-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.italy-newsletter-form input:focus {
  outline: none;
  border-color: var(--italy-terracotta);
  background: rgba(255, 255, 255, 0.15);
}

.italy-newsletter-form button {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .italy-newsletter-form {
    flex-direction: column;
  }
  
  .italy-newsletter-form button {
    width: 100%;
  }
}

/* Footer Bottom */
.italy-footer-bottom {
  padding: 1.5rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.italy-footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 768px) {
  .italy-footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

.italy-footer-bottom-content > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

.italy-footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .italy-footer-links {
    justify-content: center;
    gap: 1rem;
  }
}

.italy-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color var(--italy-transition-fast);
}

.italy-footer-links a:hover {
  color: var(--italy-terracotta-light);
}

/* Payment Methods */
.italy-payment-methods {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.italy-payment-methods span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin-right: 0.5rem;
}

.italy-payment-methods img {
  height: 24px;
  width: auto;
  opacity: 0.8;
  transition: opacity var(--italy-transition-fast);
}

.italy-payment-methods img:hover {
  opacity: 1;
}

/* =====================================================
   24. STICKY BOTTOM CTA (MOBILE)
   ===================================================== */
.italy-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: none;
  background: white;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: var(--italy-z-fixed);
  padding: 0.75rem 1rem;
}

@media (max-width: 768px) {
  .italy-sticky-cta {
    display: flex;
    gap: 0.5rem;
  }
}

.italy-sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.625rem 0.5rem;
  border-radius: var(--italy-radius-md);
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--italy-transition-fast);
}

.italy-sticky-btn i {
  font-size: 1.125rem;
}

.italy-sticky-call {
  background: var(--italy-green);
  color: white;
}

.italy-sticky-call:hover {
  background: var(--italy-green-light);
  color: white;
}

.italy-sticky-whatsapp {
  background: var(--italy-whatsapp);
  color: white;
}

.italy-sticky-whatsapp:hover {
  background: var(--italy-whatsapp-dark);
  color: white;
}

.italy-sticky-enquire {
  background: var(--italy-terracotta);
  color: white;
}

.italy-sticky-enquire:hover {
  background: var(--italy-terracotta-dark);
  color: white;
}

/* =====================================================
   25. ANIMATIONS & KEYFRAMES
   ===================================================== */
@keyframes italy-fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes italy-slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes italy-slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes italy-scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes italy-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Animation Classes */
.italy-animate-fadeIn {
  animation: italy-fadeIn 0.6s ease forwards;
}

.italy-animate-slideInLeft {
  animation: italy-slideInLeft 0.6s ease forwards;
}

.italy-animate-slideInRight {
  animation: italy-slideInRight 0.6s ease forwards;
}

.italy-animate-scaleIn {
  animation: italy-scaleIn 0.5s ease forwards;
}

/* Delay Classes */
.italy-delay-100 { animation-delay: 0.1s; }
.italy-delay-200 { animation-delay: 0.2s; }
.italy-delay-300 { animation-delay: 0.3s; }
.italy-delay-400 { animation-delay: 0.4s; }
.italy-delay-500 { animation-delay: 0.5s; }

/* =====================================================
   26. UTILITY CLASSES
   ===================================================== */
.italy-text-center { text-align: center; }
.italy-text-left { text-align: left; }
.italy-text-right { text-align: right; }

.italy-text-terracotta { color: var(--italy-terracotta); }
.italy-text-white { color: white; }
.italy-text-muted { color: var(--italy-text-muted); }

.italy-bg-terracotta { background-color: var(--italy-terracotta); }
.italy-bg-dark { background-color: var(--italy-bg-dark); }
.italy-bg-light { background-color: var(--italy-bg-secondary); }

.italy-mt-0 { margin-top: 0; }
.italy-mt-1 { margin-top: 0.5rem; }
.italy-mt-2 { margin-top: 1rem; }
.italy-mt-3 { margin-top: 1.5rem; }
.italy-mt-4 { margin-top: 2rem; }

.italy-mb-0 { margin-bottom: 0; }
.italy-mb-1 { margin-bottom: 0.5rem; }
.italy-mb-2 { margin-bottom: 1rem; }
.italy-mb-3 { margin-bottom: 1.5rem; }
.italy-mb-4 { margin-bottom: 2rem; }

.italy-hidden { display: none !important; }
.italy-visible { display: block !important; }

/* =====================================================
   27. ACCESSIBILITY & PRINT STYLES
   ===================================================== */
@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;
  }
}

:focus-visible {
  outline: 3px solid var(--italy-terracotta);
  outline-offset: 2px;
}

@media print {
  .italy-navbar,
  .italy-whatsapp-float,
  .italy-back-to-top,
  .italy-sticky-cta,
  .italy-preloader,
  .italy-hero-controls,
  .italy-scroll-indicator {
    display: none !important;
  }
  
  .italy-hero {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .italy-section {
    padding: 2rem 0;
    page-break-inside: avoid;
  }
  
  .italy-day-details {
    display: block !important;
  }
  
  body.italy-page {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}