/**
 * Custom CSS - Refined Elegant Style
 *
 * Verfijnde, luxe styling geïnspireerd door de Engels-Franse sfeer
 * van de Kanaaleilanden.
 *
 * @package KanaaleilandenSpecialist
 */

/* ==========================================================================
   Elegant Color Variables
   ========================================================================== */

:root {
    /* Refined gradient colors */
    --gradient-elegant: linear-gradient(145deg, #3d5a73 0%, #1E3A5F 50%, #152a45 100%);
    --gradient-gold: linear-gradient(145deg, #d4c4a8 0%, #c9b896 50%, #b8a67d 100%);
    --gradient-icon: linear-gradient(145deg, #4a6d8c 0%, #2d4a66 60%, #1E3A5F 100%);

    /* Gold/Champagne accents */
    --color-gold: #c9b896;
    --color-gold-light: #e0d5c0;
    --color-gold-dark: #a89568;
    --color-champagne: #f5f0e6;
}

/* ==========================================================================
   Elegant Icon Styling - Premium Look
   ========================================================================== */

/* Base elegant icon container */
.elegant-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--gradient-icon);
    border-radius: 18px;
    box-shadow:
        0 8px 24px rgba(30, 58, 95, 0.25),
        0 2px 8px rgba(30, 58, 95, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.elegant-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(145deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 50%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.elegant-icon:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(30, 58, 95, 0.3),
        0 4px 12px rgba(30, 58, 95, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.elegant-icon svg,
.elegant-icon img {
    width: 32px;
    height: 32px;
    color: var(--color-gold-light);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* Small elegant icon */
.elegant-icon--sm {
    width: 52px;
    height: 52px;
    border-radius: 14px;
}

.elegant-icon--sm svg,
.elegant-icon--sm img {
    width: 24px;
    height: 24px;
}

/* Large elegant icon */
.elegant-icon--lg {
    width: 90px;
    height: 90px;
    border-radius: 22px;
}

.elegant-icon--lg svg,
.elegant-icon--lg img {
    width: 42px;
    height: 42px;
}

/* Circle variant */
.elegant-icon--circle {
    border-radius: 50%;
}

.elegant-icon--circle::before {
    border-radius: 50%;
}

/* Light background variant */
.elegant-icon--light {
    background: linear-gradient(145deg, #f8f6f2 0%, #ebe6dc 100%);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.elegant-icon--light::before {
    background: linear-gradient(145deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.3) 100%);
}

.elegant-icon--light svg,
.elegant-icon--light img {
    color: var(--color-primary);
    filter: none;
}

/* Gold accent variant */
.elegant-icon--gold {
    background: var(--gradient-gold);
}

.elegant-icon--gold svg,
.elegant-icon--gold img {
    color: var(--color-primary);
}

/* ==========================================================================
   USP Bar - Refined Style
   ========================================================================== */

.usp-bar {
    background: var(--color-accent-dark);
    padding: var(--space-8) 0;
    border-bottom: 1px solid rgba(201, 184, 150, 0.2);
}

.usp-bar__item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    color: var(--color-white);
}

.usp-bar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 12px;
    font-size: 1.25rem;
    border: 1px solid rgba(201, 184, 150, 0.25);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.usp-bar__item:hover .usp-bar__icon {
    background: linear-gradient(145deg, rgba(201, 184, 150, 0.2) 0%, rgba(201, 184, 150, 0.1) 100%);
    border-color: rgba(201, 184, 150, 0.4);
    transform: translateY(-2px);
}

.usp-bar__text {
    font-size: var(--text-sm);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.9);
}

.usp-bar__text strong {
    display: block;
    font-weight: 600;
    color: var(--color-gold-light);
    margin-bottom: 2px;
}

/* ==========================================================================
   Thema Cards - Elegant Icons
   ========================================================================== */

.thema-card {
    border-top: none;
    position: relative;
    overflow: visible;
}

.thema-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 0 0 4px 4px;
    background: var(--gradient-gold);
}

.thema-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: var(--space-6) auto var(--space-4);
    background: var(--gradient-icon);
    border-radius: 20px;
    font-size: 2rem;
    box-shadow:
        0 10px 30px rgba(30, 58, 95, 0.25),
        0 3px 10px rgba(30, 58, 95, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.thema-card__icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(145deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.thema-card:hover .thema-card__icon {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(30, 58, 95, 0.3),
        0 5px 15px rgba(30, 58, 95, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Thema specific accent colors - huisstijl geel */
.thema-card--rustzoeker::before { background: #d4c84a !important; }
.thema-card--fijnproever::before { background: #d4c84a !important; }
.thema-card--avonturier::before { background: #d4c84a !important; }
.thema-card--shortbreak::before { background: #d4c84a !important; }

/* ==========================================================================
   Feature Icons - Grid Style
   ========================================================================== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.feature-item {
    text-align: center;
    padding: var(--space-6);
}

.feature-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: var(--space-5);
    background: var(--gradient-icon);
    border-radius: 18px;
    box-shadow:
        0 8px 24px rgba(30, 58, 95, 0.2),
        0 2px 8px rgba(30, 58, 95, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-item__icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    padding: 1px;
    background: linear-gradient(145deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.feature-item:hover .feature-item__icon {
    transform: translateY(-4px);
    box-shadow:
        0 12px 32px rgba(30, 58, 95, 0.25),
        0 4px 12px rgba(30, 58, 95, 0.15);
}

.feature-item__icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-gold-light);
    stroke-width: 1.5;
}

.feature-item__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: var(--space-2);
}

.feature-item__text {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ==========================================================================
   Wizard Step Icons - Premium Style
   ========================================================================== */

.wizard-steps {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-10);
}

.wizard-step {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.wizard-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, #e8e4dc 0%, #ddd8ce 100%);
    border-radius: 12px;
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--color-text-light);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.wizard-step.active .wizard-step__number {
    background: var(--gradient-icon);
    color: var(--color-gold-light);
    box-shadow:
        0 6px 20px rgba(30, 58, 95, 0.25),
        0 2px 8px rgba(30, 58, 95, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.wizard-step.completed .wizard-step__number {
    background: linear-gradient(145deg, #81b29a 0%, #6a9a82 100%);
    color: white;
}

.wizard-step__label {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    display: none;
}

@media (min-width: 768px) {
    .wizard-step__label {
        display: block;
    }
}

.wizard-step.active .wizard-step__label {
    color: var(--color-primary);
    font-weight: 500;
}

.wizard-step__connector {
    width: 40px;
    height: 2px;
    background: var(--color-secondary-dark);
    margin: 0 var(--space-2);
}

.wizard-step.completed + .wizard-step__connector,
.wizard-step.completed ~ .wizard-step__connector {
    background: var(--gradient-gold);
}

/* ==========================================================================
   Wizard Option Cards - Selection Style
   ========================================================================== */

.wizard-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-6);
    background: var(--color-white);
    border: 2px solid var(--color-secondary-dark);
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all 0.3s ease;
}

.wizard-option:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.12);
}

.wizard-option.selected {
    border-color: var(--color-primary);
    background: linear-gradient(180deg, rgba(30, 58, 95, 0.03) 0%, rgba(30, 58, 95, 0.08) 100%);
    box-shadow:
        0 8px 24px rgba(30, 58, 95, 0.15),
        inset 0 0 0 1px var(--color-primary);
}

.wizard-option__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-4);
    background: linear-gradient(145deg, #f0ece4 0%, #e4dfd5 100%);
    border-radius: 16px;
    font-size: 1.75rem;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.wizard-option:hover .wizard-option__icon,
.wizard-option.selected .wizard-option__icon {
    background: var(--gradient-icon);
    box-shadow:
        0 8px 20px rgba(30, 58, 95, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.wizard-option.selected .wizard-option__icon {
    color: var(--color-gold-light);
}

/* ==========================================================================
   Contact & Info Icons
   ========================================================================== */

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--gradient-icon);
    border-radius: 14px;
    margin-right: var(--space-4);
    box-shadow:
        0 6px 16px rgba(30, 58, 95, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold-light);
    stroke-width: 1.5;
}

.footer-contact__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 10px;
    margin-right: var(--space-3);
    border: 1px solid rgba(201, 184, 150, 0.2);
}

.footer-contact__icon svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold-light);
}

/* ==========================================================================
   Brochure Section Icons
   ========================================================================== */

.brochure-option__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto var(--space-5);
    background: var(--gradient-icon);
    border-radius: 18px;
    box-shadow:
        0 8px 24px rgba(30, 58, 95, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.brochure-option:hover .brochure-option__icon {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(30, 58, 95, 0.25);
}

.brochure-option__icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-gold-light);
    stroke-width: 1.5;
}

/* ==========================================================================
   FAQ Icons
   ========================================================================== */

.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(145deg, #f0ece4 0%, #e4dfd5 100%);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--gradient-icon);
    color: var(--color-gold-light);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

/* ==========================================================================
   Social Media Icons - Elegant Style
   ========================================================================== */

.social-links {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(201, 184, 150, 0.2);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(145deg, rgba(201, 184, 150, 0.2) 0%, rgba(201, 184, 150, 0.1) 100%);
    border-color: rgba(201, 184, 150, 0.4);
    color: var(--color-gold-light);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Badge Styling - Refined
   ========================================================================== */

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: var(--radius-full);
    background: linear-gradient(145deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(201, 184, 150, 0.3);
}

.badge--primary {
    background: var(--gradient-icon);
    color: var(--color-gold-light);
}

.badge--accent {
    background: linear-gradient(145deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    color: white;
}

/* ==========================================================================
   Button Refinements
   ========================================================================== */

.btn--primary {
    background: linear-gradient(145deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(98, 148, 205, 0.35);
}

.btn--primary:hover {
    background: linear-gradient(145deg, #E3E100 0%, #c9c700 100%);
    box-shadow: 0 6px 20px rgba(227, 225, 0, 0.5);
    transform: translateY(-1px);
    color: #1a365d;
}

.btn--secondary {
    background: linear-gradient(145deg, #ffffff 0%, #f8f6f2 100%);
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.btn--secondary:hover {
    background: var(--gradient-elegant);
    border-color: transparent;
    color: var(--color-gold-light);
}

/* ==========================================================================
   Refined Card Styling
   ========================================================================== */

.card {
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 10px 20px rgba(0, 0, 0, 0.04);
}

.card:hover {
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.08),
        0 20px 40px rgba(0, 0, 0, 0.08);
}

/* ==========================================================================
   Page Headers - Elegant
   ========================================================================== */

.page-header {
    position: relative;
    background: var(--gradient-elegant);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 184, 150, 0.3) 50%, transparent 100%);
}

/* ==========================================================================
   Decorative Elements
   ========================================================================== */

.elegant-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin: var(--space-8) 0;
}

.elegant-divider__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-secondary-dark) 50%, transparent 100%);
}

.elegant-divider__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
    border-radius: 50%;
    color: var(--color-gold-dark);
    font-size: 0.875rem;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes subtle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.float-animation {
    animation: subtle-float 3s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(30, 58, 95, 0.2); }
    50% { box-shadow: 0 12px 32px rgba(30, 58, 95, 0.3); }
}

.pulse-animation {
    animation: gentle-pulse 2s ease-in-out infinite;
}

/* ==========================================================================
   Thema Card List Refinements
   ========================================================================== */

.thema-card__list li {
    position: relative;
    padding-left: var(--space-6);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.thema-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: linear-gradient(145deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thema-card__list li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 5px;
    height: 9px;
    border-bottom: 2px solid var(--color-primary);
    border-right: 2px solid var(--color-primary);
}

/* ==========================================================================
   Card Meta Icons
   ========================================================================== */

.card__meta span {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.card__meta svg {
    width: 16px;
    height: 16px;
    color: var(--color-gold-dark);
}

/* ==========================================================================
   Partner Locator Checkmarks
   ========================================================================== */

.partner-locator ul li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: linear-gradient(145deg, rgba(201, 184, 150, 0.3) 0%, rgba(201, 184, 150, 0.15) 100%);
    border-radius: 50%;
    font-size: 12px;
}

/* ==========================================================================
   Header & Navigation Refinements
   ========================================================================== */

.site-header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.site-header.scrolled {
    background: rgba(30, 58, 95, 0.95);
    border-bottom: 1px solid rgba(201, 184, 150, 0.15);
}

/* ==========================================================================
   Footer Refinements
   ========================================================================== */

.site-footer {
    background: var(--color-accent-dark);
    border-top: 1px solid rgba(201, 184, 150, 0.15);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
}

/* ==========================================================================
   Form Input Refinements
   ========================================================================== */

.form-input,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.form-input:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    border-color: var(--color-primary);
    box-shadow:
        inset 0 1px 3px rgba(0, 0, 0, 0.04),
        0 0 0 3px rgba(30, 58, 95, 0.1);
    outline: none;
}

/* ==========================================================================
   Hover States - Subtle Elegance
   ========================================================================== */

a {
    transition: color 0.3s ease, opacity 0.3s ease;
}

.btn {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease;
}

.card:hover {
    transform: translateY(-6px);
}

/* ==========================================================================
   Typography Refinements
   ========================================================================== */

.subtitle {
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero subtitle moet wit zijn, niet de blauwe gradient */
.hero .subtitle,
.hero__content .subtitle,
section.hero .subtitle {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.5);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.tagline {
    position: relative;
    display: inline-block;
}

.tagline::before,
.tagline::after {
    content: '"';
    color: var(--color-gold);
    font-size: 1.5em;
    line-height: 0;
    vertical-align: middle;
}

/* ==========================================================================
   Loading States
   ========================================================================== */

.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Scrollbar Styling
   ========================================================================== */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-primary-light), var(--color-primary));
    border-radius: 5px;
    border: 2px solid var(--color-secondary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ==========================================================================
   Wizard Options - Enhanced SVG Icon Styling
   ========================================================================== */

/* Hide native checkbox/radio */
.wizard-option input[type="radio"],
.wizard-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Base wizard option */
.wizard-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-5) var(--space-4);
    background: var(--color-white);
    border: 2px solid #e8e4dc;
    border-radius: var(--radius-xl);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.wizard-option:hover {
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.1);
}

.wizard-option.selected {
    border-color: var(--color-primary);
    background: linear-gradient(180deg, rgba(30, 58, 95, 0.02) 0%, rgba(30, 58, 95, 0.06) 100%);
    box-shadow:
        0 8px 24px rgba(30, 58, 95, 0.15),
        inset 0 0 0 1px rgba(30, 58, 95, 0.1);
}

/* Selection indicator */
.wizard-option.selected::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 22px;
    height: 22px;
    background: var(--gradient-icon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.25);
}

.wizard-option.selected::before {
    content: '';
    position: absolute;
    top: 17px;
    right: 19px;
    width: 6px;
    height: 10px;
    border: 2px solid var(--color-gold-light);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    z-index: 1;
}

/* Icon container */
.wizard-option__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-4);
    background: linear-gradient(145deg, #f5f2ed 0%, #ebe6dc 100%);
    border-radius: 16px;
    color: var(--color-primary);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.wizard-option__icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.wizard-option:hover .wizard-option__icon {
    background: var(--gradient-icon);
    box-shadow: 0 6px 18px rgba(30, 58, 95, 0.2);
}

.wizard-option:hover .wizard-option__icon svg {
    color: var(--color-gold-light);
}

.wizard-option.selected .wizard-option__icon {
    background: var(--gradient-icon);
    box-shadow:
        0 8px 24px rgba(30, 58, 95, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.wizard-option.selected .wizard-option__icon svg {
    color: var(--color-gold-light);
}

/* Labels */
.wizard-option__label {
    font-weight: 600;
    font-size: var(--text-base);
    color: var(--color-primary);
    margin-bottom: var(--space-1);
    transition: color 0.3s ease;
}

.wizard-option__desc {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.4;
}

/* Option grid layouts */
.wizard-options--large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
}

.wizard-options--islands {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-4);
}

.wizard-options--departure {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

.wizard-options--preferences {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-3);
}

/* Island specific styling */
.wizard-option--island .wizard-option__icon {
    width: 72px;
    height: 72px;
}

.wizard-option--island .wizard-option__icon svg {
    width: 32px;
    height: 32px;
}

/* Smaller preference options */
.wizard-options--preferences .wizard-option {
    padding: var(--space-4) var(--space-3);
}

.wizard-options--preferences .wizard-option__icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-3);
}

