/* ========================================
   SCOTLAND TOUR PAGE - COMPLETE CSS
   Mystical Highlands Theme
   ======================================== */

/* ========== CSS VARIABLES ========== */
:root {
  /* Scotland Theme Colors - Mystical & Highland */
  --scot-primary: #1E3A5F;
  --scot-primary-dark: #152A45;
  --scot-primary-light: #2E5A8F;
  --scot-secondary: #5D4E6D;
  --scot-secondary-dark: #3D3250;
  --scot-secondary-light: #7D6E8D;
  --scot-accent: #C9A227;
  --scot-accent-light: #D9B237;
  --scot-accent-dark: #A98817;
  --scot-green: #2D5A27;
  --scot-green-light: #4D7A47;
  --scot-tartan-red: #8B0000;

  /* Neutrals */
  --scot-dark: #1A1A2E;
  --scot-dark-light: #16213E;
  --scot-gray-900: #212121;
  --scot-gray-800: #424242;
  --scot-gray-700: #616161;
  --scot-gray-600: #757575;
  --scot-gray-500: #9E9E9E;
  --scot-gray-400: #BDBDBD;
  --scot-gray-300: #E0E0E0;
  --scot-gray-200: #EEEEEE;
  --scot-gray-100: #F5F5F5;
  --scot-gray-50: #FAFAFA;
  --scot-white: #FFFFFF;

  /* Functional Colors */
  --scot-success: #27AE60;
  --scot-warning: #F39C12;
  --scot-error: #E74C3C;
  --scot-info: #3498DB;

  /* WhatsApp */
  --scot-whatsapp: #25D366;
  --scot-whatsapp-dark: #128C7E;

  /* Typography */
  --scot-font-primary: 'Poppins', sans-serif;
  --scot-font-heading: 'Playfair Display', serif;
  --scot-font-elegant: 'Cormorant Garamond', serif;

  /* Spacing */
  --scot-section-padding: 100px 0;
  --scot-section-padding-mobile: 60px 0;
  --scot-container-width: 1200px;
  --scot-container-padding: 0 20px;

  /* Border Radius */
  --scot-radius-sm: 8px;
  --scot-radius-md: 12px;
  --scot-radius-lg: 20px;
  --scot-radius-xl: 30px;
  --scot-radius-full: 50%;

  /* Shadows */
  --scot-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --scot-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --scot-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
  --scot-shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
  --scot-shadow-primary: 0 10px 40px rgba(30, 58, 95, 0.3);
  --scot-shadow-accent: 0 10px 40px rgba(201, 162, 39, 0.3);

  /* Transitions */
  --scot-transition-fast: 0.2s ease;
  --scot-transition-normal: 0.3s ease;
  --scot-transition-slow: 0.5s ease;
  --scot-transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Gradients */
  --scot-gradient-primary: linear-gradient(135deg, var(--scot-primary) 0%, var(--scot-primary-dark) 100%);
  --scot-gradient-secondary: linear-gradient(135deg, var(--scot-secondary) 0%, var(--scot-secondary-dark) 100%);
  --scot-gradient-accent: linear-gradient(135deg, var(--scot-accent) 0%, var(--scot-accent-dark) 100%);
  --scot-gradient-hero: linear-gradient(180deg, rgba(26, 26, 46, 0.4) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(26, 26, 46, 0.95) 100%);
  --scot-gradient-card: linear-gradient(180deg, transparent 0%, rgba(26, 26, 46, 0.95) 100%);
  --scot-gradient-highland: linear-gradient(135deg, #1E3A5F 0%, #5D4E6D 50%, #2D5A27 100%);
  --scot-gradient-mystical: linear-gradient(135deg, #1E3A5F 0%, #C9A227 100%);
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--scot-font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--scot-gray-800);
  background-color: var(--scot-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.scotland-page {
  /* Page-specific styles can go here */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--scot-transition-normal);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* ========== UTILITY CLASSES ========== */
.container {
  max-width: var(--scot-container-width);
  margin: 0 auto;
  padding: var(--scot-container-padding);
}

.section {
  padding: var(--scot-section-padding);
}

@media (max-width: 768px) {
  .section {
    padding: var(--scot-section-padding-mobile);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, rgba(93, 78, 109, 0.1) 100%);
  color: var(--scot-primary);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  border: 1px solid rgba(30, 58, 95, 0.2);
}

.section-badge i {
  color: var(--scot-accent);
}

.section-title {
  font-family: var(--scot-font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--scot-dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-title span {
  background: var(--scot-gradient-mystical);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--scot-gray-600);
  max-width: 650px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .section-subtitle {
    font-size: 0.95rem;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--scot-radius-md);
  transition: var(--scot-transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  text-transform: capitalize;
  text-decoration: none;
}

.btn-primary {
  background: var(--scot-gradient-primary);
  color: var(--scot-white);
  box-shadow: var(--scot-shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(30, 58, 95, 0.4);
}

.btn-secondary {
  background: var(--scot-gradient-secondary);
  color: var(--scot-white);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(93, 78, 109, 0.4);
}

.btn-accent {
  background: var(--scot-gradient-accent);
  color: var(--scot-white);
  box-shadow: var(--scot-shadow-accent);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 45px rgba(201, 162, 39, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--scot-primary);
  border-color: var(--scot-primary);
}

.btn-outline:hover {
  background: var(--scot-primary);
  color: var(--scot-white);
}

.btn-outline-light {
  background: transparent;
  color: var(--scot-white);
  border-color: var(--scot-white);
}

.btn-outline-light:hover {
  background: var(--scot-white);
  color: var(--scot-primary);
}

.btn-whatsapp {
  background: var(--scot-whatsapp);
  color: var(--scot-white);
}

.btn-whatsapp:hover {
  background: var(--scot-whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-call {
  background: var(--scot-tartan-red);
  color: var(--scot-white);
}

.btn-call:hover {
  background: #A00000;
  transform: translateY(-3px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

@media (max-width: 576px) {
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* ========== SKIP LINK ========== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--scot-primary);
  color: var(--scot-white);
  padding: 15px 30px;
  border-radius: var(--scot-radius-md);
  z-index: 10000;
  font-weight: 600;
  transition: var(--scot-transition-normal);
}

.skip-link:focus {
  top: 20px;
}

/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--scot-dark) 0%, var(--scot-primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  color: var(--scot-white);
}

.preloader-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: preloaderFloat 2s ease-in-out infinite;
}

@keyframes preloaderFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.preloader-content h3 {
  font-family: var(--scot-font-heading);
  font-size: 1.5rem;
  margin-bottom: 10px;
  background: var(--scot-gradient-mystical);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.preloader-content p {
  color: var(--scot-gray-400);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.preloader-bar {
  width: 200px;
  height: 4px;
  background: var(--scot-gray-700);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar span {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--scot-gradient-mystical);
  border-radius: 4px;
  animation: preloaderLoading 1.5s ease-in-out infinite;
}

@keyframes preloaderLoading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: var(--scot-gradient-primary);
  color: var(--scot-white);
  border: none;
  border-radius: var(--scot-radius-full);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--scot-transition-normal);
  z-index: 997;
  box-shadow: var(--scot-shadow-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(30, 58, 95, 0.5);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 140px;
    right: 15px;
    width: 45px;
    height: 45px;
  }
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--scot-whatsapp);
  color: var(--scot-white);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: var(--scot-transition-normal);
}

.whatsapp-float i {
  font-size: 1.4rem;
}

.whatsapp-float:hover {
  background: var(--scot-whatsapp-dark);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px;
    right: 15px;
    padding: 12px;
    border-radius: var(--scot-radius-full);
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float i {
    font-size: 1.6rem;
  }
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  z-index: 1000;
  transition: var(--scot-transition-normal);
}

.navbar.scrolled {
  background: rgba(26, 26, 46, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: var(--scot-shadow-lg);
}

.nav-container {
  max-width: var(--scot-container-width);
  margin: 0 auto;
  padding: var(--scot-container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--scot-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--scot-white);
  z-index: 1001;
}

.logo-icon {
  font-size: 2rem;
}

.logo-text span {
  background: var(--scot-gradient-mystical);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--scot-transition-normal);
  padding: 5px 0;
  position: relative;
}

.nav-links a i {
  font-size: 0.85rem;
  color: var(--scot-accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--scot-gradient-mystical);
  transition: var(--scot-transition-normal);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--scot-white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--scot-white);
  font-weight: 500;
  font-size: 0.95rem;
}

.nav-phone i {
  color: var(--scot-accent);
}

.nav-phone:hover {
  color: var(--scot-accent);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  z-index: 1001;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.hamburger-line {
  width: 28px;
  height: 3px;
  background: var(--scot-white);
  border-radius: 3px;
  transition: var(--scot-transition-normal);
  transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  transition: var(--scot-transition-normal);
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* Mobile Navigation */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(180deg, var(--scot-dark) 0%, var(--scot-primary-dark) 100%);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    gap: 0;
    transition: var(--scot-transition-slow);
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-actions {
    display: none;
  }
}

@media (max-width: 480px) {
  .nav-links {
    width: 90%;
    max-width: none;
    padding: 90px 20px 20px;
  }

  .nav-logo {
    font-size: 1.3rem;
  }

  .logo-icon {
    font-size: 1.6rem;
  }
}

@media (max-width: 340px) {
  .nav-logo {
    font-size: 1.1rem;
  }

  .logo-icon {
    font-size: 1.4rem;
  }
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--scot-gradient-hero);
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  padding-top: 80px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--scot-accent);
}

.breadcrumb i {
  color: var(--scot-accent);
  font-size: 0.7rem;
}

.breadcrumb span {
  color: var(--scot-accent);
  font-weight: 600;
}

/* Hero Badges */
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
}

.badge-heritage {
  background: rgba(30, 58, 95, 0.3);
  color: #87CEEB;
  border: 1px solid rgba(135, 206, 235, 0.3);
}

.badge-nature {
  background: rgba(45, 90, 39, 0.3);
  color: #90EE90;
  border: 1px solid rgba(144, 238, 144, 0.3);
}

.badge-rated {
  background: rgba(201, 162, 39, 0.3);
  color: var(--scot-accent-light);
  border: 1px solid rgba(201, 162, 39, 0.3);
}

/* Hero Title */
.hero-title {
  font-family: var(--scot-font-heading);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 700;
  color: var(--scot-white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title span {
  display: block;
  background: var(--scot-gradient-mystical);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 750px;
  margin: 0 auto 30px;
  line-height: 1.8;
}

/* Hero Meta */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 18px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-meta-item i {
  color: var(--scot-accent);
}

/* Hero CTA */
.hero-cta {
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.hero-trust i {
  color: var(--scot-accent);
}

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 3;
}

.hero-prev,
.hero-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--scot-white);
  border-radius: var(--scot-radius-full);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--scot-transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-prev:hover,
.hero-next:hover {
  background: var(--scot-primary);
  border-color: var(--scot-primary);
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--scot-radius-full);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--scot-transition-normal);
}

.hero-dot.active {
  background: var(--scot-accent);
  width: 35px;
  border-radius: 10px;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  z-index: 3;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--scot-accent);
  border-radius: 4px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 2s infinite;
}

@keyframes wheelScroll {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 24px; }
}

