/* ========================================================================
   CONSOLIDATED STYLESHEET - COMPLETE VERSION
   Purpose: All duplicate selectors merged, properties cascaded by last appearance
   Visual integrity preserved. Comments reorganized logically.
   ======================================================================== */

/* ---------------------------------------------------------------------
   --- CSS CUSTOM PROPERTIES (VARIABLES)
   ------------------------------------------------------------------ */
:root {
    /* Colors */
    --primary-color: #0071BB;
    --primary-dark: #005a94;
    --secondary-color: #003366;
    --accent-color: #266193;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --info-color: #2196f3;

    /* Legacy color variables for compatibility */
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --text-color: #333333;

    /* Text Colors */
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --text-white: #ffffff;

    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f5f5f5;
    --bg-dark: #003366;
    --bg-light: #f8fafc;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Typography */
    --font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --border-radius: 8px;
    /* Legacy compatibility */

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    /* Legacy */

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    --transition: all 0.3s ease;
    /* Legacy compatibility */

    /* Z-index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 10001;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

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

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    background-color: #ffffff !important;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 16px;
    background-color: #ffffff !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* ---------------------------------------------------------------------
   --- LAYOUT & CONTAINER
   ------------------------------------------------------------------ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------------------------------------------------------------------
   --- NAVIGATION & HEADER
   ------------------------------------------------------------------ */
.logo {
    height: 60px;
    width: auto;
    transition: var(--transition-normal);
}

.main-nav {
    background: var(--secondary-color);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    transition: var(--transition-normal);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: var(--font-size-2xl);
    cursor: pointer;
    color: var(--text-white);
    padding: var(--spacing-xs);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    z-index: var(--z-fixed);
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--primary-color);
    user-select: none;
    outline: none;
}

.mobile-menu-toggle:hover {
    background: var(--bg-secondary);
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    min-height: 200px;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    width: 100%;
}

.nav-menu a {
    display: block;
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--bg-secondary);
}

.language-switcher {
    position: relative;
    display: inline-block;
    margin-left: 20px;
    z-index: 100;
    cursor: pointer;
    align-items: center;
    gap: 0.5rem;
}

.current-lang {
    cursor: pointer;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
    user-select: none;
    color: white;
}

.current-lang:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.current-lang::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 5px;
}

.language-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block !important;
    pointer-events: auto;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.2s ease;
}

.lang-option:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.lang-option.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--bg-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    cursor: pointer;
    padding: 0;
    outline: none;
    position: relative;
}

.lang-btn.active,
.lang-btn:focus {
    border-color: var(--secondary-color);
    background: var(--primary-color);
    box-shadow: 0 4px 16px rgba(0, 113, 187, 0.10);
}

.lang-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.lang-btn:active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.flag-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 24px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.flag-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.cart-count {
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--radius-full);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    position: absolute;
    top: -8px;
    right: -8px;
    font-weight: 600;
}

/* ---------------------------------------------------------------------
   --- HERO SECTION
   ------------------------------------------------------------------ */
