/* Base Styles - Coastal Beach Branding */
:root {
    /* Primary ocean blue - main brand color */
    --primary-color: #0077BE;
    --primary-dark: #005A8F;
    --primary-light: #4DA6D9;

    /* Sandy beige/warm tones - secondary colors */
    --secondary-color: #F4A460;
    --secondary-light: #FFD7A8;

    /* Accent colors - sunset orange, sea green, and logo purple */
    --accent-color: #FF8C42;
    --accent-green: #2E8B57;
    --accent-purple: #7B68EE;
    --accent-purple-light: #9B88FF;

    /* Neutral colors */
    --light-color: #F8F9FA;
    --dark-color: #2C3E50;
    --gray-color: #6C757D;
    --light-gray: #E9ECEF;
    --white: #FFFFFF;
    --black: #212529;

    /* Beach-inspired gradients */
    --gradient-ocean: linear-gradient(135deg, #0077BE 0%, #4DA6D9 100%);
    --gradient-sunset: linear-gradient(135deg, #FF8C42 0%, #F4A460 100%);
    --gradient-sand: linear-gradient(135deg, #FFD7A8 0%, #F4A460 100%);

    /* Typography */
    --font-primary: Arial, sans-serif;
    --font-secondary: Arial, sans-serif;

    /* Effects */
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 119, 190, 0.15);
    --box-shadow-hover: 0 8px 25px rgba(0, 119, 190, 0.25);
    --border-radius: 8px;
}

/* Global Arial Font Override */
* {
    font-family: Arial, sans-serif !important;
}

/* Exception for FontAwesome icons */
.fas,
.far,
.fab,
.fal,
.fad,
.fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands" !important;
}

i.fas,
i.far,
i.fab,
i.fal,
i.fad,
i.fa {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands" !important;
}

body {
    font-family: Arial, sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Arial, sans-serif !important;
}

p,
span,
div,
a,
button,
input,
textarea,
select,
label {
    font-family: Arial, sans-serif !important;
}

/* Buy morph (button -> form) */
.voucher-buy-morph {
    display: block;
    overflow: hidden;
    transition: width 260ms ease, border-radius 260ms ease, background-color 260ms ease, color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.voucher-buy-morph.morph-to-form {
    background-color: #ffffff;
    color: var(--primary-color);
    border-color: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 12px;
}

.voucher-buy-morph .buy-fields {
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 220ms ease 120ms, transform 220ms ease 120ms;
}

.voucher-buy-morph.morph-to-form .buy-fields {
    opacity: 1;
    transform: translateY(0);
}

.buy-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 10px;
}

.buy-row label {
    font-size: 0.85rem;
    color: var(--gray-color);
}

.buy-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
}

.buy-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 107, 132, 0.15);
}

.buy-actions {
    display: flex;
    justify-content: flex-end;
}

.voucher-buy-success-morph {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 16px;
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    background-color: #ffffff;
    color: var(--secondary-color);
    transition: width 260ms ease, border-radius 260ms ease, background-color 800ms ease, color 800ms ease, border-color 800ms ease;
}

.voucher-buy-success-morph.to-success {
    background-color: var(--secondary-color);
    color: #ffffff;
    border-color: var(--secondary-color);
}

/* Subtle error nudge */
.shake {
    animation: shake 250ms ease;
}

@keyframes shake {

    10%,
    90% {
        transform: translateX(-1px);
    }

    20%,
    80% {
        transform: translateX(2px);
    }

    30%,
    50%,
    70% {
        transform: translateX(-4px);
    }

    40%,
    60% {
        transform: translateX(4px);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.is-hidden {
    display: none !important;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 20px;
}

.logo a {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--dark-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('https://strandkoerbe-groemitz.de/assets/picture/whatsapp-image-2025-05-09-at-14.12.09-7.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature .icon {
    width: 80px;
    height: 80px;
    background-color: rgba(26, 107, 132, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature:hover .icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: rotateY(180deg);
}

/* Ensure smooth transition for no-flip icons */
.icon.no-flip i {
    transition: var(--transition);
}

/* Keep inner icon upright while wrapper rotates */
.feature:hover .icon.no-flip i {
    transform: rotateY(180deg);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
}

.pricing-card.featured .pricing-header {
    background-color: var(--secondary-color);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-features {
    padding: 30px;
}

.pricing-features p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.pricing-card .btn {
    margin: 0 30px 30px;
}

.pricing-note {
    margin-top: 40px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: italic;
}

/* Booking Section */
.booking {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    position: relative;
}

.booking::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="waves" patternUnits="userSpaceOnUse" width="100" height="100"><path d="M0 50 Q25 25 50 50 T100 50" stroke="%237B68EE" stroke-width="0.6" fill="none" opacity="0.12"/><path d="M0 60 Q25 35 50 60 T100 60" stroke="%239B88FF" stroke-width="0.5" fill="none" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    pointer-events: none;
}

.booking-container {
    position: relative;
    z-index: 1;
}

.booking-header {
    text-align: center;
    margin-bottom: 50px;
}

.booking-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.booking-header p {
    color: var(--gray-color);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.booking-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: nowrap;
    gap: 15px;
    position: sticky;
    top: 100px;
    /* Account for header height + some padding */
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 107, 132, 0.1);
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    opacity: 0.6;
    position: relative;
    flex-shrink: 0;
    min-width: 0;
}

.step.active {
    opacity: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: scale(1.05);
}

.step.current {
    opacity: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: scale(1.05);
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background: var(--light-gray);
    z-index: -1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step.active .step-number {
    background: var(--white);
    color: var(--primary-color);
}

.step.current .step-number {
    background: var(--white);
    color: var(--primary-color);
}

.step-content {
    display: none;
}

.step.current .step-content,
.step.next .step-content {
    display: block;
}

.step-content h4 {
    font-size: 0.9rem;
    margin-bottom: 3px;
    color: var(--primary-color);
    white-space: nowrap;
}

.step.active .step-content h4,
.step.current .step-content h4 {
    color: var(--white);
}

.step-content p {
    font-size: 0.8rem;
    color: var(--gray-color);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
    transition: all 0.5s ease;
}

.step.active .step-content p,
.step.current .step-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Hover effect to show full text */
.step:hover .step-content p {
    max-width: 200px;
    white-space: nowrap;
    overflow: visible;
    position: relative;
    z-index: 10;
}

/* Enhanced sticky behavior for booking steps */
.booking-steps.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: scale(0.95);
    animation: stickyPulse 0.3s ease-out;
    border-color: rgba(26, 107, 132, 0.2);
}

.booking-steps.scrolled::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 9px;
    right: 9px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
}

/* Ensure steps remain readable when sticky */
.booking-steps.scrolled .step {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* Add some margin to prevent content from hiding behind sticky steps */
.booking-content {
    margin-top: 20px;
}

/* Sticky animation */
@keyframes stickyPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    50% {
        transform: scale(0.92);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
}

.booking-content {
    max-width: 1200px;
    margin: 0 auto;
}

.booking-form {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--light-gray);
}

.date-selection {
    text-align: center;
    margin-bottom: 40px;
}

.date-selection .form-group {
    max-width: 500px;
    margin: 0 auto;
}

.date-selection label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.date-selection label i {
    color: var(--secondary-color);
    font-size: 1.3rem;
}

#booking-dates {
    width: 100%;
    padding: 20px 25px;
    font-size: 1.1rem;
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    text-align: center;
    background: var(--light-color);
    transition: var(--transition);
    cursor: pointer;
}

#booking-dates:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(26, 107, 132, 0.1);
}

.date-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: italic;
}

.date-hint i {
    color: var(--secondary-color);
}

/* Section Selection (NEW) */
.section-selection {
    margin: 40px 0;
    text-align: center;
}

.section-selection.is-hidden {
    display: none;
}

.section-selection h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-hint {
    color: var(--gray-color);
    font-size: 0.95rem;
    margin-bottom: 30px;
    font-style: italic;
}

.section-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.section-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 25px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.section-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 119, 190, 0.15);
    transform: translateY(-3px);
}

.section-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: 0 6px 16px rgba(0, 119, 190, 0.25);
}

.section-card h4 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 8px;
}

.section-card.selected h4 {
    color: var(--primary-color);
    font-weight: 600;
}

