/* =========================================
   WESTERFUN - GLOBAL DESIGN
========================================= */

:root {
    --green-dark: #0b4f2d;
    --green: #4fae24;
    --green-light: #83c51f;

    --orange: #ff7a00;
    --orange-dark: #e86700;

    --pink: #e83e76;
    --purple: #7650b5;
    --blue: #1598d4;

    --cream: #fffdf8;
    --light: #f7f7f2;

    --text: #183326;
    --text-light: #657168;

    --white: #ffffff;

    --shadow-small:
        0 8px 25px rgba(19, 53, 34, 0.08);

    --shadow:
        0 18px 50px rgba(19, 53, 34, 0.12);

    --radius-small: 14px;
    --radius: 22px;
    --radius-large: 32px;

    --container: 1280px;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

.google-translate-anchor {
    position: fixed;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.language-switcher {
    position: fixed;
    right: 14px;
    bottom: 14px;
    z-index: 12000;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px;
    border-radius: 999px;
    background: rgba(9, 41, 24, 0.88);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}

.language-switcher.in-header {
    position: static;
    right: auto;
    bottom: auto;
    z-index: auto;
    padding: 4px;
    gap: 4px;
    background: #f0f6ed;
    box-shadow: none;
    border: 1px solid rgba(11, 79, 45, 0.12);
    backdrop-filter: none;
    direction: ltr;
}

.language-btn {
    min-width: 40px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease;
}

.language-switcher.in-header .language-btn {
    min-width: 34px;
    height: 30px;
    background: #0d6b3c;
    color: #ffffff;
    font-size: 11px;
}

.language-switcher.in-header .language-btn:hover {
    background: #0b5b33;
}

.language-btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.32);
}

.language-btn.active {
    background: #ff7a00;
    color: #ffffff;
}

.goog-logo-link,
.goog-te-gadget span,
.goog-te-banner-frame {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
}

body {
    top: 0 !important;
}

html.lang-ar body {
    text-align: right;
}

html.lang-ar .topbar .container,
html.lang-ar .header .container {
    direction: rtl;
}

html.lang-ar .topbar-left,
html.lang-ar .topbar-right,
html.lang-ar .hero-buttons,
html.lang-ar .footer-social {
    flex-direction: row-reverse;
}

html.lang-ar .header nav {
    margin-left: 0;
    margin-right: auto;
}

html.lang-ar .hero-left,
html.lang-ar .section-header,
html.lang-ar .contact-info,
html.lang-ar .faq-question,
html.lang-ar .map-info,
html.lang-ar .ticket-card {
    text-align: right;
}

@media (max-width: 600px) {
    .language-switcher {
        right: 10px;
        bottom: 10px;
        gap: 4px;
        padding: 6px;
    }

    .language-btn {
        min-width: 36px;
        height: 32px;
        font-size: 11px;
    }

    .language-switcher.in-header {
        position: fixed;
        right: 10px;
        bottom: 10px;
        z-index: 12000;
        background: rgba(9, 41, 24, 0.88);
        border: 0;
        box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
    }

    .language-switcher.in-header .language-btn {
        min-width: 36px;
        height: 32px;
        background: rgba(255, 255, 255, 0.2);
    }
}


/* =========================================
   CONTAINER
========================================= */

.container {
    width: min(92%, var(--container));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3,
h4 {
    line-height: 1.15;
    font-weight: 800;
}

h1 {
    letter-spacing: -2px;
}

h2 {
    letter-spacing: -1.2px;
}

p {
    line-height: 1.75;
}


/* =========================================
   SECTION
========================================= */

section {
    position: relative;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(34px, 4vw, 52px);
    margin: 14px 0 18px;
}

.section-header p {
    color: var(--text-light);
    font-size: 17px;
}


/* =========================================
   SECTION TAG
========================================= */

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 9px 18px;

    background: #edf8e8;
    color: var(--green);

    border-radius: 50px;

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.7px;
}


/* =========================================
   BUTTONS
========================================= */

.btn,
.btn-primary,
.ticket-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 52px;
    padding: 0 26px;

    border: 0;
    border-radius: 12px;

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;
    cursor: pointer;

    transition:
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease,
        background 0.3s ease,
        filter 0.3s ease;

    position: relative;
    overflow: hidden;
}

.btn:hover,
.btn-primary:hover,
.ticket-button:hover {
    transform: translateY(-5px) scale(1.02);
    filter: brightness(1.1);
}

.btn:active,
.btn-primary:active,
.ticket-button:active {
    transform: translateY(-2px) scale(0.98);
}


/* ORANJE */

.btn-primary,
.ticket-button {
    background: var(--orange);
    color: var(--white);

    box-shadow:
        0 4px 15px rgba(255, 122, 0, 0.15),
        0 10px 30px rgba(255, 122, 0, 0.25);
}

.btn-primary:hover,
.ticket-button:hover {
    background: var(--orange-dark);

    box-shadow:
        0 8px 25px rgba(255, 122, 0, 0.25),
        0 15px 45px rgba(255, 122, 0, 0.35);
}


/* GROEN */

.btn-green {
    background: linear-gradient(135deg, #4fae24 0%, #3a8518 100%);
    color: var(--white);

    box-shadow:
        0 4px 15px rgba(79, 174, 36, 0.15),
        0 10px 30px rgba(79, 174, 36, 0.24);
}

.btn-green:hover {
    background: linear-gradient(135deg, #5bc42e 0%, #419e1f 100%);

    box-shadow:
        0 8px 25px rgba(79, 174, 36, 0.25),
        0 15px 45px rgba(79, 174, 36, 0.35);
}


/* WIT */

.btn-white {
    background: var(--white);
    color: var(--text);

    box-shadow:
        0 4px 15px rgba(19, 53, 34, 0.08),
        0 8px 25px rgba(19, 53, 34, 0.12);

    border: 1px solid rgba(79, 174, 36, 0.1);
}

.btn-white:hover {
    background: #f5f5f5;

    box-shadow:
        0 6px 20px rgba(19, 53, 34, 0.12),
        0 12px 35px rgba(19, 53, 34, 0.16);
}


/* =========================================
   CARDS
========================================= */

.card {
    background: var(--white);

    border: 1px solid rgba(15, 70, 40, 0.07);
    border-radius: var(--radius);

    box-shadow: var(--shadow-small);

    transition:
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow);
    border-color: rgba(15, 70, 40, 0.15);
}


/* =========================================
   IMAGE STYLE
========================================= */

.rounded-image {
    overflow: hidden;
    border-radius: var(--radius);
    position: relative;
}

.rounded-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.rounded-image:hover img {
    transform: scale(1.06);
}


/* =========================================
   GREEN TEXT
========================================= */

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

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


/* =========================================
   SELECTION
========================================= */

::selection {
    background: var(--green);
    color: white;
}


/* =========================================
   SCROLLBAR
========================================= */

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

::-webkit-scrollbar-track {
    background: #f1f1ed;
}

::-webkit-scrollbar-thumb {
    background: var(--green);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-dark);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    :root {
        --radius: 18px;
        --radius-large: 24px;
    }

    .container {
        width: min(90%, var(--container));
    }

    .section-header {
        margin-bottom: 40px;
    }

}


@media (max-width: 600px) {

    h1 {
        letter-spacing: -1px;
    }

    h2 {
        letter-spacing: -.6px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header p {
        font-size: 15px;
    }

    .btn,
    .btn-primary,
    .ticket-button {
        min-height: 50px;
        padding: 0 20px;
    }

}/* ==========================================
   WESTERFUN HEADER
========================================== */


/* ==========================================
   TOPBAR
========================================== */

.topbar {
    position: relative;
    z-index: 1001;

    width: 100%;
    min-height: 38px;

    display: flex;
    align-items: center;

    background: #0b5d32;
    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.topbar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar-right a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 30px;
    height: 30px;

    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);

    color: #ffffff;
    text-decoration: none;

    transition:
        transform .22s ease,
        background .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
}

.topbar-right a img {
    width: 16px;
    height: 16px;
}

.topbar-right a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}


/* ==========================================
   MAIN HEADER
========================================== */

.header {
    position: relative;
    z-index: 1000;

    width: 100%;
    height: 88px;

    background: rgba(255, 255, 255, 0.98);

    border-bottom:
        1px solid rgba(11, 79, 45, 0.08);

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0);

    transition:
        height 0.3s ease,
        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s ease,
        border-color 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(11, 79, 45, 0.12);
    background: rgba(255, 255, 255, 0.99);
}

.header .container {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 30px;
}


/* ==========================================
   LOGO
========================================== */

.logo {
    flex-shrink: 0;

    display: flex;
    align-items: center;

    text-decoration: none;
}

.logo img {
    display: block;

    width: auto;
    height: 74px;

    object-fit: contain;

    transition: transform .3s ease;
}

.logo:hover img {
    transform: scale(1.03);
}


/* ==========================================
   NAVIGATION
========================================== */

.header nav {
    margin-left: auto;
}

.header nav ul {
    display: flex;
    align-items: center;

    gap: 4px;

    list-style: none;
}

.header nav li {
    position: relative;
}

.header nav a {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 46px;

    padding: 0 13px;

    color: #173626;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    border-radius: 9px;

    transition:
        color .25s ease,
        background .25s ease;
}

.header nav a:hover {
    color: #4fae24;
    background: #f3f8ef;
}


/* groene lijn onder menu */

.header nav a::after {
    content: "";

    position: absolute;

    left: 13px;
    right: 13px;
    bottom: 3px;

    height: 3px;

    background: #69b928;

    border-radius: 20px;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform .25s ease;
}

.header nav a:hover::after {
    transform: scaleX(1);
}


/* HOME ACTIVE */

.header nav li:first-child a {
    color: #4fae24;
}

.header nav li:first-child a::after {
    transform: scaleX(1);
}


/* ==========================================
   TICKET BUTTON
========================================== */

.ticket-button {
    flex-shrink: 0;

    min-height: 50px;

    padding: 0 23px;

    background: #ff7a00;
    color: #ffffff;

    border-radius: 11px;

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;

    box-shadow:
        0 8px 20px rgba(255, 122, 0, .25);
}

.ticket-button:hover {
    background: #eb6d00;

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(255, 122, 0, .32);
}


/* ==========================================
   MENU BUTTON
========================================== */

.menu-toggle {
    display: none;

    width: 48px;
    height: 48px;

    margin-left: auto;

    align-items: center;
    justify-content: center;

    background: #f2f7ef;
    color: #0b5d32;

    border: 0;
    border-radius: 10px;

    cursor: pointer;

    font-size: 23px;
}


/* ==========================================
   MOBILE MENU
========================================== */

.mobile-menu {
    display: none;
}


/* ==========================================
   STICKY / SCROLL HEADER
========================================== */

.header.scroll {
    position: fixed;

    top: 0;
    left: 0;

    height: 74px;

    background: rgba(255, 255, 255, .98);

    box-shadow:
        0 10px 35px rgba(12, 58, 33, .12);

    animation: headerDown .3s ease;
}

.header.scroll .logo img {
    height: 62px;
}

@keyframes headerDown {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }

}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1180px) {

    .header nav a {
        padding-left: 9px;
        padding-right: 9px;

        font-size: 12px;
    }

    .header nav ul {
        gap: 0;
    }

    .ticket-button {
        padding: 0 17px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 1000px) {

    .topbar-left span:nth-child(3),
    .topbar-left span:nth-child(4) {
        display: none;
    }

    .topbar-right {
        display: none;
    }

    .header {
        height: 76px;
    }

    .header nav {
        display: none;
    }

    .logo img {
        height: 64px;
    }

    .ticket-button {
        margin-left: auto;

        min-height: 44px;

        padding: 0 16px;

        font-size: 11px;
    }

    .menu-toggle {
        display: flex;
        margin-left: 0;
    }


    /* MOBILE DROPDOWN */

    .mobile-menu {
        position: absolute;

        top: 76px;
        left: 0;

        width: 100%;

        padding: 18px 5% 25px;

        background: #ffffff;

        border-top:
            1px solid #edf0ed;

        box-shadow:
            0 20px 35px rgba(0, 0, 0, .12);

        flex-direction: column;

        gap: 4px;
    }

    .mobile-menu.open {
        display: flex;
    }

    .mobile-menu a {
        display: block;

        padding: 14px 16px;

        color: #173626;

        text-decoration: none;

        font-weight: 700;

        border-radius: 10px;
    }

    .mobile-menu a:hover {
        color: #4fae24;
        background: #f3f8ef;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 600px) {

    .topbar {
        min-height: 34px;
        font-size: 10px;
    }

    .topbar-left {
        width: 100%;

        justify-content: space-between;

        gap: 10px;
    }

    .topbar-left span:nth-child(2) {
        display: none;
    }

    .header {
        height: 70px;
    }

    .logo img {
        height: 57px;
    }

    .ticket-button {
        display: none;
    }

    .menu-toggle {
        margin-left: auto;
    }

    .mobile-menu {
        top: 70px;
    }

}/* ==========================================================
   WESTERFUN - HERO.CSS
   Complete fixed professional version
========================================================== */


/* ==========================================================
   1. HERO
========================================================== */

.hero {
    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 680px;
    height: calc(100vh - 126px);
    max-height: 850px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #0b4f2d;
    color: #ffffff;
}

.hero-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
}

.hero-link .hero-image,
.hero-link .hero-video,
.hero-link .hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-link .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% center;
    transform: scale(1.015);
    display: none;
}

