/* ==========================================================================
   BOOTJE UTRECHT - REFACTORED STYLES (MAINTAINING ALL FUNCTIONALITY)
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS & VARIABLES
   ========================================================================== */
:root {
  /* Color Palette */
  --color-primary: #003366;
  --color-primary-dark: #00254d;
  --color-primary-light: #e7f5ff;
  --color-accent: #ff6600;
  --color-accent-dark: #e65c00;
  --color-white: #ffffff;
  --color-background: #f0f8ff;
  --color-light-blue: #e7f5ff;
  --color-light-gray: #f8f9fa;
  --color-border: #cccccc;
  --color-text: #333;
  --color-secondary: #6c757d;
  --color-success: #28a745;
  --color-danger: #dc3545;
  --color-info: #007bff;
  --color-info-dark: #0056b3;

  /* Typography */
  --font-heading: 'Merriweather', serif;
  --font-body: 'Open Sans', sans-serif;
  
  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  
  /* Layout */
  --content-width: 1200px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  
  /* Effects */
  --shadow-light: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease;
}

/* ==========================================================================
   2. BASE STYLES & RESETS
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--color-background);
  color: var(--color-text);
  line-height: 1.5;
}

/* ==========================================================================
   3. UTILITY CLASSES
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.error-message {
  color: var(--color-danger);
  font-size: 0.7em;
  margin-top: 3px;
  display: none;
}

.checkmark {
  color: var(--color-success);
  margin-left: var(--space-xs);
}

.separator {
  border-bottom: 1px solid #eeeeee;
  margin: 6px 0;
}

.coupon-success { border-color: var(--color-success); }
.coupon-error { border-color: var(--color-danger); }

.loading::after {
  content: '';
  border: 2px solid var(--color-info);
  border-top: 2px solid transparent;
  border-radius: 50%;
  width: var(--space-md);
  height: var(--space-md);
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-left: var(--space-sm);
}

/* ==========================================================================
   4. LAYOUT COMPONENTS
   ========================================================================== */

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-primary);
  box-shadow: var(--shadow-light);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  max-width: var(--content-width);
  margin: 0 auto;
  position: relative;
}

.logo img {
  height: 40px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}

.nav-links a {
  color: var(--color-white);
  text-decoration: none;
  transition: color var(--transition-normal);
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
}

.nav-links a:hover {
  color: var(--color-accent);
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-toggle .fas {
  font-size: 0.8em;
  transition: transform 0.3s ease;
  color: var(--color-white);
}

.dropdown.active .dropdown-toggle .fas {
  transform: rotate(180deg);
}

.dropdown-content {
  position: absolute;
  background: var(--color-primary-dark);
  min-width: 200px;
  box-shadow: var(--shadow-medium);
  border-radius: var(--border-radius-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  top: 100%;
  left: 0;
}

.dropdown.active .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--color-white);
  text-decoration: none;
  transition: background 0.3s ease;
  border-radius: 0;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: rgba(255,255,255,0.1);
}

/* Book Now Button */
.book-now-btn {
  margin-left: var(--space-md);
}

.book-now-link {
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.book-now-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 4px;
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background: var(--color-white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Backdrop */
.nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

.nav-backdrop.active {
  display: block;
}

/* ==========================================================================
   5. CONTENT SECTIONS
   ========================================================================== */
.content-section {
  max-width: var(--content-width);
  margin: 40px auto;
  padding: 50px 40px;
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

@media (hover: hover) {
  .content-section:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
  }
}

/* ==========================================================================
   6. HERO CAROUSEL
   ========================================================================== */
.hero {
  max-width: 100%;
  padding: 0 !important;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-heavy);
}

.carousel-inner {
  display: flex;
  transition: transform var(--transition-slow);
}

.carousel-item {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  opacity: 1;
}

.carousel-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-item figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--color-white);
  font-size: 14px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-white);
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  font-size: var(--space-lg);
  z-index: 10;
  border-radius: 50%;
  transition: background var(--transition-normal);
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.9);
}

.carousel-prev { left: 15px; }
.carousel-next { right: 15px; }

.carousel-dots {
  display: none;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.carousel-dots .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: background var(--transition-normal);
}

.carousel-dots .dot.active {
  background: var(--color-accent);
}

/* Desktop carousel views */
@media (min-width: 768px) {
  .carousel-item {
    flex-basis: 50%;
    min-width: 50%;
  }
}

@media (min-width: 1200px) {
  .carousel-item {
    flex-basis: 25%;
    min-width: 25%;
  }
}

/* Responsive video and image adjustments */
@media (max-width: 768px) {
    .carousel-image-wrapper,
    .carousel-video-wrapper {
        aspect-ratio: 4 / 5;
    }
}