.section-card p {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Booking action buttons */
.booking-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 10px;
}

.booking-actions .btn i {
    margin-right: 8px;
}

.booking-info {
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.info-item a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.booking-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.booking-preview {
    margin-top: 40px;
    text-align: center;
}

.booking-preview img {
    width: 100%;
    max-width: 1500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Enhanced checkout form styling */
.checkout-form {
    background: var(--light-color);
    border-radius: 15px;
    padding: 40px;
    margin-top: 30px;
    border: 1px solid var(--light-gray);
}

.checkout-form .form-row {
    margin-bottom: 25px;
}

.checkout-form .form-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-form .form-group input {
    padding: 15px 20px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.checkout-form .form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 107, 132, 0.1);
}

.checkout-form .btn-block {
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    transition: var(--transition);
}

.checkout-form .btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 107, 132, 0.3);
}

.optional-text {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--gray-color);
    font-style: italic;
}

.field-error {
    font-size: 0.8rem;
    color: #dc3545;
    margin-top: 5px;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    height: 0;
    overflow: hidden;
}

.field-error.show {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    padding-top: 2px;
}

/* Enhanced voucher success notification */
.voucher-success-notification {
    margin-top: 15px;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.voucher-success-notification.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.success-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #28a745;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
    overflow: hidden;
}

.success-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997, #17a2b8);
    animation: shimmer 2s ease-in-out infinite;
}

.success-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.success-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    animation: successPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s both;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.success-ring {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 60px;
    height: 60px;
    border: 3px solid #28a745;
    border-radius: 50%;
    opacity: 0;
    animation: ringExpand 1s ease-out 0.4s both;
}

.success-details {
    flex: 1;
}

.success-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 5px;
    animation: slideInLeft 0.6s ease-out 0.3s both;
}

.success-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 3px;
    animation: slideInLeft 0.6s ease-out 0.4s both;
}

.success-subtitle {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: italic;
    animation: slideInLeft 0.6s ease-out 0.5s both;
}

.success-badge {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--secondary-color), #ffc107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    animation: rotateBounce 1s ease-out 0.6s both;
    box-shadow: 0 3px 10px rgba(249, 168, 37, 0.3);
}

/* Error shake animation */
.error-shake {
    animation: errorShake 0.5s ease-in-out;
}