.hero-link .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% center;
    transform: scale(1.015);
}

.hero.has-video .hero-video {
    display: block;
}

.hero.has-video .hero-fallback {
    display: none;
}

.hero-link .hero-overlay {
    background:
        linear-gradient(90deg,
            rgba(5, 45, 24, 0.96) 0%,
            rgba(5, 45, 24, 0.92) 18%,
            rgba(5, 45, 24, 0.80) 38%,
            rgba(5, 45, 24, 0.52) 58%,
            rgba(5, 45, 24, 0.22) 78%,
            rgba(5, 45, 24, 0.08) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.08) 0%,
            transparent 50%,
            rgba(3, 30, 15, 0.30) 100%);
}

.hero-content {
    position: relative;
    z-index: 5;
}


/* ==========================================================
   2. BACKGROUND IMAGE
========================================================== */

.hero-image {
    position: absolute;
    z-index: -3;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: 55% center;

    transform: scale(1.015);

    animation: heroImageZoom 12s ease-out forwards;
}


@keyframes heroImageZoom {

    from {
        transform: scale(1.055);
    }

    to {
        transform: scale(1.015);
    }

}


/* ==========================================================
   3. DARK GREEN OVERLAY
========================================================== */

.hero-overlay {
    position: absolute;
    z-index: -2;

    inset: 0;

    background:

        linear-gradient(90deg,
            rgba(5, 45, 24, 0.96) 0%,
            rgba(5, 45, 24, 0.92) 18%,
            rgba(5, 45, 24, 0.80) 38%,
            rgba(5, 45, 24, 0.52) 58%,
            rgba(5, 45, 24, 0.22) 78%,
            rgba(5, 45, 24, 0.08) 100%),

        linear-gradient(180deg,
            rgba(0, 0, 0, 0.08) 0%,
            transparent 50%,
            rgba(3, 30, 15, 0.30) 100%);
}


/* ==========================================================
   4. SOFT GREEN GLOW
========================================================== */

.hero::before {
    content: "";

    position: absolute;
    z-index: -1;

    top: 50%;
    left: -250px;

    width: 650px;
    height: 650px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: rgba(123, 195, 54, 0.10);

    filter: blur(100px);

    pointer-events: none;
}


/* ==========================================================
   5. HERO CONTENT
   IMPORTANT: THIS FIXES THE LEFT SIDE
========================================================== */

.hero.hero-modern {
    min-height: auto;
    padding: 70px 0 60px;
    background: linear-gradient(180deg, #12512f 0%, #0b4128 45%, #092e1c 100%);
}

.hero.hero-modern .hero-content {
    position: relative;
    z-index: 5;

    width: 100%;
    max-width: 1280px;

    margin-left: auto !important;
    margin-right: auto !important;

    padding: 0 !important;

    display: block;
}

.hero-panel {
    position: relative;
    overflow: hidden;

    background: #ffffff;
    border-radius: 34px;
    box-shadow: 0 35px 90px rgba(13, 55, 26, 0.22);

    padding: 34px;
}

.hero-panel-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.hero-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-brand img {
    width: 130px;
    height: auto;
}

.hero-brand-name {
    margin: 0 0 6px;
    color: #0d462c;
    font-size: 24px;
    font-weight: 800;
}

.hero-brand-subtitle {
    margin: 0;
    color: #4d6f56;
    font-size: 15px;
}

.promo-banner {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    min-width: 280px;
    padding: 18px 22px;
    border-radius: 16px;
    background: linear-gradient(90deg, #fde64b 0%, #ffc300 100%);
    color: #1d2e11;
    box-shadow: 0 18px 40px rgba(248, 175, 26, 0.25);
}

.promo-banner span {
    display: block;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.promo-banner p {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
}

.promo-banner strong {
    font-weight: 900;
}

.mega-pass-card {
    background: #104d2f;
    color: #ffffff;
    border-radius: 28px;
    padding: 28px 28px 24px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 25px 50px rgba(7, 36, 19, 0.24);
    margin-bottom: 28px;
}

.mega-pass-header span {
    display: block;
    color: #edfcef;
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 14px;
}

.mega-pass-header p {
    margin: 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.65;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.price-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 18px;
    text-align: center;
    color: #10391b;
    box-shadow: 0 18px 35px rgba(14, 57, 28, 0.16);
}

.price-card span {
    display: block;
    color: #3a6a3f;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}

.price-card strong {
    display: block;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.info-card {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(15, 71, 34, 0.08);
    padding: 24px 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
}

.info-card-large {
    grid-column: span 2;
}

.info-card-full {
    grid-column: 1 / -1;
}

.info-card h3 {
    margin: 0 0 16px;
    color: #0b4128;
    font-size: 20px;
    font-weight: 800;
}

.info-card p,
.info-card li,
.info-card .info-note {
    color: #5c6c57;
    font-size: 14px;
    line-height: 1.8;
}

.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.info-card li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 1px;
    color: #4fae24;
    font-size: 12px;
}

.info-note {
    margin-top: 12px;
    font-style: italic;
}

.hero-footer {
    margin-top: 30px;
    padding: 22px 26px;
    border-radius: 18px;
    background: #0b4a2e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-footer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.hero-footer a {
    color: #fff9c4;
    text-decoration: underline;
}

.hero-modern .hero-wave {
    display: none;
}

@media (max-width: 1200px) {
    .price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .info-card-large {
        grid-column: span 2;
    }
}

@media (max-width: 900px) {
    .hero-panel {
        padding: 26px;
    }

    .hero-panel-top {
        flex-direction: column;
        align-items: stretch;
    }

    .promo-banner {
        min-width: auto;
        width: 100%;
    }

    .mega-pass-header span {
        font-size: 32px;
    }

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

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

    .info-card-large,
    .info-card-full {
        grid-column: auto;
    }
}

@media (max-width: 650px) {
    .hero.hero-modern {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero-panel {
        padding: 20px;
    }

    .hero-brand img {
        width: 100px;
    }

    .hero-brand-name {
        font-size: 20px;
    }

    .promo-banner span {
        font-size: 13px;
    }

    .promo-banner p {
        font-size: 16px;
    }

    .hero-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* ==========================================================
   6. LEFT SIDE
========================================================== */

.hero .hero-left {
    position: relative;

    width: 100%;
    max-width: 620px;

    margin: 0 !important;
    padding: 0 !important;

    transform: none !important;

    animation: heroTextIn 0.7s ease-out both;
}


@keyframes heroTextIn {

    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

}


/* ==========================================================
   7. WELCOME BADGE
========================================================== */

.hero-tag {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin: 0 0 20px 0;

    padding: 9px 15px;

    border: 1px solid rgba(255, 255, 255, 0.22);

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.11);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    color: #ffffff;

    font-size: 12px;
    line-height: 1;

    font-weight: 700;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 8px 25px rgba(0, 0, 0, 0.10);
}


.hero-tag span {
    font-size: 14px;
}


/* ==========================================================
   8. TITLE
========================================================== */

.hero .hero-left h1 {
    width: 100%;
    max-width: 620px;

    margin: 0 0 20px 0 !important;
    padding: 0 !important;

    color: #ffffff;

    font-size: clamp(45px, 4.1vw, 64px);

    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -2.5px;

    text-align: left;

    text-shadow:
        0 5px 25px rgba(0, 0, 0, 0.18);
}


.hero .hero-left h1 span {
    display: block;

    color: #91cf3b;
}


/* ==========================================================
   9. DESCRIPTION
========================================================== */

.hero-description {
    width: 100%;
    max-width: 520px;

    margin: 0 0 23px 0;

    color: rgba(255, 255, 255, 0.90);

    font-size: 15px;

    line-height: 1.65;

    font-weight: 400;
}


/* ==========================================================
   10. BENEFITS
========================================================== */

.hero-benefits {
    width: 100%;
    max-width: 520px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    column-gap: 28px;
    row-gap: 10px;

    margin: 0 0 28px 0;
}


.hero-benefit {
    display: flex;
    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.94);

    font-size: 11.5px;

    line-height: 1.4;

    font-weight: 600;
}


.benefit-check {
    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #8ed33d,
            #55aa22);

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    box-shadow:
        0 5px 14px rgba(76, 164, 32, 0.30);
}


/* ==========================================================
   11. BUTTON CONTAINER
========================================================== */

.hero-buttons {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin: 0;
    padding: 0;
}


/* ==========================================================
   12. HERO BUTTON
========================================================== */

.hero-btn {
    position: relative;

    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 22px;

    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 12px;

    color: #ffffff;

    text-decoration: none;

    font-size: 10px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 0.15px;

    text-transform: uppercase;

    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.12),
        0 12px 35px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);

    transition:
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease,
        filter 0.35s ease,
        border-color 0.35s ease;
}


/* shine */

.hero-btn::before {
    content: "";

    position: absolute;

    top: -50px;
    left: -90px;

    width: 45px;
    height: 150px;

    transform: rotate(25deg);

    background: rgba(255, 255, 255, 0.15);

    transition: left 0.5s ease;
}


.hero-btn:hover::before {
    left: 130%;
}


.hero-btn:hover {
    transform: translateY(-6px) scale(1.03);

    filter: brightness(1.12);

    border-color: rgba(255, 255, 255, 0.3);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.15),
        0 18px 45px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-btn:active {
    transform: translateY(-2px) scale(0.98);
}


.hero-btn span {
    position: relative;
    z-index: 2;

    font-size: 14px;
}


/* ==========================================================
   13. GREEN BUTTON
========================================================== */

.hero-btn-green {
    background:
        linear-gradient(135deg,
            #7bc539 0%,
            #5aab29 100%);
}


/* ==========================================================
   14. ORANGE BUTTON
========================================================== */

.hero-btn-orange {
    background:
        linear-gradient(135deg,
            #ffa333 0%,
            #ff8800 100%);
}


/* ==========================================================
   15. PINK BUTTON
========================================================== */

.hero-btn-pink {
    background:
        linear-gradient(135deg,
            #f05f8f 0%,
            #e94878 100%);
}


/* ==========================================================
   16. RIGHT SIDE
========================================================== */

.hero-right {
    position: relative;

    width: 100%;
    max-width: 420px;

    min-height: 440px;

    justify-self: end;
}


/* ==========================================================
   17. FLOATING CARDS
========================================================== */

.hero-floating-card {
    position: absolute;

    width: 255px;

    display: flex;
    align-items: center;

    gap: 13px;

    padding: 14px 16px;

    border: 1px solid rgba(255, 255, 255, 0.21);

    border-radius: 17px;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.20),
            rgba(255, 255, 255, 0.10));

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.13),
        0 17px 40px rgba(0, 0, 0, 0.18);

    animation:
        heroFloating 4.5s ease-in-out infinite;
}


.hero-floating-card strong {
    display: block;

    margin-bottom: 3px;

    color: #ffffff;

    font-size: 13px;

    line-height: 1.3;

    font-weight: 700;
}


.hero-floating-card .floating-text>span {
    display: block;

    color: rgba(255, 255, 255, 0.72);

    font-size: 11px;

    line-height: 1.4;
}


/* ==========================================================
   18. FLOATING ICONS
========================================================== */

.floating-icon {
    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(135deg,
            #ff9c20,
            #f27000);

    font-size: 21px;

    box-shadow:
        0 8px 20px rgba(255, 122, 0, 0.28);
}


.floating-icon.blue {
    background:
        linear-gradient(135deg,
            #26b7e9,
            #0e8bc7);

    box-shadow:
        0 8px 20px rgba(15, 150, 210, 0.28);
}


/* ==========================================================
   19. CARD POSITIONS
========================================================== */

.card-play {
    top: 25px;
    right: 10px;
}


.card-water {
    right: 35px;
    bottom: 20px;

    animation-delay: -2s;
}


@keyframes heroFloating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}


/* ==========================================================
   20. REVIEW CARD
========================================================== */

.hero-review {
    position: absolute;

    top: 50%;
    right: 10px;

    width: 270px;

    padding: 23px;

    transform: translateY(-50%);

    border: 1px solid rgba(255, 255, 255, 0.20);

    border-radius: 20px;

    background:
        linear-gradient(145deg,
            rgba(7, 59, 31, 0.68),
            rgba(4, 38, 20, 0.50));

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.11),
        0 20px 50px rgba(0, 0, 0, 0.20);
}


.review-stars {
    margin-bottom: 10px;

    color: #ffc544;

    font-size: 16px;

    line-height: 1;

    letter-spacing: 2px;
}


.review-score {
    margin-bottom: 7px;

    color: #ffffff;

    font-size: 43px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -2px;
}


.hero-review strong {
    display: block;

    margin-bottom: 6px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;
}


.hero-review p {
    max-width: 210px;

    margin: 0;

    color: rgba(255, 255, 255, 0.70);

    font-size: 10.5px;

    line-height: 1.6;
}


/* ==========================================================
   21. BOTTOM WAVE
========================================================== */

.hero-wave {
    position: absolute;
    z-index: 10;

    left: -2px;
    right: -2px;
    bottom: -1px;

    width: calc(100% + 4px);
    height: 48px;

    overflow: hidden;

    pointer-events: none;
}


.hero-wave svg {
    display: block;

    width: 100%;
    height: 100%;
}


/* ==========================================================
   22. REMOVE OLD SCROLL ELEMENT
========================================================== */

.hero-scroll {
    display: none !important;
}


/* ==========================================================
   23. LARGE DESKTOP
========================================================== */

@media (min-width: 1500px) {

    .hero .hero-content {
        max-width: 1500px;

        padding-left: 100px !important;
        padding-right: 100px !important;

        gap: 110px;
    }

    .hero .hero-left {
        max-width: 650px;
    }

    .hero .hero-left h1 {
        max-width: 650px;

        font-size: 67px;
    }

}


/* ==========================================================
   24. NORMAL DESKTOP / LAPTOP
========================================================== */

@media (max-width: 1300px) {

    .hero .hero-content {
        padding-left: 60px !important;
        padding-right: 60px !important;

        gap: 50px;
    }

    .hero .hero-left {
        max-width: 580px;
    }

    .hero .hero-left h1 {
        max-width: 580px;

        font-size: clamp(44px, 4.5vw, 59px);
    }

    .hero-right {
        max-width: 330px;
    }

}


/* ==========================================================
   25. SMALL LAPTOP
========================================================== */

@media (max-width: 1100px) {

    .hero {
        min-height: 660px;
    }

    .hero .hero-content {
        padding-left: 45px !important;
        padding-right: 45px !important;

        grid-template-columns:
            minmax(0, 1fr) 280px;

        gap: 35px;
    }

    .hero .hero-left {
        max-width: 540px;
    }

    .hero .hero-left h1 {
        max-width: 540px;

        font-size: 52px;
    }

    .hero-right {
        max-width: 280px;

        min-height: 410px;
    }

    .hero-floating-card {
        width: 230px;
    }

    .hero-review {
        width: 240px;
    }

}


/* ==========================================================
   26. TABLET
========================================================== */

@media (max-width: 900px) {

    .hero {
        height: auto;
        min-height: 690px;
    }

    .hero-image {
        object-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(5, 45, 24, 0.96) 0%,
                rgba(5, 45, 24, 0.88) 55%,
                rgba(5, 45, 24, 0.58) 100%);
    }

    .hero .hero-content {
        display: block;

        max-width: none;

        padding-left: 40px !important;
        padding-right: 40px !important;
        padding-top: 65px;
        padding-bottom: 100px;
    }

    .hero .hero-left {
        max-width: 610px;
    }

    .hero .hero-left h1 {
        max-width: 600px;

        font-size: clamp(45px, 8vw, 60px);
    }

    .hero-right {
        display: none;
    }

}


/* ==========================================================
   27. MOBILE
========================================================== */

@media (max-width: 650px) {

    .hero {
        min-height: 700px;
    }

    .hero-image {
        object-position: 65% center;
    }

    .hero-overlay {
        background:
            linear-gradient(90deg,
                rgba(5, 45, 24, 0.97) 0%,
                rgba(5, 45, 24, 0.89) 60%,
                rgba(5, 45, 24, 0.70) 100%);
    }

    .hero .hero-content {
        padding-left: 24px !important;
        padding-right: 24px !important;
        padding-top: 48px;
        padding-bottom: 78px;
    }

    .hero-tag {
        margin-bottom: 16px;

        padding: 8px 12px;

        font-size: 10px;
    }

    .hero .hero-left h1 {
        margin-bottom: 16px !important;

        font-size: clamp(39px, 11vw, 47px);

        line-height: 1.02;

        letter-spacing: -1.8px;
    }

    .hero-description {
        max-width: 95%;

        margin-bottom: 20px;

        font-size: 13.5px;

        line-height: 1.6;
    }

    .hero-benefits {
        grid-template-columns: 1fr;

        gap: 8px;

        margin-bottom: 23px;
    }

    .hero-benefit {
        font-size: 11px;
    }

    .hero-buttons {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;
    }

    .hero-btn {
        width: 100%;

        min-height: 48px;

        padding: 0 10px;

        font-size: 9px;
    }

    .hero-btn-pink {
        grid-column: 1 / -1;
    }

    .hero-wave {
        height: 35px;
    }

}


/* ==========================================================
   28. VERY SMALL MOBILE
========================================================== */

@media (max-width: 430px) {

    .hero .hero-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .hero .hero-left h1 {
        font-size: 38px;
    }

    .hero-buttons {
        grid-template-columns: 1fr;
    }

    .hero-btn-pink {
        grid-column: auto;
    }

}


/* ==========================================================
   29. ACCESSIBILITY
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .hero-image,
    .hero-left,
    .hero-floating-card {
        animation: none !important;
    }

    .hero-btn {
        transition: none;
    }

}/* ==========================================
STATS STRIP
========================================== */

.stats-strip {
    background: linear-gradient(135deg, #0d462c 0%, #1b5e20 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 60%),
                radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: #fff;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    display: inline-block;
    font-size: 52px;
    font-weight: 900;
    color: #fdd835;
    line-height: 1;
    letter-spacing: -2px;
}

.stat-suffix {
    font-size: 36px;
    font-weight: 900;
    color: #fdd835;
    vertical-align: super;
}

.stat-item p {
    margin: 10px 0 0;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }
    .stat-item:nth-child(2n) { border-right: none; }
    .stat-number { font-size: 40px; }
}

/* ==========================================
SCROLL TO TOP BUTTON
========================================== */

.scroll-top-btn {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1b5e20 0%, #2d7f2f 100%);
    color: #fff;
    font-size: 20px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(27, 94, 32, 0.35);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    z-index: 999;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, #2d7f2f 0%, #3a9b3d 100%);
    box-shadow: 0 12px 32px rgba(27, 94, 32, 0.45);
    transform: translateY(-4px);
}

/* ==========================================
PROMO POPUP
========================================== */

.promo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    padding: 20px;
}

