/* ============================================
   RESET & BASE
   ============================================ */

/* Accessibility: visible keyboard focus on every interactive element */
:focus-visible {
    outline: 3px solid #f5821f;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Skip link for keyboard / screen reader users */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10000;
    background: #1a4ba8;
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 8px 0;
}
.skip-link:focus {
    left: 0;
}

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

:root {
    --primary: #1a4ba8;
    --primary-dark: #133a85;
    --light-blue: #9ed4ec;
    --orange: #f5821f;
    --orange-dark: #e8651b;
    --yellow: #fbb040;
    --secondary: #ffd100;
    --accent: #ff5e5b;
    --dark: #1a2b4a;
    --gray: #6c7a89;
    --light-gray: #f4f7fa;
    --white: #ffffff;
    --gradient-orange: linear-gradient(135deg, #fbb040 0%, #f5821f 100%);
    --gradient-orange-button: linear-gradient(180deg, #f5a623 0%, #f5821f 100%);
    --gradient: linear-gradient(135deg, #1a4ba8 0%, #2563d4 100%);
    --gradient-dark: linear-gradient(135deg, #1a2b4a 0%, #1a4ba8 100%);
    --shadow-sm: 0 1px 3px rgba(15, 30, 60, 0.06);
    --shadow-md: 0 4px 12px rgba(15, 30, 60, 0.07);
    --shadow-lg: 0 8px 24px rgba(15, 30, 60, 0.10);
    --radius: 8px;
    --radius-lg: 14px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   BUTTONS (generic)
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(26, 75, 168, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 75, 168, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

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

.btn-white:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 36px;
    font-size: 17px;
}

.btn-small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
    background: #0c1f3f;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    position: relative;
    z-index: 101;
}

.topbar-inner {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 26px;
}

.topbar-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.topbar-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #1d9b1f;
    box-shadow: 0 0 0 3px rgba(29, 155, 31, 0.25);
    animation: pulseDot 2s infinite;
    flex-shrink: 0;
}

.topbar-dot-open   { background: #1d9b1f; box-shadow: 0 0 0 3px rgba(29, 155, 31, 0.25); }
.topbar-dot-soon   { background: #f5a623; box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.3); }
.topbar-dot-closed { background: #888; box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1); animation: none; }

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.25); opacity: 0.8; }
}

.topbar-phone,
.topbar-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.topbar-phone:hover,
.topbar-location:hover {
    color: var(--orange);
}

.topbar-phone i,
.topbar-location i {
    color: var(--orange);
    font-size: 12px;
}

.topbar-lang {
    position: relative;
}

.topbar-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
}

.topbar-lang-btn:hover,
.topbar-lang.open .topbar-lang-btn {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.topbar-lang-btn i.fa-globe {
    color: var(--orange);
    font-size: 11px;
}

.lang-chevron {
    font-size: 9px;
    transition: transform 0.3s ease;
}

.topbar-lang.open .lang-chevron {
    transform: rotate(180deg);
}

.topbar-lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(15, 30, 60, 0.12);
    overflow: hidden;
    min-width: 170px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 200;
}

.topbar-lang.open .topbar-lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    padding: 11px 16px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid #f4f7fa;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: var(--light-gray);
    color: var(--primary);
}

.lang-option.active {
    background: rgba(245, 130, 31, 0.08);
    color: var(--orange);
    font-weight: 700;
}

.lang-option.active::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 10px;
    color: var(--orange);
    font-size: 11px;
}

@media (max-width: 768px) {
    .topbar-inner {
        padding: 0 16px;
        height: 38px;
        font-size: 12px;
        gap: 8px;
    }

    .topbar-left,
    .topbar-right {
        gap: 14px;
    }

    .topbar-location,
    .topbar-phone span {
        display: none;
    }

    .topbar-lang-btn {
        padding: 4px 12px;
    }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 18px 40px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: var(--transition);
}

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

.logo-img {
    height: 64px;
    width: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    gap: 8px;
}

.main-nav a {
    color: var(--dark);
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 16px;
}

.main-nav a:hover {
    color: var(--primary);
}

.btn-cta {
    background: var(--gradient-orange-button);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(245, 130, 31, 0.35);
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(245, 130, 31, 0.45);
    color: var(--white);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
}

/* ============================================
   HERO SPLIT
   ============================================ */
.hero-split {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    min-height: 660px;
    background: var(--primary);
    position: relative;
}