@keyframes successPop {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ringExpand {
    0% {
        opacity: 0.8;
        transform: scale(0.8);
    }

    100% {
        opacity: 0;
        transform: scale(1.4);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotateBounce {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-180deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.1) rotate(-90deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes errorShake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

/* Voucher form transition */
.voucher-redeem-form {
    transition: all 0.3s ease;
}

.seat-map-container {
    margin-bottom: 30px;
}

/* Row divider with title styling */
.divider-with-title {
    display: flex;
    align-items: center;
    width: 100%;
}

.divider-with-title .title {
    margin-right: 10px;
    white-space: nowrap;
    font-weight: bold;
}

.divider-with-title::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: #000;
    margin-left: 20px;
}

.row-container {
    display: inline-block;
    vertical-align: top;
    margin-right: 15px;
    margin-bottom: 20px;
}

.seat-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.legend-seat {
    min-width: 20px !important;
    height: 16px !important;
    font-size: 0.7rem !important;
    padding: 0 !important;
    pointer-events: none;
}

.seat-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #ffd700, #ffca28);
    color: #5d4037;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 5;
    white-space: nowrap;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.legend-seat.available {
    background: #ecf0f3;
    border-color: #b7c1cc;
}

.legend-seat.is-accessible {
    background: #e8f5e9;
    border-color: #2b8f2b;
    position: relative;
}

.legend-seat.is-accessible::after {
    content: '\f193';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: #2b8f2b;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.seat-map {
    position: relative;
    overflow: hidden;
}

/* Voucher toggle and input */
.voucher-toggle {
    margin: 12px 0;
}

.voucher-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    position: relative;
    padding-left: 30px;
    color: #333;
}

.voucher-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #4a90e2;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.voucher-checkbox:hover .checkmark {
    background-color: #f0f7ff;
}

.voucher-checkbox input:checked~.checkmark {
    background-color: #4a90e2;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.voucher-checkbox input:checked~.checkmark:after {
    display: block;
}

.voucher-input-container {
    overflow: hidden;
    transition: height 0.3s ease;
}

.voucher-redeem-form {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    padding: 4px 0;
}

.voucher-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.voucher-input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

.voucher-apply {
    white-space: nowrap;
    transition: all 0.2s ease;
    transform: translateY(0);
}

.voucher-apply:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.voucher-apply:active {
    transform: translateY(1px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Center Flatpickr calendar popup */
.flatpickr-calendar {
    z-index: 2000;
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
}

.seat-map .seat-bg {
    width: 100%;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.seat-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    gap: 54px;
    /* decreased gap for better alignment with background */
    padding: 64px 8px 16px;
    /* push rows below water area and use bottom space */
    justify-content: flex-start;
    /* pack rows, no forced spreading */
    --pier-x: 50%;
    /* horizontal center of pier in image; adjust if needed */
    --pier-w: 8%;
    /* increased pier width to prevent seat overlap */
}

.seat-row {
    display: grid;
    grid-template-columns: calc(var(--pier-x) - (var(--pier-w) / 2) - 1%) var(--pier-w) calc(100% - (var(--pier-x) + (var(--pier-w) / 2)) - 1%);
    align-items: center;
    border-top: 2px solid #000000;
    padding: 0;
    /* minimize vertical spacing per row */
}

.seat-row:first-child {
    margin-top: 2px;
}

.seat-gap {
    height: 100%;
}

.seat-side {
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    overflow: visible;
    justify-content: space-between;
    padding: 0 2%;
}

.seat-row .seat-side:last-child {
    margin-left: 0;
}

.seat {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 22px;
    padding: 0 6px;
    border-radius: 6px;
    border: 2px solid #b7c1cc;
    background: #ecf0f3;
    color: #24323d;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.seat:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.seat:active {
    transform: translateY(0);
    box-shadow: none;
}

.seat.is-booked {
    background: #6c757d;
    color: #ffffff;
    cursor: not-allowed;
    border-color: #6c757d;
}

.seat.is-xl {
    border-color: #f5c542;
    background: #fff7da;
}

.seat.is-accessible {
    background: #e8f5e9;
    border-color: #2b8f2b;
    position: relative;
    color: transparent;
}

.seat.is-accessible::after {
    content: '\f193';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: #2b8f2b;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 0;
}

.seat.selected {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 168, 37, 0.4);
}

/* Booking placeholder box */
.booking-placeholder {
    border: 2px dashed var(--light-gray);
    background: linear-gradient(135deg, #ffffff 0%, #fbfbfb 100%);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    color: var(--gray-color);
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.booking-placeholder h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.booking-placeholder .hint {
    font-size: 0.95rem;
    color: var(--gray-color);
    opacity: 0.9;
}

/* Vouchers Section */
.vouchers {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.vouchers::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="gift" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="2" fill="%237B68EE" opacity="0.15"/><circle cx="25" cy="75" r="1.5" fill="%239B88FF" opacity="0.12"/><circle cx="75" cy="25" r="1.8" fill="%237B68EE" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23gift)"/></svg>');
    pointer-events: none;
}

.voucher-showcase {
    position: relative;
    z-index: 1;
}

.voucher-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.voucher-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.voucher-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.voucher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.voucher-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.voucher-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.voucher-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.voucher-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(26, 107, 132, 0.3);
    transition: var(--transition);
}

.voucher-card:hover .voucher-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(26, 107, 132, 0.4);
}

/* Selectable voucher cards */
.voucher-card.selectable {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.voucher-card.selectable:hover {
    border: 2px solid var(--primary-color);
}

.voucher-card.selectable.selected {
    border: 3px solid var(--secondary-color);
    background: linear-gradient(135deg, #ffffff 0%, #fff9e6 100%);
    box-shadow: 0 15px 35px rgba(249, 168, 37, 0.2);
}

.selection-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    z-index: 10;
}

/* Adjust selection indicator position when badge is present */
.voucher-card.featured .selection-indicator {
    top: 15px;
    right: 60px;
    /* Move left to avoid badge overlap */
}

.voucher-card.selected .selection-indicator {
    opacity: 1;
    transform: scale(1);
}

.voucher-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.voucher-card p {
    color: var(--gray-color);
    margin-bottom: 25px;
    font-size: 1rem;
}

.voucher-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.voucher-features li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.voucher-features i {
    color: var(--secondary-color);
    margin-right: 12px;
    font-size: 1rem;
    width: 16px;
}

.voucher-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.voucher-action-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.voucher-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.voucher-action-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.voucher-action-card p {
    color: var(--gray-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.voucher-action-card .btn {
    min-width: 200px;
    padding: 15px 30px;
    font-size: 1rem;
}

/* Stack voucher buttons vertically */
.vouchers .booking-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    /* prevent container width changes when input morphs */
}

/* Equal width for anchor buttons only (morph wrapper is a div) */
.vouchers .booking-actions a.btn {
    width: 100%;
    max-width: 360px;
}

/* Voucher redeem inline UI */
.voucher-redeem {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.voucher-input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    min-width: 260px;
    max-width: 380px;
}

.voucher-input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 107, 132, 0.2);
}

.voucher-success {
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    padding: 14px 16px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Voucher morph animation: button -> input field */
.voucher-morph {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    overflow: hidden;
    transition: width 260ms ease, border-radius 260ms ease, background-color 260ms ease, color 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.voucher-morph .voucher-input {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    padding: 0;
    border: 0;
    max-width: none;
    /* override global input cap so it can grow to full morph width */
    opacity: 0;
    transition: opacity 220ms ease, padding 220ms ease, border 220ms ease;
    font-size: 1rem;
}

.voucher-morph .voucher-apply {
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 180ms ease 120ms, transform 180ms ease 120ms;
    pointer-events: none;
}

.voucher-morph.morph-to-input {
    border-radius: var(--border-radius);
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 6px;
    /* override .btn padding so input can use the width */
    white-space: normal;
    /* allow input to take full line */
}

.voucher-morph.morph-to-input .voucher-input {
    opacity: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
}

.voucher-morph.morph-to-input .voucher-apply {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

/* Success morph (input -> credit message) */
.voucher-success-morph {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    background-color: #ffffff;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.4;
    min-height: 60px;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    hyphens: auto;
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.voucher-success-morph.to-success {
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(26, 107, 132, 0.25);
    transform: translateY(-2px);
}

/* Responsive voucher success message */
@media (max-width: 767px) {
    .voucher-success-morph {
        padding: 16px 20px;
        font-size: 0.9rem;
        min-height: 50px;
    }
}

@media (max-width: 575px) {
    .voucher-success-morph {
        padding: 14px 16px;
        font-size: 0.85rem;
        min-height: 45px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 107, 132, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox {
    display: flex;
    align-items: flex-start;
}

.checkbox input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Season Offer Section */
.season-offer {
    padding: 100px 0;
    background-color: var(--light-color);
}

.season-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Season image + text layout */
.season-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.season-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.season-content p {
    color: var(--gray-color);
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.season-offer .booking-info {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* Vermieterhütte Section */
.vendor-hut {
    padding: 100px 0;
    background-color: var(--white);
}

.vendor-hut-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.vendor-hut-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.vendor-hut-info h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vendor-hut-info p {
    color: var(--gray-color);
    margin-bottom: 20px;
}

.vendor-hut-list {
    margin: 15px 0 25px;
}

.vendor-hut-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.vendor-hut-list i {
    color: var(--secondary-color);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.vendor-hut-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--light-color) 100%);
}

.gallery-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.gallery-text {
    padding-right: 20px;
}

.gallery-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.gallery-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.gallery-text p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-grid .gallery-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    height: 300px;
}

.gallery-grid .gallery-item:first-child {
    grid-column: 1 / -1;
    height: 400px;
}

.gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-grid .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-overlay p {
    transform: translateY(30px);
    transition: var(--transition);
    transition-delay: 0.1s;
    opacity: 0;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
    opacity: 1;
}

/* Location Section */
.location {
    padding: 100px 0;
    background-color: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.location-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.location-info p {
    margin-bottom: 30px;
    color: var(--gray-color);
}

.address,
.opening-hours,
.nearby {
    margin-bottom: 30px;
}

.address h4,
.opening-hours h4,
.nearby h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.address h4::before,
.opening-hours h4::before,
.nearby h4::before {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--secondary-color);
}

.opening-hours h4::before {
    content: '\f017';
}

.nearby h4::before {
    content: '\f5a0';
}

.nearby ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.nearby i {
    margin-right: 10px;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.map {
    height: 100%;
    min-height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://strandkoerbe-groemitz.de/images/pics/strandkoerbe_bruecke.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    position: relative;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #b3b3b3;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #2d2d2d;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3,
.footer-partner h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-contact h3::after,
.footer-partner h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul li {
    margin-bottom: 12px;
    color: var(--white);
}

.footer-links a {
    color: var(--white);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: var(--white);
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.footer-contact a {
    color: var(--white);
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    align-items: center;
}

.partner-logos figure {
    margin: 0;
    text-align: center;
}

.partner-logos img {
    max-width: 160px;
    height: auto;
    transition: var(--transition);
}

.partner-logos a:hover img {
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #0f0f0f;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .booking-container,
    .location-content {
        grid-template-columns: 1fr;
    }

    /* Stack season image and text on tablet */
    .season-layout {
        grid-template-columns: 1fr;
    }

    .season-image {
        max-width: 720px;
        margin: 0 auto;
    }

    .booking-content {
        text-align: center;
    }

    .booking-info {
        justify-content: center;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:last-child {
        display: none;
    }

    /* Voucher responsive */
    .voucher-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .voucher-card.featured {
        transform: scale(1);
    }

    .voucher-actions {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Booking responsive */
    .booking-steps {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .step-content {
        display: none !important;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .booking-form {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item:last-child {
        display: block;
    }

    .gallery-section {
        padding: 60px 0;
    }

    .gallery-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-text {
        padding-right: 0;
        text-align: center;
    }

    .gallery-text h2 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid .gallery-item:first-child {
        grid-column: 1;
        height: 300px;
    }

    .gallery-grid .gallery-item {
        height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links,
    .partner-logos {
        justify-content: center;
    }

    .footer-contact p,
    .footer-links ul li,
    .nearby ul li {
        justify-content: center;
    }

    .footer-links h3::after,
    .footer-contact h3::after,
    .footer-partner h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Voucher mobile */
    .voucher-card {
        padding: 30px 20px;
    }

    .voucher-action-card {
        padding: 30px 20px;
    }

    .voucher-actions {
        grid-template-columns: 1fr;
        max-width: none;
    }

    /* Booking mobile */
    .booking-header h2 {
        font-size: 2rem;
    }

    .booking-form {
        padding: 30px 20px;
        border-radius: 15px;
    }

    /* Gallery tablet */
    .gallery-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid .gallery-item:first-child {
        grid-column: 1 / -1;
    }

    .booking-steps {
        margin-bottom: 40px;
        flex-direction: row;
        gap: 8px;
        top: 90px;
        /* Adjust for mobile header */
        padding: 10px 15px;
        border-radius: 10px;
        justify-content: center;
    }

    .step {
        padding: 10px 12px;
        flex-direction: column;
        text-align: center;
        gap: 6px;
        border-radius: 20px;
        min-width: 80px;
        flex-shrink: 0;
    }

    .step:not(:last-child)::after {
        display: none;
        /* Hide connector lines on mobile */
    }

    /* Mobile sticky steps adjustments */
    .booking-steps.scrolled {
        transform: scale(0.9);
        padding: 10px;
    }

    .booking-steps.scrolled .step {
        padding: 10px 15px;
        gap: 8px;
    }

    .booking-steps.scrolled .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .booking-steps.scrolled .step-content h4 {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }

    .booking-steps.scrolled .step-content p {
        font-size: 0.7rem;
    }

    .step-content h4 {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }

    .step-content p {
        font-size: 0.65rem;
        line-height: 1.2;
    }

    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }

    /* Seat legend mobile */
    .seat-legend {
        gap: 15px;
        margin-bottom: 15px;
    }

    .legend-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Extra compact booking steps for very small screens */
    .booking-steps {
        gap: 5px;
        padding: 8px 10px;
    }

    .step {
        padding: 8px 10px;
        gap: 4px;
        min-width: 70px;
    }

    .step-content h4 {
        font-size: 0.7rem;
        margin-bottom: 1px;
    }

    .step-content p {
        font-size: 0.6rem;
    }

    .step-number {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }

    .booking-form {
        padding: 25px;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 168, 37, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(249, 168, 37, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 168, 37, 0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.step.current .step-number {
    animation: pulse 2s infinite;
}

.voucher-card {
    animation: slideInFromLeft 0.6s ease-out forwards;
}

.voucher-card:nth-child(2) {
    animation-delay: 0.2s;
}

.voucher-card:nth-child(3) {
    animation-delay: 0.4s;
}

.delayed-1 {
    animation-delay: 0.2s;
}

.delayed-2 {
    animation-delay: 0.4s;
}

.delayed-3 {
    animation-delay: 0.6s;
}

/*
 Seat Map Scroll Enhancements */
.scroll-wrapper {
    position: relative;
    width: 100%;
    overflow-x: auto;
}

.scroll-wrapper::-webkit-scrollbar {
    height: 8px;
}

.scroll-wrapper::-webkit-scrollbar-thumb {
    background-color: #a5a5a5;
    border-radius: 4px;
}

.scroll-wrapper::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

.scroll-indicator {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease, background-color 0.3s ease;
}

.scroll-indicator:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.scroll-indicator.left {
    left: 5px;
}

.scroll-indicator.right {
    right: 5px;
}

.scroll-indicator svg {
    fill: white;
    width: 16px;
    height: 16px;
}

/* Blink animation for scroll indicators */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Row container styling for horizontal layout */
.row-container {
    display: flex;
    margin-bottom: 10px;
    gap: 2px;
}

/* Seat styling enhancements */
.seat {
    font-style: italic;
    width: 30px;
    height: 30px;
    margin: 2px;
    color: #4A5868;
    background-color: #d9f5d9;
    border: 2px solid #a5a5a5;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.seat:hover:not(.disabled):not(.booked) {
    background-color: #a8e0a8;
    transform: scale(1.05);
}

.seat.xxl {
    width: 40px;
    height: 40px;
}

.seat.booked {
    cursor: not-allowed;
    background-color: lightgrey;
}

.seat.disabled {
    background-color: transparent;
    border: 2px solid transparent;
    cursor: not-allowed;
    box-shadow: none;
}

/* Row heading styling */
.row-heading {
    color: #4A5868;
    font-weight: bold;
    margin: 10px 0 5px 0;
    font-size: 16px;
}

/* Touch indicator for mobile */
.scroll-touch-indicator {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 1;
    display: none;
}

.scroll-touch-indicator.show {
    display: block;
}

@media (max-width: 768px) {
    .scroll-touch-indicator {
        display: block;
    }
}

/*
 Payment Methods Styling */
.payment-methods {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding: 20px;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.payment-icon {
    width: 50px;
    height: 30px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.payment-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.payment-icon img {
    max-width: 80%;
    max-height: 80%;
}

/* KorbPilot Branding */
.built-by-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.built-by {
    font-size: 11px;
    color: #4A5868;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 5px;
}

.korbpilot-link {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-style: italic;
    font-weight: bold;
    color: #ffffff;
    background-color: #7a84f7;
    border-radius: 5px;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    overflow: hidden;
}

.korbpilot-link::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 5px;
    height: 3px;
    background-color: #2be5a6;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.korbpilot-link:hover {
    background-color: #435dd8;
    color: #ffffff;
    text-decoration: none;
}

.korbpilot-link:active {
    transform: scale(0.95);
}

.korbpilot-link:hover::after {
    transform: scaleX(1.1);
}

.korbpilot-link:active::after {
    transform: scaleX(0.9);
}

/* Responsive adjustments for payment methods */
@media (max-width: 768px) {
    .payment-icons {
        gap: 8px;
    }

    .payment-icon {
        width: 45px;
        height: 28px;
    }

    .built-by {
        font-size: 10px;
    }

    .korbpilot-link {
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* P
ayment Modal Styles */
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.payment-modal.modal-active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    cursor: pointer;
}

.modal-container {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.payment-modal.modal-active .modal-container {
    transform: scale(1) translateY(0);
}

* Modal Header */ .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, var(--primary-color), #2980b9);
    color: white;
    border-radius: 12px 12px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.modal-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Modal Body */
.modal-body {
    padding: 25px;
}

.booking-summary {
    margin-bottom: 25px;
}

/* S
ummary Sections */
.summary-section {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.summary-section h4 {
    margin: 0 0 15px 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 8px 0;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-item .label {
    font-weight: 500;
    color: #495057;
}

.summary-item .value {
    font-weight: 600;
    color: #212529;
}

.total-section {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-left-color: var(--secondary-color);
}

.total-item {
    font-size: 1.2rem;
    border-top: 2px solid var(--secondary-color);
    padding-top: 15px;
    margin-top: 10px;
}

.total-value {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Payme
nt Section */
.payment-section {
    margin: 25px 0;
    padding: 20px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
}

.payment-section h4 {
    margin: 0 0 15px 0;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.paypal-container {
    margin: 15px 0;
    min-height: 50px;
}

/* Loading State */
.payment-loading {
    text-align: center;
    padding: 30px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Success State */
.payment-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
}

.success-icon {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 15px;
}

.payment-success h4 {
    color: #28a745;
    margin-bottom: 10px;
}

/* Ter
ms Section */
.terms-section {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.terms-text {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.terms-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

/* Modal Footer */
.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
    text-align: center;
}

/* Body scroll lock when modal is open */
body.modal-open {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        margin: 10px;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 15px 20px;
    }

    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .modal-header h3 {
        font-size: 1.2rem;
    }
}

/* Enhanc
ed Voucher Section */
.voucher-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: stretch;
}

.voucher-info-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-color);
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.voucher-info-box h4 {
    margin: 0 0 20px 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
}

.voucher-info-box ul {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.voucher-info-box ul li {
    position: relative;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.05rem;
    color: var(--dark-color);
}

.voucher-info-box ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: -25px;
    color: #28a745;
}

.voucher-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    max-width: 500px;
    width: 100%;
}

.voucher-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.voucher-header {
    text-align: center;
    margin-bottom: 25px;
}

.voucher-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.voucher-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.voucher-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Voucher Form Styling */
.voucher-form {
    margin-top: 20px;
}

.voucher-form .form-group {
    margin-bottom: 20px;
}

.voucher-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.voucher-form input,
.voucher-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.voucher-form input:focus,
.voucher-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 107, 132, 0.1);
}

/* Amount Selector */
.amount-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.amount-btn {
    flex: 1;
    min-width: 60px;
    padding: 10px 15px;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.amount-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.amount-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(26, 107, 132, 0.3);
}

.amount-selector input {
    flex: 2;
    min-width: 120px;
    margin-top: 10px;
}

/* Form Button */
.voucher-form .btn {
    margin-top: 10px;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.voucher-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .voucher-card {
        padding: 20px;
        margin: 0 10px;
    }

    .amount-selector {
        flex-direction: column;
    }

    .amount-btn {
        flex: none;
        width: 100%;
    }

    .amount-selector input {
        margin-top: 0;
    }
}

/* 
Compact Payment Button */
.payment-btn-compact {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
    border-radius: 6px !important;
    margin: 15px auto !important;
    display: block !important;
    width: auto !important;
    max-width: 200px !important;
    transition: all 0.3s ease !important;
}

.payment-btn-compact:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(26, 107, 132, 0.3) !important;
}

.payment-btn-compact:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* Old-style form validation */
.required::after {
    content: " *";
    color: red;
    margin-left: 2px;
}

.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.text-danger {
    color: #dc3545 !important;
}

.error-message {
    color: #d9534f;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    display: none;
    margin-top: 5px;
}

.was-validated .form-control:invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-control:valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Logo Im
age Styling */
.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
    .logo-image {
        height: 40px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
        max-width: 120px;
    }
}

/* F
ontAwesome Icon Fix */
.fa,
.fas,
.far,
.fab,
.fal,
.fad {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

.far {
    font-weight: 400 !important;
}

.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* Ensure icons are displayed inline */
i.fa,
i.fas,
i.far,
i.fab,
i.fal,
i.fad {
    display: inline-block !important;
    font-style: normal !important;
}

/* Fix for specific icon containers */
.icon i,
.feature .icon i,
.voucher-icon i {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    /* Higher than navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.payment-modal.modal-active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.modal-container {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    max-width: 650px;
    width: 100%;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.3s ease;
    margin: auto;
    z-index: 100000;
}

.payment-modal.modal-active .modal-container {
    transform: scale(1) translateY(0);
}

/* Hide navbar when modal is open on mobile */
@media (max-width: 768px) {
    body.modal-open .header {
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .payment-modal {
        padding: 0;
    }

    .modal-container {
        width: 100%;
        height: 100%;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
        transform: scale(0.95) translateY(50px);
    }

    .payment-modal.modal-active .modal-container {
        transform: scale(1) translateY(0);
    }

    .modal-backdrop {
        background: rgba(0, 0, 0, 0.8);
    }
}


@media (max-width: 480px) {

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 15px 20px;
    }

    .modal-header h3 {
        font-size: 1.2rem;
    }

    .summary-section {
        margin-bottom: 15px;
        padding: 12px;
    }

    .payment-section {
        margin: 20px 0;
        padding: 15px;
    }

    .modal-container {
        display: flex;
        flex-direction: column;
    }

    .modal-body {
        flex: 1;
        overflow-y: auto;
    }
}

/* Ensure modal is above everything - Maximum z-index */
.payment-modal {
    z-index: 2147483647 !important;
    /* Maximum z-index value */
}

.modal-container {
    z-index: 2147483647 !important;
    /* Maximum z-index value */
}

.modal-backdrop {
    z-index: 2147483646 !important;
}

/* Smooth navbar hiding animation */
.header {
    transition: transform 0.3s ease;
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Addit
ional Modal Coverage - Nuclear Option */
.payment-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 2147483647 !important;
    background: rgba(0, 0, 0, 0.6) !important;
}

.payment-modal * {
    z-index: inherit !important;
}

/* Ensure no other elements can appear above modal */
body.modal-open * {
    z-index: auto !important;
}

body.modal-open .payment-modal,
body.modal-open .payment-modal * {
    z-index: 2147483647 !important;
}

/* Force modal container to be on top */
.payment-modal .modal-container {
    position: relative !important;
    z-index: 2147483647 !important;
}

/* Prevent any scrolling when modal is open */
body.modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
}

/* Enhance
d Payment Modal - Light Background with Blur */
.payment-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 2147483647 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
}

.payment-modal.modal-active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Light backdrop with strong blur */
.payment-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    z-index: -1;
}

/* Enhanced Modal Header */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #1a6b84, #2980b9, #3498db);
    color: white;
    border-radius: 12px 12px 0 0;
    position: relative;
    overflow: hidden;
}

/* Enhanced title styling */
.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.modal-header h3 i {
    font-size: 1.4rem;
    color: #f9a825;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.modal-close:active {
    transform: scale(0.95);
}

/* =
=======================================
   COASTAL BRANDING ENHANCEMENTS
   ======================================== */

/* Enhanced Header - White Background */
.header {
    background: rgba(255, 255, 255, 0.95);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

/* Hero Section with Coastal Overlay */
.hero .overlay {
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.7) 0%, rgba(46, 139, 87, 0.6) 100%);
}

/* Section Headers with Brand Colors */
.section-header h2 {
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-sunset);
    border-radius: 2px;
}

/* Feature Cards with Coastal Accents */
.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 119, 190, 0.2);
    border-top: 4px solid var(--primary-color);
}

.feature .icon {
    background: var(--gradient-ocean);
    color: var(--white);
}

/* Pricing Cards with Enhanced Branding */
.pricing-card {
    border: 2px solid var(--light-gray);
    transition: all 0.4s ease;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 119, 190, 0.2);
    transform: translateY(-10px);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.05) 0%, rgba(77, 166, 217, 0.05) 100%);
}

.pricing-card .pricing-header {
    background: var(--gradient-ocean);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.pricing-card.featured .pricing-header {
    background: var(--gradient-sunset);
}

/* Booking Steps with Ocean Theme */
.step.active .step-number {
    background: var(--gradient-ocean);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 119, 190, 0.3);
}

.step.completed .step-number {
    background: var(--accent-green);
}

/* Voucher Cards with Coastal Styling */
.voucher-card {
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
}

.voucher-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 119, 190, 0.15);
    transform: translateY(-5px);
}

.voucher-header .voucher-icon {
    background: var(--gradient-sunset);
    color: var(--white);
}

/* CTA Section with Unified Ocean Gradient */
.cta {
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.95) 0%, rgba(0, 90, 143, 0.95) 100%);
}

/* Footer with Unified Dark Ocean Theme */
.footer {
    background: linear-gradient(135deg, #1a3a52 0%, #0d2438 100%);
}

/* Footer Bottom (Copyright) - Slightly Darker */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Footer Bottom Links */
.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.footer-bottom a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.footer-bottom em {
    color: var(--white);
    font-style: italic;
}

/* Modal Enhancements */
.modal-header {
    background: var(--gradient-ocean);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Payment Button with Gradient */
.payment-btn-compact {
    background: var(--gradient-ocean);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 119, 190, 0.3);
}

.payment-btn-compact:hover {
    background: var(--gradient-sunset);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.4);
}

/* Seat Map Selected State */
.seat.selected {
    background: var(--gradient-sunset) !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 15px rgba(255, 140, 66, 0.5) !important;
}

/* Success States with Ocean Green */
.voucher-success,
#modal-voucher-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%) !important;
    border-color: var(--accent-green) !important;
}

/* Links with Brand Color */
a {
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Form Inputs with Coastal Focus */
input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 119, 190, 0.25);
    outline: none;
}

/* Scroll Indicators with Brand Colors */
.scroll-indicator {
    background-color: rgba(0, 119, 190, 0.3) !important;
}

.scroll-indicator:hover {
    background-color: rgba(0, 119, 190, 0.6) !important;
}

/* Loading Spinner with Ocean Colors */
.spinner {
    border-top-color: var(--primary-color);
}

/* Success Icon with Coastal Green */
.success-icon {
    color: var(--accent-green);
}

/* Checkbox and Radio Custom Styling */
input[type="checkbox"]:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Navigation Links Hover */
.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
}

/* Mobile Menu with Ocean Gradient */
@media (max-width: 768px) {
    .nav-links.active {
        background: linear-gradient(180deg, rgba(0, 119, 190, 0.98) 0%, rgba(77, 166, 217, 0.98) 100%);
    }
}

/* Booking Preview with Coastal Accent */
.booking-preview {
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

/* Total Price Highlight */
#total-price,
#modal-total {
    color: var(--primary-color);
    font-weight: bold;
}

/* Partner Logos Hover Effect */
.partner-logos figure:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 5px 15px rgba(0, 119, 190, 0.3));
}