.promo-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.promo-popup {
    background: #fff;
    border-radius: 24px;
    padding: 48px 40px 36px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.promo-overlay.active .promo-popup {
    transform: scale(1) translateY(0);
}

.promo-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #888;
    line-height: 1;
    padding: 4px;
}

.promo-close:hover { color: #333; }

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.promo-popup h2 {
    font-size: 36px;
    font-weight: 900;
    color: #0d462c;
    margin: 0 0 12px;
}

.promo-price {
    font-size: 20px;
    color: #444;
    margin: 0 0 12px;
}

.promo-price strong {
    font-size: 42px;
    font-weight: 900;
    color: #1b5e20;
}

.promo-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 28px;
}

.promo-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1b5e20 0%, #2d7f2f 100%);
    color: #fff;
    padding: 16px 36px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(27, 94, 32, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 16px;
    display: block;
}

.promo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(27, 94, 32, 0.4);
    filter: brightness(1.08);
}

.promo-skip {
    background: none;
    border: none;
    color: #aaa;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    padding: 4px;
}

.promo-skip:hover { color: #666; }

/* ==========================================
DISCOVER
========================================== */

.discover {

    padding: 120px 0;

    background: linear-gradient(180deg, #ffffff 0%, #fafaf8 100%);

    position: relative;

    overflow: hidden;

}

.discover::before {

    content: "";

    position: absolute;

    top: -200px;

    right: -300px;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: radial-gradient(circle, rgba(79, 174, 36, 0.05) 0%, transparent 70%);

    pointer-events: none;

}

.section-tag {

    display: inline-block;

    background: linear-gradient(135deg, #e8f7ec 0%, #f0faf4 100%);

    color: #0d6b3c;

    padding: 10px 22px;

    border-radius: 999px;

    font-weight: 700;

    margin-bottom: 20px;

    border: 1px solid rgba(79, 174, 36, 0.1);

    transition: all 0.3s ease;

}

.section-tag:hover {

    background: linear-gradient(135deg, #dff5e8 0%, #e8f3ed 100%);

    transform: scale(1.02);

}

.discover h2 {

    font-size: 48px;

    margin-bottom: 20px;

    background: linear-gradient(135deg, #0d462c 0%, #1b5e20 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    font-weight: 900;

}

.section-description {

    max-width: 700px;

    line-height: 1.8;

    color: #657168;

    margin-bottom: 60px;

    font-size: 16px;

}

.discover-highlights {

    list-style: none;

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 12px;

    margin: 0 0 48px;

    padding: 0;

}

.discover-highlights li {

    background: #ffffff;

    border: 1px solid rgba(15, 70, 40, 0.12);

    border-radius: 999px;

    padding: 10px 14px;

    font-size: 14px;

    font-weight: 700;

    color: #0d462c;

    text-align: center;

    box-shadow: 0 10px 24px rgba(14, 71, 41, 0.08);

}

.discover-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.discover-card {

    background: #fff;

    border-radius: 22px;

    overflow: hidden;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);

    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);

    border: 1px solid rgba(79, 174, 36, 0.05);

}

.discover-card:hover {

    transform: translateY(-12px) scale(1.01);

    box-shadow: 0 16px 40px rgba(79, 174, 36, 0.15);

}

.discover-card img {

    width: 100%;

    height: 240px;

    object-fit: cover;

}

.discover-card .card-content {

    padding: 28px;

    display: flex;

    flex-direction: column;

    height: 100%;

}

.discover-card .card-content h3 {

    font-size: 26px;

    margin-bottom: 15px;

    color: #0d462c;

    font-weight: 900;

    line-height: 1.2;

}

.discover-card .card-content p {

    color: #657168;

    line-height: 1.8;

    margin-bottom: 20px;

    font-size: 15px;

    flex-grow: 1;

}

.discover-card .card-content a {

    text-decoration: none;

    font-weight: 700;

    color: #0d6b3c;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-size: 14px;

    letter-spacing: 0.5px;

    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

    position: relative;

}

.discover-card .card-content a::after {

    content: "→";

    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

}

.discover-card .card-content a:hover {

    color: #1b5e20;

    transform: translateX(2px);

}

.discover-card .card-content a:hover::after {

    transform: translateX(4px);

}

@media(max-width:1100px) {

    .discover-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:700px) {

    .discover-grid {

        grid-template-columns: 1fr;

    }

    .discover h2 {

        font-size: 36px;

    }

}

/* ==========================================
ACTIVITIES
========================================== */

.activities {

    padding: 120px 0;

    background: #f8faf8;

}

.section-header {

    text-align: center;

    margin-bottom: 60px;

}

.section-header h2 {

    font-size: 48px;

    margin: 20px 0;

}

.section-header p {

    max-width: 700px;

    margin: auto;

    color: #666;

    line-height: 1.8;

}

.activities-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    grid-auto-rows: 280px;

    gap: 25px;

}

.activity {

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

}

.activity.large {

    grid-row: span 2;

}

.activity img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .4s;

}

.activity:hover img {

    transform: scale(1.08);

}

.activity-content {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 0;

    padding: 30px;

    color: white;

    background: linear-gradient(transparent,
            rgba(0, 0, 0, .8));

}

.activity-content span {

    display: inline-block;

    background: #39b54a;

    padding: 6px 12px;

    border-radius: 999px;

    margin-bottom: 12px;

    font-size: 13px;

}

.activity-content h3 {

    font-size: 34px;

    margin-bottom: 10px;

}

.activity-content p {

    margin-bottom: 20px;

}

.activity-content a {

    color: white;

    text-decoration: none;

    font-weight: 700;

}

@media(max-width:1100px) {

    .activities-grid {

        grid-template-columns: 1fr 1fr;

    }

    .activity.large {

        grid-row: auto;

    }

}

@media(max-width:768px) {

    .activities-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 250px;

    }

}