.wizard-options--preferences .wizard-option__icon svg {
    width: 22px;
    height: 22px;
}

.wizard-options--preferences .wizard-option__label {
    font-size: var(--text-sm);
}

.wizard-options--preferences .wizard-option.selected::after {
    width: 18px;
    height: 18px;
    top: 8px;
    right: 8px;
}

.wizard-options--preferences .wizard-option.selected::before {
    top: 12px;
    right: 14px;
    width: 5px;
    height: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
    .wizard-options--large {
        grid-template-columns: repeat(2, 1fr);
    }

    .wizard-options--islands {
        grid-template-columns: repeat(3, 1fr);
    }

    .wizard-options--preferences {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .wizard-options--large,
    .wizard-options--islands {
        grid-template-columns: repeat(2, 1fr);
    }

    .wizard-options--departure {
        grid-template-columns: 1fr;
    }

    .wizard-options--preferences {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Wizard hint text */
.wizard-hint {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-bottom: var(--space-6);
    text-align: center;
}

/* Wizard tip */
.wizard-tip {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-top: var(--space-6);
    padding: var(--space-4);
    background: rgba(30, 58, 95, 0.03);
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--color-gold);
}

.wizard-tip svg {
    color: var(--color-gold-dark);
    flex-shrink: 0;
}

/* Trust items */
.trust-item {
    padding: var(--space-6);
}

.trust-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: var(--space-4);
    background: var(--gradient-icon);
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.2);
}