/* ========================================
   PAYMENT MODAL STYLES
   ======================================== */

.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.payment-modal.active {
    opacity: 1;
    visibility: visible;
}

.payment-modal .modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    pointer-events: auto;
}

.payment-modal .modal-container {
    position: relative;
    background: white;
    border-radius: 15px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    transform: translateY(0);
    opacity: 1;
}

.payment-modal.active .modal-container {
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.payment-modal .modal-header {
    background: var(--gradient-ocean);
    color: white;
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-modal .modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-modal .modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: white;
    font-size: 1.2rem;
}

.payment-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.payment-modal .modal-body {
    padding: 30px;
}

.payment-modal .booking-summary {
    margin-bottom: 25px;
}

.payment-modal .summary-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.payment-modal .summary-section h4 {
    color: var(--primary-color);
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-modal .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.payment-modal .summary-item:last-child {
    border-bottom: none;
}

.payment-modal .summary-item .label {
    color: #6c757d;
    font-weight: 500;
}

.payment-modal .summary-item .value {
    color: #212529;
    font-weight: 600;
}

.payment-modal .total-section {
    background: linear-gradient(135deg, rgba(0, 119, 190, 0.1) 0%, rgba(77, 166, 217, 0.1) 100%);
    border: 2px solid var(--primary-color);
}

.payment-modal .total-item {
    padding: 8px 0;
}

.payment-modal .total-item .label {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.payment-modal .total-item .value {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Price Breakdown Styles */
.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 74, 173, 0.2);
    border-radius: 6px;
    padding: 12px 16px;
    margin: 0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.95rem;
}

.price-row.subtotal,
.price-row.fee {
    color: #495057;
    font-size: 0.9rem;
}

.price-row.subtotal .price-label,
.price-row.fee .price-label {
    color: #6c757d;
}

.price-row.fee {
    padding-bottom: 8px;
}

.price-row .price-label {
    font-weight: 500;
}

.price-row .price-value {
    font-weight: 600;
    font-size: 1rem;
}

.price-separator {
    height: 1px;
    background: #dee2e6;
    margin: 4px 0;
}

.price-row.total {
    padding-top: 8px;
    font-size: 1.05rem;
    font-weight: 700;
}

.price-row.total .price-label {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.price-row.total .price-value {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
}

.payment-modal .payment-section {
    margin: 25px 0;
}

.payment-modal .payment-section h4 {
    color: var(--primary-color);
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-modal .paypal-container {
    min-height: 150px;
    margin: 20px 0;
}

.payment-modal .payment-loading {
    text-align: center;
    padding: 40px 20px;
}

.payment-modal .payment-loading .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.payment-modal .payment-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.payment-modal .payment-success .success-icon {
    font-size: 4rem;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.payment-modal .payment-success h4 {
    color: var(--accent-green);
    margin: 0 0 10px 0;
}

.payment-modal .is-hidden {
    display: none !important;
}

.payment-modal .terms-section {
    margin-top: 20px;
}

.payment-modal .voucher-info-box {
    margin: 25px 0;
    padding: 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.payment-modal .voucher-info-box h4 {
    margin: 0 0 15px 0;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-modal .voucher-info-box ul {
    margin: 0;
    padding-left: 20px;
    line-height: 1.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .payment-modal .modal-container {
        width: 95%;
        max-height: 95vh;
    }

    .payment-modal .modal-header {
        padding: 20px;
    }

    .payment-modal .modal-header h3 {
        font-size: 1.2rem;
    }

    .payment-modal .modal-body {
        padding: 20px;
    }

    .payment-modal .summary-section {
        padding: 15px;
    }

    /* Price breakdown mobile adjustments */
    .price-breakdown {
        padding: 10px 12px;
        border-width: 1px;
    }

    .price-row {
        padding: 5px 0;
        font-size: 0.85rem;
    }

    .price-row.subtotal,
    .price-row.fee {
        font-size: 0.8rem;
    }

    .price-row .price-value {
        font-size: 0.9rem;
    }

    .price-row.fee {
        padding-bottom: 6px;
    }

    .price-separator {
        margin: 3px 0;
    }

    .price-row.total {
        padding-top: 6px;
    }

    .price-row.total .price-label {
        font-size: 1rem;
    }

    .price-row.total .price-value {
        font-size: 1.15rem;
    }
}

/* Tablet/iPad specific adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .price-breakdown {
        padding: 12px 14px;
    }

    .price-row {
        padding: 6px 0;
        font-size: 0.9rem;
    }

    .price-row.subtotal,
    .price-row.fee {
        font-size: 0.85rem;
    }

    .price-row .price-value {
        font-size: 0.95rem;
    }

    .price-row.total .price-label {
        font-size: 1.05rem;
    }

    .price-row.total .price-value {
        font-size: 1.2rem;
    }
}

/* Debug seat styles - higher specificity to override existing seat styles */
.seat.debug-seat {
    background-color: lime !important;
    border: 3px solid black !important;
    color: black !important;
    font-size: 16px !important;
    font-weight: bold !important;
    z-index: 9999 !important;
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8) !important;
}

.seat.debug-seat.booked {
    background-color: red !important;
}

/*-- -------------------------- -->
<---           Global           -->
<--- -------------------------- -*/

:root {
    --primary: #ff6a3e;
    --primaryLight: #ffba43;
    --secondary: #ffba43;
    --secondaryLight: #ffba43;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
    --navHeight: clamp(4rem, 10vw, 5rem);
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
}

/*-- -------------------------- -->
<---         Navigation         -->
<--- -------------------------- -*/

/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
    #cs-navigation {
        width: 100%;
        padding: 0.75rem 1rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        background-color: #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        position: fixed;
        z-index: 10000;
    }

    #cs-navigation .cs-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #cs-navigation .cs-logo {
        width: 12rem;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }

    #cs-navigation .cs-logo img {
        width: 100%;
        height: auto;
    }

    #cs-navigation .cs-nav {
        order: 2;
    }

    #cs-navigation .cs-ul-wrapper {
        width: 100%;
        height: 100vh;
        background-color: #fff;
        box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: -1;
        transform: scaleX(0);
        transform-origin: top right;
        transition: transform 0.4s, opacity 0.3s, visibility 0.3s;
    }

    #cs-navigation .cs-ul {
        width: 100%;
        height: auto;
        padding: 3rem 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.25rem;
    }

    #cs-navigation .cs-li {
        list-style: none;
        margin-right: 0;
        /* Transition animations when the menu opens */
        opacity: 0;
        transform: translateX(-4.375rem);
        transition: transform 0.6s, opacity 0.9s;
    }

    #cs-navigation .cs-li-link {
        font-size: 1.5rem;
        line-height: 1.2em;
        text-decoration: none;
        font-weight: 700;
        color: var(--headerColor);
        display: inline-block;
        position: relative;
    }

    #cs-navigation .cs-li-link:before {
        /* underline */
        content: "";
        width: 0%;
        height: 3px;
        background: var(--primary);
        opacity: 1;
        position: absolute;
        display: block;
        bottom: -2px;
        left: 0;
        transition: width 0.3s;
    }

    #cs-navigation .cs-li-link:hover:before {
        width: 100%;
    }

    #cs-navigation .cs-active {
        color: var(--primary);
    }

    #cs-navigation .cs-toggle {
        width: 3.5rem;
        height: 3.5rem;
        margin: 0 0 0 auto;
        border-radius: 0.25rem;
        background-color: var(--primary);
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 10;
        cursor: pointer;
    }

    #cs-navigation .cs-box {
        width: 1.75rem;
        height: 1rem;
        position: relative;
    }

    #cs-navigation .cs-line {
        width: 100%;
        height: 2px;
        background-color: #fafbfc;
        border-radius: 2px;
        position: absolute;
        left: 0;
        transition: width 0.3s, left 0.3s, top 0.3s, transform 0.5s;
    }

    #cs-navigation .cs-line1 {
        top: 0;
    }

    #cs-navigation .cs-line2 {
        top: 50%;
        transform: translateY(-50%);
    }

    #cs-navigation .cs-line3 {
        top: 100%;
    }

    /* When the menu is active */
    #cs-navigation.cs-active .cs-ul-wrapper {
        opacity: 1;
        visibility: visible;
        transform: scaleX(1);
    }

    #cs-navigation.cs-active .cs-li {
        opacity: 1;
        transform: translateX(0);
    }

    #cs-navigation.cs-active .cs-li:nth-of-type(1) {
        transition-delay: 0.05s;
    }

    #cs-navigation.cs-active .cs-li:nth-of-type(2) {
        transition-delay: 0.1s;
    }

    #cs-navigation.cs-active .cs-li:nth-of-type(3) {
        transition-delay: 0.15s;
    }

    #cs-navigation.cs-active .cs-li:nth-of-type(4) {
        transition-delay: 0.2s;
    }

    #cs-navigation.cs-active .cs-line1 {
        top: 50%;
        transform: translate(-50%, -50%) rotate(225deg);
        left: 50%;
    }

    #cs-navigation.cs-active .cs-line2 {
        opacity: 0;
        left: 100%;
    }

    #cs-navigation.cs-active .cs-line3 {
        top: 50%;
        transform: translate(-50%, -50%) rotate(-225deg);
        left: 50%;
    }

    #cs-navigation .cs-nav-button {
        display: none;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #cs-navigation {
        width: 100%;
        padding: 0 1rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        background-color: #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        position: fixed;
        z-index: 10000;
        transition: padding 0.3s;
    }

    #cs-navigation .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 1.5rem;
    }

    #cs-navigation .cs-logo {
        width: 12.125rem;
        height: 4rem;
        /* margin-right auto pushes all everything to the right */
        margin-right: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 10;
    }

    #cs-navigation .cs-logo img {
        width: 100%;
        height: auto;
    }

    #cs-navigation .cs-ul {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        /* 20px - 36px */
        gap: clamp(1.25rem, 2.6vw, 2.25rem);
    }

    #cs-navigation .cs-li {
        list-style: none;
        padding: 2rem 0;
    }

    #cs-navigation .cs-li-link {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1vw, 1rem);
        line-height: 1.5em;
        text-decoration: none;
        font-weight: 700;
        color: var(--bodyTextColor);
        position: relative;
    }

    #cs-navigation .cs-li-link:before {
        /* underline */
        content: "";
        width: 0%;
        height: 2px;
        background: var(--primary);
        opacity: 1;
        position: absolute;
        display: block;
        bottom: 0px;
        left: 0;
        transition: width 0.3s;
    }

    #cs-navigation .cs-li-link:hover:before {
        width: 100%;
    }

    #cs-navigation .cs-active {
        color: var(--primary);
    }

    #cs-navigation .cs-toggle {
        display: none;
    }

    #cs-navigation .cs-nav-button {
        line-height: 2.875rem;
        font-weight: 700;
        border-radius: 0.25rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        color: #fff;
        text-decoration: none;
    }
}