.hero {
    position: relative;
    min-height: 600px;
    background: url('../Images/Boats/zeilboot-4-5.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
    padding: var(--spacing-2xl) 0;
    text-align: center;
    height: auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.4) 0%, rgba(0, 113, 187, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    color: #ffffff;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    color: #ffffff;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
    color: #ffffff;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    width: 100%;
    flex-direction: row;
    text-align: left;
}

@media (max-width: 900px) {
    .hero-layout {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* ---------------------------------------------------------------------
   --- UNIFIED CARD STYLES - Consistent across all pages
   ------------------------------------------------------------------ */
.card,
.category-card,
.service-card,
.facility-card,
.contact-direct-card,
.jachthaven-info-card,
.map-section-card,
.boat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.card:hover,
.category-card:hover,
.service-card:hover,
.facility-card:hover,
.contact-direct-card:hover,
.jachthaven-info-card:hover,
.map-section-card:hover,
.boat-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

/* Icon styles for cards */
.card .icon,
.category-icon,
.service-icon,
.facility-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Title styles for cards */
.card h3,
.category-card h3,
.service-card h3,
.facility-card h3,
.contact-direct-card h3,
.jachthaven-info-card h3,
.map-section-card h3 {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Paragraph styles for cards */
.card p,
.category-card p,
.service-card p,
.facility-card p,
.contact-direct-card p,
.jachthaven-info-card p,
.map-section-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../Images/belterwijde.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.15) 0%, rgba(0, 113, 187, 0.1) 100%);
    z-index: 1;
}

.page-header>.container {
    position: relative;
    z-index: 2;
}

.page-header::after {
    content: '© Rudmer Zwerver';
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    z-index: 3;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    color: #ffffff;
}

/* ---------------------------------------------------------------------
   --- FORMS & INPUTS
   ------------------------------------------------------------------ */
.form-group {
    margin-bottom: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.booking-form-modern .form-group {
    margin-bottom: 0.75rem;
}

.booking-form-modern .form-group label {
    margin-bottom: 0.25rem;
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid #ddd;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    transition: var(--transition-normal);
    background: #ffffff;
    cursor: pointer;
    position: relative;
    z-index: 1;
    font-size: 1rem;
    padding: 0.85rem 1rem 0.85rem 2.5rem;
    border-radius: 0.75rem;
    border: 2px solid #e0e7ef;
    background: #f8fafc;
    box-shadow: none;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 113, 187, 0.1);
    background: #fff;
}

.booking-form-modern {
    background: #fff;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-xl);
    max-width: 480px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.form-header {
    text-align: center;
    margin-bottom: 1rem;
}

.booking-form-modern .form-header {
    margin-bottom: 0.75rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--primary-color);
    pointer-events: none;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.booking-form-modern .form-actions {
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.form-badge {
    margin-top: 0.5rem;
    text-align: center;
    font-size: 0.95rem;
    color: var(--success-color);
    background: #eafaf1;
    border-radius: 1rem;
    padding: 0.4rem 1.2rem;
}

.booking-form-modern .form-badge {
    margin-top: 0.25rem;
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
}

/* ---------------------------------------------------------------------
   --- BUTTONS
   ------------------------------------------------------------------ */
.btn {
    background: var(--primary-color);
    color: var(--text-white);
    padding: var(--spacing-md) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 2rem;
    font-size: 1rem;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-normal);
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(0);
}

.btn:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: #fff;
    border-radius: 2rem;
    font-size: 1rem;
    padding: 0.85rem 1.5rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

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

.btn-sm {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: var(--font-size-sm);
}

.btn-lg {
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: var(--font-size-lg);
}

/* ---------------------------------------------------------------------
   --- SECTIONS & CONTENT AREAS
   ------------------------------------------------------------------ */
.section {
    padding: var(--spacing-3xl) 0;
}

.section-title {
    text-align: center;
    font-size: var(--font-size-4xl);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-2xl);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

.intro-section {
    background: #ffffff !important;
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.intro-content h2 {
    font-size: var(--font-size-4xl);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-lg);
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-size: 2rem;
}

.intro-content p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: 1.1rem;
    color: var(--text-color);
}

.intro-features h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.features-list {
    list-style: none;
    margin: var(--spacing-lg) 0;
    margin-bottom: 30px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    color: #000000;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
    line-height: 1.5;
}

.features-list .icon {
    flex-shrink: 0;
    font-size: 1.3em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.features-list li span,
.features-list li strong,
.features-list li em {
    display: inline;
}

.features-list li:last-child {
    border-bottom: none;
}

.cta-box {
    background: var(--bg-primary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    color: #000000;
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 20px;
    box-shadow: var(--shadow);
}

.payment-note {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    margin-top: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* ---------------------------------------------------------------------
   --- BOATS SECTION
   ------------------------------------------------------------------ */
.boats-section {
    padding: 80px 0;
    background-color: #ffffff !important;
}

.boats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.boats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.boat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    margin: 0 var(--spacing-sm);
}

.boat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.boat-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.boat-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.boat-status.available {
    background: var(--success-color);
    color: white;
}

.boat-status.occupied {
    background: var(--error-color);
    color: white;
}

.boat-info {
    padding: 15px;
}

.boat-info h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.boat-capacity {
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.boat-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

/* ---------------------------------------------------------------------
   --- SERVICES SECTION
   ------------------------------------------------------------------ */
.services-section {
    background: var(--bg-secondary);
    padding: 80px 0;
    background: #f5f5f5 !important;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Service card specific overrides */
.service-card {
    min-height: 420px;
    justify-content: flex-start;
    align-items: stretch;
}

/* Service icon inherits from unified card icon styles */

.service-card h3 {
    font-size: var(--font-size-xl);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    text-align: center;
    flex-grow: 1;
}

.service-card .btn,
.service-card .btn-outline {
    margin-top: auto;
    align-self: center;
    display: inline-block;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* ---------------------------------------------------------------------
   --- MAP SECTION
   ------------------------------------------------------------------ */
.map-section {
    background-color: #ffffff !important;
    padding: 60px 0;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.map-frame {
    width: 100%;
    height: 400px;
    border: none;
}

/* ---------------------------------------------------------------------
   --- FOOTER
   ------------------------------------------------------------------ */
.footer {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 40px 0 20px;
}

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

@media (max-width: 768px) {
    .footer-grid {
        text-align: center;
    }
}

.footer-section h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    color: var(--text-white);
    margin-bottom: 15px;
    color: #90caf9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--text-white);
    opacity: 1;
    color: #90caf9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--spacing-lg);
    text-align: center;
    color: var(--text-light);
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ---------------------------------------------------------------------
   --- NOTIFICATIONS
   ------------------------------------------------------------------ */
.notification {
    position: fixed;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: var(--success-color);
    color: var(--text-white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: var(--z-tooltip);
    max-width: 400px;
    animation: slideInRight 0.3s ease;
    top: 20px;
    right: 20px;
    z-index: 1001;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #007bff;
    animation: slideIn 0.3s ease-out;
    right: var(--spacing-sm);
    left: var(--spacing-sm);
    max-width: none;
}

.notification-error {
    background: var(--error-color);
    border-left-color: #dc3545;
}

.notification-warning {
    background: var(--warning-color);
    border-left-color: #ffc107;
}

.notification-info {
    background: var(--info-color);
    border-left-color: #2196f3;
}

.notification-success {
    border-left-color: #28a745;
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    padding: 16px;
    align-items: center;
    justify-content: space-between;
}

.notification-message {
    flex: 1;
    margin-right: 12px;
    color: #333;
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: var(--font-size-lg);
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
    font-size: 18px;
    cursor: pointer;
    color: #666;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.2);
    background-color: #f0f0f0;
}

/* ---------------------------------------------------------------------
   --- MODALS
   ------------------------------------------------------------------ */
.modal,
.boat-modal,
.boat-info-modal {
    display: none;
    position: fixed;
    z-index: var(--z-modal);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

.modal.active,
.boat-modal.active,
.boat-info-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content,
.boat-modal-content {
    background-color: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 90%;
    max-height: 90%;
    width: 800px;
    overflow: hidden;
    animation: slideInUp 0.3s ease-out;
    width: 95%;
    max-height: 95%;
    overflow-y: auto;
    padding: var(--spacing-lg);
    position: relative;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.boat-info-content {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideInUp 0.3s ease-out;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--bg-secondary);
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: var(--spacing-md);
}

.modal-header h2 {
    margin: 0;
    color: var(--text-white);
    font-size: var(--font-size-2xl);
}

.modal-close {
    background: none;
    border: none;
    font-size: var(--font-size-3xl);
    color: var(--text-white);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Boat modal close button */
.boat-modal-close,
.boat-info-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.boat-modal-close:hover,
.boat-info-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--color-primary);
}

/* Boat Info Modal - More Information Section (Original Design) */
.boat-modal-header {
    display: flex;
    gap: 20px;
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.boat-modal-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.boat-modal-image.placeholder {
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
}

.boat-modal-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.boat-modal-title h2 {
    color: var(--secondary-color);
    margin: 0 0 10px 0;
}

.boat-modal-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 0 0 5px 0;
}

.boat-modal-capacity {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
}

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

.boat-modal-section {
    margin-bottom: 30px;
}

.boat-modal-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 15px;
}

.boat-modal-section-header h3 {
    margin: 0;
}

.boat-modal-section-body {
    display: block;
}

.boat-modal-section-close {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.boat-modal-section-close:hover {
    background: var(--bg-secondary);
}

.boat-modal-section-scroll {
    max-height: 60vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

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

.boat-modal-section h3 {
    color: var(--secondary-color);
    margin: 0 0 15px 0;
    font-size: 1.3rem;
}

.boat-modal-section p {
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
}

/* Kenmerken list with checkmark anchors */
.boat-modal-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.boat-modal-section li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-primary);
}

.boat-modal-section li:last-child {
    border-bottom: none;
}

.boat-modal-section li::before {
    content: "⚓";
    color: var(--primary-color);
    margin-right: 10px;
}

.boat-modal-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    padding: 20px 30px;
    border-top: 1px solid #eee;
}

.boat-modal-footer .btn {
    min-width: 120px;
    text-align: center;
}

.boat-modal-footer .btn-primary {
    background: var(--primary-color);
    color: white;
}

.boat-modal-footer .btn-primary:hover {
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .boat-modal-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .boat-modal-image {
        width: 100%;
        height: 200px;
    }

    .boat-modal-title {
        align-items: center;
    }

    .boat-modal-body {
        padding: 20px;
    }

    .boat-modal-footer {
        flex-direction: column;
        padding: 20px;
    }

    .boat-modal-footer .btn {
        width: 100%;
    }

    .boat-modal-section-scroll {
        max-height: 50vh;
    }

    .modal-content,
    .boat-modal-content,
    .boat-info-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    input,
    select,
    textarea,
    button {
        font-size: 16px;
    }

    .btn {
        min-height: 44px;
    }
}

.modal-body {
    padding: var(--spacing-lg);
    max-height: 60vh;
    overflow-y: auto;
    padding: var(--spacing-md);
    max-height: 70vh;
}

.modal-boats,
.modal-boats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.modal-boat-card {
    background-color: #ffffff;
    border: 1px solid var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    transition: var(--transition-normal);
    cursor: pointer;
    overflow: hidden;
}

.modal-boat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.modal-boat-card h4 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-lg);
}

.modal-boat-card .boat-capacity {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-sm);
}

.modal-boat-card .boat-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
}

.modal-boat-card .boat-status {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-boat-card .boat-status.available {
    background-color: var(--success-color);
    color: var(--text-white);
}

.modal-boat-card .boat-status.occupied {
    background-color: var(--error-color);
    color: var(--text-white);
}

.modal-boat-image,
.modal-boat-slideshow {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 220px;
    max-width: 350px;
    max-height: 350px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.modal-boat-image img,
.modal-boat-slideshow .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1 / 1;
    display: block;
    max-width: 350px;
    max-height: 350px;
    transition: none !important;
    transform: none !important;
}

/* Prevent scaling on hover for modal images */
.modal-boat-card:hover .modal-boat-image img,
.modal-boat-card:hover .modal-boat-slideshow .slide img {
    transform: none !important;
}

.modal-boat-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-boat-slideshow .slide.placeholder {
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-md);
}

.modal-boat-slideshow .slide.active {
    opacity: 1;
}

.modal-boat-slideshow .slideshow-controls {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    z-index: 10;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    bottom: 5px;
    padding: 0 5px;
}

.modal-boat-slideshow .slideshow-btn {
    position: static;
    transform: none;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 14px;
    transition: background 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    font-size: 12px;
}

.modal-boat-slideshow .slideshow-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.modal-boat-slideshow .slideshow-dots {
    position: static;
    transform: none;
    display: flex;
    gap: 4px;
    flex: 1;
    justify-content: center;
    margin: 0 10px;
}

.modal-boat-slideshow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
    width: 5px;
    height: 5px;
}

.modal-boat-slideshow .dot.active,
.modal-boat-slideshow .dot:hover {
    background: white;
}

/* Make category cards clickable */
.category-card {
    cursor: pointer;
    transition: var(--transition-normal);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ---------------------------------------------------------------------
   --- CHAT WIDGET
   ------------------------------------------------------------------ */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: var(--font-family);
    right: 15px;
    bottom: 15px;
}

.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
}