@media (max-width: 768px) {
  .hero-controls {
    bottom: 100px;
  }

  .hero-prev,
  .hero-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .hero-meta-item {
    padding: 8px 14px;
    font-size: 0.8rem;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 0 15px;
    padding-top: 80px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-meta {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-badges {
    gap: 8px;
  }

  .badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .breadcrumb {
    font-size: 0.8rem;
    gap: 6px;
  }
}

/* ========== QUICK INFO STRIP ========== */
.quick-info {
  background: var(--scot-dark);
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.quick-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--scot-radius-md);
  transition: var(--scot-transition-normal);
}

.quick-info-item:hover {
  background: rgba(30, 58, 95, 0.3);
  transform: translateY(-3px);
}

.quick-info-item i {
  font-size: 1.5rem;
  color: var(--scot-accent);
  flex-shrink: 0;
}

.quick-info-item div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.quick-info-item strong {
  color: var(--scot-white);
  font-size: 0.9rem;
  font-weight: 600;
}

.quick-info-item span {
  color: var(--scot-gray-400);
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1200px) {
  .quick-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .quick-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .quick-info-item {
    padding: 12px;
  }

  .quick-info-item i {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .quick-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== OVERVIEW SECTION ========== */
.overview-section {
  background: var(--scot-gray-100);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}

.overview-content h3 {
  font-family: var(--scot-font-heading);
  font-size: 1.8rem;
  color: var(--scot-dark);
  margin-bottom: 20px;
}

.overview-content p {
  color: var(--scot-gray-700);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Highlights Grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 10px;
  background: var(--scot-white);
  border-radius: var(--scot-radius-md);
  text-align: center;
  transition: var(--scot-transition-normal);
  border: 1px solid var(--scot-gray-200);
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--scot-shadow-md);
  border-color: var(--scot-primary);
}

.highlight-item i {
  font-size: 1.8rem;
  color: var(--scot-primary);
}

.highlight-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--scot-gray-800);
}