/*-- -------------------------- -->
<---            Hero            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-856 {
        text-align: center;
        /* 116px - 164px top */
        /* Adjusted for fixed header: adding --navHeight to the clamp */
        padding: calc(clamp(7.25rem, 16.82vw, 10.25rem) + var(--navHeight)) 1rem clamp(3.75rem, 7.82vw, 6.25rem);
        background-color: #f7f7f7;
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

    #hero-856 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 3rem;
    }

    #hero-856 .cs-content {
        max-width: 39.375rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    #hero-856 .cs-button-solid {
        font-size: 1rem;
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
    }

    #hero-856 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }

    #hero-856 .cs-button-solid:hover:before {
        width: 100%;
    }

    #hero-856 .cs-picture {
        width: 100%;
        max-width: 35.625rem;
        height: clamp(25rem, 95vw, 44.5rem);
        border-radius: 0 clamp(6.25rem, 17vw, 12.5rem) 0 clamp(6.25rem, 17vw, 12.5rem);
        box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.16);
        overflow: hidden;
        display: block;
        position: relative;
    }

    #hero-856 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: top;
    }

    #hero-856 .cs-wave {
        width: 320%;
        height: auto;
        display: block;
        position: absolute;
        left: 50%;
        bottom: -1px;
        transform: translateX(-50%);
        z-index: -1;
    }
}

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #hero-856 {
        text-align: left;
    }

    #hero-856 .cs-container {
        flex-direction: row;
        justify-content: space-between;
    }

    #hero-856 .cs-content {
        width: 40vw;
        flex: none;
        align-items: flex-start;
        order: 2;
    }

    #hero-856 .cs-title,
    #hero-856 .cs-text {
        text-align: left;
    }

    #hero-856 .cs-picture {
        height: clamp(38.9375rem, 60vw, 50.875rem);
    }

    #hero-856 .cs-wave {
        width: 100%;
        left: 0;
        transform: scaleX(-1);
    }
}

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-1498 {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 1;
        background-color: #fff;
        overflow: hidden;
    }

    #services-1498 .cs-container {
        width: 100%;
        max-width: 56.25rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
        z-index: 15;
    }

    #services-1498 .cs-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    #services-1498 .cs-title {
        max-width: 23ch;
    }

    #services-1498 .cs-card-group {
        margin: 0;
        width: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: clamp(1rem, 2vw, 1.25rem);
    }

    #services-1498 .cs-item {
        text-align: center;
        list-style: none;
        max-width: 21.25rem;
        padding: 1.5rem clamp(1rem, 2.4vw, 1.5rem);
        box-sizing: border-box;
        background-color: #fff;
        border: 1px solid #E8E8E8;
        border-radius: clamp(2.5rem, 5vw, 3.75rem);
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 1;
        transition: border-color 0.3s;
    }

    #services-1498 .cs-item:hover {
        border-color: var(--secondary);
    }

    #services-1498 .cs-item:hover .cs-picture img {
        transform: scale(1.2);
    }

    #services-1498 .cs-item:hover .cs-h3,
    #services-1498 .cs-item:hover .cs-link {
        color: var(--primary);
    }

    #services-1498 .cs-item:hover .cs-arrow {
        filter: initial;
    }

    #services-1498 .cs-image-group {
        width: 16.0625em;
        height: 12.5em;
        margin: 0 0 clamp(1rem, 2.4vw, 1.5rem);
        position: relative;
        z-index: 1;
    }

    #services-1498 .cs-picture {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    #services-1498 .cs-picture img {
        z-index: -1;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: transform 0.65s;
    }

    #services-1498 .cs-mask {
        --maskBorder: #e8e8e8;
        --maskBG: #fff;
        position: absolute;
        top: -1px;
        left: -1px;
        bottom: -1px;
        right: -1px;
    }

    #services-1498 .cs-info {
        display: flex;
        flex-direction: column;
    }

    #services-1498 .cs-h3 {
        font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
        text-align: inherit;
        line-height: 1.5em;
        font-weight: 700;
        width: 100%;
        margin: 0 0 0.5rem 0;
        box-sizing: border-box;
        color: var(--headerColor);
        transition: background-color 0.3s, color 0.3s;
    }

    #services-1498 .cs-ages {
        font-size: 1rem;
        line-height: 1.2em;
        text-align: inherit;
        font-weight: 700;
        margin: 0 0 1rem 0;
        color: var(--secondary);
    }

    #services-1498 .cs-item-text {
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        text-align: inherit;
        line-height: 1.5em;
        max-width: 50ch;
        margin: 0 0 clamp(1rem, 2.4vw, 1.5rem);
        width: 100%;
        color: var(--bodyTextColor);
    }

    #services-1498 .cs-link {
        font-size: 1rem;
        text-decoration: none;
        text-align: inherit;
        line-height: 1.2em;
        font-weight: 700;
        color: var(--primary);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: color 0.3s;
    }

    #services-1498 .cs-link:hover .cs-arrow {
        transform: translateX(0.25rem);
    }

    #services-1498 .cs-arrow {
        display: block;
        height: auto;
        width: 1.25rem;
        transition: filter 0.3s, transform 0.3s;
    }

    #services-1498 .cs-hills {
        --hillBG: #F2FAF8;
        width: 150%;
        min-width: 120rem;
        height: auto;
        position: absolute;
        bottom: -6.25rem;
        left: 50%;
        transform: translateX(-50%);
    }

    #services-1498 .cs-wrapper {
        width: 140vw;
        max-width: 91.375rem;
        height: 70%;
        display: none;
        position: absolute;
        bottom: clamp(3.75rem, 7.82vw, 6.25rem);
        left: 50%;
        z-index: 2;
        transform: translateX(-50%);
        pointer-events: none;
    }

    #services-1498 .cs-floater {
        position: absolute;
        animation: cs-float 6s ease-in-out infinite;
    }

    #services-1498 .cs-floater1 {
        left: 5%;
        top: -5rem;
        animation-duration: 8s;
    }

    #services-1498 .cs-floater2 {
        bottom: 2rem;
        right: 5%;
        animation-duration: 10s;
        animation-delay: -2s;
    }

    @keyframes cs-float {
        0% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(5deg);
        }

        100% {
            transform: translateY(0) rotate(0deg);
        }
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-1498 .cs-container {
        max-width: 80rem;
    }

    #services-1498 .cs-card-group {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    #services-1498 .cs-item {
        width: 31.5%;
    }

    #services-1498 .cs-image-group {
        font-size: min(1.2vw, 1em);
    }

    #services-1498 .cs-wrapper {
        display: block;
    }

    #services-1498 .cs-hills {
        top: 65%;
        bottom: auto;
    }
}