.trust-item__icon svg {
    color: var(--color-gold-light);
}

.trust-item h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-2);
}

.trust-item p {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin: 0;
}

/* Success icon */
.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    margin-bottom: var(--space-6);
    background: linear-gradient(145deg, #81b29a 0%, #6a9a82 100%);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(129, 178, 154, 0.35);
}

.success-icon svg {
    color: white;
}

.success-text {
    font-size: var(--text-lg);
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto var(--space-6);
}

/* Partner notice */
.partner-notice {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: rgba(30, 58, 95, 0.04);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
    border: 1px solid rgba(30, 58, 95, 0.08);
}

.partner-notice img {
    height: 40px;
    width: auto;
}

.partner-notice__title {
    margin: 0;
    font-weight: 500;
    color: var(--color-primary);
}

.partner-notice__subtitle {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--color-text-light);
}

/* Price display */
.wizard-price-display__note {
    font-size: var(--text-sm);
    color: var(--color-text-light);
    margin-top: var(--space-2);
}

/* Navigation buttons */
.wizard-navigation .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.wizard-navigation .btn svg {
    transition: transform 0.2s ease;
}

.wizard-navigation .wizard-next:hover svg {
    transform: translateX(3px);
}

.wizard-navigation .wizard-prev:hover svg {
    transform: translateX(-3px);
}