.hero-left {
    background:
        radial-gradient(ellipse at 30% 20%, rgba(56, 100, 200, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(245, 130, 31, 0.18) 0%, transparent 55%),
        linear-gradient(135deg, #133a85 0%, #1a4ba8 50%, #2563d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
}

.hero-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle 1px at 20% 30%, rgba(255, 255, 255, 0.4) 100%, transparent),
        radial-gradient(circle 1px at 80% 70%, rgba(255, 255, 255, 0.3) 100%, transparent),
        radial-gradient(circle 2px at 50% 90%, rgba(255, 255, 255, 0.25) 100%, transparent),
        radial-gradient(circle 1px at 90% 20%, rgba(255, 255, 255, 0.4) 100%, transparent);
    pointer-events: none;
}

/* Bubbles removed for cleaner, more professional hero */
.hero-bubbles { display: none; }

.hero-left-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 540px;
}

/* Trust Badge */
.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.3px;
}

.hero-stars {
    display: flex;
    gap: 2px;
    color: #ffd100;
    font-size: 13px;
}

.hero-pretitle {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.hero-price {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 24px;
    padding: 0 20px;
}

.hero-price-glow {
    display: none;
}

.price-number,
.price-currency {
    position: relative;
    z-index: 1;
    font-size: 220px;
    font-weight: 900;
    line-height: 0.85;
    background: linear-gradient(180deg, #ffd54a 0%, #fbb040 40%, #f5821f 70%, #e8651b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.18));
}

.price-number {
    letter-spacing: -8px;
}

.price-currency {
    margin-left: -8px;
}

.price-discount {
    position: absolute;
    top: 4px;
    right: -22px;
    background: #b1232b;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 6px;
    letter-spacing: 0.4px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(177, 35, 43, 0.25);
}

.hero-desc {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, #f5a623 0%, #f5821f 50%, #e8451f 100%);
    color: var(--white);
    padding: 18px 36px 18px 44px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 0.5px;
    box-shadow:
        0 10px 28px rgba(245, 130, 31, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    margin-bottom: 32px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow:
        0 14px 36px rgba(245, 130, 31, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: var(--white);
}

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

.btn-buy-arrow {
    transition: transform 0.3s ease;
    font-size: 16px;
}

.btn-buy:hover .btn-buy-arrow {
    transform: translateX(4px);
}

.hero-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.hero-link:hover {
    color: var(--white);
    opacity: 1;
}

.arrow-down {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    animation: bounce 2s infinite;
    transition: var(--transition);
}

.hero-link:hover .arrow-down {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(2px);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.hero-right {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 30% 30%, #ff9d44 0%, #f5821f 50%, #c95417 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 1s ease;
}

.hero-right:hover .hero-image {
    transform: scale(1.02);
}

/* Floating Rating Card */
.hero-rating-card {
    position: absolute;
    top: 32px;
    right: 32px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 6px 16px rgba(15, 30, 60, 0.10);
    z-index: 2;
    animation: floatCard 4s ease-in-out infinite;
}

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

.rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-right: 14px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.rating-num {
    font-size: 26px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    letter-spacing: -1px;
}

.rating-stars {
    display: flex;
    gap: 1px;
    color: #ffb800;
    font-size: 11px;
}

.rating-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.rating-meta strong {
    font-size: 14px;
    color: var(--dark);
    font-weight: 700;
}

.rating-meta span {
    font-size: 12px;
    color: var(--gray);
}

/* Floating live tag — sober */
.hero-floating-tag {
    position: absolute;
    bottom: 32px;
    left: 32px;
    background: rgba(12, 31, 63, 0.78);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 9px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-floating-tag i {
    color: #ff8a3d;
    font-size: 11px;
}

/* ============================================
   BENEFITS BAR
   ============================================ */
.benefits-bar {
    background: linear-gradient(135deg, #b3dff0 0%, #9ed4ec 50%, #7fc4e0 100%);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.benefits-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
    color: var(--white);
    position: relative;
    transition: var(--transition);
    cursor: default;
}

.benefit-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    bottom: 25%;
    width: 1px;
    background: rgba(255, 255, 255, 0.35);
}

.benefit-item:last-child::after {
    display: none;
}

.benefit-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.benefit-item:hover .benefit-icon {
    background: rgba(255, 255, 255, 0.45);
    transform: scale(1.08) rotate(-4deg);
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 1;
}

.benefit-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.benefit-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--gray);
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-header.light .section-tag {
    color: var(--secondary);
}

/* ============================================
   TICKETS SECTION
   ============================================ */
.tickets-section {
    padding: 80px 0;
    background: var(--white);
}

.tickets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.ticket-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(15, 30, 60, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--white);
}

.ticket-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 22px rgba(15, 30, 60, 0.10);
    color: var(--white);
}

.ticket-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.ticket-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

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

.ticket-orange {
    background: linear-gradient(160deg, #f5821f 0%, #e8451f 100%);
}

.ticket-green {
    background: linear-gradient(160deg, #6bbe2c 0%, #2d8a1f 100%);
}

.ticket-purple {
    background: linear-gradient(160deg, #9b3fd4 0%, #6a1fa8 100%);
}

.ticket-body {
    padding: 36px 32px 40px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ticket-body h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.ticket-body > p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    margin-bottom: 28px;
    font-weight: 400;
}

.ticket-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 32px;
    color: var(--white);
}

.ticket-price .from {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

.ticket-price .amount {
    font-size: 86px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

.ticket-btn {
    display: inline-block;
    background: linear-gradient(180deg, #f5a623 0%, #e8451f 100%);
    color: var(--white);
    padding: 16px 48px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    margin-top: auto;
}

.ticket-card:hover .ticket-btn {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.how-it-works-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/3.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.how-it-works-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20, 50, 120, 0.85) 0%, rgba(26, 75, 168, 0.78) 100%);
    z-index: 1;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.how-header {
    margin-bottom: 70px;
    max-width: 700px;
}

.how-tag {
    display: inline-block;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    opacity: 0.95;
}

.how-header h2 {
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.how-header p {
    font-size: 18px;
    color: var(--white);
    font-weight: 400;
    opacity: 0.95;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    font-size: 140px;
    font-weight: 900;
    color: var(--orange);
    line-height: 0.85;
    letter-spacing: -4px;
    flex-shrink: 0;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.step-content {
    padding-top: 12px;
}

.step h3 {
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.step p {
    color: var(--white);
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.95;
    max-width: 280px;
}

/* ============================================
   OUR PARK
   ============================================ */
.our-park {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.our-park::before {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 75, 168, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.our-park::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 130, 31, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.our-park .container {
    position: relative;
    z-index: 1;
}

.park-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.park-tag {
    display: inline-block;
    color: var(--orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 16px;
}

.park-header h2 {
    font-size: 52px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.park-header h2 .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.park-header h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(245, 130, 31, 0.25);
    z-index: -1;
    border-radius: 4px;
}

.park-header p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.6;
}

.park-render {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 30, 60, 0.12);
    margin-bottom: 40px;
    background: var(--light-gray);
}

.park-render img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.park-render:hover img {
    transform: scale(1.02);
}

.park-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(180deg, transparent 0%, rgba(26, 75, 168, 0.92) 60%, rgba(20, 50, 120, 0.96) 100%);
    padding: 60px 40px 32px;
}

.stat {
    text-align: center;
    color: var(--white);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 16px;
}

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

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.stat-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.park-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.park-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid #eef0f4;
    transition: var(--transition);
}

.park-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(15, 30, 60, 0.10);
    border-color: transparent;
}

.park-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(245, 130, 31, 0.15) 0%, rgba(245, 130, 31, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 20px;
    flex-shrink: 0;
}

.park-feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.park-feature p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .park-stats {
        grid-template-columns: repeat(4, 1fr);
        padding: 40px 20px 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 12px;
    }

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

    .park-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .park-stats {
        position: static;
        background: var(--primary);
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 0;
        padding: 30px 20px;
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .park-features {
        grid-template-columns: 1fr;
    }

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

/* ============================================
   PLAN VISIT
   ============================================ */
.plan-visit {
    padding: 100px 0;
    background: var(--white);
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.plan-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(15, 30, 60, 0.08);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(15, 30, 60, 0.09);
    color: inherit;
}

.plan-image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--light-gray);
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

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

.plan-body {
    padding: 28px 24px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.plan-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.plan-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 15px;
    flex: 1;
}

.plan-btn {
    display: inline-block;
    background: linear-gradient(180deg, #f5a623 0%, #e8451f 100%);
    color: var(--white);
    padding: 12px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 14px rgba(245, 130, 31, 0.35);
    transition: var(--transition);
    width: 100%;
    max-width: 240px;
}

.plan-card:hover .plan-btn {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(245, 130, 31, 0.45);
}

.link-arrow {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.link-arrow i {
    transition: var(--transition);
}

.link-arrow:hover i {
    transform: translateX(4px);
}

/* ============================================
   ATTRACTIONS
   ============================================ */
.attractions {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
}

.attractions::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 30%, rgba(0, 196, 255, 0.2) 0%, transparent 60%);
}

.attractions .container {
    position: relative;
    z-index: 1;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.attraction-card {
    height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

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

.attraction-adrenalina {
    background: linear-gradient(135deg, #ff5e5b 0%, #c92a2a 100%);
}

.attraction-familia {
    background: linear-gradient(135deg, #1a4ba8 0%, #2563d4 100%);
}

.attraction-infantil {
    background: linear-gradient(135deg, #fbb040 0%, #f5821f 100%);
}

.attraction-relax {
    background: linear-gradient(135deg, #9ed4ec 0%, #2193b0 100%);
}

.attraction-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
}

.attraction-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    color: var(--white);
    z-index: 1;
}

.attraction-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.attraction-card h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.attraction-card p {
    margin-bottom: 20px;
    opacity: 0.95;
    font-size: 15px;
    min-height: 50px;
}

.attraction-card .btn-white {
    font-size: 14px;
    padding: 10px 20px;
}

/* ============================================
   NEWS
   ============================================ */
.news {
    padding: 100px 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #e9ecef;
    text-decoration: none;
    color: inherit;
    display: block;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    color: inherit;
}

.news-card:hover h3 {
    color: var(--primary);
}

.news-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.news-img-1 {
    background: linear-gradient(135deg, #ff5e5b 0%, #ff8a5b 100%);
}

.news-img-2 {
    background: linear-gradient(135deg, #1a4ba8 0%, #2563d4 100%);
}

.news-img-3 {
    background: linear-gradient(135deg, #fbb040 0%, #f5821f 100%);
}

.news-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 40%);
}

.news-body {
    padding: 28px;
}

.news-date {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin: 12px 0 12px;
    line-height: 1.3;
}

.news-body p {
    color: var(--gray);
    margin-bottom: 18px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 110px;
}

.faq-intro .section-tag {
    color: var(--orange);
    margin-bottom: 14px;
}

.faq-intro h2 {
    font-size: 44px;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.faq-intro h2 .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.faq-intro h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(245, 130, 31, 0.22);
    z-index: -1;
    border-radius: 4px;
}

.faq-intro > p {
    color: var(--gray);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.faq-all-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-decoration: none;
    padding: 12px 22px;
    background: rgba(26, 75, 168, 0.08);
    border-radius: 50px;
    transition: var(--transition);
}

.faq-all-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(4px);
}

.faq-all-link i {
    transition: transform 0.3s ease;
}

.faq-all-link:hover i {
    transform: translateX(4px);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid #eaeff5;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: #d6e1ec;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-item[open] {
    border-color: var(--primary);
    box-shadow: 0 8px 28px rgba(26, 75, 168, 0.1);
}

.faq-item summary {
    padding: 22px 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    list-style: none;
    user-select: none;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--primary);
}

.faq-item[open] summary {
    color: var(--primary);
    border-bottom: 1px solid #eaeff5;
}

.faq-icon {
    color: var(--orange);
    font-size: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(245, 130, 31, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
    background: var(--orange);
    color: var(--white);
}

.faq-answer {
    padding: 20px 26px 26px;
}

.faq-answer p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

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

    .faq-intro {
        position: static;
    }

    .faq-intro h2 {
        font-size: 34px;
    }
}

@media (max-width: 640px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-item summary {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-answer {
        padding: 16px 20px 22px;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
}

.cta-content {
    position: relative;
    color: var(--white);
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta-section .btn-primary:hover {
    background: var(--secondary);
    color: var(--dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
    display: block;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-col p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

.contact-list li {
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
}

.contact-list i {
    color: var(--secondary);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-affiliations {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-affiliations span {
    font-weight: 600;
    color: var(--white);
}

.affiliations-logos {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.aff-logo {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.powered-by {
    background: #000;
    color: rgba(255, 255, 255, 0.85);
    padding: 18px 24px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.powered-divider {
    color: rgba(255, 255, 255, 0.35);
}

.powered-brand {
    color: var(--orange);
    font-weight: 800;
    letter-spacing: 4px;
    background: linear-gradient(90deg, #f5a623 0%, #e8451f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.powered-brand:hover {
    letter-spacing: 5px;
}

/* ============================================
   POPUP NOVEDAD
   ============================================ */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 50, 0.75);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.popup-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.popup {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    transform: scale(0.85) translateY(40px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    color: var(--dark);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.popup-close:hover {
    transform: rotate(90deg);
    background: var(--orange);
    color: var(--white);
}

.popup-image-link {
    display: block;
    width: 100%;
    background: var(--white);
    line-height: 0;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

.popup-image-full {
    width: 100%;
    height: 100%;
    max-height: 70vh;
    object-fit: contain;
    object-position: center;
    display: block;
}

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

.popup-body {
    padding: 20px 24px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.popup-cta {
    display: block;
    width: 100%;
    background: linear-gradient(180deg, #f5a623 0%, #e8451f 100%);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
    box-shadow: 0 8px 22px rgba(245, 130, 31, 0.45);
    transition: var(--transition);
    text-decoration: none;
}

.popup-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(245, 130, 31, 0.55);
    color: var(--white);
}

.popup-skip {
    background: none;
    border: none;
    color: var(--gray);
    font-family: inherit;
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    padding: 4px;
}

.popup-skip:hover {
    color: var(--dark);
}

@media (max-width: 480px) {
    .popup-image {
        height: 180px;
    }

    .popup-body {
        padding: 24px 22px 28px;
    }

    .popup-body h3 {
        font-size: 26px;
    }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px;
    z-index: 1000;
    transform: translateY(150%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    color: var(--dark);
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .price-number,
    .price-currency {
        font-size: 180px;
    }

    .hero-pretitle {
        font-size: 32px;
    }

    .hero-left {
        padding: 60px 40px;
    }
}

@media (max-width: 1024px) {
    .header {
        padding: 18px 24px;
    }

    .main-nav a {
        padding: 10px 12px;
        font-size: 14px;
    }

    .btn-cta {
        padding: 12px 20px;
        font-size: 13px;
    }

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

    .hero-right {
        min-height: 400px;
    }

    .price-number,
    .price-currency {
        font-size: 160px;
    }

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

    .benefit-item:nth-child(2) {
        border-right: none;
    }

    .benefit-item:nth-child(1),
    .benefit-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

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

    .ticket-card.featured {
        transform: none;
        grid-column: span 2;
    }

    .ticket-card.featured:hover {
        transform: translateY(-8px);
    }

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

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

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

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .header .btn-cta {
        display: none;
    }

    .hero-left {
        padding: 50px 24px;
    }

    .hero-pretitle {
        font-size: 26px;
    }

    .price-number,
    .price-currency {
        font-size: 130px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .btn-buy {
        font-size: 16px;
        padding: 16px 32px;
    }

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

    .benefit-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

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

    .section-header h2,
    .cta-content h2 {
        font-size: 30px;
    }

    .tickets-grid,
    .news-grid,
    .plan-grid,
    .attractions-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .ticket-card.featured {
        grid-column: span 1;
    }

    .steps-grid::before {
        display: none;
    }

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

    .tickets-section,
    .how-it-works,
    .plan-visit,
    .attractions,
    .news,
    .cta-section {
        padding: 60px 0;
    }

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

@media (max-width: 480px) {
    .logo-mark {
        width: 44px;
        height: 44px;
    }

    .logo-name {
        font-size: 18px;
    }

    .logo-sub {
        font-size: 11px;
    }

    .price-number,
    .price-currency {
        font-size: 110px;
    }

    .hero-pretitle {
        font-size: 22px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   MOBILE FIRST — comprehensive small-screen fixes
   ============================================ */

/* Prevent horizontal overflow site-wide */
html, body {
    overflow-x: hidden;
}
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Fluid typography for hero */
.hero-pretitle {
    font-size: clamp(20px, 5vw, 38px);
}
.price-number,
.price-currency {
    font-size: clamp(80px, 18vw, 220px);
    line-height: 1;
}
.price-discount {
    font-size: clamp(11px, 2.4vw, 14px);
}

/* Tablet (≤768) */
@media (max-width: 768px) {
    .hero-split {
        grid-template-columns: 1fr;
    }
    .hero-left {
        padding: 40px 24px;
        min-height: auto;
    }
    .hero-right {
        padding: 0;
        min-height: 320px;
        display: block;
        position: relative;
    }
    .hero-image {
        width: 100%;
        height: 100%;
        max-height: 380px;
        object-fit: cover;
        object-position: center;
    }
    .hero-rating-card {
        top: auto;
        bottom: 14px;
        right: 14px;
        padding: 8px 12px;
        gap: 8px;
        border-radius: 8px;
    }
    .hero-rating-card .rating-num {
        font-size: 18px;
    }
    .hero-rating-card .rating-stars {
        font-size: 9px;
    }
    .hero-rating-card .rating-meta strong {
        font-size: 11px;
    }
    .hero-rating-card .rating-meta span {
        font-size: 10px;
    }
    .hero-rating-card .rating-score {
        padding-right: 8px;
    }
    .hero-floating-tag {
        top: 14px;
        left: 14px;
        bottom: auto;
        padding: 6px 10px;
        font-size: 11px;
        border-radius: 5px;
    }
    .hero-floating-tag i {
        font-size: 10px;
    }
    .hero-bubbles {
        display: none;
    }
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    section {
        padding-left: 0;
        padding-right: 0;
    }
    h1 {
        font-size: clamp(28px, 7vw, 44px);
        line-height: 1.15;
    }
    h2 {
        font-size: clamp(24px, 6vw, 36px);
        line-height: 1.2;
    }
    .step-number {
        font-size: 60px;
    }
    .calendar-preview-card {
        padding: 28px 20px;
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Phone (≤640) */
@media (max-width: 640px) {
    .logo-img {
        height: 48px;
    }
    .header {
        padding: 0;
    }
    .header-inner {
        padding: 12px 16px;
    }
    .topbar-inner {
        padding: 6px 12px;
        gap: 8px;
    }
    .topbar-location {
        font-size: 11px;
    }
    .topbar-lang-btn {
        font-size: 11px;
        padding: 4px 8px;
    }
    .hero-left {
        padding: 32px 18px;
    }
    .hero-trust {
        font-size: 12px;
    }
    .benefit-item {
        padding: 14px 16px;
        gap: 10px;
    }
    .benefit-text {
        font-size: 14px;
    }
    .benefit-sub {
        font-size: 12px;
    }
    .footer-grid {
        gap: 24px;
    }
    .footer-col h4 {
        font-size: 16px;
    }
    .ticket-card {
        margin: 0 auto;
        max-width: 360px;
    }
    .attraction-card h3 {
        font-size: clamp(20px, 6vw, 28px);
    }
    .featured-card h3 {
        font-size: 22px;
    }
    .stats-band-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
    .stats-band-item {
        padding: 16px 14px;
    }
    .park-stats {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 18px;
        background: transparent;
        padding: 0;
    }
    .park-stats .stat {
        background: var(--white);
        padding: 18px 12px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0,0,0,.06);
        border-right: none;
    }
    .park-stats .stat-number {
        color: var(--orange);
        font-size: 36px;
        margin-bottom: 6px;
        text-shadow: none;
    }
    .park-stats .stat-label {
        color: var(--dark);
        font-size: 11px;
        letter-spacing: 0.6px;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .topbar-status-text,
    .topbar-phone span {
        display: none;
    }
    .topbar-location span {
        max-width: 140px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .filters-row {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .filter-chip {
        font-size: 13px;
        padding: 8px 14px;
        white-space: nowrap;
    }
    .popup {
        max-width: 92vw;
        margin: 0 4vw;
    }
    .popup-image-full {
        max-height: 60vh;
        object-fit: cover;
    }
    .cookie-banner .container {
        flex-direction: column;
        align-items: stretch;
        text-align: left;
        gap: 12px;
    }
    .cookie-buttons {
        display: flex;
        gap: 8px;
    }
    .cookie-buttons .btn {
        flex: 1;
        justify-content: center;
    }
}

/* Small phone (≤480) */
@media (max-width: 480px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }
    .hero-price {
        gap: 4px;
    }
    .btn-buy,
    .btn-cta,
    .btn-primary {
        font-size: 14px;
        padding: 14px 20px;
    }
    .ticket-body h3 {
        font-size: 20px;
    }
    .ticket-price .amount {
        font-size: 36px;
    }
    .news-card h3,
    .plan-card h3 {
        font-size: 18px;
    }
    .footer-bottom {
        font-size: 12px;
        text-align: center;
    }
    .powered-by {
        font-size: 11px;
        flex-wrap: wrap;
        justify-content: center;
    }
}