/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #gallery-1446 {
        padding: var(--sectionPadding);
    }

    #gallery-1446 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
    }

    #gallery-1446 .cs-content {
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        gap: 1.5rem;
    }

    #gallery-1446 .cs-title {
        margin: 0;
    }

    #gallery-1446 .cs-gallery {
        width: 100%;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(19.0625rem, 1fr));
        gap: clamp(1rem, 1.5vw, 1.25rem);
        position: relative;
    }

    #gallery-1446 .cs-image {
        min-height: clamp(16.25rem, 60vw, 20rem);
        border-radius: 1rem;
        overflow: hidden;
        display: block;
        position: relative;
        /* added for interaction */
        transition: transform 0.3s, box-shadow 0.3s;
    }

    #gallery-1446 .cs-image:hover {
        transform: translateY(-0.5rem);
        box-shadow: rgba(149, 157, 165, 0.3) 0px 12px 24px;
    }

    #gallery-1446 .cs-image img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    #gallery-1446 .cs-image:hover img {
        transform: scale(1.1);
    }
}

/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cs-footer-274 {
        padding: var(--sectionPadding);
    }

    #cs-footer-274 .cs-container {
        width: 100%;
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        column-gap: 5.5rem;
        row-gap: 2rem;
    }

    #cs-footer-274 .cs-logo-group {
        width: 100%;
        position: relative;
        margin-bottom: clamp(2.75rem, 6.8vw, 3.25rem);
    }

    #cs-footer-274 .cs-logo {
        width: clamp(13.125rem, 8vw, 15rem);
        height: auto;
        display: block;
    }

    #cs-footer-274 .cs-logo-img {
        width: 100%;
        height: auto;
    }

    #cs-footer-274 .cs-social {
        display: inline-flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0.75rem;
        position: absolute;
        top: 0;
        right: 0;
    }

    #cs-footer-274 .cs-social-link {
        width: 1.5rem;
        height: 1.5rem;
        background-color: #4e4b66;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
        transition: transform 0.3s, background-color 0.3s;
    }

    #cs-footer-274 .cs-social-link:hover {
        background-color: var(--primary);
        transform: translateY(-0.1875rem);
    }

    #cs-footer-274 .cs-social-img {
        height: 0.8125rem;
        width: auto;
        display: block;
    }

    #cs-footer-274 .cs-nav {
        padding: 0;
        margin: 0;
    }

    #cs-footer-274 .cs-nav-li {
        list-style: none;
        margin: 0;
        color: var(--bodyTextColor);
    }

    #cs-footer-274 .cs-header {
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 700;
        margin-bottom: clamp(1rem, 2.7vw, 1.25rem);
        color: var(--bodyTextColor);
        position: relative;
        display: block;
    }

    #cs-footer-274 .cs-nav-link {
        font-size: 1rem;
        text-decoration: none;
        line-height: 1.5em;
        color: var(--bodyTextColor);
        position: relative;
    }

    #cs-footer-274 .cs-nav-link:before {
        content: "";
        width: 0%;
        height: 0.125rem;
        background: var(--bodyTextColor);
        opacity: 1;
        position: absolute;
        display: block;
        bottom: -0.125rem;
        left: 0;
        transition: width 0.3s;
    }

    #cs-footer-274 .cs-nav-link:hover:before {
        width: 100%;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #cs-footer-274 .cs-container {
        max-width: 80rem;
        row-gap: 0;
        column-gap: clamp(2.75rem, calc(6%), 5.5rem);
    }

    #cs-footer-274 .cs-logo-group {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    #cs-footer-274 .cs-social {
        flex-direction: row;
        position: relative;
        top: auto;
        right: auto;
    }
}

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #cs-footer-274 .cs-container {
        justify-content: flex-end;
    }

    #cs-footer-274 .cs-logo-group {
        width: auto;
        margin: 0;
        margin-right: auto;
        flex-direction: column;
    }

    #cs-footer-274 .cs-logo-img {
        margin-bottom: 2.75rem;
    }

    #cs-footer-274 .cs-nav {
        margin-top: 0.75rem;
    }
}