/* ==========================================================================
   Responsive Design - Mobile First
   ========================================================================== */

/* Reisprogramma - Variant tabs responsive */
.variant-tabs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.variant-tab-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-family: inherit;
    width: 100%;
}

.variant-tab-btn:hover {
    background: rgba(30, 58, 95, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.15);
}

.variant-tab-btn.active {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.3);
}

/* Dagprogramma items responsive */
.day-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-secondary);
    align-items: flex-start;
}

.day-badge {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

.day-content {
    flex: 1;
    min-width: 0;
}

/* Hotels grid responsive */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

/* Price table responsive */
.price-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ==========================================================================
   Tablet Styles (768px and up)
   ========================================================================== */
@media (min-width: 768px) {
    .variant-tabs-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .day-badge {
        width: 70px;
        height: 70px;
    }

    .day-item {
        gap: 24px;
        padding: 20px 0;
    }

    .hotels-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

/* ==========================================================================
   Mobile Styles (max 767px)
   ========================================================================== */
@media (max-width: 767px) {
    /* General spacing */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Hero section mobile */
    .reis-hero {
        min-height: 60vh;
    }

    .reis-hero h1 {
        font-size: 28px !important;
    }

    /* Variant tabs stack on mobile */
    .variant-tabs-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .variant-tab-btn {
        padding: 14px 16px;
    }

    .variant-tab-btn svg {
        width: 20px;
        height: 20px;
    }

    /* Day program compact on mobile */
    .day-item {
        gap: 12px;
        padding: 14px 0;
    }

    .day-badge {
        width: 50px;
        height: 50px;
    }

    .day-badge span:first-child {
        font-size: 8px !important;
    }

    .day-badge span:last-child {
        font-size: 18px !important;
    }

    .day-content h4 {
        font-size: 15px !important;
    }

    .day-content p {
        font-size: 14px !important;
    }

    /* Hotels grid single column on small mobile */
    .hotels-grid {
        grid-template-columns: 1fr;
    }

    /* Price table scroll hint */
    .price-table-wrapper::after {
        content: '← scroll →';
        display: block;
        text-align: center;
        font-size: 12px;
        color: var(--color-text-light);
        padding: 8px;
    }

    /* Sidebar sticky on mobile */
    .reis-sidebar {
        position: static !important;
    }

    /* Grid adjustments */
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr !important;
    }

    /* Section headings */
    h2 {
        font-size: 24px !important;
    }

    h3 {
        font-size: 20px !important;
    }

    /* Buttons full width on mobile */
    .btn--block-mobile {
        width: 100%;
        justify-content: center;
    }

    /* Hoogtepunten single column */
    .hoogtepunten-grid {
        grid-template-columns: 1fr !important;
    }

    /* Inclusief/Exclusief stack */
    .inex-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

/* ==========================================================================
   Small Mobile Styles (max 480px)
   ========================================================================== */
@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .reis-hero h1 {
        font-size: 24px !important;
    }

    .variant-tab-btn {
        padding: 12px 14px;
        font-size: 14px;
    }

    .day-badge {
        width: 45px;
        height: 45px;
    }

    /* Hotel cards compact */
    .hotel-card {
        padding: 16px !important;
    }

    /* Price display */
    .reis-sidebar .price-main {
        font-size: 28px !important;
    }
}

/* ==========================================================================
   Touch Device Optimizations
   ========================================================================== */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .variant-tab-btn {
        min-height: 60px;
    }

    .btn {
        min-height: 48px;
    }

    /* Remove hover effects on touch */
    .variant-tab-btn:hover {
        transform: none;
    }

    .hotel-card:hover {
        transform: none;
    }
}

/* ==========================================================================
   HORIZONTAL OVERFLOW FIX - Prevents sideways scrolling on mobile
   ========================================================================== */

html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
    position: relative;
}

/* Ensure all containers stay within viewport */
.container,
.section,
.reis-hero__content,
.page-header,
.usp-bar,
.site-header__inner,
.footer-grid,
.hero__content,
.reis-details,
.reis-content {
    max-width: 100%;
    box-sizing: border-box;
}

/* Fix for elements that might cause overflow */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

/* Tables need horizontal scroll wrapper */
.price-table,
.prijstabel,
table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
}