.chat-window {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    border: 1.5px solid rgba(200, 200, 200, 0.25);
    backdrop-filter: blur(12px) saturate(1.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1001;
    max-width: 95vw;
    max-height: 80vh;
    margin: 0;
    transform: none;
    transition: background 0.3s, box-shadow 0.3s;
}

@media (max-width: 768px) {
    .chat-window {
        width: 320px;
        right: 15px;
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .chat-window {
        width: 94vw;
        height: 70vh;
        right: 3vw;
        left: 3vw;
        bottom: 80px;
        max-width: 100vw;
        max-height: 80vh;
        border-radius: 10px;
    }

    .chat-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}

.chat-window.active {
    display: flex;
}

/* ---------------------------------------------------------------------
   --- NO BOATS MESSAGE
   ------------------------------------------------------------------ */
.no-boats-message {
    background: var(--light-gray);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.message-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.message-content p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.btn-call {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 15px;
    transition: var(--transition-fast);
}

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

.message-content p:last-child {
    margin-bottom: 0;
}

/* ---------------------------------------------------------------------
   --- ANIMATIONS & KEYFRAMES
   ------------------------------------------------------------------ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        transform: translate3d(0, -30px, 0);
    }

    70% {
        transform: translate3d(0, -15px, 0);
    }

    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ---------------------------------------------------------------------
   --- UTILITY CLASSES
   ------------------------------------------------------------------ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-light {
    color: var(--text-light);
}

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

.bg-primary {
    background-color: var(--bg-primary);
}

.bg-secondary {
    background-color: var(--bg-secondary);
}

.bg-dark {
    background-color: var(--bg-dark);
}

.rounded {
    border-radius: var(--radius-md);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-full {
    border-radius: var(--radius-full);
}

.shadow {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.inline {
    display: inline;
}

.inline-block {
    display: inline-block;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

/* ---------------------------------------------------------------------
   --- RESPONSIVE DESIGN - MEDIA QUERIES
   ------------------------------------------------------------------ */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .hero {
        min-height: 500px;
    }

    .intro-grid {
        gap: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 6px 0;
        font-size: 12px;
    }

    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 4px;
        justify-content: center;
        gap: 10px;
    }

    .contact-info {
        flex-direction: column;
        gap: 2px;
        white-space: normal;
        gap: 10px;
    }

    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: var(--primary-color);
        border: none;
        border-radius: var(--radius-md);
        color: white;
        cursor: pointer;
        transition: var(--transition-fast);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        position: relative;
        z-index: 1000;
        user-select: none;
        outline: none;
    }

    .mobile-menu-toggle:hover,
    .mobile-menu-toggle:focus {
        background: var(--primary-dark);
    }

    .mobile-menu-toggle:focus {
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    }

    .mobile-menu-toggle:active {
        background: var(--secondary-color);
        transform: scale(0.95);
    }

    .nav-menu .language-switcher {
        width: 100%;
        margin-left: 0;
    }

    .nav-menu .language-switcher .current-lang {
        width: 100%;
        justify-content: center;
        border: none;
        background: transparent;
        color: white;
    }

    .hero {
        min-height: auto;
        padding: var(--spacing-2xl) 0;
        text-align: center;
        background-attachment: scroll;
        height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-layout {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .intro-content h2 {
        font-size: var(--font-size-3xl);
    }

    .boats-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .notification {
        right: var(--spacing-sm);
        left: var(--spacing-sm);
        max-width: none;
    }

    .language-links {
        gap: 5px;
    }

    .lang-link {
        padding: 5px 8px;
        font-size: 12px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px;
    }

    .contact-call-section {
        padding: 20px;
    }

    .call-button {
        min-width: 250px;
        padding: 18px 25px;
    }

    .call-number {
        font-size: 1.3rem;
    }

    .contact-item {
        padding: 20px;
    }

    .nav-menu {
        display: none;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .camping-info,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }

    .pricing-row.header {
        display: none;
    }

    .boats-grid,
    .properties-grid,
    .services-grid,
    .berths-grid,
    .maintenance-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        width: 95%;
        max-height: 95%;
    }

    .modal-header {
        padding: var(--spacing-md);
    }

    .modal-body {
        padding: var(--spacing-md);
        max-height: 70vh;
    }

    .modal-boats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .modal-boat-slideshow {
        height: 250px;
    }

    .modal-boat-image {
        height: 250px;
    }

    .modal-boat-slideshow .slideshow-controls {
        bottom: 5px;
        padding: 0 5px;
    }

    .modal-boat-slideshow .slideshow-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .modal-boat-slideshow .dot {
        width: 5px;
        height: 5px;
    }

    .boat-card {
        border: 1.5px solid var(--primary-color);
        box-shadow: none;
    }

    .camping-image {
        width: 100%;
        max-width: 320px;
        margin: 0 auto 1.2rem auto;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 113, 187, 0.07);
        background: #f8fafc;
    }

    .camping-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 16px;
        display: block;
        max-height: 220px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
        padding: 0 15px;
    }

    .hero h1 {
        font-size: var(--font-size-3xl);
        font-size: 1.8rem;
    }

    .section {
        padding: var(--spacing-2xl) 0;
    }

    .section-title {
        font-size: var(--font-size-3xl);
    }

    .boat-card {
        margin: 0 var(--spacing-sm);
    }

    .service-card {
        padding: var(--spacing-lg);
    }

    .page-header {
        padding: 60px 0;
        min-height: 250px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    /* Extra small mobile adjustments for page header */
    @media (max-width: 480px) {
        .page-header {
            padding: 40px 0;
            min-height: 200px;
        }

        .page-header h1 {
            font-size: 1.6rem;
        }

        .page-header p {
            font-size: 1rem;
        }
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .category-card,
    .facility-card,
    .amenity-card,
    .service-card {
        padding: 20px;
    }

    .slideshow-container {
        height: 300px;
    }

    .slideshow-btn {
        padding: 10px 15px;
        font-size: 16px;
    }

    .slideshow-dots {
        bottom: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .chat-window {
        width: calc(100vw - 20px) !important;
        right: 10px !important;
        left: 10px !important;
        height: 60vh !important;
        bottom: 70px !important;
    }

    .chat-button {
        right: 10px;
        bottom: 10px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .intro-content h2 {
        font-size: 1.8rem;
    }

    .boats-section h2,
    .services-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .language-switcher {
        gap: 0.25rem;
    }

    .lang-btn {
        width: 32px;
        height: 32px;
    }

    .lang-btn .flag-icon {
        width: 18px;
        height: 18px;
    }
}

/* Hide mobile menu toggle on desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* ---------------------------------------------------------------------
   --- PRINT STYLES
   ------------------------------------------------------------------ */
@media print {

    .top-bar,
    .main-nav,
    .booking-form,
    .btn,
    .notification {
        display: none !important;
    }

    .hero {
        background: none;
        color: var(--text-primary);
        min-height: auto;
        padding: var(--spacing-lg) 0;
    }

    .hero h1 {
        color: var(--text-primary);
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

    .boat-card,
    .service-card {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
}

/* ---------------------------------------------------------------------
   --- SECTIONS & CONTENT AREAS (ADDITIONS)
   ------------------------------------------------------------------ */
.content-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

/* Facility card already styled by unified card styles */

/* Facility icon inherits from unified card icon styles */

.cta-section {
    margin-top: var(--spacing-lg);
    text-align: center;
}

.cta-button {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-full);
    padding: 0.85rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    display: inline-block;
    margin-top: var(--spacing-md);
}

.cta-button:hover {
    background: var(--primary-dark);
}

.house-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.house-details.jachthaven-details {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.house-info {
    max-width: none;
    margin: 0;
}

/* Category card styles already defined in unified card styles */

/* ---------------------------------------------------------------------
   --- CHAT WIDGET (ADDITIONS)
   ------------------------------------------------------------------ */
.chat-header {
    background: rgba(0, 113, 187, 0.85);
    color: #fff;
    padding: 1rem 1.2rem;
    border-radius: 18px 18px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.chat-header .dark-mode-toggle {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    margin-left: 8px;
    transition: background 0.2s;
}

.chat-header .dark-mode-toggle:hover {
    background: rgba(0, 0, 0, 0.12);
}

.chat-messages {
    flex: 1;
    padding: 1.2rem;
    overflow-y: auto;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.chat-input {
    display: flex;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    align-items: center;
    gap: 0.5rem;
}

.chat-input input[type="text"] {
    flex: 1;
    border: none;
    background: rgba(240, 240, 240, 0.7);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    color: #222;
    outline: none;
    transition: background 0.2s;
}

.chat-input input[type="text"]:focus {
    background: #fff;
}

.chat-send {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
    margin-left: 0.3rem;
}

.chat-send:hover {
    background: var(--primary-dark);
}

.chat-message {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.chat-message.user {
    align-items: flex-end;
}

.message-bubble {
    background: var(--primary-color);
    color: #fff;
    padding: 0.7rem 1.1rem;
    border-radius: 1.2rem;
    max-width: 75%;
    word-break: break-word;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 113, 187, 0.08);
    margin-bottom: 2px;
    transition: background 0.2s;
}

.chat-message.user .message-bubble {
    background: #4caf50;
}

.message-time {
    font-size: 0.85rem;
    color: #e0e0e0;
    margin-top: 2px;
    text-align: right;
}

/* Dark mode styles */
body.dark-mode .chat-window {
    background: rgba(24, 28, 34, 0.92);
    border: 1.5px solid rgba(60, 60, 60, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

body.dark-mode .chat-header {
    background: rgba(0, 51, 102, 0.92);
    color: #fff;
}

body.dark-mode .chat-header .dark-mode-toggle {
    background: rgba(255, 255, 255, 0.10);
    color: #fff;
}

body.dark-mode .chat-header .dark-mode-toggle:hover {
    background: rgba(255, 255, 255, 0.18);
}

body.dark-mode .chat-messages {
    background: transparent;
}

body.dark-mode .chat-input {
    background: rgba(24, 28, 34, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-mode .chat-input input[type="text"] {
    background: rgba(40, 44, 52, 0.85);
    color: #fff;
}

body.dark-mode .chat-input input[type="text"]:focus {
    background: #222;
}

/* Secure Chatbot Widget Styles */
.secure-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    font-family: var(--font-family, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
}

.secure-chat-widget .chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color, #0071bb);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.secure-chat-widget .chat-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.secure-chat-widget .chat-toggle-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.secure-chat-widget .connection-indicator {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: 2px solid white;
}

.secure-chat-widget .connection-indicator.healthy {
    background: #4caf50;
}

.secure-chat-widget .connection-indicator.degraded {
    background: #ff9800;
}

.secure-chat-widget .connection-indicator.offline,
.secure-chat-widget .connection-indicator.unhealthy {
    background: #f44336;
}

.secure-chat-widget #secure-chat-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 600px;
    max-height: calc(100vh - 120px);
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 10001;
}

.secure-chat-widget #secure-chat-window.active {
    display: flex;
}

.secure-chat-widget .chat-header {
    background: var(--primary-color, #0071bb);
    color: white;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.secure-chat-widget .header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.secure-chat-widget .chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.secure-chat-widget .chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.secure-chat-widget .security-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-left: 8px;
}

.secure-chat-widget .chat-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.secure-chat-widget .chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.secure-chat-widget .connection-status {
    padding: 8px 16px;
    background: #fff3cd;
    border-bottom: 1px solid #ffc107;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.secure-chat-widget .status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.secure-chat-widget .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff9800;
}

.secure-chat-widget #secure-chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: #f8f9fa;
}

.secure-chat-widget .message {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.secure-chat-widget .user-message {
    align-items: flex-end;
}

.secure-chat-widget .bot-message {
    align-items: flex-start;
}

.secure-chat-widget .message-content {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    word-wrap: break-word;
    font-size: 0.95rem;
    line-height: 1.5;
}

.secure-chat-widget .user-message .message-content {
    background: var(--primary-color, #0071bb);
    color: white;
}

.secure-chat-widget .bot-message .message-content {
    background: white;
    color: #333;
    border: 1px solid #e0e0e0;
}

.secure-chat-widget .message-time {
    font-size: 0.75rem;
    color: #999;
    margin-top: 4px;
}

.secure-chat-widget .chat-input-container {
    border-top: 1px solid #e0e0e0;
    padding: 12px;
    background: white;
}

.secure-chat-widget .input-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.secure-chat-widget #secure-chat-input {
    flex: 1;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 0.95rem;
    outline: none;
}

.secure-chat-widget #secure-chat-input:focus {
    border-color: var(--primary-color, #0071bb);
}

.secure-chat-widget .send-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color, #0071bb);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.secure-chat-widget .send-button:hover:not(:disabled) {
    background: var(--primary-dark, #005a94);
}

.secure-chat-widget .send-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.secure-chat-widget .input-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    font-size: 0.8rem;
    color: #999;
}

.secure-chat-widget .char-count {
    font-size: 0.75rem;
}

.secure-chat-widget .char-count.warning {
    color: #ff9800;
}

.secure-chat-widget .char-count.error {
    color: #f44336;
}

.secure-chat-widget .security-info {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
}

.secure-chat-widget .typing-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
}

.secure-chat-widget .typing-dots-container {
    display: flex;
    gap: 4px;
}

.secure-chat-widget .typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #999;
    animation: typingDot 1.4s infinite;
}

.secure-chat-widget .typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.secure-chat-widget .typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {

    0%,
    60%,
    100% {
        opacity: 0.3;
        transform: scale(0.8);
    }

    30% {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .secure-chat-widget {
        bottom: 10px;
        right: 10px;
    }

    .secure-chat-widget #secure-chat-window {
        bottom: 80px;
        right: 10px;
        left: 10px;
        width: calc(100vw - 20px);
        height: calc(100vh - 100px);
        max-height: calc(100vh - 100px);
    }
}

body.dark-mode .chat-send {
    background: #2196f3;
    color: #fff;
}

body.dark-mode .chat-send:hover {
    background: #1565c0;
}

body.dark-mode .message-bubble {
    background: #266193;
    color: #fff;
}

body.dark-mode .chat-message.user .message-bubble {
    background: #388e3c;
}

body.dark-mode .message-time {
    color: #b0b0b0;
}

/* ---------------------------------------------------------------------
   --- SLIDESHOWS (ADDITIONS)
   ------------------------------------------------------------------ */
.slide {
    display: none;
    width: 100%;
    height: auto;
}

.slide.active {
    display: block;
}

.slideshow-btn {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
    cursor: pointer;
    margin: 0 5px;
    transition: var(--transition-normal);
}

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

.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: var(--spacing-sm);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--primary-color);
    cursor: pointer;
    transition: background 0.2s;
}

.dot.active {
    background: var(--primary-color);
}

/* ---------------------------------------------------------------------
   --- NAVIGATION & HEADER (IMPROVEMENTS)
   ------------------------------------------------------------------ */
.top-bar {
    background: var(--primary-color);
    color: var(--text-white);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    z-index: 100;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-white);
    font-weight: 500;
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info:hover::before {
    opacity: 1;
}

.contact-info a {
    color: var(--text-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.2s ease;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info a:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Desktop nav-menu (visible on desktop) */
@media (min-width: 769px) {
    .nav-menu {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 1.2rem;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
        min-height: unset;
        border: none;
        justify-content: flex-end;
    }

    .nav-menu li {
        width: auto;
    }

    .nav-menu a {
        border-bottom: none;
        color: var(--text-white);
        background: var(--primary-color);
        padding: 0.5rem 1.3rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 2rem;
        transition: background 0.2s, color 0.2s, box-shadow 0.2s;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        margin-left: 0.2rem;
        margin-right: 0.2rem;
        text-decoration: none;
        display: inline-block;
    }

    .nav-menu a:hover {
        background: var(--primary-dark);
        color: var(--text-white);
        box-shadow: 0 4px 16px rgba(0, 113, 187, 0.10);
    }

    .nav-menu a.active {
        background: var(--primary-dark);
        color: var(--text-white);
        box-shadow: 0 4px 16px rgba(0, 113, 187, 0.15);
    }
}

/* Mobile nav-menu (already handled, but ensure .nav-menu.active is visible) */
@media (max-width: 768px) {
    .nav-menu {
        list-style: none;
        background: rgba(0, 113, 187, 0.92);
        backdrop-filter: blur(8px) saturate(1.2);
        border: 1.5px solid rgba(0, 113, 187, 0.18);
        border-radius: 0 0 22px 22px;
        box-shadow: 0 8px 32px rgba(0, 113, 187, 0.13);
        margin-top: 12px;
        padding: 2rem 1.3rem 1.3rem 1.3rem;
        transition: opacity 0.25s, transform 0.25s;
    }

    .nav-menu a {
        font-size: 1.18rem;
        font-weight: 700;
        letter-spacing: 0.01em;
        border-radius: 16px;
        padding: 1.15rem 1.3rem;
        margin-bottom: 0.2rem;
        background: none;
        color: #fff;
        box-shadow: none;
        outline: none;
        transition: background 0.18s, color 0.18s;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: rgba(255, 255, 255, 0.13);
        color: #fff;
    }
}

/* Hero layout: booking form left, text right */
@media (min-width: 900px) {
    .hero-layout {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
        gap: 3rem;
    }

    .booking-form-modern {
        margin-right: 2.5rem;
        margin-left: 0;
    }

    .hero-content {
        align-items: flex-start;
        text-align: left;
    }
}

/* Nav menu: text only, no box */
@media (min-width: 769px) {
    .nav-menu a {
        background: none;
        color: var(--text-white);
        box-shadow: none;
        border-radius: 0;
        padding: 0.5rem 1.1rem;
        font-weight: 600;
        margin: 0 0.2rem;
        transition: color 0.2s;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: #90caf9;
        background: none;
        box-shadow: none;
    }
}

/* Booking form text color: same as nav-menu background */
.booking-form-modern,
.booking-form-modern label,
.booking-form-modern input,
.booking-form-modern select,
.booking-form-modern .form-header h2,
.booking-form-modern .form-header p,
.booking-form-modern .form-group,
.booking-form-modern .form-row,
.booking-form-modern .form-actions {
    color: var(--secondary-color);
}

@media (min-width: 769px) {
    .nav-menu {
        list-style: none;
    }

    .nav-menu li {
        list-style: none;
    }
}

/* Intro grid: content left, features right */
@media (min-width: 900px) {
    .intro-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: flex-start;
    }

    .intro-content {
        grid-column: 1;
        text-align: left;
    }

    .intro-features {
        grid-column: 2;
        text-align: left;
    }
}

@media (min-width: 900px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        align-items: stretch;
    }

    .service-card {
        height: 100%;
    }
}

.booking-form-modern input[type='date'] {
    font-size: 1.1rem;
    padding: 0.85rem 1.2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-color);
    background: #f8fafc;
    color: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0, 113, 187, 0.06);
    transition: border 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    position: relative;
}

.booking-form-modern input[type='date']:focus,
.booking-form-modern input[type='date']:hover {
    border-color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(0, 113, 187, 0.10);
    background: #fff;
}

/* Custom calendar icon for Chrome/Safari */
.booking-form-modern input[type='date']::-webkit-calendar-picker-indicator {
    filter: invert(34%) sepia(99%) saturate(747%) hue-rotate(176deg) brightness(92%) contrast(92%);
    cursor: pointer;
    height: 1.5em;
    width: 1.5em;
}

/* Hide default icon in Firefox and use a custom one if needed */
.booking-form-modern input[type='date']::-moz-calendar-picker-indicator {
    filter: invert(34%) sepia(99%) saturate(747%) hue-rotate(176deg) brightness(92%) contrast(92%);
    cursor: pointer;
}

/* Inline Calendar Container */
.calendar-container {
    position: fixed;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    box-sizing: border-box;
    padding: 1.2rem;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.booking-form-modern .form-group {
    position: relative;
}

.booking-form-modern #dateRange {
    cursor: pointer;
    background: #f8fafc;
}

.booking-form-modern #dateRange:focus {
    background: #fff;
}

/* Remove browser validation styling (red border) for dateRange input */
.booking-form-modern #dateRange:invalid {
    border-color: #e0e7ef;
    box-shadow: none;
    outline: none;
}