/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #faq {
        padding: var(--sectionPadding);
        background-color: #f7f7f7;
    }

    #faq .cs-container {
        width: 100%;
        max-width: 50rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(3rem, 6vw, 4rem);
    }

    #faq .cs-content {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #faq .cs-faq-group {
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    #faq .cs-faq-item {
        list-style: none;
        width: 100%;
        background-color: #fff;
        padding: 1.25rem;
        border-radius: 0.5rem;
        box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
    }

    #faq .cs-button {
        width: 100%;
        padding: 0;
        border: none;
        background: none;
        text-align: left;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        cursor: default;
        /* Not an accordion for now, just a list */
    }

    #faq .cs-item-text {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        color: var(--headerColor);
        display: block;
    }

    #faq .cs-item-p {
        font-size: 1rem;
        line-height: 1.5em;
        margin: 0.75rem 0 0 0;
        color: var(--bodyTextColor);
    }
}

/*-- -------------------------- -->
<---          Lightbox          -->
<--- -------------------------- -*/

#cs-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 20000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

#cs-lightbox.cs-active {
    display: flex;
}

#cs-lightbox .cs-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cs-lightbox .cs-image {
    max-width: 100%;
    max-height: 100vh;
    object-fit: contain;
    border-radius: 0.5rem;
    animation: cs-fadeIn 0.3s ease-out;
}