/* ==========================================================================
   CAROUSEL VIDEO STYLES
   ========================================================================== */
.carousel-video-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    position: relative;
    background: #000;
}

.carousel-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Ensure video items work with carousel transitions */
.carousel-item .carousel-video-wrapper {
    opacity: 1;
    transition: opacity var(--transition-normal);
}

.carousel-item:not(.active) .carousel-video-wrapper {
    opacity: 0.7;
}

/* Responsive video adjustments */
@media (max-width: 768px) {
    .carousel-video-wrapper {
        aspect-ratio: 4 / 5;
    }
}
/* ==========================================================================
   7. BOOKING SYSTEM (POLISHED & RESPONSIVE FIX)
   ========================================================================== */
/* ==========================================================================


/* ==========================================================================
   7. BOOKING SYSTEM (BOOKING.COM STYLE COMPACT BAR)
   ========================================================================== */
:root {
    --radius-card: 8px; /* Slightly tighter radius */
    --radius-input: 6px;
    --color-bg-input: #f8f9fa;
    --shadow-card: 0 2px 10px rgba(0,0,0,0.08);
}

.booking-wrapper {
    max-width: 1100px; /* Tighter max-width */
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
    position: relative;
}

/* PROGRESS INDICATOR - COMPACT */
.booking-steps { display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.step { display: flex; align-items: center; gap: 8px; opacity: 0.5; transition: opacity 0.3s ease; }
.step.active { opacity: 1; }
.step-num { background: var(--color-primary); color: white; width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8em; font-weight: 800; }
.step-text { font-weight: 700; color: var(--color-primary); font-size: 0.9em; }
.step-line { height: 1px; background: #e0e0e0; width: 40px; margin: 0 15px; }

/* --- STEP 1 LAYOUT: FLEXBOX MASTER --- */
.step1-layout {
    display: flex;
    flex-direction: column; /* Mobile Default: Stacked */
    gap: 10px; /* Tighter gap */
    margin-bottom: 25px;
    background: #fff;
    padding: 5px; /* Slight padding container */
    border-radius: var(--radius-card);
}

/* Desktop & Tablet: Single Row */
@media (min-width: 768px) {
    .step1-layout {
        flex-direction: row; /* Horizontal */
        align-items: stretch;
        background: transparent; /* Remove container bg on desktop */
        padding: 0;
    }
    
    .input-card {
        flex: 2; /* Inputs take up 2x space */
        width: auto;
    }
    
    .action-btn {
        flex: 1; /* Button takes up 1x space */
        max-width: 180px; /* HARD LIMIT on button width */
        width: auto;
        padding: 0 10px;
    }
}

/* CONTROL CARDS */
.input-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: var(--radius-card);
    padding: 8px 15px; /* Reduced padding */
    position: relative;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 70px; /* Consistent height */
}

.control-row { display: flex; flex-direction:row; align-items: center; flex-wrap: wrap; }
.control-row:hover { border-color: var(--color-info); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }

.card-label.full-width {
    width: 100%;
    display: block;
    font-size: 0.7em;
    text-transform: uppercase;
    color: var(--color-secondary);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px; /* Tighter */
    padding-left: 0;
}

.adjust-btn {
    width: 32px; /* Smaller buttons */
    height: 32px;
    border-radius: 50%;
    border: 1px solid #eee;
    background: var(--color-bg-input);
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.9em;
    flex-shrink: 0;
}
.adjust-btn:hover:not(:disabled) { background: var(--color-primary); color: white; border-color: var(--color-primary); transform: scale(1.05); }
.adjust-btn:disabled { opacity: 0.3; cursor: not-allowed; background: #f0f0f0; }

.center-display {
    flex: 1;
    text-align: center;
    cursor: pointer;
    position: relative;
    padding: 0 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.big-day { display: block; font-size: 1.1em; font-weight: 800; color: var(--color-primary); line-height: 1.1; white-space: nowrap; }
.sub-date { 
    display: block; 
    font-size: 0.8em; 
    color: var(--color-secondary); 
    margin-top: 1px;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    max-width: 150px; 
    margin-left: auto; 
    margin-right: auto; 
}
.hidden-select { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; z-index: 10; }

/* ACTION BUTTON */
.action-btn {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: white;
    border: none;
    border-radius: var(--radius-card); 
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(255, 102, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    width: 100%;
    min-height: 70px; /* Match input card height */
    
    display: flex;
    align-items: center;
    justify-content: center;
}
.action-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3); }

/* CUSTOM CALENDAR */
.custom-calendar {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    min-width: 280px;
    background: white;
    border-radius: var(--radius-card);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 15px;
    z-index: 1000;
    border: 1px solid #eee;
    animation: fadeInUp 0.2s ease-out;
}
.calendar-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.month-year { font-weight: 800; color: var(--color-primary); font-size: 1em; }
.nav-btn { background: var(--color-bg-input); border: none; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; color: var(--color-primary); display: flex; align-items: center; justify-content: center; }
.nav-btn:hover { background: #e0e0e0; }
.week-days { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 8px; }
.week-days div { text-align: center; font-size: 0.7em; color: #999; font-weight: 700; text-transform: uppercase; }
.days-grid { display: grid; grid-template-columns: repeat(7, 1fr); row-gap: 2px; }
.calendar-day { height: 36px; display: flex; align-items: center; justify-content: center; font-size: 0.9em; border-radius: 50%; cursor: pointer; margin: 0 1px; font-weight: 600; color: var(--color-text); }
.calendar-day:hover:not(.disabled) { background: var(--color-light-blue); color: var(--color-primary); }
.calendar-day.selected { background: var(--color-accent); color: white; }
.calendar-day.disabled { color: #ccc; cursor: not-allowed; text-decoration: line-through; font-weight: 400; }
.calendar-day.fully-booked { color: #aaa; position: relative; }
.calendar-day.fully-booked::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--color-danger); }
.calendar-day.limited-avail { position: relative; }
.calendar-day.limited-avail::after { content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); }

/* RESULTS SECTION */
.results-container { margin-top: 25px; padding-top: 15px; border-top: 1px solid #eee; }
.results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.icon-btn { background: none; border: none; font-size: 1.2em; cursor: pointer; color: var(--color-secondary); padding: 5px; }

/* Slot Grid */
.slots-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 600px) {
    .slots-grid { grid-template-columns: 1fr; } 
}

@media (min-width: 1024px) {
    .slots-grid { grid-template-columns: repeat(3, 1fr); }
}

.slot-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: var(--radius-input);
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    align-items: center;
}

.slot-card:hover { border-color: var(--color-accent); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.slot-time { font-weight: 800; color: var(--color-primary); font-size: 1em; margin: 0; }
.slot-price { font-size: 0.95em; color: var(--color-success); font-weight: 700; text-align: right; }
.slot-price del { color: #aaa; font-weight: 400; font-size: 0.85em; margin-right: 6px; }

/* CONFIRM DETAILS */
.back-link { background: none; border: none; color: var(--color-secondary); cursor: pointer; margin-bottom: 15px; font-weight: 600; display: flex; align-items: center; gap: 8px; font-size: 0.9em; padding: 0; }
.summary-card { background: var(--color-light-blue); padding: 20px; border-radius: var(--radius-card); margin-bottom: 25px; border: 1px solid #d1e8ff; }
.price-summary-row { display: flex; align-items: baseline; gap: 10px; margin-top: 10px; }
.summary-total { font-size: 1.2em; font-weight: 800; color: var(--color-primary); }
.summary-strike { text-decoration: line-through; color: #888; font-size: 0.9em; }
.discount-badge { background: var(--color-success); color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.75em; font-weight: 700; }
.helper-text { font-size: 0.7em; color: var(--color-secondary); margin-top: 3px; display: block; font-style: italic; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }
.input-group { display: flex; flex-direction: column; }
.input-group.full-width { grid-column: 1 / -1; }
.input-group label { font-size: 0.85em; font-weight: 700; margin-bottom: 6px; color: var(--color-text); }
.input-group input, .input-group textarea { padding: 10px 12px; border: 1px solid #ccc; border-radius: var(--radius-input); font-family: inherit; font-size: 0.95em; background: white; }
.input-group input:focus { border-color: var(--color-info); outline: none; }
.coupon-wrapper { display: flex; gap: 10px; }
.coupon-wrapper input { flex: 1; text-transform: uppercase; font-weight: 700; }
.coupon-wrapper button { background: var(--color-primary); color: white; border: none; border-radius: var(--radius-input); padding: 0 15px; cursor: pointer; font-weight: 600; }
.payment-section-spacer { margin-top: 25px; margin-bottom: 15px; border-top: 1px dashed #eee; }
.payment-selection { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
.radio-box { border: 2px solid #ddd; border-radius: var(--radius-card); padding: 12px; cursor: pointer; display: flex; align-items: flex-start; gap: 10px; background: white; }
.radio-box.selected { border-color: var(--color-info); background: #f0f8ff; }
.radio-box input { margin-top: 4px; accent-color: var(--color-info); }
.radio-content { display: flex; flex-direction: column; width: 100%; }
.radio-head { font-weight: 700; color: var(--color-primary); margin-bottom: 2px; font-size: 0.95em; }
.radio-price { font-weight: 700; color: var(--color-success); font-size: 1.05em; }
.radio-sub { font-size: 0.7em; color: var(--color-secondary); margin-top: 2px; display: block; }
.policy-box { background: #f9f9f9; border-left: 4px solid var(--color-success); padding: 12px; margin-bottom: 20px; font-size: 0.85em; color: var(--color-text); border-radius: 0 var(--radius-input) var(--radius-input) 0; line-height: 1.5; }
.policy-box strong { color: var(--color-primary); }
.policy-box a { color: var(--color-info); text-decoration: underline; }
.submit-btn { width: 100%; background: var(--color-success); color: white; padding: 15px; border: none; border-radius: 50px; font-size: 1.1em; font-weight: 700; cursor: pointer; box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3); transition: transform 0.2s; }
.submit-btn:hover { background: #218838; transform: translateY(-2px); }
.secure-note { font-size: 0.8em; color: var(--color-secondary); margin-top: 15px; display: flex; justify-content: center; align-items: center; gap: 8px; }
.gdpr-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8em; color: #155724; background: #d4edda; padding: 6px 15px; border-radius: 50px; margin-bottom: 15px; font-weight: 600; }
.hidden { display: none !important; }
.error-msg { color: var(--color-danger); font-size: 0.85em; margin-top: 5px; font-weight: 600; }

/* Last Minute Warning Box */
.urgent-warning {
    background-color: #fff8e1;
    border: 1px solid #ffe58f;
    border-left: 5px solid #ffc107;
    color: #856404;
    padding: 16px 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    font-size: 0.95em;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.15);
    animation: fadeIn 0.3s ease-out;
}
.urgent-warning i { font-size: 1.6em; color: #ffb300; flex-shrink: 0; }
.urgent-warning div { line-height: 1.5; }
.urgent-warning strong { display: block; color: #5d4037; font-size: 1.1em; font-weight: 800; margin-bottom: 4px; }
.urgent-warning a { color: #b00020; text-decoration: underline; font-weight: 700; transition: color 0.2s; }
.urgent-warning a:hover { color: #790000; text-decoration: none; }



/* ==========================================================================
   9. PRICING COMPONENTS (REBUILT)
   ========================================================================== */
#pricing h2 { font-size: 2em; margin-bottom: 10px; text-align: center; }
.pricing-subtitle { color: var(--color-secondary); margin-bottom: 40px; font-weight: 600; text-align: center; max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.6; }

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--color-white);
    border: 1px solid #e0eaf3;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-normal);
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    text-align: center;
}

.pricing-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); }

/* Header styling */
.pricing-card .card-header {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 20px;
}

.pricing-card .card-header h3 {
    font-family: var(--font-body);
    font-size: 1.2em;
    font-weight: 700;
    margin: 0;
}

.pricing-card.popular .card-header {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
}

.pricing-card.popular {
    border: 2px solid var(--color-accent);
    transform: scale(1.02);
}

.pricing-card .card-body { padding: 30px; }

/* Price Styling with Strikethrough */
.pricing-card .price-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 5px;
}

.pricing-card .old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.5em;
    font-weight: 600;
}

.pricing-card .price {
    font-size: 3.5em;
    font-weight: 800;
    color: var(--color-primary-dark);
}

.pricing-card .duration {
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.9em;
    letter-spacing: 1px;
}

.pricing-card .extra-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.pricing-card .extra-hour {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.pricing-card .example {
    font-size: 0.9em;
    color: var(--color-secondary);
    font-style: italic;
}

.early-bird-note {
    margin-top: 40px;
    background-color: var(--color-light-blue);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--color-primary-dark);
    text-align: center;
    display: table;
    margin-left: auto;
    margin-right: auto;
}
.early-bird-note i { color: var(--color-accent); margin-right: 8px; }

/* ==========================================================================
   8. TILES SYSTEM
   ========================================================================== */
   /* ==========================================================================
   8. TILES SYSTEM
   ========================================================================== */
   /* ==========================================================================
   8. TILES SYSTEM
   ========================================================================== */


  /* ==========================================================================
   8. TILES SYSTEM (REFINED)
   ========================================================================== */
.tiles-section {
  margin-bottom: 60px;
}

.tiles-section:last-child {
  margin-bottom: 0;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: 1.6em;
  margin-bottom: 30px;
  padding-left: 15px;
  border-left: 5px solid var(--color-accent);
  color: var(--color-primary);
}

.tiles-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Container for keyboard focus visibility */
.tile-container { 
  display: block; 
  outline: none;
  cursor: pointer;
  height: 100%;
}

.tile-container:focus .tile {
  box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.3), var(--shadow-medium);
  transform: translateY(-5px);
}

.tile {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-light);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.tile:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.tile-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 60%; /* Aspect ratio 5:3 */
  overflow: hidden;
  background-color: var(--color-light-gray);
}

.tile img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tile:hover img {
  transform: scale(1.08);
}

.tile-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tile h4 {
  font-family: var(--font-heading);
  font-size: 1.25em;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.tile p {
  font-size: 0.95em;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1; /* Pushes footer down */
}

.tile-footer {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  text-align: right;
}

.expand-btn {
  font-size: 0.9em;
  font-weight: 700;
  color: var(--color-accent);
  transition: color var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.expand-btn i {
  font-size: 0.8em;
}

.tile:hover .expand-btn {
  color: var(--color-accent-dark);
}


/* ==========================================================================
   10. FAQ SYSTEM - 
   ========================================================================== */

.faq-container h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
}

.faq-subtitle {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.faq-category {
  background: var(--color-white);
  padding: 25px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
}

.faq-category h3 {
  font-family: var(--font-heading);
  font-size: 1.3em;
  color: var(--color-primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-accent);
  text-align: center;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  margin-bottom: 15px;
  box-shadow: var(--shadow-light);
  overflow: hidden;
  transition: box-shadow var(--transition-normal);
  border-bottom: none;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  box-shadow: var(--shadow-medium);
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 20px;
  font-size: 1.1em;
  font-weight: 600;
  color: var(--color-primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color var(--transition-normal);
}

.faq-question:hover {
  background-color: var(--color-light-gray);
}

.faq-toggle {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--color-info);
  transition: transform var(--transition-normal);
  margin-left: 15px;
  flex-shrink: 0;
}

/* FAQ Answer - SEO Optimized Approach */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  padding-bottom: 20px;
  line-height: 1.6;
  margin: 0;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px 20px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--color-info-dark);
}

/* Ensure content is always accessible to crawlers */
.faq-answer {
  display: block !important;
}

/* Hide from visual users but keep accessible to crawlers */
@media screen and (min-width: 1px) {
  .faq-item:not(.active) .faq-answer {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
  .faq-item.active .faq-answer {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
  }
}

/* ==========================================================================
   11. CONFIRMATION FORM
   ========================================================================== */
.confirm-form {
  margin-top: 20px;
  background: var(--color-white);
  padding: var(--space-sm);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-light);
}

.confirm-form h3 {
  font-size: 1em;
  margin-bottom: var(--space-xs);
}

.confirm-form #booking-summary { margin-bottom: 15px; }
.confirm-form div { margin-bottom: 10px; }

.confirm-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.confirm-form input,
.confirm-form textarea {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
}

.confirm-form input:invalid {
  border-color: var(--color-danger);
}

.confirm-form button[type="submit"] {
  background: var(--color-info);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  font-size: 1em;
  border: none;
  cursor: pointer;
  font-weight: bold;
  width: 100%;
  max-width: 300px;
  transition: background var(--transition-normal);
}

.confirm-form button[type="submit"]:hover { background: var(--color-info-dark); }

.confirm-form #back-btn {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  font-size: 1em;
  border: none;
  cursor: pointer;
  font-weight: bold;
  margin-right: 10px;
  width: 100%;
  max-width: 100px;
  transition: background var(--transition-normal);
}

.confirm-form #back-btn:hover { background: #5a6268; }

.checkbox-container,
.radio-container {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5px;
  gap: 5px;
  flex-wrap: nowrap;
}

.checkbox-container input[type="checkbox"],
.radio-container input[type="radio"] {
  width: var(--space-md);
  height: var(--space-md);
  flex-shrink: 0;
  margin: 2px 0 0 0;
}

.checkbox-container label,
.radio-container label {
  font-weight: normal;
  margin: 0;
  font-size: 0.9em;
  line-height: 1.2;
  align-self: center;
}

.payment-options { display: flex; flex-direction: column; gap: 5px; }

.terms-checkbox a {
  color: var(--color-info-dark);
  text-decoration: underline;
}

.terms-checkbox a:hover { color: var(--color-primary); }

.terms-error {
  color: var(--color-danger);
  font-size: 0.7em;
  margin-top: 3px;
  display: none;
}

.security-note {
  font-size: 0.7em;
  color: var(--color-secondary);
  margin-top: 10px;
  text-align: center;
}

/* ==========================================================================
   12. MODAL SYSTEM
   ========================================================================== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow: auto;
}

.modal-content {
  background-color: var(--color-white);
  margin: 5% auto;
  padding: 20px;
  border-radius: var(--border-radius-lg);
  width: 80%;
  max-width: 800px;
  box-shadow: var(--shadow-heavy);
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: var(--space-lg);
  color: var(--color-text);
  cursor: pointer;
}

.modal-body { padding-top: 30px; }

.modal-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5em;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.modal-body p {
  font-size: 1.1em;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 15px;
}

.modal-body img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--border-radius-lg);
  margin: 15px auto;
  display: block;
}

/* ==========================================================================
   13. FOOTER & CONTACT
   ========================================================================== */
.site-footer {
  background-color: #003366;
  color: #e0eaf3;
  padding: 40px 25px 20px;
  font-size: 0.9em;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  max-height: 35px;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.85em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.footer-socials a {
  background-color: rgba(255, 255, 255, 0.1);
  height: 38px;
  width: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  background-color: #ff6600;
  transform: translateY(-2px);
}

.footer-socials svg {
  height: 18px;
  width: 18px;
  fill: #ffffff;
}

.footer-heading {
  font-family: 'Merriweather', serif;
  font-size: 1.1em;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-links, .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li, .footer-contact li {
  margin-bottom: 10px;
}

.footer-links a, .footer-contact a, .footer-contact span {
  color: #e0eaf3;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover, .footer-contact a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-contact li i {
  color: #ff6600;
  margin-right: 12px;
  width: 18px;
  text-align: center;
}

.footer-bottom-bar {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8em;
  color: rgba(255, 255, 255, 0.6);
}

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  margin-left: 15px;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: #ffffff;
}

/* ==========================================================================
   14. WHATSAPP WIDGET
   ========================================================================== */
@keyframes slideInUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.whatsapp-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #003366;
  border-radius: 50px;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  animation: slideInUp 0.5s ease-out forwards;
}

.whatsapp-popup:hover {
  transform: scale(1.05);
}

.whatsapp-popup-profile-pic {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid white;
}

.whatsapp-popup-text {
  color: white;
  font-weight: 600;
  font-size: 0.9em;
  line-height: 1.3;
}

.whatsapp-popup-button {
  background-color: white;
  color: #25D366;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 50px;
  margin-left: 8px;
  font-size: 0.9em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.whatsapp-popup-button i {
  font-size: 1.2em;
}

.whatsapp-bubble {
  position: absolute;
  bottom: 100%;
  right: 0;
  margin-bottom: 10px;
  background-color: white;
  padding: 10px 15px;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  width: max-content;
  color: #333;
  font-size: 0.95em;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
}

.whatsapp-bubble::after {
  content: '';
  position: absolute;
  bottom: -5px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}

.whatsapp-bubble.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ==========================================================================
   15. ANIMATIONS & RESPONSIVE
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   16. RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 768px) {
  .content-section {
    padding: 40px 20px;
    margin: 20px auto;
    border-radius: var(--border-radius-md);
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background: var(--color-primary);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
    transition: left 0.3s ease;
    z-index: 999;
    box-shadow: 2px 0 10px rgba(0,0,0,0.3);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    text-align: left;
    width: 100%;
    gap: 0;
    padding: 0 20px;
  }

  .nav-links a {
    display: block;
    padding: 18px 15px;
    font-size: 1.1em;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
  }

  .nav-links a:hover {
    background: rgba(255,255,255,0.1);
    padding-left: 20px;
  }

  .dropdown-content {
    position: static;
    background: rgba(0,0,0,0.2);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: 100%;
    border-radius: 0;
    margin-top: 0;
  }

  .dropdown.active .dropdown-content {
    max-height: 400px;
  }

  .dropdown-content a {
    padding: 15px 25px;
    font-size: 1em;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .book-now-btn {
    margin: 30px 20px 20px;
    width: calc(100% - 40px);
    text-align: center;
  }

  .book-now-link {
    display: block;
    text-align: center;
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .nav-backdrop.active {
    display: block;
  }

  .form-row { flex-direction: column; }
  .form-group { margin-bottom: var(--space-sm); }
  
  #show-availability-btn {
    padding: 10px 14px;
    font-size: 1em;
  }
  
  .custom-calendar {
    min-width: 280px;
    left: 0;
  }
  
  .calendar-months {
    flex-direction: column;
    gap: var(--space-sm);
  }

  #availability-results .slot-card {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: var(--space-sm);
    gap: var(--space-sm);
  }
  #availability-results .slots-grid { flex-direction: column; }
  

  .carousel-arrow {
    padding: 10px 14px;
    font-size: 20px;
  }
  
  .tiles-wrapper,
  .faq-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
    
  .faq-question {
    padding: 15px;
    font-size: 0.95em;
    font-weight: bold;
  }
  
  .faq-answer {
    padding: 0 15px;
  }

  .location-wrapper {
    flex-direction: column;
  }
  .location-info {
    max-width: 100%;
    text-align: center;
  }
  .location-info h2 {
    text-align: center;
  }
  .location-buttons {
    justify-content: center;
  }
  .location-map {
    width: 100%;
    height: 300px;
  }

  .modal-content {
    width: 90%;
    margin: 10% auto;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-column { min-width: 100%; }
  .footer-socials { justify-content: center; }
  .footer-contact, .footer-links { display: inline-block; text-align: left; }
  .legal-links a { margin: 0 7px; }

  .confirm-form button[type="submit"],
  .confirm-form #back-btn {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info {
    text-align: center;
  }

  .quick-contact-buttons {
    justify-content: center;
  }

  .platform-logos-compact .logos {
    gap: var(--space-md); /* Reduces gap from lg to md (16px) to prevent overflow on very narrow screens */
  }
}

@media (min-width: 1200px) {
  .tiles-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ==========================================================================
   13. CONTACT SECTION
   ========================================================================== */
.contact-wrapper {
    display: flex;
    gap: var(--space-lg);
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    text-align: left;
    margin-bottom: var(--space-sm);
    font-size: 1.8em;
}

.contact-subtitle {
    color: var(--color-secondary);
    margin-bottom: var(--space-lg);
    font-size: 1em;
}

.contact-details {
    margin-bottom: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    padding: 12px 15px;
    background: var(--color-light-gray);
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-normal);
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.3em;
    color: var(--color-accent);
    min-width: 25px;
    text-align: center;
}

.contact-item h3 {
    margin-bottom: 2px;
    font-size: 1em;
    color: var(--color-primary);
}

.contact-item p {
    margin: 0;
    font-weight: 600;
    font-size: 0.95em;
}

.contact-item a {
    color: var(--color-info);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.contact-item a:hover {
    color: var(--color-info-dark);
}

.contact-item small {
    color: var(--color-secondary);
    font-size: 0.8em;
    display: block;
    margin-top: 2px;
}

/* Main Book Now Button */
.book-now-btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: white;
    padding: 14px 25px;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: all var(--transition-normal);
    margin-bottom: var(--space-md);
    text-align: center;
}

.book-now-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.3);
}

.quick-contact-buttons {
    display: flex;
    gap: var(--space-sm);
}

.whatsapp-btn, .call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: all var(--transition-normal);
    flex: 1;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-1px);
}

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

.call-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

/* Visual Side */
.contact-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.boat-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.boat-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.boat-image:hover img {
    transform: scale(1.05);
}

.trust-badges {
    display: flex;
    justify-content: space-between;
    gap: var(--space-sm);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: var(--color-light-blue);
    border-radius: var(--border-radius-sm);
    font-size: 0.85em;
    font-weight: 600;
    color: var(--color-primary);
    flex: 1;
    justify-content: center;
}

.trust-badge i {
    color: var(--color-accent);
}

.platform-logos-compact {
    text-align: center;
    padding: 12px;
    background: var(--color-light-gray);
    border-radius: var(--border-radius-md);
}

.platform-logos-compact span {
    display: block;
    font-size: 0.9em;
    color: var(--color-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.platform-logos-compact .logos {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
}

.platform-logos-compact img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: transform var(--transition-normal);
    opacity: 0.8;
}

.platform-logos-compact img:hover {
    transform: scale(1.2);
    opacity: 1;
}

/* ==========================================================================
   14. LOCATION SECTION  
   ========================================================================== */
.location-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.location-info {
    flex: 1;
    max-width: 450px;
}

.location-info h2 {
    text-align: left;
    margin-bottom: var(--space-md);
}

.location-address {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--color-primary-dark);
}

.location-info ul {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.location-info ul li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.location-info ul li i {
    color: var(--color-accent);
    font-size: 1.2em;
    width: 20px;
    text-align: center;
}

.location-buttons {
    display: flex;
    gap: var(--space-md);
}

.location-btn-primary,
.location-btn-secondary {
    padding: 12px 25px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    border: 2px solid transparent;
}

.location-btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    text-decoration: none;
}

.location-btn-primary:hover {
    background: var(--color-accent-dark);
    transform: translateY(-2px);
}

.location-btn-secondary {
    background: var(--color-light-gray);
    color: var(--color-primary);
}

.location-btn-secondary:hover {
    background: var(--color-border);
}

.location-map {
    flex: 1.5;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-medium);
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   15. REVIEWS SECTION
   ========================================================================== */
.ratings {
    background-color: var(--color-white);
    padding: 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-heavy);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease forwards;
}

.ratings h2 {
    font-weight: 700;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.ratings p {
    font-size: 1.2em;
    line-height: 1.6;
    margin: 10px 0;
}

.rating {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.3em;
    transition: color var(--transition-normal);
}

.rating:hover { 
    color: var(--color-accent-dark); 
}

.trip-count {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.3em;
}

.logos-container {
    position: relative;
    height: 80px;
    overflow: hidden;
}

.logos-wrapper {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    animation: slide 30s linear infinite;
    width: 200%;
}

.logo {
    flex: 0 0 auto;
    margin: 0 25px;
    width: 60px;
    height: 60px;
    opacity: 0.85;
    transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo:hover {
    opacity: 1;
    transform: scale(1.15);
}

/* Reviews Section Carousel Styles */
.reviews-section {
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
  background: linear-gradient(135deg, var(--color-white), var(--color-light-blue));
  border-radius: var(--border-radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-medium);
}

.section-heading {
  margin-bottom: var(--space-xs);
}

.section-heading h2 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: var(--space-xs);
  font-size: 2em;
}

.ratings-summary {
  font-size: 1.1em;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
  text-decoration: none;
  display: inline-block;
  transition: color var(--transition-normal), transform var(--transition-normal);
  padding: var(--space-sm);
  border-radius: var(--border-radius-sm);
  background: rgba(255, 255, 255, 0.8);
}

.ratings-summary:hover {
  color: var(--color-info);
  transform: translateY(-1px);
}

.rating {
  color: var(--color-accent);
  font-size: 1.2em;
}

.reviews-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: var(--space-sm);
  border-radius: var(--border-radius-md);

}

.reviews-carousel .carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border-radius: var(--border-radius-md);
  background: var(--color-white);
  padding: 0 40px; /* Matches parent padding to ensure inner content shifts accordingly */
}