/* Why Choose Box */
.why-choose-box {
  background: var(--scot-white);
  padding: 30px;
  border-radius: var(--scot-radius-lg);
  margin-top: 30px;
  border: 2px solid var(--scot-gray-200);
}

.why-choose-box h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: var(--scot-dark);
  margin-bottom: 20px;
}

.why-choose-box h4 i {
  color: var(--scot-accent);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: var(--scot-gray-100);
  border-radius: var(--scot-radius-md);
  transition: var(--scot-transition-normal);
}

.why-item:hover {
  background: rgba(30, 58, 95, 0.1);
}

.why-item i {
  font-size: 1.3rem;
  color: var(--scot-primary);
  flex-shrink: 0;
}

.why-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--scot-gray-800);
}

/* Sidebar */
.overview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 100px;
}

/* Info Cards */
.info-card {
  background: var(--scot-white);
  border-radius: var(--scot-radius-lg);
  padding: 25px;
  box-shadow: var(--scot-shadow-md);
}

.info-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--scot-gray-200);
}

.inclusions-card h4 {
  color: var(--scot-green);
}

.inclusions-card h4 i {
  color: var(--scot-green);
}

.exclusions-card h4 {
  color: var(--scot-tartan-red);
}

.exclusions-card h4 i {
  color: var(--scot-tartan-red);
}

.season-card h4 {
  color: var(--scot-primary);
}

.season-card h4 i {
  color: var(--scot-accent);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--scot-gray-700);
  line-height: 1.5;
}

.inclusions-card .info-list li i {
  color: var(--scot-green);
  margin-top: 4px;
  flex-shrink: 0;
}

.exclusions-card .info-list li i {
  color: var(--scot-tartan-red);
  margin-top: 4px;
  flex-shrink: 0;
}

/* Season List */
.season-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.season-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 15px;
  border-radius: var(--scot-radius-md);
  background: var(--scot-gray-100);
}

.season-months {
  font-weight: 600;
  color: var(--scot-dark);
  font-size: 0.95rem;
}

.season-desc {
  font-size: 0.85rem;
  color: var(--scot-gray-600);
}

.season-best {
  background: rgba(45, 90, 39, 0.1);
  border-left: 3px solid var(--scot-green);
}

.season-good {
  background: rgba(201, 162, 39, 0.1);
  border-left: 3px solid var(--scot-accent);
}

.season-moderate {
  background: rgba(30, 58, 95, 0.1);
  border-left: 3px solid var(--scot-primary);
}

@media (max-width: 1024px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .highlights-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .why-choose-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .overview-sidebar {
    grid-template-columns: 1fr;
  }

  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 340px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== DESTINATIONS SECTION ========== */
.destinations-section {
  background: var(--scot-white);
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.destination-card {
  background: var(--scot-white);
  border-radius: var(--scot-radius-lg);
  overflow: hidden;
  box-shadow: var(--scot-shadow-md);
  transition: var(--scot-transition-normal);
  border: 1px solid var(--scot-gray-200);
}

.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--scot-shadow-xl);
}

.destination-card.featured {
  border: 2px solid var(--scot-accent);
}

.destination-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--scot-transition-slow);
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-day {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--scot-gradient-primary);
  color: var(--scot-white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
}