@keyframes cs-fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

#cs-lightbox .cs-close {
    position: absolute;
    top: -3rem;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

#cs-lightbox .cs-prev,
#cs-lightbox .cs-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cs-lightbox .cs-prev:hover,
#cs-lightbox .cs-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

#cs-lightbox .cs-prev {
    left: -5rem;
}

#cs-lightbox .cs-next {
    right: -5rem;
}

@media only screen and (max-width: 63.9375rem) {
    #cs-lightbox .cs-prev {
        left: 0;
    }

    #cs-lightbox .cs-next {
        right: 0;
    }

    #cs-lightbox .cs-prev,
    #cs-lightbox .cs-next {
        background: rgba(255, 255, 255, 0.2);
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }
}

/*-- -------------------------- -->
<---      Vacation Rental       -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #vacation-rental {
        padding: var(--sectionPadding);
        background-color: #fff;
        border-top: 1px solid #E8E8E8;
    }

    #vacation-rental .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(3rem, 6vw, 4rem);
    }

    #vacation-rental .cs-content {
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #vacation-rental .cs-text-container {
        width: 100%;
        max-width: 50rem;
        margin-top: 1rem;
    }

    #vacation-rental .cs-text {
        margin-bottom: 1rem;
    }

    #vacation-rental .cs-image-group-3 {
        width: 100%;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(1rem, 2vw, 1.25rem);
    }

    #vacation-rental .cs-picture {
        width: 100%;
        position: relative;
        display: block;
        height: auto;
        /* aspect-ratio: 3/2; removed to allow natural height or set explicit height */
        height: clamp(15rem, 30vw, 25rem);
        border-radius: 1rem;
        overflow: hidden;
        grid-column: span 12;
    }

    #vacation-rental .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: transform 0.6s;
    }

    #vacation-rental .cs-picture:hover img {
        transform: scale(1.1);
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #vacation-rental .cs-picture {
        grid-column: span 4;
    }

    #vacation-rental .cs-content {
        align-items: center;
        text-align: center;
    }

    #vacation-rental .cs-text-container {
        text-align: left;
    }
}

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #vacation-rental .cs-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        text-align: left;
        gap: 3rem;
    }

    #vacation-rental .cs-title {
        margin: 0;
        max-width: 25ch;
    }

    #vacation-rental .cs-text-container {
        padding-left: 2rem;
        border-left: 4px solid var(--primary);
    }


}

/*-- -------------------------- -->
<---          Prices            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #prices {
        padding: var(--sectionPadding);
        background-color: #F2FAF8;
    }

    #prices .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(3rem, 6vw, 4rem);
    }

    #prices .cs-content {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #prices .cs-price-table-container {
        width: 100%;
        max-width: 50rem;
        overflow-x: auto;
        background: #fff;
        border-radius: 1rem;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }

    .cs-price-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 300px;
    }

    .cs-price-table th,
    .cs-price-table td {
        padding: 0.5rem;
        text-align: center;
        border-bottom: 1px solid #e8e8e8;
        font-size: 1rem;
    }

    .cs-price-table th {
        color: var(--primary-color);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.05em;
    }

    .cs-price-table td {
        color: var(--bodyTextColor);
        font-weight: 500;
    }

    .cs-price-table tr:last-child td {
        border-bottom: none;
    }

    .cs-price-table tr:hover {
        background-color: #f8f9fa;
        transition: background-color 0.3s;
    }
}