/* Reis page specific mobile fixes */
@media (max-width: 767px) {
    /* Fix variant tabs overflow */
    .variant-tabs-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .variant-tab-btn {
        padding: 12px 16px !important;
        font-size: 14px !important;
        width: 100%;
        box-sizing: border-box;
    }

    .variant-tab-btn div strong {
        font-size: 14px !important;
    }

    .variant-tab-btn div span {
        font-size: 12px !important;
    }

    /* Day badges smaller on mobile */
    .day-badge {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
    }

    .day-badge span:first-child {
        font-size: 8px !important;
    }

    .day-badge span:last-child {
        font-size: 18px !important;
    }

    /* Day items */
    .day-item {
        gap: 12px !important;
        padding: 12px 0 !important;
    }

    .day-content h4 {
        font-size: 15px !important;
    }

    .day-content p {
        font-size: 14px !important;
        word-wrap: break-word;
    }

    /* Hotels grid on mobile - 2 columns */
    .hotels-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
    }

    .hotel-card {
        padding: 12px !important;
    }

    .hotel-card h4 {
        font-size: 13px !important;
        word-wrap: break-word;
    }

    /* USP bar fix */
    .usp-bar {
        padding: 16px 0 !important;
    }

    .usp-bar__list {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
    }

    .usp-bar__item {
        font-size: 13px !important;
        width: 100%;
    }

    /* Reis hero */
    .reis-hero {
        height: 50vh !important;
        min-height: 300px !important;
    }

    .reis-hero__title {
        font-size: 1.5rem !important;
        word-wrap: break-word;
    }

    .reis-hero__meta {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .reis-hero__meta span {
        font-size: 13px !important;
    }

    /* Breadcrumb */
    .page-header__breadcrumb {
        flex-wrap: wrap;
        font-size: 12px !important;
        gap: 4px !important;
    }

    /* Reis details layout */
    .reis-details {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .reis-sidebar {
        order: -1;
    }

    /* Grid columns fix */
    .grid--2 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    /* Hoogtepunten grid */
    .grid--2[style*="gap: var(--space-4)"] {
        grid-template-columns: 1fr !important;
    }

    /* Inclusief/Exclusief sections */
    .grid--2 > div {
        margin-bottom: 1.5rem;
    }

    /* Booking card */
    .reis-booking-card {
        padding: 1.25rem !important;
    }

    .reis-booking-card__price-value {
        font-size: 2rem !important;
    }

    /* Fix any inline grid styles */
    [style*="grid-template-columns: repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns: repeat(auto-fill"] {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   Mobile First - Optimized for all devices
   ========================================================================== */

/* ==========================================================================
   Mobile Base Styles (320px - 767px)
   ========================================================================== */

/* Global Mobile Typography */
@media (max-width: 767px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 1.875rem !important; /* 30px */
        line-height: 1.2;
    }

    h2 {
        font-size: 1.5rem !important; /* 24px */
    }

    h3 {
        font-size: 1.25rem !important; /* 20px */
    }

    h4 {
        font-size: 1.125rem !important; /* 18px */
    }

    .lead {
        font-size: 1rem;
    }

    .tagline {
        font-size: 1.25rem;
    }
}

/* Mobile Container & Spacing */
@media (max-width: 767px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section {
        padding: 3rem 0;
    }

    .section--lg {
        padding: 4rem 0;
    }

    .section--sm {
        padding: 2rem 0;
    }
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .site-header {
        padding: 0.75rem 0;
    }

    .site-logo__text {
        font-size: 1.125rem;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        height: 100dvh; /* Dynamic viewport height for mobile browsers */
        background: var(--color-white);
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 1.5rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        overflow-y: auto;
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav__list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .main-nav__item {
        width: 100%;
        border-bottom: 1px solid var(--color-secondary);
    }

    .main-nav__link {
        display: block;
        padding: 1rem 0;
        font-size: 1.125rem;
        color: var(--color-text) !important;
    }

    /* Mobile Dropdown */
    .main-nav__dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding: 0 0 1rem 1rem;
        margin-top: 0;
        display: none;
    }

    .main-nav__item.dropdown-open .main-nav__dropdown {
        display: block;
    }

    .main-nav__dropdown-link {
        padding: 0.75rem 0;
        font-size: 1rem;
    }

    .main-nav__actions {
        flex-direction: column;
        width: 100%;
        margin-top: 1.5rem;
        gap: 0.75rem;
    }

    .main-nav__actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Hamburger Animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile Menu Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* Mobile Hero Section */
@media (max-width: 767px) {
    .hero {
        min-height: 85vh;
        min-height: 85dvh;
    }

    .hero__content {
        padding: 1.5rem;
    }

    .hero__title {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero__tagline {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .hero__buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero__buttons .btn {
        width: 100%;
    }

    .hero__scroll {
        display: none;
    }
}

/* Mobile Cards */
@media (max-width: 767px) {
    .card {
        border-radius: var(--radius-lg);
    }

    .card__content {
        padding: 1.25rem;
    }

    .card__title {
        font-size: 1.125rem;
    }

    .card--horizontal {
        grid-template-columns: 1fr;
    }

    .card--horizontal .card__image {
        aspect-ratio: 16/9;
        height: auto;
    }

    .card__meta {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .card__price {
        font-size: 1.375rem;
    }
}

/* Mobile Grids */
@media (max-width: 767px) {
    .grid,
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Allow 2 columns for small items on larger phones */
    .grid--cards-mobile-2 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }
}

/* Mobile Buttons */
@media (max-width: 767px) {
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        min-height: 48px; /* Touch target */
    }

    .btn--lg {
        padding: 1rem 1.75rem;
    }

    .btn--sm {
        padding: 0.625rem 1rem;
        min-height: 44px;
    }

    .btn--full-mobile {
        width: 100%;
    }
}

/* Mobile USP Bar */
@media (max-width: 767px) {
    .usp-bar {
        padding: 1.25rem 0;
    }

    .usp-bar__list {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .usp-bar__item {
        width: 100%;
    }

    .usp-bar__icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .usp-bar__text {
        font-size: 0.875rem;
    }
}

/* Mobile Eiland Cards */
@media (max-width: 767px) {
    .eiland-card {
        aspect-ratio: 16/12;
        border-radius: var(--radius-lg);
    }

    .eiland-card__content {
        padding: 1.25rem;
    }

    .eiland-card__title {
        font-size: 1.375rem;
    }
}

/* Mobile Thema Cards */
@media (max-width: 767px) {
    .thema-card {
        padding: 1.5rem;
    }

    .thema-card__icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .thema-card__icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Mobile Feature Grid */
@media (max-width: 767px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.25rem;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }

    .feature-item__icon {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .feature-item__icon svg {
        width: 26px;
        height: 26px;
    }
}

/* Mobile Partner Locator */
@media (max-width: 767px) {
    .partner-locator {
        padding: 3rem 0;
    }

    .partner-locator__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .partner-locator__form {
        padding: 1.5rem;
    }

    .partner-locator__search {
        flex-direction: column;
    }

    .partner-locator__input {
        width: 100%;
    }
}

/* Mobile Offerte Wizard */
@media (max-width: 767px) {
    .offerte-wizard {
        padding: 1.5rem;
        border-radius: var(--radius-lg);
        margin: 0 -0.5rem;
    }

    .wizard-progress {
        overflow-x: auto;
        padding-bottom: 0.5rem;
        margin-bottom: 2rem;
    }

    .wizard-progress::before {
        display: none;
    }

    .wizard-step__number {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .wizard-step__label {
        font-size: 0.75rem;
    }

    .wizard-options {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }

    .wizard-option {
        padding: 1rem 0.75rem;
    }

    .wizard-option__icon {
        width: 48px;
        height: 48px;
        margin-bottom: 0.75rem;
    }

    .wizard-option__icon svg {
        width: 22px;
        height: 22px;
    }

    .wizard-option__label {
        font-size: 0.8125rem;
    }

    .wizard-option__desc {
        display: none;
    }

    .wizard-navigation {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }

    .wizard-navigation .btn {
        width: 100%;
    }

    .wizard-price-display__value {
        font-size: 2rem;
    }
}

/* Mobile Brochure Section */
@media (max-width: 767px) {
    .brochure-card {
        grid-template-columns: 1fr;
    }

    .brochure-card__image {
        aspect-ratio: 4/3;
    }

    .brochure-card__content {
        padding: 1.5rem;
    }

    .brochure-options {
        gap: 0.75rem;
    }

    .brochure-option {
        padding: 1rem;
    }

    .brochure-option__icon {
        width: 44px;
        height: 44px;
    }
}

/* Mobile Testimonials */
@media (max-width: 767px) {
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-card__quote {
        font-size: 1rem;
        padding-left: 1.5rem;
    }

    .testimonial-card__quote::before {
        font-size: 2.5rem;
    }

    .testimonial-card__avatar {
        width: 48px;
        height: 48px;
    }
}

/* Mobile FAQ */
@media (max-width: 767px) {
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9375rem;
    }
}

/* Mobile Footer */
@media (max-width: 767px) {
    .site-footer {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand__description {
        font-size: 0.875rem;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-social {
        margin-top: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Mobile Page Header */
@media (max-width: 767px) {
    .page-header {
        padding: calc(70px + 2rem) 0 2rem;
    }

    .page-header__title {
        font-size: 1.75rem;
    }

    .page-header__breadcrumb {
        font-size: 0.8125rem;
        flex-wrap: wrap;
    }
}

/* Mobile Reis Detail Page */
@media (max-width: 767px) {
    .reis-hero {
        height: 55vh;
        min-height: 350px;
    }

    .reis-hero__title {
        font-size: 1.75rem !important;
    }

    .reis-hero__meta {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 1rem;
    }

    .reis-details {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }

    .reis-sidebar {
        position: static;
        order: -1; /* Show booking card first on mobile */
    }

    .reis-booking-card {
        padding: 1.5rem;
    }

    .reis-booking-card__price-value {
        font-size: 2rem;
    }
}

/* Mobile Forms */
@media (max-width: 767px) {
    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevent iOS zoom */
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .form-checkbox {
        align-items: flex-start;
    }

    .form-checkbox input {
        margin-top: 4px;
    }
}

/* ==========================================================================
   Tablet Styles (768px - 1024px)
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1024px) {
    html {
        font-size: 15px;
    }

    .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .section {
        padding: 4rem 0;
    }

    /* Tablet Grids */
    .grid--2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tablet Hero */
    .hero__title {
        font-size: 2.75rem;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

    /* Tablet Feature Grid */
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tablet Wizard */
    .wizard-options--large {
        grid-template-columns: repeat(2, 1fr);
    }

    .wizard-options--islands {
        grid-template-columns: repeat(3, 1fr);
    }

    .wizard-options--preferences {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Tablet Footer */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Tablet Partner Locator */
    .partner-locator__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Tablet Reis Details */
    .reis-details {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .reis-sidebar {
        position: static;
    }
}

/* ==========================================================================
   Large Desktop Styles (1280px+)
   ========================================================================== */

@media (min-width: 1280px) {
    .container--wide {
        max-width: 1400px;
    }

    .hero__title {
        font-size: 4rem;
    }

    .section--lg {
        padding: 7rem 0;
    }

    .feature-grid {
        gap: 3rem;
    }

    .footer-grid {
        gap: 4rem;
    }
}

/* ==========================================================================
   Touch Device Optimizations
   ========================================================================== */

@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn {
        min-height: 48px;
    }

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

    .main-nav__link {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .card {
        cursor: pointer;
    }

    /* Disable hover effects */
    .card:hover {
        transform: none;
    }

    .btn:hover {
        transform: none;
    }

    .variant-tab-btn:hover {
        transform: none;
    }

    .eiland-card:hover .eiland-card__image img {
        transform: none;
    }

    .thema-card:hover {
        transform: none;
    }

    .elegant-icon:hover {
        transform: none;
    }

    /* Active states for touch */
    .btn:active {
        transform: scale(0.98);
    }

    .card:active {
        transform: scale(0.99);
    }

    .wizard-option:active {
        transform: scale(0.98);
    }
}

/* ==========================================================================
   iOS Safe Area Support
   ========================================================================== */

@supports (padding: max(0px)) {
    .site-footer {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }

    .main-nav {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

/* ==========================================================================
   Landscape Phone Optimization
   ========================================================================== */

@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero__title {
        font-size: 1.75rem !important;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero__buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .hero__buttons .btn {
        width: auto;
        flex: 1 1 auto;
    }

    .reis-hero {
        height: 100vh;
        min-height: auto;
    }
}

/* ==========================================================================
   High DPI / Retina Display Adjustments
   ========================================================================== */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .elegant-icon,
    .thema-card__icon,
    .feature-item__icon {
        box-shadow:
            0 4px 12px rgba(30, 58, 95, 0.15),
            0 1px 4px rgba(30, 58, 95, 0.1);
    }
}

/* ==========================================================================
   Dark Mode Support (Optional - respects user preference)
   ========================================================================== */

@media (prefers-color-scheme: dark) {
    /* Uncomment to enable dark mode support
    :root {
        --color-secondary: #1a1a1a;
        --color-secondary-dark: #2d2d2d;
        --color-white: #121212;
        --color-text: #e0e0e0;
        --color-text-light: #a0a0a0;
    }

    .card {
        background-color: #1a1a1a;
    }

    .site-header.scrolled {
        background-color: rgba(18, 18, 18, 0.95);
    }
    */
}

/* ==========================================================================
   Reduced Motion Support
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero__scroll {
        animation: none;
    }

    .float-animation {
        animation: none;
    }

    .pulse-animation {
        animation: none;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    /* Hide non-essential elements */
    .site-header,
    .site-footer,
    .hero__scroll,
    .btn,
    .mobile-menu-toggle,
    .variant-tabs-grid,
    .reis-sidebar,
    .partner-locator,
    .wizard-navigation {
        display: none !important;
    }

    /* Show all content */
    .variant-dagprogramma {
        display: block !important;
    }

    /* Reset colors for printing */
    body {
        color: #000;
        background: #fff;
    }

    h1, h2, h3, h4, h5, h6 {
        color: #000;
    }

    /* Preserve badges and icons */
    .day-badge {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Page breaks */
    .section {
        page-break-inside: avoid;
    }

    h2, h3 {
        page-break-after: avoid;
    }

    /* Show URLs for links */
    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
}

/* ==========================================================================
   Utility Classes for Responsive Design
   ========================================================================== */

/* Hide on specific breakpoints */
.hide-mobile {
    display: block;
}

.hide-tablet {
    display: block;
}

.hide-desktop {
    display: none;
}

.show-mobile-only {
    display: none;
}

@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }

    .show-mobile-only {
        display: block !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hide-tablet {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .hide-desktop {
        display: none !important;
    }
}

/* Responsive text alignment */
@media (max-width: 767px) {
    .text-center-mobile {
        text-align: center !important;
    }

    .text-left-mobile {
        text-align: left !important;
    }
}

/* Responsive spacing */
@media (max-width: 767px) {
    .mb-mobile-4 {
        margin-bottom: 1rem !important;
    }

    .mb-mobile-6 {
        margin-bottom: 1.5rem !important;
    }

    .mt-mobile-4 {
        margin-top: 1rem !important;
    }

    .p-mobile-4 {
        padding: 1rem !important;
    }
}

/* Stack on mobile */
.stack-mobile {
    display: flex;
    gap: 1rem;
}

@media (max-width: 767px) {
    .stack-mobile {
        flex-direction: column;
    }

    .stack-mobile > * {
        width: 100%;
    }
}

/* Scroll container for tables/wide content */
.scroll-container-mobile {
    width: 100%;
}

@media (max-width: 767px) {
    .scroll-container-mobile {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
    }

    .scroll-container-mobile::after {
        content: 'Swipe to see more →';
        display: block;
        text-align: center;
        font-size: 0.75rem;
        color: var(--color-text-light);
        padding-top: 0.5rem;
    }
}

/* Full width on mobile */
.full-width-mobile {
    width: auto;
}

@media (max-width: 767px) {
    .full-width-mobile {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ==========================================================================
   Dashboard Styles - Sunair & Reisbureau
   ========================================================================== */

/* Dashboard Statistics */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-stat {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--color-primary);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.dashboard-stat--new {
    border-left-color: #0073aa;
}

.dashboard-stat--pending {
    border-left-color: #f0b849;
}

.dashboard-stat--sent {
    border-left-color: #46b450;
}

.dashboard-stat--booked {
    border-left-color: #00a32a;
}

.dashboard-stat--visitors {
    border-left-color: #9b59b6;
}

.dashboard-stat__value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.dashboard-stat__label {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 0.5rem;
}

/* Partner Link Box */
.partner-link-box {
    background: var(--color-champagne);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.partner-link-box h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.partner-link-box p {
    margin: 0 0 1rem;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.partner-link-display {
    display: flex;
    gap: 0.5rem;
}

.partner-link-display input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 0.875rem;
    background: white;
}

/* Dashboard Filters */
.dashboard-filters {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.dashboard-filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.filter-group select,
.filter-group input {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 0.875rem;
    min-width: 180px;
}

/* Dashboard Table */
.dashboard-table-wrapper {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table th {
    background: var(--color-primary);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 500;
    font-size: 0.875rem;
}

.dashboard-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle;
}

.dashboard-table tbody tr:hover {
    background: #f9f9f9;
}

.dashboard-table tbody tr:last-child td {
    border-bottom: none;
}

.offerte-row--new {
    background: rgba(0, 115, 170, 0.05);
}

.offerte-row--ready {
    background: rgba(70, 180, 80, 0.05);
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Unread Badge */
.unread-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #dc3232;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    margin-left: 0.5rem;
}

/* Dashboard Pagination */
.dashboard-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 1rem;
}

.dashboard-pagination .page-numbers {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.2s ease;
}

.dashboard-pagination .page-numbers.current,
.dashboard-pagination .page-numbers:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Dashboard Modal */
.dashboard-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.dashboard-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.dashboard-modal__content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 2rem;
}

.dashboard-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.dashboard-modal__close:hover {
    background: #ddd;
}

/* Offerte Detail in Modal */
.offerte-detail__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-border);
}

.offerte-detail__header h2 {
    margin: 0;
    color: var(--color-primary);
}

.offerte-detail__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.offerte-detail__section {
    background: #f9f9f9;
    padding: 1.25rem;
    border-radius: 8px;
}

.offerte-detail__section--full {
    grid-column: 1 / -1;
}

.offerte-detail__section h3 {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: var(--color-primary);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-border);
}

.offerte-detail__section p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.offerte-partner-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.offerte-partner-info h4 {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    color: var(--color-primary);
}

/* Offerte Actions */
.offerte-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.offerte-action-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.offerte-action-group label {
    font-weight: 500;
    color: var(--color-text-light);
}

.offerte-action-group select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 6px;
}

/* Offerte Comments */
.offerte-comments {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding-right: 0.5rem;
}

.offerte-comment {
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-radius: 8px;
}

.offerte-comment.sunair {
    background: #e8f4f8;
    border-left: 3px solid #0073aa;
}

.offerte-comment.reisbureau {
    background: #f0f8e8;
    border-left: 3px solid #46b450;
}

.offerte-comment__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.offerte-comment__header strong {
    color: var(--color-primary);
}

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

.offerte-comment p {
    margin: 0;
    font-size: 0.9rem;
}

.no-comments {
    color: var(--color-text-light);
    font-style: italic;
    text-align: center;
    padding: 1rem;
}

.offerte-new-comment {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.offerte-new-comment textarea {
    width: 100%;
    min-height: 80px;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    resize: vertical;
    font-family: inherit;
}

.section-hint {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

/* Offerte Download Section */
.offerte-download-section {
    background: linear-gradient(135deg, #f0f8e8 0%, #e8f4f8 100%);
    border: 1px solid #46b450;
}

.offerte-download-section h3 {
    color: #2e7d32;
}

/* ==========================================================================
   Reisbureau Search (Offerte Page)
   ========================================================================== */

.reisbureau-search-group {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.reisbureau-search__input-group {
    display: flex;
    gap: 0.5rem;
}

.reisbureau-search__input-group input {
    flex: 1;
}

.reisbureau-search__results {
    margin-top: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.reisbureau-search__results h4 {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.reisbureau-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f9f9f9;
    border: 2px solid transparent;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reisbureau-result:hover {
    background: #f0f0f0;
    border-color: var(--color-primary);
}

.reisbureau-result.selected {
    background: #e8f4f8;
    border-color: var(--color-primary);
}

.reisbureau-result__info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reisbureau-result__logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 4px;
}

.reisbureau-result__details {
    display: flex;
    flex-direction: column;
}

.reisbureau-result__details strong {
    font-size: 1rem;
    color: var(--color-primary);
}

.reisbureau-result__details span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.reisbureau-result__action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.reisbureau-result.selected .reisbureau-result__action {
    color: #46b450;
}

.reisbureau-no-results {
    text-align: center;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.reisbureau-no-results p:first-child {
    margin: 0 0 0.5rem;
    font-weight: 500;
}

.selection-confirm {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #e8f4e8;
    border-radius: 8px;
    margin-top: 0.75rem;
    color: #2e7d32;
    font-size: 0.9rem;
}

.selection-confirm svg {
    color: #46b450;
    flex-shrink: 0;
}

/* Dashboard Mobile Responsive */
@media (max-width: 1024px) {
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .offerte-detail__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-filter-form {
        flex-direction: column;
    }

    .filter-group select,
    .filter-group input {
        min-width: 100%;
    }

    .dashboard-table-wrapper {
        overflow-x: auto;
    }

    .dashboard-table {
        min-width: 800px;
    }

    .dashboard-modal__content {
        padding: 1.5rem;
        margin: 1rem;
    }

    .offerte-actions {
        flex-direction: column;
    }

    .partner-link-display {
        flex-direction: column;
    }

    .reisbureau-search__input-group {
        flex-direction: column;
    }

    .reisbureau-result {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .reisbureau-result__action {
        width: 100%;
        justify-content: center;
        padding-top: 0.5rem;
        border-top: 1px solid var(--color-border);
    }
}

/* ==========================================================================
   Brochure Section - Compacter
   ========================================================================== */

.brochure-section {
    padding: var(--space-12) 0;
}

.brochure-card__image {
    aspect-ratio: 4/5;
}

.brochure-card__content {
    padding: var(--space-8);
}

.brochure-card__content h2 {
    margin-bottom: var(--space-3);
}

.brochure-card__content > p {
    margin-bottom: var(--space-4);
}

.brochure-options {
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.brochure-option {
    padding: var(--space-3) var(--space-4);
}

/* Brochure Section - Nog compacter */
.brochure-section {
    padding: var(--space-8) 0 !important;
}

.brochure-card__image {
    aspect-ratio: 1/1 !important;
}

.brochure-card__content {
    padding: var(--space-6) !important;
}

.brochure-card__content h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-2);
}

.brochure-card__content > p {
    font-size: 0.95rem;
    margin-bottom: var(--space-3);
}

.brochure-options {
    gap: var(--space-2) !important;
    margin-top: var(--space-3) !important;
}

.brochure-option {
    padding: var(--space-2) var(--space-3) !important;
}

/* ==========================================================================
   CTA Section - Betere leesbaarheid op geel
   ========================================================================== */

.section--primary {
    background: var(--color-primary) !important;
}

.section--primary h2 {
    color: var(--color-accent-dark) !important;
    text-shadow: none !important;
}

.section--primary p {
    color: var(--color-accent-dark) !important;
    opacity: 0.85 !important;
}

/* Bekijk alle reizen button - huisstijl */
.btn--secondary {
    background-color: var(--color-accent-dark) !important;
    border-color: var(--color-accent-dark) !important;
    color: #ffffff !important;
}

.btn--secondary:hover {
    background-color: #3d6a8f !important;
    border-color: #3d6a8f !important;
    color: #ffffff !important;
}

/* Bekijk alle reizen button - zelfde als Ontdek de eilanden */
.btn--secondary {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: var(--color-accent-dark) !important;
}

.btn--secondary:hover {
    background-color: #d4c44a !important;
    border-color: #d4c44a !important;
    color: var(--color-accent-dark) !important;
}

/* Bekijk alle reizen button - EXACT zoals btn--primary */
.btn--secondary,
.btn--secondary:visited {
    background: var(--color-primary) !important;
    background-color: var(--color-primary) !important;
    border: 2px solid var(--color-primary) !important;
    color: var(--color-accent-dark) !important;
    box-shadow: none !important;
    -webkit-text-fill-color: var(--color-accent-dark) !important;
}

.btn--secondary:hover,
.btn--secondary:focus {
    background: #d4c44a !important;
    background-color: #d4c44a !important;
    border-color: #d4c44a !important;
    color: var(--color-accent-dark) !important;
    -webkit-text-fill-color: var(--color-accent-dark) !important;
}

/* ==========================================================================
   Thema Cards - Huisstijl aanpassing
   ========================================================================== */

/* Alle streepjes boven de kaarten in huisstijl blauw */
.thema-card,
.thema-card--rustzoeker,
.thema-card--fijnproever,
.thema-card--avonturier,
.thema-card--shortbreak {
    border-top-color: var(--color-accent-dark) !important;
}

/* Iconen achtergrond in huisstijl blauw */
.thema-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--color-accent-dark) !important;
    border-radius: 16px;
    margin-bottom: var(--space-4);
}

.thema-card__icon svg {
    color: #ffffff !important;
    stroke: #ffffff !important;
}

/* Vinkjes/bullets in de lijst in huisstijl geel */
.thema-card__list li {
    position: relative;
    padding-left: 28px;
}

.thema-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-color: var(--color-primary);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235478a8' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Ontdek meer buttons in huisstijl */
.thema-card .btn--outline {
    border-color: var(--color-accent-dark) !important;
    color: var(--color-accent-dark) !important;
    background: transparent !important;
}

.thema-card .btn--outline:hover {
    background: var(--color-accent-dark) !important;
    color: #ffffff !important;
}

/* ==========================================================================
   Thema Cards - STERKE Override voor huisstijl
   ========================================================================== */

/* Alle streepjes boven de kaarten FORCEREN naar huisstijl blauw */
.thema-card {
    border-top: 4px solid var(--color-accent-dark) !important;
}

.thema-card.thema-card--rustzoeker {
    border-top: 4px solid var(--color-accent-dark) !important;
}

.thema-card.thema-card--fijnproever {
    border-top: 4px solid var(--color-accent-dark) !important;
}

.thema-card.thema-card--avonturier {
    border-top: 4px solid var(--color-accent-dark) !important;
}

.thema-card.thema-card--shortbreak {
    border-top: 4px solid var(--color-accent-dark) !important;
}

/* Vinkjes als echte checkmarks */
.thema-card__list li::before {
    content: '✓' !important;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: var(--color-primary) !important;
    background-image: none !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: var(--color-accent-dark) !important;
    line-height: 20px;
    text-align: center;
}