.booking-form-modern #dateRange:invalid:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 113, 187, 0.1);
}

/* Also remove any browser validation pseudo-elements */
.booking-form-modern #dateRange::-webkit-validation-bubble-message {
    display: none;
}

/* Calendar Styles */
.booking-calendar {
    width: 100%;
}

.calendar-header-inline {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    padding-top: 0.5rem;
}

.calendar-header-inline > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.calendar-header-inline h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
    min-width: 0;
    overflow-wrap: anywhere;
}

.calendar-nav-btn-inline {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.calendar-nav-btn-inline:hover {
    background: var(--accent-color);
}

.calendar-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-secondary);
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.calendar-close-btn:hover {
    background: #f0f0f0;
    color: var(--error-color, #c62828);
}

.calendar-grid-inline {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    width: 100%;
    min-width: 0;
}

.calendar-day-header-inline {
    text-align: center;
    font-weight: 600;
    padding: 8px 4px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.calendar-day-inline {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #e8f5e9;
    color: var(--text-primary);
    min-height: 36px;
}

.calendar-day-inline:hover:not(.unavailable-inline):not(.empty-inline):not(.past-inline) {
    background: var(--primary-color);
    color: white;
}

.calendar-day-inline.unavailable-inline {
    background: #f5f5f5;
    color: #bbb;
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day-inline.past-inline {
    background: #fafafa;
    color: #ddd;
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day-inline.empty-inline {
    background: transparent;
    cursor: default;
}

.calendar-day-inline.today-inline {
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.calendar-day-inline.selected-start-inline,
.calendar-day-inline.selected-end-inline {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
}

.calendar-day-inline.selected-range-inline {
    background: #b3e5fc;
    color: var(--text-primary);
}

/* Boat categories base styles */
.boat-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Boat categories cards inherit from unified card styles */

/* Tablet view: 2 columns */
@media (min-width: 768px) and (max-width: 899px) {
    .boat-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Boat categories grid: 3 columns x 2 rows on desktop with staggered layout */
@media (min-width: 900px) {
    .boat-categories {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .category-card {
        grid-column: span 2;
    }

    /* First row: normal positioning */
    .category-card:nth-child(1) {
        grid-column: 1 / span 2;
    }

    .category-card:nth-child(2) {
        grid-column: 3 / span 2;
    }

    .category-card:nth-child(3) {
        grid-column: 5 / span 2;
    }

    /* Second row: offset by half a card */
    .category-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .category-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

/* ---------------------------------------------------------------------
   --- SECTIONS & CONTENT AREAS (PRICING TABLE: MODERN ENHANCEMENTS)
   ------------------------------------------------------------------ */
.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 2rem 0;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 113, 187, 0.08);
    table-layout: fixed;
}

.pricing-table thead {
    background: var(--primary-color);
}

.pricing-header th {
    padding: 0.7rem 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-white);
    border-bottom: 2px solid #e0e7ef;
    text-align: center;
    background: var(--primary-color);
    white-space: nowrap;
}

.pricing-header th:first-child {
    border-top-left-radius: var(--radius-xl);
    text-align: left;
}

.pricing-header th:last-child {
    border-top-right-radius: var(--radius-xl);
}

.pricing-row td {
    padding: 0.6rem 0.5rem;
    font-size: 0.85rem;
    color: var(--text-color);
    border-bottom: 1px solid #e0e7ef;
    background: var(--white);
    transition: background 0.2s;
    text-align: center;
}

.pricing-row td:first-child {
    text-align: left;
}

.pricing-row:nth-child(even) td {
    background: #f7fafd;
}

.pricing-row:hover td {
    background: #eaf6ff;
}

.pricing-row:last-child td {
    border-bottom: none;
}

.pricing-row td:first-child {
    border-bottom-left-radius: var(--radius-lg);
}

.pricing-row td:last-child {
    border-bottom-right-radius: var(--radius-lg);
}

@media (max-width: 900px) {

    .pricing-table,
    .pricing-table thead,
    .pricing-table tbody,
    .pricing-row,
    .pricing-header,
    .pricing-header th,
    .pricing-row td {
        display: block;
        width: 100%;
    }

    .pricing-header th {
        border-bottom: none;
        background: var(--bg-secondary);
        padding: 0.8rem 1rem;
        border-radius: 0;
    }

    .pricing-row td {
        border-bottom: 1px solid #e0e7ef;
        padding: 0.8rem 1rem;
        border-radius: 0;
    }

    .pricing-row:last-child td {
        border-bottom: none;
    }
}

/* ---------------------------------------------------------------------
   --- VAKANTIEHUIS LAYOUT & CARDS
   ------------------------------------------------------------------ */
@media (min-width: 900px) {
    .house-details {
        display: grid;
        grid-template-columns: minmax(320px, 1.1fr) 1.4fr;
        gap: 3rem;
        align-items: flex-start;
    }

    .house-image {
        grid-column: 1;
        min-width: 320px;
        max-width: 480px;
    }

    .house-info {
        grid-column: 2;
        text-align: left;
    }
}

.icon-list {
    list-style: none;
    padding: 0;
    margin: 0.8rem 0 0 0;
}

.icon-list li {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1rem;
    margin-bottom: 0.4em;
    color: var(--text-color);
}

.icon-list .icon {
    font-size: 1.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.facility-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.facility-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.facility-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem 1.5rem;
    text-align: left;
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 120px;
}

.contact-item:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 0.7em;
    color: var(--primary-color);
    display: inline-block;
    vertical-align: middle;
}

@media (min-width: 900px) {
    .facilities-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 1fr;
        gap: 2.5rem;
        justify-items: center;
        align-items: stretch;
        margin-top: 2rem;
    }

    .contact-grid {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 2.5rem;
    }

    .contact-item {
        max-width: 400px;
        margin: 0 auto;
        text-align: left;
        align-items: flex-start;
        box-shadow: 0 8px 32px rgba(0, 113, 187, 0.08);
        border: 1.5px solid #e0e7ef;
        padding: 2.5rem 2rem;
        border-radius: var(--radius-xl);
        background: var(--white);
        transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
    }

    .contact-item:hover {
        box-shadow: 0 16px 40px rgba(0, 113, 187, 0.13);
        border: 1.5px solid var(--primary-color);
        transform: translateY(-4px);
    }

    .contact-item h3,
    .contact-item h4 {
        color: var(--primary-color);
        margin-bottom: 1.2rem;
        text-align: left;
    }

    .contact-details p {
        font-size: 1.08rem;
        margin-bottom: 0.7em;
        color: var(--text-color);
        text-align: left;
    }

    .contact-details a {
        color: var(--primary-color);
        text-decoration: underline;
        transition: color 0.2s;
    }

    .contact-details a:hover {
        color: var(--primary-dark);
    }
}

@media (min-width: 769px) {
    .nav-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.7rem;
    }

    .logo-link {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 0;
        width: auto;
        margin-right: 1.2rem;
    }

    .logo {
        display: block;
        margin: 0;
        max-width: 160px;
        height: auto;
    }

    .nav-menu {
        gap: 0.7rem;
    }
}

/* ---------------------------------------------------------------------
   --- ENHANCED CONTACT HIGHLIGHT DESIGN
   ------------------------------------------------------------------ */
.contact-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.contact-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.contact-highlight h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.contact-highlight p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.contact-highlight div {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    position: relative;
    z-index: 1;
}

.contact-highlight div p {
    margin: 0.8rem 0;
    font-size: 1rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-highlight div p strong {
    font-weight: 600;
    min-width: 80px;
    display: inline-block;
}

.contact-highlight:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

@keyframes contactPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }

    100% {
        transform: scale(1);
    }
}

.contact-highlight:active {
    animation: contactPulse 0.3s ease;
}

.contact-info a:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* ---------------------------------------------------------------------
   --- CAMPING & BOAT MODAL LAYOUTS
   ------------------------------------------------------------------ */
@media (min-width: 900px) {
    .camping-info-grid {
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 2.5rem;
        align-items: center;
        margin-bottom: 2.5rem;
    }

    .modal-boats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        align-items: stretch;
    }
}