.destination-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--scot-gradient-accent);
  color: var(--scot-white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.destination-content {
  padding: 25px;
}

.destination-content h4 {
  font-family: var(--scot-font-heading);
  font-size: 1.4rem;
  color: var(--scot-dark);
  margin-bottom: 10px;
}

.destination-content p {
  color: var(--scot-gray-600);
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.destination-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.destination-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(30, 58, 95, 0.1);
  color: var(--scot-primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.destination-highlights span i {
  color: var(--scot-green);
  font-size: 0.7rem;
}

@media (max-width: 992px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .destinations-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== ITINERARY SECTION ========== */
.itinerary-section {
  background: linear-gradient(180deg, var(--scot-gray-100) 0%, var(--scot-white) 100%);
}

.itinerary-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Day Card */
.day-card {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  position: relative;
}

.day-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.day-number {
  width: 60px;
  height: 60px;
  background: var(--scot-gradient-primary);
  color: var(--scot-white);
  border-radius: var(--scot-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: var(--scot-shadow-primary);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.day-line {
  width: 3px;
  flex: 1;
  background: linear-gradient(180deg, var(--scot-primary) 0%, var(--scot-secondary) 100%);
  margin-top: 10px;
}

.day-card:last-child .day-line {
  display: none;
}

.day-content {
  flex: 1;
  background: var(--scot-white);
  border-radius: var(--scot-radius-lg);
  box-shadow: var(--scot-shadow-md);
  overflow: hidden;
  border: 1px solid var(--scot-gray-200);
  min-width: 0;
}

/* Day Header */
.day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.05) 0%, rgba(93, 78, 109, 0.05) 100%);
  border-bottom: 1px solid var(--scot-gray-200);
  cursor: pointer;
  transition: var(--scot-transition-normal);
  gap: 15px;
}

.day-header:hover {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, rgba(93, 78, 109, 0.1) 100%);
}

.day-title {
  flex: 1;
  min-width: 0;
}

.day-title h3 {
  font-family: var(--scot-font-heading);
  font-size: 1.3rem;
  color: var(--scot-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.day-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--scot-gradient-secondary);
  color: var(--scot-white);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.day-tag.highlight {
  background: var(--scot-gradient-accent);
}

.day-toggle {
  width: 40px;
  height: 40px;
  background: var(--scot-white);
  border: 1px solid var(--scot-gray-300);
  border-radius: var(--scot-radius-full);
  color: var(--scot-gray-600);
  cursor: pointer;
  transition: var(--scot-transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.day-toggle:hover {
  background: var(--scot-primary);
  color: var(--scot-white);
  border-color: var(--scot-primary);
}

.day-toggle i {
  transition: var(--scot-transition-normal);
}

.day-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* Day Summary */
.day-summary {
  padding: 20px 25px;
  background: var(--scot-gray-50);
  border-bottom: 1px solid var(--scot-gray-200);
}

.day-summary p {
  color: var(--scot-gray-700);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Day Details */
.day-details {
  display: none;
  padding: 25px;
}

.day-details.active {
  display: block;
}

.day-image {
  margin-bottom: 25px;
  border-radius: var(--scot-radius-md);
  overflow: hidden;
}

.day-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Day Schedule */
.day-schedule {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.schedule-item {
  display: flex;
  gap: 20px;
  padding: 15px;
  background: var(--scot-gray-100);
  border-radius: var(--scot-radius-md);
  transition: var(--scot-transition-normal);
}

.schedule-item:hover {
  background: rgba(30, 58, 95, 0.08);
}

.schedule-item.highlight-activity {
  background: rgba(201, 162, 39, 0.1);
  border-left: 4px solid var(--scot-accent);
}

.time {
  min-width: 80px;
  color: var(--scot-primary);
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.activity {
  display: flex;
  gap: 15px;
  flex: 1;
  min-width: 0;
}

.activity > i {
  color: var(--scot-secondary);
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.activity > div {
  flex: 1;
  min-width: 0;
}

.activity strong {
  display: block;
  color: var(--scot-dark);
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.activity p {
  color: var(--scot-gray-600);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Day Meals */
.day-meals {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--scot-gray-200);
}

.meal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 90, 39, 0.1);
  color: var(--scot-green);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
}

.meal i {
  color: var(--scot-green);
}

/* Day Tips */
.day-tips {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(201, 162, 39, 0.1);
  border-radius: var(--scot-radius-md);
  margin-top: 20px;
  border-left: 4px solid var(--scot-accent);
}

.day-tips > i {
  color: var(--scot-accent);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.day-tips p {
  color: var(--scot-gray-700);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.day-tips strong {
  color: var(--scot-accent-dark);
}

/* Day Stay */
.day-stay {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 15px 20px;
  background: var(--scot-dark);
  color: var(--scot-white);
  border-radius: var(--scot-radius-md);
  font-size: 0.95rem;
}

.day-stay i {
  color: var(--scot-accent);
  flex-shrink: 0;
}

/* Itinerary Actions */
.itinerary-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .day-card {
    flex-direction: column;
    gap: 0;
  }

  .day-marker {
    flex-direction: row;
    margin-bottom: 15px;
  }

  .day-number {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }

  .day-line {
    width: auto;
    height: 3px;
    flex: 1;
    margin-top: 0;
    margin-left: 15px;
  }

  .day-header {
    padding: 20px;
    flex-wrap: wrap;
  }

  .day-title h3 {
    font-size: 1.1rem;
  }

  .time {
    min-width: 60px;
    font-size: 0.8rem;
  }

  .schedule-item {
    flex-direction: column;
    gap: 10px;
  }

  .activity {
    padding-left: 0;
  }

  .day-image img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .day-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .day-toggle {
    align-self: flex-end;
    margin-top: -50px;
  }

  .day-details {
    padding: 20px;
  }

  .day-summary {
    padding: 15px 20px;
  }

  .day-image img {
    height: 180px;
  }

  .day-meals {
    flex-direction: column;
  }

  .itinerary-actions {
    flex-direction: column;
  }

  .itinerary-actions .btn {
    width: 100%;
  }
}

/* ========== GALLERY SECTION ========== */
.gallery-section {
  background: var(--scot-dark);
  padding: var(--scot-section-padding);
}

.gallery-section .section-header {
  color: var(--scot-white);
}

.gallery-section .section-title {
  color: var(--scot-white);
}

.gallery-section .section-subtitle {
  color: var(--scot-gray-400);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: var(--scot-radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--scot-transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--scot-transition-normal);
}

.gallery-item:hover .gallery-overlay,
.gallery-item:focus .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--scot-white);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-overlay i {
  color: var(--scot-accent);
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-tall {
    grid-row: span 1;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-large {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-tall {
    grid-row: span 1;
  }
}

/* ========== BOOKING SECTION ========== */
.booking-section {
  background: linear-gradient(135deg, var(--scot-gray-100) 0%, var(--scot-white) 100%);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

/* Booking Info */
.booking-info h2 {
  font-family: var(--scot-font-heading);
  font-size: 2.2rem;
  color: var(--scot-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.booking-info > p {
  color: var(--scot-gray-600);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.booking-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.booking-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--scot-gray-800);
  font-weight: 500;
}

.booking-feature i {
  color: var(--scot-green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Trust Stats */
.booking-trust {
  display: flex;
  gap: 30px;
  padding: 25px;
  background: var(--scot-white);
  border-radius: var(--scot-radius-lg);
  margin-bottom: 30px;
  box-shadow: var(--scot-shadow-sm);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item i {
  font-size: 2rem;
  color: var(--scot-primary);
  flex-shrink: 0;
}

.trust-item div {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 1.3rem;
  color: var(--scot-dark);
}

.trust-item span {
  font-size: 0.85rem;
  color: var(--scot-gray-600);
}

/* Booking Contact */
.booking-contact {
  padding: 25px;
  background: var(--scot-dark);
  border-radius: var(--scot-radius-lg);
}

.booking-contact > p {
  color: var(--scot-gray-400);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--scot-white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--scot-transition-normal);
  word-break: break-word;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item:hover {
  color: var(--scot-accent);
}

.contact-item i {
  color: var(--scot-accent);
  font-size: 1.2rem;
  width: 25px;
  flex-shrink: 0;
}

/* Booking Form Container */
.booking-form-container {
  background: var(--scot-white);
  border-radius: var(--scot-radius-lg);
  padding: 40px;
  box-shadow: var(--scot-shadow-lg);
  border: 1px solid var(--scot-gray-200);
}

/* Form Styles */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--scot-gray-800);
  font-size: 0.95rem;
}

.form-group label i {
  color: var(--scot-primary);
}

.form-group label span {
  color: var(--scot-tartan-red);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border: 2px solid var(--scot-gray-300);
  border-radius: var(--scot-radius-md);
  font-size: 1rem;
  transition: var(--scot-transition-normal);
  background: var(--scot-white);
  color: var(--scot-gray-800);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--scot-primary);
  box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--scot-gray-500);
}

.phone-input {
  display: flex;
  gap: 10px;
}

.phone-input select {
  width: 110px;
  flex-shrink: 0;
}

.phone-input input {
  flex: 1;
}

.error-message {
  color: var(--scot-error);
  font-size: 0.85rem;
  display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--scot-error);
}

.form-group.error .error-message {
  display: block;
}

/* Trip Type Options */
.trip-type-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trip-option {
  position: relative;
  cursor: pointer;
}

.trip-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.trip-option span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 2px solid var(--scot-gray-300);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--scot-transition-normal);
  color: var(--scot-gray-700);
}

.trip-option input:checked + span {
  background: var(--scot-gradient-primary);
  color: var(--scot-white);
  border-color: var(--scot-primary);
}

.trip-option:hover span {
  border-color: var(--scot-primary);
}

/* Hotel Options */
.hotel-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hotel-option {
  position: relative;
  cursor: pointer;
}

.hotel-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hotel-option span {
  display: inline-block;
  padding: 12px 20px;
  border: 2px solid var(--scot-gray-300);
  border-radius: var(--scot-radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--scot-transition-normal);
  color: var(--scot-gray-700);
}

.hotel-option input:checked + span {
  background: var(--scot-gradient-secondary);
  color: var(--scot-white);
  border-color: var(--scot-secondary);
}

.hotel-option:hover span {
  border-color: var(--scot-secondary);
}

/* Add-on Options */
.addon-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.addon-option {
  position: relative;
  cursor: pointer;
}

.addon-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.addon-option span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 2px solid var(--scot-gray-300);
  border-radius: var(--scot-radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--scot-transition-normal);
  color: var(--scot-gray-700);
}

.addon-option input:checked + span {
  background: rgba(30, 58, 95, 0.1);
  border-color: var(--scot-primary);
  color: var(--scot-primary);
}

.addon-option span i {
  color: var(--scot-accent);
  flex-shrink: 0;
}

/* Consent */
.form-consent {
  padding: 15px 0;
}

.consent-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.consent-option input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--scot-primary);
  flex-shrink: 0;
}

.consent-option span {
  font-size: 0.9rem;
  color: var(--scot-gray-600);
  line-height: 1.5;
}

.consent-option a {
  color: var(--scot-primary);
  text-decoration: underline;
}

.consent-option a:hover {
  color: var(--scot-accent);
}

/* Submit Button */
.booking-form .btn {
  margin-top: 10px;
}

.btn-loader {
  display: none;
}

.form-note {
  text-align: center;
  color: var(--scot-gray-500);
  font-size: 0.85rem;
  margin-top: 15px;
}

.form-note i {
  color: var(--scot-green);
  margin-right: 5px;
}

/* Form Messages */
.form-message {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-radius: var(--scot-radius-md);
  margin-top: 20px;
}

.form-success {
  background: rgba(39, 174, 96, 0.1);
  border: 1px solid var(--scot-success);
}

.form-success > i {
  color: var(--scot-success);
  font-size: 2rem;
  flex-shrink: 0;
}

.form-success strong {
  color: var(--scot-success);
  display: block;
  margin-bottom: 5px;
}

.form-success p {
  color: var(--scot-gray-700);
  font-size: 0.9rem;
  margin: 0;
}

.form-error {
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid var(--scot-error);
}

.form-error > i {
  color: var(--scot-error);
  font-size: 2rem;
  flex-shrink: 0;
}

.form-error strong {
  color: var(--scot-error);
  display: block;
  margin-bottom: 5px;
}

.form-error p {
  color: var(--scot-gray-700);
  font-size: 0.9rem;
  margin: 0;
}

.form-error a {
  color: var(--scot-primary);
}

@media (max-width: 992px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-trust {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-form-container {
    padding: 25px;
  }

  .booking-features {
    grid-template-columns: 1fr;
  }

  .addon-options {
    grid-template-columns: 1fr;
  }

  .booking-trust {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .trust-item {
    flex-direction: column;
  }

  .booking-info h2 {
    font-size: 1.8rem;
  }

  .trip-type-options,
  .hotel-options {
    flex-direction: column;
  }

  .trip-option span,
  .hotel-option span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .phone-input {
    flex-direction: column;
  }

  .phone-input select {
    width: 100%;
  }
}

/* ========== REVIEWS SECTION ========== */
.reviews-section {
  background: var(--scot-white);
}

/* Reviews Summary */
.reviews-summary {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
  padding: 40px;
  background: var(--scot-gray-100);
  border-radius: var(--scot-radius-lg);
  flex-wrap: wrap;
}

.rating-big {
  text-align: center;
}

.rating-number {
  font-family: var(--scot-font-heading);
  font-size: 4rem;
  font-weight: 700;
  background: var(--scot-gradient-mystical);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.rating-stars {
  color: var(--scot-accent);
  font-size: 1.5rem;
  margin: 10px 0;
}

.rating-count {
  color: var(--scot-gray-600);
  font-size: 0.9rem;
}

.rating-bars {
  flex: 1;
  max-width: 400px;
  min-width: 280px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.rating-bar > span:first-child {
  min-width: 35px;
  color: var(--scot-gray-700);
  font-size: 0.9rem;
  font-weight: 500;
  flex-shrink: 0;
}

.bar {
  flex: 1;
  height: 8px;
  background: var(--scot-gray-300);
  border-radius: 10px;
  overflow: hidden;
}

.bar span {
  display: block;
  height: 100%;
  background: var(--scot-gradient-accent);
  border-radius: 10px;
  transition: width 1s ease;
}

.rating-bar > span:last-child {
  min-width: 40px;
  text-align: right;
  color: var(--scot-gray-600);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Reviews Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--scot-white);
  border-radius: var(--scot-radius-lg);
  padding: 30px;
  box-shadow: var(--scot-shadow-md);
  border: 1px solid var(--scot-gray-200);
  transition: var(--scot-transition-normal);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--scot-shadow-lg);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.review-header img {
  width: 60px;
  height: 60px;
  border-radius: var(--scot-radius-full);
  object-fit: cover;
  flex-shrink: 0;
}

.review-header > div:first-of-type {
  flex: 1;
  min-width: 150px;
}

.review-header h4 {
  font-size: 1.1rem;
  color: var(--scot-dark);
  margin-bottom: 5px;
}

.review-header > div:first-of-type > span {
  display: block;
  font-size: 0.85rem;
  color: var(--scot-gray-600);
  margin-bottom: 5px;
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--scot-green);
  font-size: 0.8rem;
  font-weight: 600;
}

.verified i {
  font-size: 0.75rem;
}

.review-rating {
  color: var(--scot-accent);
  font-size: 0.9rem;
}

.review-rating i {
  margin-right: 2px;
}

.review-card > p {
  color: var(--scot-gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.review-images {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.review-images img {
  width: 80px;
  height: 80px;
  border-radius: var(--scot-radius-md);
  object-fit: cover;
  cursor: pointer;
  transition: var(--scot-transition-normal);
}

.review-images img:hover {
  transform: scale(1.05);
  box-shadow: var(--scot-shadow-md);
}

.review-helpful {
  padding-top: 15px;
  border-top: 1px solid var(--scot-gray-200);
}

.review-helpful span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--scot-gray-600);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--scot-transition-normal);
}

.review-helpful span:hover {
  color: var(--scot-primary);
}

.review-helpful i {
  color: var(--scot-primary);
}

.reviews-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-summary {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 30px 20px;
  }

  .rating-bars {
    width: 100%;
    min-width: auto;
    max-width: none;
  }

  .review-card {
    padding: 20px;
  }

  .review-header img {
    width: 50px;
    height: 50px;
  }

  .review-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ========== FAQ SECTION ========== */
.faq-section {
  background: var(--scot-gray-100);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: var(--scot-white);
  border-radius: var(--scot-radius-lg);
  overflow: hidden;
  box-shadow: var(--scot-shadow-sm);
  border: 1px solid var(--scot-gray-200);
  transition: var(--scot-transition-normal);
}

.faq-item:hover {
  box-shadow: var(--scot-shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--scot-transition-normal);
  gap: 15px;
}

.faq-question:hover {
  background: var(--scot-gray-50);
}

.faq-question span {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--scot-dark);
  line-height: 1.4;
  flex: 1;
}

.faq-question i {
  color: var(--scot-primary);
  font-size: 1rem;
  transition: var(--scot-transition-normal);
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.05) 0%, rgba(93, 78, 109, 0.05) 100%);
}

.faq-answer {
  display: none;
  padding: 0 25px 25px;
  color: var(--scot-gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer.active {
  display: block;
  animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  margin-bottom: 15px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin: 10px 0;
  padding-left: 0;
}

.faq-answer ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.faq-answer ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--scot-green);
  font-weight: bold;
}

.faq-answer strong {
  color: var(--scot-dark);
}

/* FAQ CTA */
.faq-cta {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background: var(--scot-white);
  border-radius: var(--scot-radius-lg);
  box-shadow: var(--scot-shadow-sm);
}

.faq-cta p {
  font-size: 1.2rem;
  color: var(--scot-dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.faq-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .faq-question {
    padding: 18px 20px;
  }

  .faq-question span {
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 20px 20px;
    font-size: 0.9rem;
  }

  .faq-cta {
    padding: 30px 20px;
  }

  .faq-buttons {
    flex-direction: column;
    align-items: center;
  }

  .faq-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ========== CTA SECTION ========== */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(30, 58, 95, 0.85) 100%);
  z-index: 1;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--scot-font-heading);
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--scot-white);
  margin-bottom: 15px;
}

.cta-content > p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.cta-features span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.cta-features i {
  color: var(--scot-accent);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.cta-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.cta-note i {
  color: var(--scot-accent);
  margin-right: 5px;
}

@media (max-width: 576px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-features {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ========== TRUST SECTION ========== */
.trust-section {
  background: var(--scot-dark);
  padding: 40px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 20px;
  border-radius: var(--scot-radius-md);
  transition: var(--scot-transition-normal);
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.05);
}

.trust-badge i {
  font-size: 2rem;
  color: var(--scot-accent);
}

.trust-badge span {
  color: var(--scot-white);
  font-size: 0.85rem;
  font-weight: 500;
}

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .trust-badge {
    padding: 15px 10px;
  }

  .trust-badge i {
    font-size: 1.5rem;
  }

  .trust-badge span {
    font-size: 0.8rem;
  }
}

@media (max-width: 340px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(180deg, var(--scot-dark) 0%, #0D0D1A 100%);
  color: var(--scot-white);
}

.footer-top {
  padding: 80px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--scot-white);
  position: relative;
  padding-bottom: 15px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--scot-gradient-mystical);
  border-radius: 3px;
}

/* Footer About */
.footer-about {
  padding-right: 30px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--scot-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--scot-white);
  margin-bottom: 20px;
}

.footer-logo .logo-icon {
  font-size: 2rem;
}

.footer-logo .logo-text span {
  background: var(--scot-gradient-mystical);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-about p {
  color: var(--scot-gray-400);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--scot-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--scot-white);
  font-size: 1rem;
  transition: var(--scot-transition-normal);
}

.footer-social a:hover {
  background: var(--scot-gradient-mystical);
  transform: translateY(-3px);
}

/* Footer Links */
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  color: var(--scot-gray-400);
  font-size: 0.95rem;
  transition: var(--scot-transition-normal);
  display: inline-flex;
  align-items: center;
}