/* ==========================================
TICKETS
========================================== */

.tickets {

    padding: 120px 0;

    background: #ffffff;

}

.ticket-categories {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin: 0 0 28px;

}

.ticket-category-pill {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 42px;

    padding: 0 16px;

    border-radius: 999px;

    border: 1px solid rgba(13, 70, 44, 0.16);

    background: #f8fbf5;

    color: #0d462c;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: background .22s ease, color .22s ease, transform .22s ease;

}

.ticket-category-pill:hover {

    background: #0d6b3c;

    color: #ffffff;

    transform: translateY(-2px);

}

.ticket-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

}

.ticket-card {

    background: linear-gradient(180deg, #ffffff 0%, #f8fbf5 100%);

    border-radius: 28px;

    padding: 35px 32px;

    box-shadow: 0 25px 55px rgba(0, 0, 0, .12);

    transition: transform .35s ease, box-shadow .35s ease;

    position: relative;

    border: 1px solid rgba(15, 70, 40, 0.1);

}

.ticket-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 72px;
    height: 8px;
    border-top-left-radius: 28px;
    background: linear-gradient(90deg, #ff8c1a, #ffcd39);
}

.ticket-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 30px 65px rgba(0, 0, 0, .16);

}

.ticket-card.featured {

    border-color: #ff8c1a;

}

.popular {

    position: absolute;

    top: 18px;

    right: 18px;

    background: #ff8c1a;

    color: white;

    padding: 10px 20px;

    border-radius: 999px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 0.04em;

}

.ticket-card h3 {

    font-size: 28px;

    margin-bottom: 18px;

    color: #183320;

    letter-spacing: -0.03em;

}

.price {

    font-size: 18px;

    margin-bottom: 22px;

    color: #3a4f37;

}

.price strong {

    display: block;

    font-size: 44px;

    color: #0d6b3c;

    margin-top: 6px;

}

.ticket-card ul {

    list-style: none;

    margin-bottom: 28px;

    padding-left: 0;

}

.ticket-card li {

    margin-bottom: 14px;

    padding-left: 24px;

    position: relative;

    color: #4f654f;

}

.ticket-card li::before {
    content: "✔";

    position: absolute;

    left: 0;

    top: 0;

    color: #39b54a;

    font-size: 14px;

}

.ticket-btn-green,
.ticket-btn-orange {

    display: block;

    text-align: center;

    padding: 16px 0;

    border-radius: 999px;

    text-decoration: none;

    color: white;

    font-weight: 700;

    letter-spacing: 0.02em;

}

.ticket-btn-green {

    background: #198b3b;

}

.ticket-btn-orange {

    background: #ff8c1a;

}

.ticket-btn-green:hover {

    background: #157533;

}

.ticket-btn-orange:hover {

    background: #e87700;

}

@media(max-width:1000px) {

    .ticket-grid {

        grid-template-columns: 1fr;

    }

    .ticket-card.featured {

        transform: none;

    }

    .ticket-promo {
        grid-column: 1 / -1;
    }

}


.ticket-info-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 35px;
}