@media (min-width: 900px) {
    .camping-info-grid .camping-image img {
        max-width: 400px;
        max-height: 320px;
        height: auto;
        width: auto;
        object-fit: cover;
        display: block;
        margin: -3.5rem auto 0 auto;
        align-self: center;
    }

    .camping-image {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

/* ---------------------------------------------------------------------
   --- CAMPING PERMANENTE JAARPLAATSEN LIST STYLE
   ------------------------------------------------------------------ */
.camping-details ul {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0 0;
}

.camping-details ul li {
    border-bottom: 1px solid #e0e7ef;
    padding: 0.7em 0;
    font-size: 1.08rem;
    color: var(--text-color);
}

.camping-details ul li:last-child {
    border-bottom: none;
}

/* ---------------------------------------------------------------------
   --- JACHTHAVEN INFO CARD STYLE
   ------------------------------------------------------------------ */
/* Jachthaven-info-card specific overrides */
.jachthaven-info-card {
    border-left: 5px solid var(--primary-color);
    margin: 2rem auto 2.5rem auto;
    max-width: 600px;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.jachthaven-info-card h3 {
    font-size: 1.5rem;
}

.jachthaven-info-card p {
    font-size: 1.08rem;
    margin-bottom: 0.7em;
}

.jachthaven-info-card p:last-child {
    margin-bottom: 0;
}

@media (min-width: 900px) {
    .jachthaven-info-card {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ---------------------------------------------------------------------
   --- VAARKAART MAP SECTION & INFO LIST
   ------------------------------------------------------------------ */
/* Map-section-card specific overrides */
.map-section-card {
    margin: 2rem auto 2.5rem auto;
    max-width: 900px;
}

.info-list {
    margin: 2.5rem 0 0 0;
    padding: 0;
    max-width: 600px;
}

.info-list-item {
    border-bottom: 1px solid #e0e7ef;
    padding: 0.7em 0;
    font-size: 1.08rem;
    color: var(--text-color);
    text-align: left;
}

.info-list-item:last-child {
    border-bottom: none;
}

/* ---------------------------------------------------------------------
   --- VAARREGELS SECTION SPACING
   ------------------------------------------------------------------ */
.vaarregels-section {
    margin-top: 2cm;
}

/* ---------------------------------------------------------------------
   --- VAARKAART MAP BUTTON & ICON CENTERING
   ------------------------------------------------------------------ */
.map-section-card .map-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.map-section-card .map-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.2rem;
}

/* ---------------------------------------------------------------------
   --- CONTACT PAGE GRID & DIRECT CARD
   ------------------------------------------------------------------ */
@media (min-width: 900px) {
    .contact-grid {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
    }

    .contact-info-cards {
        flex: 2;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-direct-card {
        flex: 1;
        min-width: 280px;
        max-width: 340px;
        margin-top: 0;
    }

    .contact-direct-card h3 {
        font-size: 1.5rem;
    }

    .contact-direct-card .call-button-container {
        margin: 1.5rem 0 1rem 0;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .contact-direct-card .call-button {
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-color);
        color: var(--text-white);
        border: none;
        border-radius: 2rem;
        font-size: 1.2rem;
        font-weight: 700;
        padding: 1rem 2.2rem;
        text-decoration: none;
        box-shadow: 0 2px 8px rgba(0, 113, 187, 0.08);
        transition: background 0.2s, box-shadow 0.2s;
        margin: 0 auto;
    }

    .contact-direct-card .call-button:hover {
        background: var(--primary-dark);
        box-shadow: 0 4px 16px rgba(0, 113, 187, 0.13);
    }

    .contact-direct-card .call-icon {
        font-size: 1.5rem;
        margin-right: 0.7em;
    }

    .contact-direct-card .call-number {
        font-size: 1.2rem;
        font-weight: 700;
        margin-right: 0.5em;
    }

    .contact-direct-card .call-label {
        font-size: 1rem;
        font-weight: 500;
    }
}

@media (max-width: 899px) {
    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .contact-info-cards,
    .contact-direct-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .contact-info-cards {
        gap: 1.2rem;
    }

    .contact-direct-card {
        margin-top: 0;
        align-items: center;
        text-align: center;
    }
}

@media (min-width: 900px) {
    .contact-info-cards {
        gap: 1.5rem;
    }

    .contact-info-cards .contact-item {
        min-height: 180px;
        max-width: 420px;
        width: 100%;
        padding: 2.2rem 1.7rem;
        margin: 0 auto;
        background: var(--white);
        border-radius: var(--radius-lg);
        box-shadow: 0 8px 32px rgba(0, 113, 187, 0.08);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .contact-direct-card {
        min-width: 340px;
        max-width: 420px;
        padding: 3rem 2.2rem;
    }

    .contact-direct-card .call-button {
        font-size: 1.05rem;
        padding: 0.7rem 1.5rem;
        border-radius: 1.5rem;
    }
}

/* Modern chat close button style */
.chat-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    margin-left: 8px;
    outline: none;
    box-shadow: none;
}

.chat-close:hover {
    background: rgba(0, 0, 0, 0.10);
}

.subtitle-sm {
    font-size: 0.98rem;
    color: var(--text-secondary, #666);
    margin-top: 0.2em;
    margin-bottom: 1.2em;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.5;
    display: block;
}

@media (max-width: 768px) {
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--primary-color);
        color: #fff;
        border: none;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        box-shadow: 0 2px 8px rgba(0, 113, 187, 0.10);
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        z-index: 1002;
        transition: background 0.2s, box-shadow 0.2s;
        outline: none;
        padding: 0;
    }

    .mobile-menu-toggle:hover,
    .mobile-menu-toggle:focus {
        background: var(--primary-dark);
        box-shadow: 0 4px 16px rgba(0, 113, 187, 0.18);
    }

    .logo-link {
        margin-right: auto;
    }

    .top-bar-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-align: center;
    }

    .language-switcher {
        order: -1;
        margin-left: 0;
        margin-bottom: 0.3rem;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        justify-content: center;
    }

    .contact-info a {
        padding: 0.4rem 0.6rem;
        font-size: 0.9rem;
    }

    .contact-highlight {
        padding: 1.5rem;
        margin: 1rem 0;
    }

    .contact-highlight h3 {
        font-size: 1.4rem;
    }

    .contact-highlight div {
        padding: 1rem;
    }

    .contact-highlight div p {
        font-size: 0.9rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .contact-highlight div p strong {
        min-width: auto;
    }

    /* Make house_contact_h3 use same color as house_amenities_h on mobile */
    .contact-item h3 {
        color: var(--text-color);
    }
}

.mobile-menu-toggle svg {
    width: 28px;
    height: 28px;
    display: block;
    margin: 0 auto;
    pointer-events: none;
}

@media (max-width: 900px) {
    .pricing-table {
        background: none;
        border-radius: 0;
        box-shadow: none;
        width: 100%;
        margin: 1.5rem 0;
    }

    .pricing-header th {
        background: var(--primary-color);
        color: #fff;
        font-size: 1.08rem;
        font-weight: 700;
        border-radius: 12px 12px 0 0;
        margin-bottom: 0;
        padding: 1rem 1.2rem;
        text-align: left;
    }

    .pricing-row {
        margin-bottom: 1.1rem;
        background: var(--white);
        border-radius: 14px;
        box-shadow: 0 2px 8px rgba(0, 113, 187, 0.07);
        border: 1.5px solid #e0e7ef;
        overflow: hidden;
        padding: 0;
        display: block;
    }

    .pricing-row td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.85rem 1.2rem;
        font-size: 1.05rem;
        color: var(--text-color);
        border-bottom: 1px solid #f0f4fa;
        background: none;
        border-radius: 0;
        font-weight: 500;
        gap: 1.2rem;
    }

    .pricing-row td:last-child {
        border-bottom: none;
    }

    .pricing-row:last-child {
        margin-bottom: 0;
    }

    .pricing-row td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-color);
        flex: 1 1 50%;
        text-align: left;
        font-size: 0.98rem;
        margin-right: 1.2rem;
        min-width: 110px;
    }

    .pricing-row td {
        flex: 2 1 50%;
        text-align: right;
    }
}

@media (max-width: 768px) {
    .nav-menu a {
        text-decoration: none;
        border-bottom: none;
    }
}

/* Sticky Header and Quick Action Styles */
.pricing-table-container {
    position: relative;
    overflow-y: auto;
    overflow-x: visible;
    max-height: 70vh;
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 113, 187, 0.08);
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: var(--primary-color);
}