.footer-col ul li a:hover {
  color: var(--scot-accent);
  padding-left: 5px;
}

.footer-col ul li a.active {
  color: var(--scot-accent);
}

/* Footer Contact */
.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-contact ul li i {
  color: var(--scot-accent);
  margin-top: 4px;
  width: 18px;
  flex-shrink: 0;
}

.footer-contact ul li span,
.footer-contact ul li a {
  color: var(--scot-gray-400);
  font-size: 0.95rem;
}

.footer-contact ul li a:hover {
  color: var(--scot-accent);
}

/* Footer Newsletter */
.footer-newsletter {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-newsletter h4 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--scot-white);
}

.footer-newsletter h4 i {
  color: var(--scot-accent);
}

.footer-newsletter h4::after {
  display: none;
}

.footer-newsletter > p {
  color: var(--scot-gray-400);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 14px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--scot-radius-md);
  background: rgba(255, 255, 255, 0.1);
  color: var(--scot-white);
  font-size: 1rem;
  transition: var(--scot-transition-normal);
}

.newsletter-form input::placeholder {
  color: var(--scot-gray-500);
}

.newsletter-form input:focus {
  border-color: var(--scot-accent);
  background: rgba(255, 255, 255, 0.15);
}

/* Footer Bottom */
.footer-bottom {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-content > p {
  color: var(--scot-gray-500);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--scot-gray-500);
  font-size: 0.9rem;
  transition: var(--scot-transition-normal);
}