.reviews-carousel .carousel-inner {
  display: flex;
  transition: transform var(--transition-slow);
  height: 100%;
}


.reviews-carousel .carousel-item {
  flex: 0 0 100%;
  padding: var(--space-sm);
  box-sizing: border-box;
}

.review-card {
  background: linear-gradient(135deg, var(--color-white), var(--color-light-gray));
  border-radius: var(--border-radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-light);
  text-align: left;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: 1px solid var(--color-border);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-info));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.review-card:hover::before {
  opacity: 1;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-light-gray);
  padding-bottom: var(--space-sm);
}

.reviewer-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.reviewer-info strong {
  color: var(--color-primary);
  font-size: 1em;
  font-weight: 700;
}

.reviewer-title {
  font-size: 0.8em;
  color: var(--color-secondary);
  line-height: 1.3;
}

.review-rating {
  font-size: 1.1em;
  color: var(--color-accent);
  margin-top: -2px;
}

.review-text {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: var(--space-md);
  color: var(--color-text);
  flex-grow: 1;
  font-size: 0.95em;
}

.review-text small {
  color: var(--color-secondary);
  font-style: normal;
  font-size: 0.8em;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8em;
  color: var(--color-secondary);
  margin-top: auto;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-light-gray);
}

.review-link {
  color: var(--color-info);
  text-decoration: none;
  transition: color var(--transition-normal);
  font-size: 0.85em;
  font-weight: 600;
}