.action-header {
    text-align: center !important;
    min-width: 70px;
}

.reserve-btn {
    display: inline-block;
    padding: 0.35rem 0.6rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.reserve-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 113, 187, 0.3);
}

.reserve-btn:active {
    transform: translateY(0);
}

/* Mobile responsive adjustments for sticky headers */
@media (max-width: 768px) {
    .pricing-table-container {
        max-height: 60vh;
    }

    .action-header {
        min-width: 100px;
    }

    .reserve-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 120px;
        margin: 0 auto;
        border-radius: 8px;
        font-weight: 700;
        letter-spacing: 0.5px;
        box-shadow: 0 2px 8px rgba(0, 113, 187, 0.2);
    }

    .reserve-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(0, 113, 187, 0.4);
    }

    .pricing-row td[data-label="Actie"] {
        text-align: center;
        padding: 1rem 0.5rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .reserve-btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
        min-height: 48px;
        max-width: 110px;
    }

    .action-header {
        min-width: 90px;
    }

    .pricing-row td[data-label="Actie"] {
        padding: 0.8rem 0.3rem;
    }
}

/* ---------------------------------------------------------------------
   --- MODERN SLIDESHOW STYLES
   ------------------------------------------------------------------ */
.modern-slideshow {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.modern-slideshow:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slideshow-main {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.slideshow-main .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
    will-change: opacity, transform;
}

.slideshow-main .slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slideshow-thumbnails {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.05);
    scroll-behavior: smooth;
}