.footer-links a:hover {
  color: var(--scot-accent);
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.payment-methods span {
  color: var(--scot-gray-500);
  font-size: 0.85rem;
}

.payment-methods i {
  font-size: 1.8rem;
  color: var(--scot-gray-400);
  transition: var(--scot-transition-normal);
}

.payment-methods i:hover {
  color: var(--scot-white);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-about {
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact ul li {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .payment-methods {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: 100%;
  }

  .newsletter-form .btn {
    width: 100%;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ========== LIGHTBOX ========== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--scot-transition-normal);
}

.lightbox.active,
.lightbox:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: var(--scot-radius-full);
  color: var(--scot-white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--scot-transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.lightbox-close:hover {
  background: var(--scot-accent);
  transform: rotate(90deg);
}

.lightbox-prev,
.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(--scot-radius-full);
  color: var(--scot-white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--scot-transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--scot-primary);
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--scot-radius-md);
  box-shadow: var(--scot-shadow-xl);
  object-fit: contain;
}

.lightbox-caption {
  color: var(--scot-white);
  margin-top: 20px;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .lightbox-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-caption {
    font-size: 0.9rem;
    margin-top: 15px;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .lightbox-content img {
    max-height: 70vh;
  }

  .lightbox-caption {
    font-size: 0.8rem;
    margin-top: 10px;
  }
}

/* ========== STICKY BOTTOM CTA (MOBILE) ========== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--scot-white);
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
  z-index: 996;
  display: none;
  padding: 10px 15px;
  border-top: 1px solid var(--scot-gray-200);
}

.sticky-cta {
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 10px 5px;
  border-radius: var(--scot-radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--scot-transition-normal);
}

.sticky-btn i {
  font-size: 1.3rem;
}

.sticky-call {
  background: var(--scot-primary);
  color: var(--scot-white);
}

.sticky-call:hover {
  background: var(--scot-primary-dark);
}

.sticky-whatsapp {
  background: var(--scot-whatsapp);
  color: var(--scot-white);
}

.sticky-whatsapp:hover {
  background: var(--scot-whatsapp-dark);
}

.sticky-enquire {
  background: var(--scot-gradient-accent);
  color: var(--scot-white);
}

.sticky-enquire:hover {
  opacity: 0.9;
}

@media (min-width: 769px) {
  .sticky-cta {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
  }

  /* Adjust other fixed elements when sticky CTA is visible */
  .whatsapp-float {
    bottom: 80px;
  }

  .back-to-top {
    bottom: 140px;
  }
}

@media (max-width: 340px) {
  .sticky-btn {
    padding: 8px 3px;
    font-size: 0.65rem;
  }

  .sticky-btn i {
    font-size: 1.1rem;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}

/* Animation utility classes */
.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-down {
  animation: fadeInDown 0.6s ease forwards;
}

.animate-fade-in-left {
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-in-right {
  animation: fadeInRight 0.6s ease forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease forwards;
}

/* Delay utilities */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* ========== ACCESSIBILITY ========== */
/* Focus styles */
*:focus-visible {
  outline: 3px solid var(--scot-accent);
  outline-offset: 3px;
}

/* 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;
  }

  .hero-slide {
    transition: none;
  }

  .preloader-icon,
  .preloader-bar span,
  .wheel,
  .scroll-indicator {
    animation: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --scot-primary: #0D2340;
    --scot-accent: #FFD700;
  }

  .btn-primary,
  .btn-secondary,
  .btn-accent {
    border: 2px solid currentColor;
  }
}

/* ========== PRINT STYLES ========== */
@media print {
  .navbar,
  .whatsapp-float,
  .back-to-top,
  .sticky-cta,
  .preloader,
  .hero-controls,
  .scroll-indicator,
  .booking-section,
  .cta-section,
  .lightbox {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 50px 0;
  }

  .hero-overlay {
    background: rgba(255, 255, 255, 0.9);
  }

  .hero-title,
  .hero-subtitle {
    color: var(--scot-dark);
  }

  .section {
    padding: 30px 0;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  a {
    text-decoration: underline;
  }

  .day-details {
    display: block !important;
  }
}

/* ========== SELECTION STYLES ========== */
::selection {
  background: var(--scot-primary);
  color: var(--scot-white);
}

::-moz-selection {
  background: var(--scot-primary);
  color: var(--scot-white);
}

/* ========== SCROLLBAR STYLES ========== */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--scot-gray-200);
}

::-webkit-scrollbar-thumb {
  background: var(--scot-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--scot-primary-dark);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--scot-primary) var(--scot-gray-200);
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pt-4 { padding-top: 40px; }
.pt-5 { padding-top: 50px; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }
.pb-4 { padding-bottom: 40px; }
.pb-5 { padding-bottom: 50px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }

.overflow-hidden { overflow: hidden; }

.rounded { border-radius: var(--scot-radius-md); }
.rounded-lg { border-radius: var(--scot-radius-lg); }
.rounded-full { border-radius: var(--scot-radius-full); }

.shadow-sm { box-shadow: var(--scot-shadow-sm); }
.shadow-md { box-shadow: var(--scot-shadow-md); }
.shadow-lg { box-shadow: var(--scot-shadow-lg); }

.bg-white { background-color: var(--scot-white); }
.bg-gray-100 { background-color: var(--scot-gray-100); }
.bg-dark { background-color: var(--scot-dark); }
.bg-primary { background-color: var(--scot-primary); }

.text-white { color: var(--scot-white); }
.text-dark { color: var(--scot-dark); }
.text-primary { color: var(--scot-primary); }
.text-accent { color: var(--scot-accent); }
.text-muted { color: var(--scot-gray-600); }

/* ========== END OF STYLES ========== */