.ticket-info-card {
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 16px;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.ticket-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.ticket-info-card summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 24px 28px;
    cursor: pointer;
    font-weight: 900;
    font-size: 17px;
    color: #ffffff;
    background: linear-gradient(135deg, #0d6b3c 0%, #1b8a4a 100%);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.ticket-info-card summary:hover {
    background: linear-gradient(135deg, #0d6b3c 0%, #2a9d57 100%);
}

.ticket-info-card summary::-webkit-details-marker {
    display: none;
}

.ticket-info-card summary::after {
    content: "▼";
    font-size: 14px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.ticket-info-card[open] summary::after {
    content: "▲";
    transform: rotate(180deg);
}

.ticket-info-card .ticket-info-body {
    padding: 28px 28px;
    color: #444;
    line-height: 1.8;
    background: #ffffff;
}

.ticket-info-card .ticket-info-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.ticket-info-card .ticket-info-body li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    font-weight: 500;
}

.ticket-info-card .ticket-info-body li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #2ccc71;
    font-size: 14px;
    font-weight: 900;
}

.ticket-info-card .ticket-info-body p {
    margin: 0 0 12px 0;
    font-size: 15px;
    line-height: 1.6;
}

.ticket-info-action {
    color: rgba(255, 255, 255, 0.95);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.9;
}

.ticket-info-card.info-blue summary {
    background: linear-gradient(135deg, #004db8 0%, #0277bd 100%);
}

.ticket-info-card.info-blue summary:hover {
    background: linear-gradient(135deg, #004db8 0%, #0288d1 100%);
}

.ticket-info-card.info-green summary {
    background: linear-gradient(135deg, #1b5e20 0%, #2d7f2f 100%);
}

.ticket-info-card.info-green summary:hover {
    background: linear-gradient(135deg, #1b5e20 0%, #388e3c 100%);
}

.ticket-info-card.info-orange summary {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.ticket-info-card.info-orange summary:hover {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
}

.ticket-info-card.info-blue .ticket-info-body,
.ticket-info-card.info-green .ticket-info-body,
.ticket-info-card.info-orange .ticket-info-body {
    background: #ffffff;
}

.ticket-info-card .ticket-btn-green,
.ticket-info-card .ticket-btn-orange {
    display: inline-flex;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 13px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), 0 10px 20px rgba(0, 0, 0, 0.08);
    border: none;
    cursor: pointer;
    position: relative;
}

.ticket-info-card .ticket-btn-green {
    background: linear-gradient(135deg, #2d7f2f 0%, #1b5e20 100%);
    color: #ffffff;
}

.ticket-info-card .ticket-btn-green:hover {
    background: linear-gradient(135deg, #3a9b3d 0%, #2d7f2f 100%);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.2), 0 15px 35px rgba(27, 94, 32, 0.25);
    transform: translateY(-5px) scale(1.02);
    filter: brightness(1.08);
}

.ticket-info-card .ticket-btn-orange {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    color: #ffffff;
    font-weight: 900;
}

.ticket-info-card .ticket-btn-orange:hover {
    background: linear-gradient(135deg, #ffa052 0%, #ff7d4a 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2), 0 15px 35px rgba(255, 107, 53, 0.25);
    transform: translateY(-5px) scale(1.02);
    filter: brightness(1.08);
}

@media (max-width: 1000px) {
    .ticket-info-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
SPEELPAS SECTION (replaces ticket-promo)
========================================== */

.speelpas-section {
    margin-bottom: 42px;
    background: linear-gradient(180deg, #f9faf5 0%, #ffffff 100%);
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(15, 70, 40, 0.08);
    overflow: hidden;
    border: 1px solid rgba(27, 94, 32, 0.08);
}

/* Orange early bird strip across the top */
.early-bird-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
    flex-wrap: wrap;
}

.early-bird-label {
    background: rgba(255,255,255,0.25);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.early-bird-text {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    flex: 1;
}

.early-bird-text strong {
    font-size: 20px;
    font-weight: 900;
}

.early-bird-btn {
    background: #fff;
    color: #e05a00;
    font-size: 14px;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.early-bird-btn:hover {
    background: #fff7f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

/* Green Mega Speelpas header */
.speelpas-title-block {
    background: linear-gradient(135deg, #1b5e20 0%, #2d7f2f 100%);
    text-align: center;
    padding: 36px 40px 28px;
    position: relative;
    overflow: hidden;
}

.speelpas-title-block::before {
    content: '';
    position: absolute;
    top: -40px; right: -60px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.speelpas-title-block h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.speelpas-title-block p {
    background: linear-gradient(90deg, #fdd835, #ffeb3b);
    color: #1b5e20;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

/* Pricing cards inside speelpas-section */
.speelpas-section .ticket-price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 32px;
    background: #fff;
    gap: 20px;
}

@media (max-width: 900px) {
    .speelpas-section .ticket-price-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
    }
    .early-bird-strip {
        padding: 14px 20px;
        gap: 10px;
    }
    .speelpas-title-block h3 { font-size: 24px; }
    .speelpas-title-block { padding: 28px 24px 22px; }
}

@media (max-width: 600px) {
    .speelpas-section .ticket-price-grid {
        grid-template-columns: 1fr 1fr;
        padding: 16px;
        gap: 12px;
    }
    .early-bird-btn { width: 100%; text-align: center; }
    .speelpas-title-block h3 { font-size: 20px; letter-spacing: 1px; }
}

.ticket-promo {
    display: grid;
    grid-template-columns: 1.55fr 0.85fr;
    gap: 26px;
    padding: 28px;
    margin-bottom: 42px;
    background: linear-gradient(180deg, #f9faf5 0%, #ffffff 100%);
    border-radius: 32px;
    box-shadow: 0 40px 80px rgba(15, 70, 40, 0.08);
}

.ticket-promo-top,
.ticket-promo-main {
    border-radius: 26px;
    overflow: hidden;
}

.ticket-promo-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 28px;
    background: linear-gradient(180deg, #fff9e3 0%, #fff4d3 100%);
    border: 1px solid rgba(255, 140, 26, 0.16);
}

.ticket-promo-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #ffedd1;
    color: #b95705;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
}

.ticket-promo-top p {
    margin: 0;
    color: #3d2d10;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
}

.ticket-promo-top p strong {
    font-weight: 900;
    color: #1f3d10;
}

.ticket-promo-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 28px;
    background: linear-gradient(135deg, #1b5e20 0%, #2d7f2f 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.ticket-promo-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.ticket-promo-main::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.speelpas-header-home {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.ticket-promo-main h3 {
    margin: 0 0 12px 0;
    color: #ffffff;
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.ticket-promo-main p {
    margin: 0 0 20px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    background: linear-gradient(90deg, #fdd835 0%, #ffeb3b 50%, #fdd835 100%);
    color: #1b5e20;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ticket-promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    border-radius: 999px;
    text-decoration: none;
    color: white;
    font-weight: 800;
    background: #ff8c1a;
    margin-bottom: 20px;
    box-shadow: 0 16px 30px rgba(255, 140, 26, 0.18);
}

.ticket-promo-btn:hover {
    background: #e87700;
}

.ticket-price-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.ticket-price-card {
    background: #ffffff;
    padding: 0;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
}

.ticket-price-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(27, 94, 32, 0.2);
}

.ticket-price-card.popular-home {
    border: 3px solid #fdd835;
    transform: scale(1.06);
    box-shadow: 0 12px 32px rgba(253, 216, 53, 0.25);
}

.ticket-price-card.popular-home:hover {
    transform: scale(1.06) translateY(-12px);
    box-shadow: 0 20px 50px rgba(253, 216, 53, 0.35);
}

.badge-home {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #fdd835 0%, #ffeb3b 100%);
    color: #1b5e20;
    padding: 10px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(253, 216, 53, 0.3);
    text-transform: uppercase;
}

.card-header-home {
    padding: 24px 16px 12px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

.ticket-price-card.popular-home .card-header-home {
    background: linear-gradient(180deg, #fffef0 0%, #fffbf0 100%);
    padding-top: 52px; /* make room for the absolute badge */
}

.ticket-price-card span {
    display: block;
    color: #1b5e20;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.ticket-price-card.popular-home span {
    color: #f57f17;
}

/* "2 kinderen" label gets dark green so it's clearly distinct */
.ticket-price-card.popular-home .card-header-home span:first-child {
    color: #0d462c;
    font-size: 20px;
    font-weight: 900;
}

.savings-home {
    display: block;
    color: #2ccc71;
    font-size: 12px;
    font-weight: 700;
    margin-top: 8px !important;
}

.ticket-price-card strong {
    display: block;
    color: #1b5e20;
    font-size: 38px;
    font-weight: 900;
    padding: 20px 16px 8px;
    margin: 0;
    letter-spacing: -1px;
}

.ticket-price-card.popular-home strong {
    color: #f57f17;
    font-size: 42px;
}

.price-desc {
    color: #888;
    font-size: 13px;
    font-weight: 500;
    margin: 0 16px 20px;
    padding: 0;
}

.ticket-price-card.popular-home .price-desc.popular-text {
    color: #f57f17;
    font-weight: 600;
}

.ticket-btn-green {
    background: #1b5e20;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 0 16px 16px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: calc(100% - 32px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.2);
}

.ticket-btn-green:hover {
    background: #2d7f2f;
    box-shadow: 0 8px 24px rgba(27, 94, 32, 0.35);
    transform: translateY(-2px);
}

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

.ticket-btn-primary {
    background: linear-gradient(135deg, #f57f17 0%, #fdd835 100%) !important;
    color: #1b5e20 !important;
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(245, 127, 23, 0.3) !important;
}

.ticket-btn-primary:hover {
    background: linear-gradient(135deg, #f57f17 0%, #ffeb3b 100%) !important;
    box-shadow: 0 10px 30px rgba(245, 127, 23, 0.4) !important;
    transform: translateY(-2px);
}

.ticket-price-card:nth-child(1) {
    border-color: transparent;
}

.ticket-price-card:nth-child(2) {
    border-color: #fdd835;
}

.ticket-price-card:nth-child(3) {
    border-color: transparent;
}

.ticket-price-card:nth-child(4) {
    border-color: transparent;
}
    font-weight: 900;
}

@media(max-width:1100px) {
    .ticket-price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .ticket-price-card {
        padding: 0;
    }

    .ticket-promo-main h3 {
        font-size: 32px;
    }

    .ticket-btn-green,
    .ticket-btn-primary {
        padding: 12px 20px;
        font-size: 13px;
        margin: 0 12px 12px;
        width: calc(100% - 24px);
    }

    .ticket-info-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .ticket-info-card summary {
        padding: 20px 24px;
        font-size: 15px;
    }

    .ticket-info-card .ticket-info-body {
        padding: 20px 24px;
    }
}

@media(max-width:700px) {
    .ticket-price-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ticket-promo-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .ticket-promo-main {
        padding: 30px 20px;
    }

    .ticket-promo-main h3 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .ticket-promo-main p {
        font-size: 15px;
        padding: 10px 16px;
    }

    .speelpas-header-home {
        margin-bottom: 20px;
    }

    .ticket-price-card {
        transform: scale(1) !important;
    }

    .ticket-price-card.popular-home {
        transform: scale(1.02) !important;
    }

    .badge-home {
        padding: 8px;
        font-size: 12px;
    }

    .ticket-price-card strong {
        font-size: 32px;
        padding: 16px 12px 6px;
    }

    .ticket-price-card.popular-home strong {
        font-size: 36px;
    }

    .card-header-home {
        padding: 18px 12px 8px;
        font-size: 15px;
    }

    .ticket-btn-green,
    .ticket-btn-primary {
        padding: 11px 18px;
        font-size: 12px;
        margin: 0 10px 10px;
        width: calc(100% - 20px);
    }

    .ticket-info-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ticket-info-card {
        border-radius: 14px;
    }

    .ticket-info-card summary {
        padding: 18px 20px;
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .ticket-info-card .ticket-info-body {
        padding: 18px 20px;
    }

    .ticket-info-card .ticket-info-body li {
        margin-bottom: 12px;
        padding-left: 24px;
        font-size: 14px;
    }

    .ticket-info-card .ticket-btn-green,
    .ticket-info-card .ticket-btn-orange {
        padding: 12px 24px;
        font-size: 12px;
        margin-top: 14px;
    }
}

/* ==========================================
TIMELINE
========================================== */

.timeline {

    padding: 120px 0;

    background: #F8FAF8;

}

.timeline-wrapper {

    max-width: 900px;

    margin: 70px auto 0;

    position: relative;

}

.timeline-wrapper::before {

    content: "";

    position: absolute;

    left: 45px;

    top: 0;

    bottom: 0;

    width: 4px;

    background: #39b54a;

}

.timeline-item {

    display: flex;

    gap: 30px;

    margin-bottom: 50px;

    position: relative;

}

.timeline-time {

    width: 70px;

    font-weight: 700;

    color: #0D6B3C;

}

.timeline-icon {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    background: #39b54a;

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 24px;

    position: relative;

    z-index: 2;

}

.timeline-content {

    background: white;

    padding: 25px;

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    flex: 1;

}

.timeline-content h3 {

    margin-bottom: 10px;

    font-size: 24px;

}

.timeline-content p {

    color: #666;

    line-height: 1.7;

}

@media(max-width:768px) {

    .timeline-wrapper::before {

        left: 24px;

    }

    .timeline-item {

        flex-direction: column;

        padding-left: 15px;

    }

    .timeline-time {

        width: auto;

    }

}

/* ==========================================
PLATTEGROND
========================================== */

.map-section {

    padding: 120px 0;

    background: white;

}

.map-grid {

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 50px;

    align-items: center;

    margin-top: 60px;

}

.park-map {

    background: white;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);

}

.interactive-map {

    position: relative;

}

.park-map img {

    width: 100%;

    display: block;

}

.map-hotspot {

    position: absolute;

    left: var(--x);

    top: var(--y);

    transform: translate(-50%, -50%);

    border: 0;

    border-radius: 999px;

    background: rgba(11, 93, 50, 0.92);

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

    line-height: 1;

    padding: 9px 12px;

    cursor: pointer;

    box-shadow: 0 10px 26px rgba(3, 45, 24, 0.38);

    transition: transform .2s ease, background .2s ease;

}

.map-hotspot:hover,
.map-hotspot.active {

    background: #ff7a00;

    transform: translate(-50%, -50%) scale(1.04);

}

.map-info {

    background: #F8FAF8;

    padding: 40px;

    border-radius: 24px;

}

.map-info h3 {

    font-size: 32px;

    margin-bottom: 30px;

}

.map-info ul {

    list-style: none;

    margin-bottom: 40px;

}

.map-info li {

    padding: 14px 0;

    font-size: 18px;

    border-bottom: 1px solid #e8e8e8;

}

.map-detail {

    margin-top: 24px;

    padding: 18px 20px;

    border-radius: 14px;

    background: #ffffff;

    border: 1px solid #e5efe6;

}

.map-detail h4 {

    margin: 0 0 8px;

    color: #0d462c;

    font-size: 20px;

}

.map-detail p {

    margin: 0;

    color: #4d6656;

    line-height: 1.6;

}

@media(max-width:1000px) {

    .map-grid {

        grid-template-columns: 1fr;

    }

    .discover-highlights {

        grid-template-columns: repeat(2, minmax(0, 1fr));

    }

    .map-hotspot {

        font-size: 11px;

        padding: 8px 10px;

    }

}

/* ==========================================
FOTOGALERIJ
========================================== */

.gallery {

    padding: 120px 0;

    background: #f8faf8;

}

.gallery-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    grid-auto-rows: 260px;

    gap: 20px;

    margin-top: 60px;

}

.gallery-item {

    overflow: hidden;

    border-radius: 24px;

    display: block;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

}

.gallery-item.large {

    grid-column: span 2;

    grid-row: span 2;

}

.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .4s;

}

.gallery-item:hover img {

    transform: scale(1.08);

}

@media(max-width:900px) {

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .gallery-item.large {

        grid-column: span 2;

        grid-row: span 1;

    }

}

@media(max-width:700px) {

    .gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 240px;

    }

    .gallery-item.large {

        grid-column: span 1;

    }

}

/* ==========================================
REVIEWS
========================================== */

.reviews {

    padding: 120px 0;

    background: white;

}

.reviews-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin-top: 60px;

}

.review-card {

    background: #F8FAF8;

    padding: 35px;

    border-radius: 24px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    transition: .35s;

}

.review-card:hover {

    transform: translateY(-8px);

}

.review-header {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 25px;

}

.review-header img {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    object-fit: cover;

}

.review-header h3 {

    margin-bottom: 6px;

}

.review-card p {

    line-height: 1.8;

    color: #666;

}

.review-score {

    margin-top: 80px;

    text-align: center;

}

.review-score h2 {

    font-size: 54px;

    margin: 15px 0;

    color: #0D6B3C;

}

@media(max-width:1000px) {

    .reviews-grid {

        grid-template-columns: 1fr;

    }

}

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

.faq {

    padding: 120px 0;

    background: #F8FAF8;

}

.faq-wrapper {

    max-width: 900px;

    margin: 60px auto 0;

}

.faq-item {

    background: white;

    border-radius: 18px;

    margin-bottom: 20px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.faq-question {

    width: 100%;

    border: none;

    background: none;

    cursor: pointer;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 25px 30px;

    font-size: 20px;

    font-weight: 700;

}

.faq-question span {

    font-size: 30px;

    color: #0D6B3C;

}

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height .35s ease;

}

.faq-answer p {

    padding: 0 30px 25px;

    color: #666;

    line-height: 1.8;

}

.faq-item.active .faq-answer {

    max-height: 200px;

}

/* ==========================================
CONTACT
========================================== */

.contact {

    padding: 120px 0;

    background: white;

}

.contact-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

}

.contact-info h2 {

    font-size: 48px;

    margin: 20px 0;

}

.contact-info p {

    line-height: 1.8;

    margin-bottom: 30px;

}

.contact-info ul {

    list-style: none;

    margin-bottom: 35px;

}

.contact-info li {

    padding: 12px 0;

    font-size: 18px;

}

.contact-map img {

    width: 100%;

    border-radius: 24px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);

}

/* ==========================================
FOOTER
========================================== */

.footer {

    background: #0D6B3C;

    color: white;

    padding: 80px 0 30px;

}

.footer-grid {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 50px;

    margin-bottom: 50px;

}

.footer-logo {

    height: 70px;

    margin-bottom: 20px;

}

.footer h4 {

    margin-bottom: 20px;

}

.footer ul {

    list-style: none;

}

.footer li {

    margin-bottom: 12px;

}

.footer a {

    color: white;

    text-decoration: none;

}

.footer-social {

    display: flex;

    gap: 15px;

}

.footer-social a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 34px;

    height: 34px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.2);

    transition: transform .22s ease, background .22s ease, border-color .22s ease;

}

.footer-social img {

    width: 24px;

    height: 24px;

    filter: none;

}

.footer-social a:hover {

    transform: translateY(-1px);

    background: rgba(255, 255, 255, 0.16);

    border-color: rgba(255, 255, 255, 0.34);

}

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .15);

    padding-top: 25px;

    text-align: center;

    opacity: .8;

}

@media(max-width:900px) {

    .contact-grid,
    .footer-grid {

        grid-template-columns: 1fr;

    }

    .contact-info {

        text-align: center;

    }

}/* Enter Page Styling */

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Push content below the fixed header */
body {
    padding-top: 110px;
}

/* Logo Section */
.enter-logo {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #e8f5e9 0%, #e3f2fd 100%);
}

.enter-logo .logo-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.tagline {
    font-size: 18px;
    color: #2d5016;
    margin: 0;
    font-weight: 500;
}

/* Early Bird Banner */
.early-bird-banner {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffa500 100%);
    padding: 40px 20px;
    margin: 30px 20px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.early-bird-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.early-bird-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.banner-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.megaphone-icon {
    font-size: 48px;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.banner-text {
    text-align: left;
    color: white;
}

.early-bird-banner h2 {
    margin: 0 0 8px 0;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-subtitle {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
}

.banner-price {
    margin: 0 0 16px 0;
    font-size: 48px;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.banner-btn {
    background: white;
    color: #ff6b35;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    background: #fff5f0;
}

.banner-btn:active {
    transform: translateY(-1px);
}

.banner-decoration {
    font-size: 60px;
    animation: float 3s ease-in-out infinite;
}

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

/* Mega Speelpas Section */
.mega-speelpas {
    background: linear-gradient(135deg, #1b5e20 0%, #2d7f2f 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.speelpas-header {
    margin-bottom: 50px;
}

.mega-speelpas h2 {
    margin: 0 0 15px 0;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mega-speelpas .subtitle {
    background: linear-gradient(90deg, #fdd835 0%, #ffeb3b 50%, #fdd835 100%);
    color: #1b5e20;
    padding: 16px 24px;
    margin: 0 auto;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    max-width: 600px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin: 50px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    border: 3px solid #fdd835;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #fdd835 0%, #ffeb3b 100%);
    color: #1b5e20;
    padding: 8px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-align: center;
}

.card-header {
    padding: 24px 20px 12px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%);
}

.pricing-card.popular .card-header {
    background: linear-gradient(180deg, #fffef0 0%, #fffbf0 100%);
}

.pricing-card h3 {
    margin: 0;
    color: #1b5e20;
    font-size: 22px;
    font-weight: 700;
}

.pricing-card.popular h3 {
    color: #f57f17;
}

.savings {
    display: block;
    color: #2ccc71;
    font-size: 13px;
    font-weight: 700;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.card-body {
    padding: 24px 20px;
    flex: 1;
}

.pricing-card .price {
    margin: 0 0 12px 0;
    font-size: 42px;
    font-weight: 900;
    color: #1b5e20;
    letter-spacing: -1px;
}

.pricing-card.popular .price {
    color: #f57f17;
    font-size: 48px;
}

.pricing-card .description {
    margin: 0;
    color: #888;
    font-size: 14px;
    font-weight: 500;
}

.pricing-card.popular .description {
    color: #f57f17;
    font-weight: 600;
}

.card-footer {
    padding: 20px;
    background: #f9f9f9;
}

.pricing-card.popular .card-footer {
    background: #fffbf0;
}

.checkout-btn {
    background: #1b5e20;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-btn:hover {
    background: #2d7f2f;
    box-shadow: 0 6px 16px rgba(27, 94, 32, 0.3);
    transform: scale(1.02);
}

.checkout-btn:active {
    transform: scale(0.98);
}

.checkout-btn.primary {
    background: linear-gradient(135deg, #f57f17 0%, #fdd835 100%);
    color: #1b5e20;
    font-weight: 900;
}

.checkout-btn.primary:hover {
    background: linear-gradient(135deg, #f57f17 0%, #ffeb3b 100%);
    box-shadow: 0 6px 16px rgba(245, 127, 23, 0.3);
}

/* Benefits Section */
.speelpas-benefits {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 20px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.speelpas-benefits h3 {
    font-size: 28px;
    margin: 0 0 30px 0;
    font-weight: 700;
    text-transform: uppercase;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.benefit {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.4);
}

.benefit-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.benefit p {
    margin: 0;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

/* Checkout Buttons */
.checkout-btn, .small-checkout-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.checkout-btn {
    background: #1b5e20;
    color: white;
    width: 100%;
    margin-top: auto;
}

.checkout-btn:hover {
    background: #2d7f2f;
    transform: scale(1.05);
}

.checkout-btn:active {
    transform: scale(0.95);
}

.small-checkout-btn {
    background: #1b5e20;
    color: white;
    padding: 8px 15px;
    font-size: 12px;
    margin-top: 10px;
}

.small-checkout-btn:hover {
    background: #2d7f2f;
}

.small-checkout-btn:active {
    transform: scale(0.95);
}

/* Three Column Section */
.three-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 30px 20px;
    background: #f5f5f5;
}

.column-card {
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
}

.column-card h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

/* Toggle Button */
.toggle-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.toggle-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.toggle-arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.toggle-btn.expanded .toggle-arrow {
    transform: rotate(180deg);
}

/* Card Content */
.card-content {
    max-height: 500px;
    overflow: hidden;
    opacity: 1;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.card-content.collapsed {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-bottom: 0;
}

/* Afrekennen Button */
.afrekennen-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    font-size: 16px;
}

.afrekennen-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.afrekennen-btn:active {
    transform: scale(0.95);
}

/* Entree Card */
.entree-card {
    background: #004db8;
}

.entree-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.entree-list.card-content {
    list-style: none;
}

.entree-list li {
    padding: 12px 0;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

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

.item-name {
    flex: 1;
    min-width: 150px;
}

.item-price {
    font-weight: bold;
    color: #ffeb3b;
    white-space: nowrap;
    min-width: 70px;
}

.price-small {
    font-weight: bold;
    color: #ffeb3b;
}

.gratis {
    color: #4ade80;
    font-weight: bold;
}

.red-price {
    color: #ff6b6b;
    font-weight: bold;
}

/* Activiteiten Card */
.activiteiten-card {
    background: #1b5e20;
}

.activity-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.activity-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.activity-item.card-content:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.activity-item h4 {
    margin: 0 0 8px 0;
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.activity-price {
    margin: 0 0 10px 0;
    color: #ffeb3b;
    font-weight: bold;
}

/* Voordeel Card */
.voordeel-card {
    background: #ff9800;
}

.voordeel-item {
    color: white;
}

.voordeel-item h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.voordeel-price {
    margin: 0 0 5px 0;
    font-size: 24px;
    font-weight: bold;
    color: #d32f2f;
}

.voordeel-desc {
    margin: 8px 0 10px 0;
    font-size: 14px;
    color: white;
}

/* Kinderfeestjes */
.kinderfeestjes {
    background: #7b1fa2;
    color: white;
    padding: 30px 20px;
}

.kinderfeestjes h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: bold;
}

.feestjes-note {
    margin: 0 0 25px 0;
    font-size: 14px;
    color: #e1bee7;
}

.feestjes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.feestje-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
}

.feestje-card h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.feestje-price {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #ffeb3b;
}

.feestje-desc {
    margin: 8px 0 15px 0;
    font-size: 13px;
    color: #e1bee7;
}

.feestje-card .small-checkout-btn {
    margin-top: auto;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.feestje-card .small-checkout-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Groepsarrangementen */
.groepsarrangementen {
    background: #0277bd;
    color: white;
    padding: 30px 20px;
}

.groepsarrangementen h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: bold;
}

.groeps-note {
    margin: 0 0 25px 0;
    font-size: 14px;
    background: #fdd835;
    color: #0277bd;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
}

.groeps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.groep-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
}

.groep-card h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.groep-price {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #ffeb3b;
}

.groep-desc {
    margin: 8px 0 15px 0;
    font-size: 13px;
    color: #b3e5fc;
}

.groep-card .small-checkout-btn {
    margin-top: auto;
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.groep-card .small-checkout-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Openingstijden */
.openingstijden {
    background: #0277bd;
    color: white;
    padding: 30px 20px;
}

.openingstijden h3 {
    margin: 0 0 25px 0;
    font-size: 24px;
    font-weight: bold;
}

.openingstijden-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.schoolvakantie h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffeb3b;
}

.schoolvakantie p {
    margin: 0;
    color: #e1f5fe;
}

.weekdagen {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dag:last-child {
    border-bottom: none;
}

.dag span:first-child {
    font-weight: 600;
}

.dag span:last-child {
    color: #ffeb3b;
}

/* Huisregels */
.huisregels {
    background: #1b5e20;
    color: white;
    padding: 30px 20px;
}

.huisregels h3 {
    margin: 0 0 25px 0;
    font-size: 24px;
    font-weight: bold;
}

.regels-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.regels-left ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.regels-left li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.rookvrij-title {
    margin: 0 0 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: #ffeb3b;
    line-height: 1.5;
}

.prohibition-signs {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.prohibition-item {
    text-align: center;
}

.prohibition-img {
    width: 80px;
    height: 80px;
    background: #d32f2f;
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 10px;
}

.prohibition-item p {
    margin: 0;
    font-size: 14px;
    color: white;
}

/* Geen Eigen Consumptie */
.geen-consumptie {
    background: #d32f2f;
    color: white;
    padding: 25px 20px;
    text-align: center;
}

.geen-consumptie h3 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: bold;
}

.consumptie-subtitle {
    margin: 0 0 15px 0;
    font-size: 16px;
}

.locatie-info p {
    margin: 0;
    font-size: 14px;
}

/* Footer */
footer {
    background: #1b5e20;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

footer p {
    margin: 8px 0;
}

footer a {
    color: #ffeb3b;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .early-bird-banner {
        margin: 20px 15px;
        padding: 30px 15px;
    }

    .banner-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-text {
        text-align: center;
    }

    .early-bird-banner h2 {
        font-size: 28px;
    }

    .banner-price {
        font-size: 36px;
    }

    .megaphone-icon {
        font-size: 40px;
    }

    .banner-decoration {
        font-size: 48px;
    }

    .mega-speelpas {
        padding: 40px 15px;
    }

    .mega-speelpas h2 {
        font-size: 32px;
    }

    .mega-speelpas .subtitle {
        font-size: 16px;
        padding: 12px 16px;
    }

    .pricing-grid {
        gap: 15px;
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card {
        transform: scale(1) !important;
    }

    .pricing-card.popular {
        grid-column: span 2;
        transform: scale(1.02) !important;
    }

    .pricing-card h3 {
        font-size: 18px;
    }

    .pricing-card .price {
        font-size: 36px;
    }

    .pricing-card.popular .price {
        font-size: 42px;
    }

    .early-bird-banner h2 {
        font-size: 24px;
    }

    .early-bird-banner p {
        font-size: 18px;
    }

    .entree-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .regels-content {
        grid-template-columns: 1fr;
    }

    .prohibition-signs {
        flex-direction: column;
    }

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

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

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

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

    .speelpas-benefits h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .early-bird-banner {
        margin: 15px 10px;
        padding: 20px 12px;
    }

    .megaphone-icon {
        font-size: 32px;
    }

    .early-bird-banner h2 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .banner-subtitle {
        font-size: 14px;
    }

    .banner-price {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .banner-btn {
        padding: 12px 24px;
        font-size: 13px;
    }

    .banner-decoration {
        font-size: 36px;
    }

    .mega-speelpas {
        padding: 30px 10px;
    }

    .mega-speelpas h2 {
        font-size: 24px;
    }

    .mega-speelpas .subtitle {
        font-size: 14px;
        padding: 10px 12px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pricing-card.popular {
        grid-column: span 1;
    }

    .pricing-card {
        padding: 16px;
    }

    .pricing-card h3 {
        font-size: 16px;
    }

    .pricing-card .price {
        font-size: 32px;
    }

    .pricing-card.popular .price {
        font-size: 36px;
    }

    .card-header {
        padding: 16px 12px 8px;
    }

    .card-body {
        padding: 16px 12px;
    }

    .card-footer {
        padding: 12px;
    }

    .checkout-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .banner-content {
        flex-direction: column;
    }

    .early-bird-banner {
        margin: 15px 10px;
        padding: 15px;
    }

    .megaphone-icon {
        font-size: 24px;
    }

    .three-columns {
        grid-template-columns: 1fr;
        padding: 20px 15px;
    }

    .entree-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .item-name, .item-price {
        min-width: auto;
    }

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

    .speelpas-benefits {
        padding: 24px 12px;
    }

    .speelpas-benefits h3 {
        font-size: 20px;
    }

    .benefit-icon {
        font-size: 28px;
    }
}
/* ==========================================================
   WESTERFUN - TICKETSHOP
   Bestand: css/tickets.css
========================================================== */


/* ==========================================================
   STAP 1: BASIS
========================================================== */

.ticket-hero,
.ticket-shop {
    font-family: "Poppins", sans-serif;
}

.ticket-hero *,
.ticket-shop * {
    box-sizing: border-box;
}


/* ==========================================================
   STAP 2: TICKET HERO
========================================================== */

.ticket-hero {
    position: relative;
    overflow: hidden;

    padding: 85px 0 95px;

    background:
        radial-gradient(circle at 85% 20%,
            rgba(151, 210, 72, 0.22),
            transparent 30%),
        radial-gradient(circle at 10% 100%,
            rgba(255, 145, 24, 0.12),
            transparent 30%),
        linear-gradient(135deg,
            #143f29 0%,
            #0d3522 55%,
            #082a1a 100%);

    color: #ffffff;
}


/* Decoratie */

.ticket-hero::before {
    content: "";

    position: absolute;

    top: -170px;
    right: -120px;

    width: 430px;
    height: 430px;

    border: 70px solid rgba(255, 255, 255, 0.025);

    border-radius: 50%;

    pointer-events: none;
}


.ticket-hero::after {
    content: "";

    position: absolute;

    bottom: -170px;
    left: -130px;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.02);

    pointer-events: none;
}


.ticket-hero .container {
    position: relative;

    z-index: 2;
}


/* ==========================================================
   STAP 3: HERO LABEL
========================================================== */

.ticket-label {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    padding: 9px 16px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.3px;
}


/* ==========================================================
   STAP 4: HERO TITEL
========================================================== */

.ticket-hero h1 {
    max-width: 780px;

    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(40px, 5vw, 67px);

    font-weight: 800;

    line-height: 1.05;

    letter-spacing: -2px;
}


.ticket-hero h1 span {
    display: block;

    color: #9bd449;
}


.ticket-hero>.container>p {
    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;

    line-height: 1.8;
}


/* ==========================================================
   STAP 5: HERO VOORDELEN
========================================================== */

.ticket-hero-benefits {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px 25px;

    margin-top: 27px;
}


.ticket-hero-benefits span {
    color: rgba(255, 255, 255, 0.85);

    font-size: 12px;

    font-weight: 600;
}


/* ==========================================================
   STAP 6: TICKETSHOP ACHTERGROND
========================================================== */

.ticket-shop {
    position: relative;

    min-height: 700px;

    padding: 75px 0 110px;

    background:
        linear-gradient(180deg,
            #f7faf4 0%,
            #fffdf8 45%,
            #fffdf8 100%);
}


/* ==========================================================
   STAP 7: HOOFDLAYOUT
========================================================== */

.ticket-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.6fr) minmax(320px, 0.72fr);

    align-items: start;

    gap: 35px;
}


.ticket-main {
    display: flex;
    flex-direction: column;

    gap: 24px;
}


/* ==========================================================
   STAP 8: ALGEMENE TICKET BOX
========================================================== */

.ticket-box {
    padding: 32px;

    border: 1px solid #e9eee7;

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 15px 45px rgba(26, 65, 42, 0.065);
}


/* ==========================================================
   STAP 9: BOX HEADING
========================================================== */

.ticket-box-heading {
    display: flex;
    align-items: flex-start;

    gap: 16px;

    margin-bottom: 28px;
}


.step-number {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(135deg,
            #8bc63f,
            #6aa92d);

    color: #ffffff;

    font-size: 14px;

    font-weight: 800;

    box-shadow:
        0 8px 18px rgba(108, 170, 47, 0.22);
}


.ticket-box-heading h2 {
    margin: 0 0 5px;

    color: #173e29;

    font-size: 20px;

    font-weight: 800;

    line-height: 1.3;
}


.ticket-box-heading p {
    margin: 0;

    color: #7d8881;

    font-size: 11px;

    line-height: 1.6;
}


/* ==========================================================
   STAP 10: DATUMVELD
========================================================== */

.date-field {
    max-width: 430px;
}


.date-field label {
    display: block;

    margin-bottom: 8px;

    color: #294b35;

    font-size: 11px;

    font-weight: 700;
}


.date-field input {
    width: 100%;
    height: 52px;

    padding: 0 15px;

    border: 1px solid #dce5da;

    border-radius: 11px;

    outline: none;

    background: #fbfcfa;

    color: #294132;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.date-field input:focus {
    border-color: #8bc63f;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(139, 198, 63, 0.10);
}


/* ==========================================================
   STAP 11: TICKET PRODUCT
========================================================== */

.ticket-product {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr) 100px 145px;

    align-items: center;

    gap: 20px;

    padding: 21px 0;

    border-bottom: 1px solid #edf0eb;
}


.ticket-product:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}


/* ==========================================================
   STAP 12: PRODUCT INFO
========================================================== */

.ticket-product-info {
    display: flex;
    align-items: center;

    gap: 15px;
}


.ticket-product-icon {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #f1f9e7,
            #fbfdf7);

    font-size: 22px;
}


.ticket-product-info h3 {
    margin: 0 0 4px;

    color: #1d432d;

    font-size: 14px;

    font-weight: 800;
}


.ticket-product-info p {
    margin: 0;

    color: #8a938d;

    font-size: 10px;
}


/* ==========================================================
   STAP 13: PRIJS
========================================================== */

.ticket-product-price {
    text-align: right;
}


.ticket-product-price strong {
    color: #173e29;

    font-size: 14px;

    font-weight: 800;
}


/* ==========================================================
   STAP 14: AANTAL SELECTOR
========================================================== */

.quantity-selector {
    display: grid;

    grid-template-columns:
        38px 48px 38px;

    align-items: center;
    justify-content: end;

    gap: 5px;
}


.quantity-selector input {
    width: 48px;
    height: 38px;

    padding: 0;

    border: 1px solid #e0e6df;

    border-radius: 9px;

    outline: none;

    background: #ffffff;

    color: #173e29;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    font-weight: 800;

    text-align: center;

    appearance: textfield;
    -moz-appearance: textfield;
}


.quantity-selector input::-webkit-inner-spin-button,
.quantity-selector input::-webkit-outer-spin-button {
    margin: 0;

    -webkit-appearance: none;
}


/* Plus/min */

.quantity-btn {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #dfe7dc;

    border-radius: 9px;

    background: #f8faf6;

    color: #31523b;

    font-family: "Poppins", sans-serif;

    font-size: 18px;

    font-weight: 700;

    line-height: 1;

    cursor: pointer;

    transition:
        transform 0.15s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}


.quantity-btn:hover {
    border-color: #83bc3b;

    background: #83bc3b;

    color: #ffffff;

    transform: translateY(-1px);
}


.quantity-btn:active {
    transform: scale(0.94);
}


/* ==========================================================
   STAP 15: KLANTGEGEVENS
========================================================== */

.ticket-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;
}


.ticket-form-grid .form-group {
    margin: 0;
}


.ticket-form-grid .form-group.full {
    grid-column: 1 / -1;
}


.ticket-form-grid label {
    display: block;

    margin-bottom: 8px;

    color: #294b35;

    font-size: 11px;

    font-weight: 700;
}


.ticket-form-grid input {
    width: 100%;
    height: 50px;

    padding: 0 15px;

    border: 1px solid #dce5da;

    border-radius: 11px;

    outline: none;

    background: #fbfcfa;

    color: #294132;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.ticket-form-grid input:focus {
    border-color: #8bc63f;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(139, 198, 63, 0.10);
}


/* ==========================================================
   STAP 16: BESTELOVERZICHT
========================================================== */

.ticket-summary {
    position: sticky;

    top: 25px;
}


.summary-card {
    padding: 30px;

    border: 1px solid #e7ede5;

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 20px 55px rgba(25, 64, 41, 0.10);
}


.summary-label {
    display: inline-block;

    margin-bottom: 7px;

    color: #79ae37;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.9px;

    text-transform: uppercase;
}


.summary-card h2 {
    margin: 0 0 25px;

    color: #173e29;

    font-size: 21px;

    font-weight: 800;
}


/* ==========================================================
   STAP 17: DATUM IN OVERZICHT
========================================================== */

.summary-date {
    display: flex;
    flex-direction: column;

    gap: 6px;

    padding: 15px;

    border-radius: 11px;

    background: #f5f9f1;
}


.summary-date span {
    color: #78847b;

    font-size: 10px;

    font-weight: 600;
}


.summary-date strong {
    color: #21472f;

    font-size: 11px;

    font-weight: 800;
}


/* ==========================================================
   STAP 18: DIVIDER
========================================================== */

.summary-divider {
    width: 100%;
    height: 1px;

    margin: 22px 0;

    background: #edf0eb;
}


/* ==========================================================
   STAP 19: SUMMARY RIJEN
========================================================== */

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 13px;
}


.summary-row:last-of-type {
    margin-bottom: 0;
}


.summary-row span {
    color: #718078;

    font-size: 10.5px;
}


.summary-row span b {
    color: #294b35;

    font-weight: 800;
}


.summary-row strong {
    color: #294b35;

    font-size: 11px;

    font-weight: 800;
}


/* ==========================================================
   STAP 20: TOTAAL
========================================================== */

.summary-total {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}


.summary-total span {
    color: #294b35;

    font-size: 13px;

    font-weight: 800;
}


.summary-total strong {
    color: #173e29;

    font-size: 25px;

    font-weight: 800;

    line-height: 1;
}


/* ==========================================================
   STAP 21: ERROR
========================================================== */

.ticket-error {
    min-height: 18px;

    margin: 18px 0 0;

    color: #c8443a;

    font-size: 10px;

    font-weight: 700;

    line-height: 1.5;
}


/* ==========================================================
   STAP 22: CHECKOUT BUTTON
========================================================== */

.checkout-button {
    width: 100%;
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 13px;

    padding: 0 22px;

    border: 0;

    border-radius: 11px;

    background:
        linear-gradient(135deg,
            #ff9818 0%,
            #f47700 100%);

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.4px;

    text-transform: uppercase;

    cursor: pointer;

    box-shadow:
        0 12px 27px rgba(244, 119, 0, 0.24);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}


.checkout-button:hover {
    transform: translateY(-3px);

    filter: brightness(1.04);

    box-shadow:
        0 17px 35px rgba(244, 119, 0, 0.32);
}


.checkout-button:active {
    transform: translateY(-1px);
}


.checkout-button span {
    font-size: 16px;

    transition: transform 0.2s ease;
}


.checkout-button:hover span {
    transform: translateX(4px);
}


/* ==========================================================
   STAP 23: VEILIG BESTELLEN
========================================================== */

.secure-order {
    margin-top: 15px;

    color: #859087;

    font-size: 9px;

    font-weight: 600;

    text-align: center;
}


/* ==========================================================
   STAP 24: TABLET
========================================================== */

@media (max-width: 1050px) {

    .ticket-layout {
        grid-template-columns:
            minmax(0, 1.4fr) minmax(290px, 0.7fr);

        gap: 25px;
    }


    .ticket-box {
        padding: 27px;
    }


    .summary-card {
        padding: 25px;
    }


    .ticket-product {
        grid-template-columns:
            minmax(0, 1fr) 85px 135px;

        gap: 14px;
    }

}


/* ==========================================================
   STAP 25: KLEINE TABLET
========================================================== */

@media (max-width: 850px) {

    .ticket-hero {
        padding: 70px 0 80px;
    }


    .ticket-layout {
        grid-template-columns: 1fr;
    }


    .ticket-summary {
        position: static;
    }


    .summary-card {
        max-width: none;
    }

}


/* ==========================================================
   STAP 26: MOBIEL
========================================================== */

@media (max-width: 600px) {

    /* HERO */

    .ticket-hero {
        padding: 55px 0 65px;
    }


    .ticket-hero h1 {
        font-size: 38px;

        letter-spacing: -1.3px;
    }


    .ticket-hero>.container>p {
        font-size: 13px;
    }


    .ticket-hero-benefits {
        align-items: flex-start;
        flex-direction: column;

        gap: 8px;

        margin-top: 22px;
    }



    /* SHOP */

    .ticket-shop {
        padding: 45px 0 75px;
    }


    .ticket-main {
        gap: 17px;
    }


    .ticket-box {
        padding: 22px 18px;

        border-radius: 17px;
    }


    .ticket-box-heading {
        gap: 12px;

        margin-bottom: 22px;
    }


    .step-number {
        width: 37px;
        height: 37px;

        flex-basis: 37px;

        border-radius: 10px;
    }


    .ticket-box-heading h2 {
        font-size: 17px;
    }



    /* PRODUCT */

    .ticket-product {
        grid-template-columns:
            minmax(0, 1fr) auto;

        gap: 15px;

        padding: 20px 0;
    }


    .ticket-product-price {
        text-align: right;
    }


    .quantity-selector {
        grid-column: 1 / -1;

        justify-content: start;

        margin-left: 65px;
    }



    /* FORM */

    .ticket-form-grid {
        grid-template-columns: 1fr;
    }


    .ticket-form-grid .form-group.full {
        grid-column: auto;
    }



    /* SUMMARY */

    .summary-card {
        padding: 24px 20px;

        border-radius: 17px;
    }


    .summary-total strong {
        font-size: 23px;
    }

}


/* ==========================================================
   STAP 27: ZEER KLEINE MOBIEL
========================================================== */

@media (max-width: 390px) {

    .ticket-hero h1 {
        font-size: 33px;
    }


    .ticket-box {
        padding: 20px 15px;
    }


    .ticket-product-icon {
        width: 44px;
        height: 44px;

        flex-basis: 44px;
    }


    .quantity-selector {
        margin-left: 59px;
    }


    .summary-card {
        padding: 21px 16px;
    }

}/* ==========================================================
   WESTERFUN - CONTACT PAGINA
   Bestand: css/contact.css
========================================================== */


/* ==========================================================
   STAP 1: BASIS CONTACT PAGINA
========================================================== */

.contact-hero,
.contact-page-section,
.contact-form-section,
.contact-cta {
    font-family: "Poppins", sans-serif;
}

.contact-page-section *,
.contact-form-section *,
.contact-cta *,
.contact-hero * {
    box-sizing: border-box;
}


/* ==========================================================
   STAP 2: CONTACT HERO
========================================================== */

.contact-hero {
    position: relative;
    overflow: hidden;

    padding: 95px 0 105px;

    background:
        radial-gradient(circle at 85% 20%,
            rgba(143, 202, 63, 0.22),
            transparent 30%),
        radial-gradient(circle at 15% 90%,
            rgba(255, 145, 24, 0.10),
            transparent 28%),
        linear-gradient(135deg,
            #123f29 0%,
            #0c3522 55%,
            #082a1a 100%);

    color: #ffffff;
}


/* Decoratieve cirkel */

.contact-hero::before {
    content: "";

    position: absolute;

    top: -170px;
    right: -110px;

    width: 420px;
    height: 420px;

    border: 70px solid rgba(255, 255, 255, 0.025);

    border-radius: 50%;

    pointer-events: none;
}


/* Tweede decoratie */

.contact-hero::after {
    content: "";

    position: absolute;

    bottom: -170px;
    left: -120px;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.018);

    pointer-events: none;
}


.contact-hero .container {
    position: relative;
    z-index: 2;
}


.contact-hero-content {
    max-width: 760px;
}


/* Label */

.contact-label {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-bottom: 20px;

    padding: 9px 16px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.4px;
}


/* Titel */

.contact-hero h1 {
    max-width: 720px;

    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(40px, 5vw, 68px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;
}


.contact-hero h1 span {
    color: #9bd449;
}


/* Beschrijving */

.contact-hero-content>p {
    max-width: 650px;

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;

    line-height: 1.8;
}


/* Benefits */

.contact-hero-benefits {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px 25px;

    margin-top: 30px;
}


.contact-hero-benefits span {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 13px;

    font-weight: 600;
}


.contact-hero-benefits span::first-letter {
    color: #9bd449;
}


/* ==========================================================
   STAP 3: CONTACTGEGEVENS SECTIE
========================================================== */

.contact-page-section {
    position: relative;

    padding: 95px 0;

    background: #fffdf8;
}


/* Heading */

.contact-page-heading {
    max-width: 700px;

    margin: 0 auto 50px;

    text-align: center;
}


.contact-page-heading>span {
    display: inline-flex;

    margin-bottom: 12px;

    color: #70a92e;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


.contact-page-heading h2 {
    margin: 0 0 14px;

    color: #173e29;

    font-size: clamp(30px, 4vw, 46px);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1px;
}


.contact-page-heading p {
    max-width: 570px;

    margin: 0 auto;

    color: #728078;

    font-size: 14px;

    line-height: 1.8;
}


/* ==========================================================
   STAP 4: CONTACT KAARTEN
========================================================== */

.contact-cards {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}


.contact-card {
    position: relative;

    min-height: 300px;

    padding: 30px 25px;

    overflow: hidden;

    border: 1px solid #edf0e8;

    border-radius: 22px;

    background: #ffffff;

    box-shadow:
        0 15px 40px rgba(25, 64, 41, 0.07);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.contact-card:hover {
    transform: translateY(-7px);

    border-color: rgba(137, 196, 61, 0.35);

    box-shadow:
        0 22px 55px rgba(25, 64, 41, 0.12);
}


/* Icon */

.contact-card-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    border-radius: 17px;

    background:
        linear-gradient(135deg,
            #edf8df,
            #f7fceb);

    font-size: 25px;
}


/* Kleine tekst */

.contact-card>span {
    display: block;

    margin-bottom: 7px;

    color: #82ba39;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* Titel */

.contact-card h3 {
    margin: 0 0 11px;

    color: #173e29;

    font-size: 19px;

    line-height: 1.3;

    font-weight: 800;
}


/* Tekst */

.contact-card p {
    margin: 0 0 20px;

    color: #78827c;

    font-size: 12px;

    line-height: 1.75;
}


/* Link / strong */

.contact-card a,
.contact-card>strong {
    display: inline-block;

    color: #4f8c24;

    font-size: 11px;

    font-weight: 800;

    text-decoration: none;
}


.contact-card a:hover {
    color: #f47c0c;
}


/* ==========================================================
   STAP 5: CONTACTFORMULIER SECTIE
========================================================== */

.contact-form-section {
    position: relative;

    padding: 100px 0;

    overflow: hidden;

    background:
        linear-gradient(180deg,
            #f3f8ed 0%,
            #f8fbf5 100%);
}


/* Decoratie */

.contact-form-section::before {
    content: "";

    position: absolute;

    top: -180px;
    right: -180px;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background: rgba(140, 199, 63, 0.08);

    pointer-events: none;
}


.contact-form-section .container {
    position: relative;
    z-index: 2;
}


/* Layout */

.contact-form-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr) minmax(0, 1.15fr);

    align-items: start;

    gap: 70px;
}


/* ==========================================================
   STAP 6: LINKERKANT FORMULIER
========================================================== */

.contact-form-intro {
    padding-top: 20px;
}


.contact-form-intro .contact-label {
    border-color: rgba(76, 137, 37, 0.12);

    background: rgba(126, 183, 55, 0.09);

    color: #5a922d;
}


.contact-form-intro h2 {
    margin: 0 0 17px;

    color: #173e29;

    font-size: clamp(31px, 4vw, 46px);

    line-height: 1.15;

    font-weight: 800;

    letter-spacing: -1px;
}


.contact-form-intro>p {
    max-width: 510px;

    margin: 0 0 35px;

    color: #718078;

    font-size: 14px;

    line-height: 1.8;
}


/* ==========================================================
   STAP 7: HELP ITEMS
========================================================== */

.contact-help-list {
    display: flex;
    flex-direction: column;

    gap: 14px;
}


.contact-help-list>div {
    display: flex;
    align-items: center;

    gap: 16px;

    padding: 17px 18px;

    border: 1px solid rgba(25, 64, 41, 0.07);

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.65);
}


.contact-help-list>div>span {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #ffffff;

    box-shadow:
        0 7px 18px rgba(25, 64, 41, 0.07);

    font-size: 19px;
}


.contact-help-list strong {
    display: block;

    margin-bottom: 3px;

    color: #214a32;

    font-size: 12px;

    font-weight: 800;
}


.contact-help-list p {
    margin: 0;

    color: #7c8881;

    font-size: 10px;

    line-height: 1.6;
}


/* ==========================================================
   STAP 8: FORMULIER KAART
========================================================== */

.contact-form-card {
    padding: 38px;

    border: 1px solid rgba(25, 64, 41, 0.08);

    border-radius: 25px;

    background: #ffffff;

    box-shadow:
        0 25px 65px rgba(25, 64, 41, 0.10);
}


/* Form row */

.form-row {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;
}


/* Groups */

.form-group {
    margin-bottom: 20px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #294c36;

    font-size: 11px;

    font-weight: 700;
}


/* Inputs */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    border: 1px solid #dde5dc;

    border-radius: 11px;

    outline: none;

    background: #fbfcfa;

    color: #263c2e;

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.spam-trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}


.form-group input,
.form-group select {
    height: 49px;

    padding: 0 15px;
}


.form-group textarea {
    min-height: 145px;

    padding: 14px 15px;

    resize: vertical;

    line-height: 1.65;
}


/* Placeholder */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a5ada7;
}


/* Focus */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #8bc63f;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(139, 198, 63, 0.10);
}


/* Select */

.form-group select {
    cursor: pointer;
}


/* ==========================================================
   STAP 9: PRIVACY CHECKBOX
========================================================== */

.privacy-check {
    display: flex;
    align-items: flex-start;

    gap: 11px;

    margin: 3px 0 22px;

    cursor: pointer;
}


.privacy-check input {
    width: 17px;
    height: 17px;

    flex: 0 0 17px;

    margin-top: 2px;

    accent-color: #7eb739;

    cursor: pointer;
}


.privacy-check span {
    color: #7a857e;

    font-size: 9.5px;

    line-height: 1.6;
}


/* ==========================================================
   STAP 10: VERSTUUR BUTTON
========================================================== */

.contact-submit {
    width: 100%;
    min-height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 22px;

    border: 0;

    border-radius: 12px;

    background:
        linear-gradient(135deg,
            #80bc38 0%,
            #619f28 100%);

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.4px;

    text-transform: uppercase;

    cursor: pointer;

    box-shadow:
        0 12px 28px rgba(99, 159, 41, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        filter 0.25s ease;
}


.contact-submit:hover {
    transform: translateY(-3px);

    filter: brightness(1.04);

    box-shadow:
        0 17px 35px rgba(99, 159, 41, 0.30);
}


.contact-submit:active {
    transform: translateY(-1px);
}


.contact-submit span {
    font-size: 16px;

    transition: transform 0.2s ease;
}


.contact-submit:hover span {
    transform: translateX(4px);
}


/* ==========================================================
   STAP 11: FORM STATUS
========================================================== */

.form-status {
    min-height: 20px;

    margin: 14px 0 0;

    color: #58952a;

    font-size: 10px;

    font-weight: 700;

    text-align: center;

    line-height: 1.5;
}


/* ==========================================================
   STAP 12: ONDERSTE CTA
========================================================== */

.contact-cta {
    padding: 85px 0;

    background: #fffdf8;
}


.contact-cta-box {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 48px 55px;

    overflow: hidden;

    border-radius: 26px;

    background:
        radial-gradient(circle at 90% 10%,
            rgba(156, 214, 73, 0.20),
            transparent 30%),
        linear-gradient(135deg,
            #143f29,
            #0b321f);

    box-shadow:
        0 25px 60px rgba(18, 60, 38, 0.14);
}


/* CTA decoratie */

.contact-cta-box::after {
    content: "";

    position: absolute;

    right: -75px;
    bottom: -110px;

    width: 260px;
    height: 260px;

    border: 45px solid rgba(255, 255, 255, 0.035);

    border-radius: 50%;
}


.contact-cta-box>* {
    position: relative;
    z-index: 2;
}


.contact-cta-box>div:first-child {
    max-width: 600px;
}


.contact-cta-box>div:first-child>span {
    display: block;

    margin-bottom: 8px;

    color: #a2d958;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 0.7px;
}


.contact-cta h2 {
    margin: 0 0 9px;

    color: #ffffff;

    font-size: clamp(27px, 3vw, 39px);

    line-height: 1.2;

    font-weight: 800;
}


.contact-cta p {
    margin: 0;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;

    line-height: 1.7;
}


/* ==========================================================
   STAP 13: CTA BUTTONS
========================================================== */

.contact-cta-buttons {
    display: flex;
    align-items: center;

    gap: 11px;

    flex-shrink: 0;
}


.contact-cta-buttons a {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 20px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


/* Ticket */

.contact-cta-primary {
    background:
        linear-gradient(135deg,
            #ff9718,
            #f47700);

    color: #ffffff;

    box-shadow:
        0 10px 25px rgba(244, 119, 0, 0.23);
}


.contact-cta-primary:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(244, 119, 0, 0.30);
}


/* Horeca */

.contact-cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;
}


.contact-cta-secondary:hover {
    transform: translateY(-3px);

    background: rgba(255, 255, 255, 0.14);
}


/* ==========================================================
   STAP 14: TABLET
========================================================== */

@media (max-width: 1050px) {

    .contact-cards {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .contact-form-layout {
        gap: 45px;
    }


    .contact-cta-box {
        padding: 42px;
    }

}



/* ==========================================================
   STAP 15: KLEINE TABLET
========================================================== */

@media (max-width: 850px) {

    .contact-hero {
        padding: 75px 0 85px;
    }


    .contact-form-layout {
        grid-template-columns: 1fr;
    }


    .contact-form-intro {
        max-width: 650px;

        padding-top: 0;
    }


    .contact-cta-box {
        flex-direction: column;

        align-items: flex-start;
    }


    .contact-cta-buttons {
        width: 100%;
    }


    .contact-cta-buttons a {
        flex: 1;
    }

}



/* ==========================================================
   STAP 16: MOBIEL
========================================================== */

@media (max-width: 600px) {

    /* HERO */

    .contact-hero {
        padding: 58px 0 68px;
    }


    .contact-hero h1 {
        font-size: 38px;

        letter-spacing: -1.3px;
    }


    .contact-hero-content>p {
        font-size: 13px;
    }


    .contact-hero-benefits {
        align-items: flex-start;
        flex-direction: column;

        gap: 9px;

        margin-top: 23px;
    }



    /* CONTACT INFO */

    .contact-page-section {
        padding: 70px 0;
    }


    .contact-page-heading {
        margin-bottom: 35px;
    }


    .contact-cards {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .contact-card {
        min-height: auto;

        padding: 25px 22px;
    }



    /* FORMULIER */

    .contact-form-section {
        padding: 70px 0;
    }


    .contact-form-layout {
        gap: 38px;
    }


    .contact-form-card {
        padding: 25px 20px;

        border-radius: 19px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }



    /* CTA */

    .contact-cta {
        padding: 60px 0;
    }


    .contact-cta-box {
        padding: 32px 24px;

        border-radius: 20px;
    }


    .contact-cta-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .contact-cta-buttons a {
        width: 100%;
    }

}



/* ==========================================================
   STAP 17: ZEER KLEINE MOBIEL
========================================================== */

@media (max-width: 390px) {

    .contact-hero h1 {
        font-size: 33px;
    }


    .contact-form-card {
        padding: 21px 16px;
    }


    .contact-card {
        padding: 22px 19px;
    }

}