.slideshow-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.slideshow-thumbnails::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
}

.slideshow-thumbnails::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.slideshow-thumbnails::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.thumbnail {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    z-index: 1;
    border-radius: 9px;
}

.thumbnail:hover {
    opacity: 0.85;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 113, 187, 0.4);
}

.thumbnail:hover::before {
    background: rgba(0, 0, 0, 0.05);
}

.thumbnail.active {
    border-color: var(--primary-color);
    opacity: 1;
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 8px 24px rgba(0, 113, 187, 0.25);
}

.thumbnail.active::before {
    background: rgba(0, 113, 187, 0.1);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

.modern-slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(0, 113, 187, 0);
}

.modern-slideshow-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(0, 113, 187, 0.1);
    color: var(--primary-dark);
}

.modern-slideshow-btn:active {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.modern-slideshow-btn.prev {
    left: 20px;
}

.modern-slideshow-btn.next {
    right: 20px;
}

.modern-slideshow-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.modern-slideshow-btn:hover svg {
    transform: scale(1.1);
}

.modern-slideshow-btn.prev:hover svg {
    transform: translateX(-2px) scale(1.1);
}

.modern-slideshow-btn.next:hover svg {
    transform: translateX(2px) scale(1.1);
}

/* Mobile responsive for house details */
@media (max-width: 900px) {
    .house-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .slideshow-main {
        height: 400px;
    }

    .slideshow-thumbnails {
        padding: 16px;
        gap: 10px;
    }

    .thumbnail {
        width: 70px;
        height: 70px;
        border-radius: 10px;
    }

    .modern-slideshow-btn {
        width: 48px;
        height: 48px;
    }

    .modern-slideshow-btn.prev {
        left: 12px;
    }

    .modern-slideshow-btn.next {
        right: 12px;
    }
}

/* Enhanced mobile optimization for vakantiehuis slideshow */
@media (max-width: 768px) {
    .house-details {
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    .house-image {
        width: 100vw;
        max-width: 100vw;
        padding: 0;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        box-sizing: border-box;
    }

    .modern-slideshow {
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        overflow: hidden;
        border-radius: 0;
    }

    /* Ensure hero images are fully visible on mobile */
    .page-header {
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
        background-attachment: scroll;
    }

    .slideshow-main {
        height: 300px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin: 0 auto;
    }

    .slideshow-main .slide {
        width: 100%;
        max-width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .slideshow-thumbnails {
        padding: 12px;
        gap: 8px;
        overflow-x: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.05);
    }

    .slideshow-thumbnails::-webkit-scrollbar {
        height: 4px;
    }

    .slideshow-thumbnails::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.05);
        border-radius: 2px;
    }

    .slideshow-thumbnails::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
        border-radius: 2px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        flex-shrink: 0;
        border-width: 2px;
    }

    .thumbnail.active {
        transform: translateY(-1px) scale(1.05);
    }

    .modern-slideshow-btn {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .modern-slideshow-btn svg {
        width: 20px;
        height: 20px;
    }

    .modern-slideshow-btn.prev {
        left: 10px;
    }

    .modern-slideshow-btn.next {
        right: 10px;
    }

    /* Optimize text for mobile */
    .section-title h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
    }

    .section-title p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .house-info h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }

    .house-info p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .modern-slideshow {
        width: 100vw;
        max-width: 100vw;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        overflow: hidden;
        border-radius: 0;
    }

    .slideshow-main {
        height: 250px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin: 0 auto;
    }

    .slideshow-main .slide {
        width: 100%;
        max-width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .slideshow-thumbnails {
        padding: 10px;
        gap: 6px;
    }

    .thumbnail {
        width: 50px;
        height: 50px;
        border-radius: 6px;
        border-width: 2px;
    }

    .thumbnail.active {
        transform: translateY(-1px) scale(1.03);
    }

    .modern-slideshow-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .modern-slideshow-btn svg {
        width: 18px;
        height: 18px;
    }

    .modern-slideshow-btn.prev {
        left: 8px;
    }

    .modern-slideshow-btn.next {
        right: 8px;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    .house-info h3 {
        font-size: 1.3rem;
    }

    .house-info p {
        font-size: 0.95rem;
    }

    /* Optimize facilities grid for mobile */
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .facility-card {
        padding: 1rem;
        text-align: center;
    }

    .facility-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .facility-card p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Optimize contact grid for mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1.2rem;
        text-align: center;
    }

    .contact-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .contact-details p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .house-details {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    .house-image {
        width: 100vw;
        max-width: 100vw;
        padding: 0;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        box-sizing: border-box;
    }
}

/* Season Banner Styles */
.season-banner {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 50%, #66bb6a 100%);
    color: white;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.season-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.season-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.season-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.season-info h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.season-info p {
    margin: 0.25rem 0 0 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.season-status {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.season-status-text {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive adjustments for season banner */
@media (max-width: 768px) {
    .season-banner-content {
        flex-direction: column;
        gap: 0.5rem;
    }

    .season-info h3 {
        font-size: 1.3rem;
    }

    .season-info p {
        font-size: 1rem;
    }

    .season-icon {
        font-size: 1.5rem;
    }
}

/* Update camping page specific styles */
.camping-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.camping-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.camping-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.camping-details ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.camping-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.camping-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.camping-details li:last-child {
    border-bottom: none;
}

.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 2rem;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .camping-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Camping Section Styles for Index Page */
.camping-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.camping-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.camping-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.camping-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.camping-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 2rem;
}

.camping-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.camping-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.camping-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-text h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #6c757d;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.camping-cta {
    background: var(--primary-color);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.camping-cta p {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
}

.camping-phone {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.camping-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    color: var(--primary-color);
}

.camping-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.camping-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.camping-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.05));
    pointer-events: none;
}

/* Responsive design for camping section */
@media (max-width: 768px) {
    .camping-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .camping-text h2 {
        font-size: 2rem;
    }

    .camping-features {
        gap: 1rem;
    }

    .camping-feature {
        padding: 0.75rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .feature-text h4 {
        font-size: 1.1rem;
    }

    .camping-cta {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .camping-section {
        padding: 3rem 0;
    }

    .camping-text h2 {
        font-size: 1.8rem;
    }

    .camping-text p {
        font-size: 1rem;
    }

    .camping-phone {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
    }
}

/* Language Switcher Styles */
#languageSwitcher {
    display: flex;
    gap: 0.75rem;
}

#languageSwitcher .lang-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#languageSwitcher .lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

#languageSwitcher .lang-btn.active {
    border-color: var(--primary-color, #007bff);
    background: rgba(0, 123, 255, 0.2);
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

#languageSwitcher .flag-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

#languageSwitcher .lang-btn:hover .flag-icon {
    transform: scale(1.1);
}

/* ========================================================================
   FOR SALE PAGE STYLES
   ======================================================================== */

/* For Sale Grid */
.for-sale-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* For Sale Card */
.for-sale-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.for-sale-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.for-sale-card.featured {
    border: 2px solid #f59e0b;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

/* Image Container */
.for-sale-image-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.for-sale-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.for-sale-card:hover .for-sale-image {
    transform: scale(1.05);
}

/* Content Section */
.for-sale-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.for-sale-category {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    width: fit-content;
}

.for-sale-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.for-sale-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.for-sale-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.for-sale-description-short {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Meta Info */
.for-sale-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.for-sale-meta .meta-item {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Features List */
.for-sale-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.for-sale-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 0.25rem 0;
}

.for-sale-features .more-features {
    color: var(--primary-color);
    font-weight: 500;
}

/* Contact Button */
.for-sale-contact-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.for-sale-contact-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 113, 187, 0.3);
}

/* ========================================================================
   FOR SALE ITEM MODAL
   ======================================================================== */

.item-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(5px);
}

.item-modal-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.item-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.item-modal-close:hover {
    background: var(--error-color);
    color: white;
    transform: rotate(90deg);
}

/* Modal Header */
.modal-header {
    padding: 3.5rem 2rem 2rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    position: relative;
}

.modal-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
}