.review-link:hover {
  color: var(--color-info-dark);
  text-decoration: underline;
}

.reviews-carousel .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 1.2em;
  z-index: 10;
  border-radius: 50%;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-light);
}

.reviews-carousel .carousel-arrow:hover {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-medium);
}

.reviews-carousel .carousel-prev { 
  left: 0; /* Positions arrow at the very left edge of the padded area */
}
.reviews-carousel .carousel-next { 
  right: 0; /* Positions arrow at the very right edge of the padded area */
}

.reviews-cta {
  text-align: center;
  margin-top: var(--space-xs);
}

.reviews-cta .book-now-link {
  padding: var(--space-sm) var(--space-lg);
  font-size: 1em;
}

@media (min-width: 768px) {
  .reviews-carousel .carousel-item {
    flex: 0 0 33.333%;
  }

  .review-card {
    padding: var(--space-lg);
  }
}

@media (max-width: 767px) {
  .reviews-carousel .carousel-item {
    flex: 0 0 100%;
  }

  .reviews-carousel .carousel-arrow {
    padding: 10px 14px;
    font-size: 1em;
  }

  .section-heading h2 {
    font-size: 1.5em;
  }

  .reviewer-title {
    font-size: 0.75em;
  }

  .review-text {
    font-size: 0.9em;
  }
}


.language-switcher .dropdown-content {
    min-width: 180px;
}
.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
}