.modal-price {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Modal Body */
.modal-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.modal-image-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Modal Slideshow Styles */
.modal-slideshow {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.modal-slideshow-main {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    cursor: pointer;
}

.modal-slideshow-main .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f5f7fa;
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.modal-slideshow-main .slide.active {
    opacity: 1;
    z-index: 2;
}

.modal-slideshow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.modal-slideshow-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
}

.modal-slideshow-btn.prev {
    left: 16px;
}

.modal-slideshow-btn.next {
    right: 16px;
}

.modal-slideshow-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.modal-fullscreen-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-fullscreen-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.modal-fullscreen-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.modal-slideshow-thumbnails {
    display: flex;
    gap: 8px;
    padding: 16px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.05);
    scroll-behavior: smooth;
}

.modal-slideshow-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.modal-slideshow-thumbnails::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
}

.modal-slideshow-thumbnails::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.modal-slideshow-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.modal-slideshow-thumbnail:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.modal-slideshow-thumbnail.active {
    border-color: var(--primary-color);
    opacity: 1;
    transform: scale(1.08);
}

.modal-slideshow-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fullscreen Slideshow Styles */
.fullscreen-slideshow-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.fullscreen-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    font-size: 28px;
    line-height: 1;
    transition: all 0.3s ease;
    z-index: 10001;
}

.fullscreen-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.fullscreen-slideshow-main {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: calc(100vh - 200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fullscreen-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.fullscreen-slide.active {
    opacity: 1;
    z-index: 2;
}

.fullscreen-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 10001;
}

.fullscreen-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.fullscreen-btn.prev {
    left: 20px;
}

.fullscreen-btn.next {
    right: 20px;
}

.fullscreen-btn svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

.fullscreen-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow-x: auto;
    max-width: 90%;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.5) transparent;
}

.fullscreen-thumbnails::-webkit-scrollbar {
    height: 4px;
}

.fullscreen-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.fullscreen-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
}

.fullscreen-thumbnail {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.fullscreen-thumbnail:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.fullscreen-thumbnail.active {
    border-color: white;
    opacity: 1;
    transform: scale(1.15);
}

.fullscreen-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info-section h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.modal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.modal-meta .meta-item {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.modal-description {
    margin-bottom: 1.5rem;
}

.modal-description p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.modal-features-section {
    margin-bottom: 1.5rem;
}

.modal-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.modal-features li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.25rem 0;
}

.modal-contact {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
}

.modal-contact p {
    margin: 0.5rem 0;
    color: var(--text-secondary);
}

/* Admin For Sale - Additional Images Grid */
.additional-images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.additional-image-wrapper {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid var(--light-gray);
}

.additional-image-wrapper img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

/* Responsive For Sale */
@media (max-width: 900px) {
    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-slideshow-main {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .for-sale-grid {
        grid-template-columns: 1fr;
    }

    .for-sale-features {
        grid-template-columns: 1fr;
    }

    .item-modal-content {
        max-height: 95vh;
        border-radius: var(--radius-lg);
    }

    .modal-header {
        padding: 1.5rem;
    }

    .modal-title {
        font-size: 1.4rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .modal-slideshow-main {
        height: 300px;
    }

    .modal-slideshow-btn {
        width: 40px;
        height: 40px;
    }

    .modal-slideshow-btn svg {
        width: 18px;
        height: 18px;
    }

    .modal-slideshow-thumbnail {
        width: 60px;
        height: 60px;
    }

    .modal-features {
        grid-template-columns: 1fr;
    }

    .fullscreen-slideshow-main {
        height: calc(100vh - 250px);
    }

    .fullscreen-btn {
        width: 48px;
        height: 48px;
    }

    .fullscreen-btn svg {
        width: 24px;
        height: 24px;
    }

    .fullscreen-thumbnail {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .for-sale-image-container {
        height: 180px;
    }

    .for-sale-content {
        padding: 1.25rem;
    }

    .for-sale-title {
        font-size: 1.2rem;
    }

    .for-sale-price {
        font-size: 1.25rem;
    }
}

/* ---------------------------------------------------------------------
   --- SHOPPING CART
   ------------------------------------------------------------------ */
/* Cart in Navigation */
.nav-cart-item .cart-icon {
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    padding: 0 10px;
}

.nav-cart-item .cart-count {
    background: var(--error-color, #e53935);
    color: white;
    font-size: 11px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: 0;
}

/* Cart Sidebar (Global) */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    max-width: 100vw;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 10002;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.cart-sidebar.active {
    right: 0;
}

.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: none;
}

.cart-sidebar-overlay.active {
    display: block;
}

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--primary-color);
    color: white;
}

.cart-sidebar-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
}

.cart-sidebar-close {
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.cart-sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
}

.cart-empty-message {
    text-align: center;
    color: var(--text-secondary);
    padding: 40px 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.cart-item-dates {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cart-item-price {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 5px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--error-color, #e53935);
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
}

.cart-sidebar-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    background: #f8f9fa;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.cart-checkout-btn {
    width: 100%;
    margin-bottom: 10px;
}

.cart-clear-btn {
    width: 100%;
    font-size: 0.9rem;
}

@media (max-width: 500px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}