/* ================================================
   PADEL VIDA - MODERN CUSTOM DESIGN SYSTEM
   Mediterranean Coast Aesthetic
   ================================================ */

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

:root {
    /* Color Palette - Mediterranean Coast */
    --color-sand: #E8D5C4;
    --color-sand-light: #F9F7F4;
    --color-terra-cotta: #C86B4B;
    --color-terra-cotta-dark: #A85842;
    --color-azure: #2D5F7F;
    --color-azure-light: #4A8FB8;
    --color-azure-dark: #1A4A63;
    --color-olive: #6B7A5A;
    --color-olive-light: #8B9D7F;
    --color-navy: #1A2B3C;
    --color-golden: #F4CF7A;
    --color-white: #FFFFFF;

    /* Typography */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-label: 'DM Sans', sans-serif;

    /* Spacing System (8px base) */
    --space-xs: 0.5rem;    /* 8px */
    --space-sm: 1rem;      /* 16px */
    --space-md: 1.5rem;    /* 24px */
    --space-lg: 2rem;      /* 32px */
    --space-xl: 3rem;      /* 48px */
    --space-2xl: 4rem;     /* 64px */
    --space-3xl: 6rem;     /* 96px */
    --space-4xl: 8rem;     /* 128px */
    --space-5xl: 12rem;    /* 192px */

    /* Layout */
    --container-max: 1280px;
    --container-wide: 1440px;
    --content-max: 65ch;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 43, 60, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 43, 60, 0.12);
    --shadow-lg: 0 8px 32px rgba(26, 43, 60, 0.16);
    --shadow-xl: 0 16px 48px rgba(26, 43, 60, 0.20);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-index */
    --z-nav: 1000;
    --z-floating: 1001;
    --z-overlay: 800;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-navy);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-navy);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1.25rem;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-fluid {
    width: 100%;
    padding: 0 var(--space-lg);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    padding: var(--space-md) 0;
    z-index: var(--z-nav);
    transition: background var(--transition-base), backdrop-filter var(--transition-base);
}

.navbar.scrolled {
    background: rgba(26, 43, 60, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-wide);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-white);
}

.logo-subtitle {
    font-family: var(--font-label);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-golden);
    margin-left: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--color-white);
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-golden);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--color-golden);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav-cta {
    padding: 0.625rem 1.5rem;
    background: var(--color-terra-cotta);
    color: var(--color-white);
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.btn-nav-cta::after {
    display: none;
}

.btn-nav-cta:hover {
    background: var(--color-terra-cotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 107, 75, 0.4);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
}

.burger span {
    width: 25px;
    height: 2px;
    background: var(--color-white);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 43, 60, 0.4) 0%, rgba(26, 43, 60, 0.3) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(244, 207, 122, 0.15);
    border: 1px solid rgba(244, 207, 122, 0.3);
    border-radius: 50px;
    font-family: var(--font-label);
    font-size: 0.813rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-golden);
    margin-bottom: var(--space-md);
    backdrop-filter: blur(8px);
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: var(--space-lg);
}

.hero-title-main {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-white);
    line-height: 1;
}

.hero-title-sub {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-golden);
    font-family: var(--font-body);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-bottom: var(--space-xl);
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
    font-family: var(--font-label);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
    z-index: 10;
}

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

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), transparent);
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--color-terra-cotta-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 107, 75, 0.4);
}

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

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

.btn-full {
    width: 100%;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    margin-bottom: var(--space-3xl);
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 0.813rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-terra-cotta);
    margin-bottom: var(--space-sm);
}

.section-title {
    margin-bottom: var(--space-md);
    color: var(--color-navy);
}

.section-title-large {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-lg);
    color: var(--color-navy);
}

.section-intro {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-olive);
    max-width: var(--content-max);
}

.section-header.centered .section-intro {
    margin: 0 auto;
}

/* ===== EXPERIENCE SECTION ===== */
.experience-section {
    padding: var(--space-5xl) 0;
    background: var(--color-sand-light);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

.experience-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
}

.experience-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

.experience-card-inner {
    padding: var(--space-xl);
}

.experience-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-azure), var(--color-azure-light));
    border-radius: var(--radius-md);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.experience-card-accent .experience-icon {
    background: linear-gradient(135deg, var(--color-terra-cotta), var(--color-golden));
}

.experience-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--color-navy);
}

.experience-card p {
    color: var(--color-olive);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== DIAGONAL DIVIDER ===== */
.diagonal-divider {
    width: 100%;
    height: 120px;
    background: var(--color-sand-light);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

/* ===== LOCATION SECTION ===== */
.location-section {
    padding: var(--space-4xl) 0;
    background: var(--color-white);
}

.location-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.location-text {
    max-width: 600px;
}

.location-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-olive);
    margin-bottom: var(--space-xl);
}

.location-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding: var(--space-xl) 0;
    border-top: 1px solid rgba(107, 122, 90, 0.2);
    border-bottom: 1px solid rgba(107, 122, 90, 0.2);
}

.location-highlight-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highlight-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-terra-cotta);
    line-height: 1;
}

.highlight-label {
    font-size: 0.875rem;
    color: var(--color-olive);
    line-height: 1.4;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.location-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-navy);
    font-weight: 500;
}

.location-feature svg {
    flex-shrink: 0;
    color: var(--color-terra-cotta);
}

.location-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4 / 5;
}

.location-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

/* ===== TERMINE SECTION ===== */
.termine-section {
    padding: var(--space-5xl) 0;
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-sand-light) 100%);
}

.termine-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.timeline-month {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

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

.month-header {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 2px solid var(--color-sand);
}

.month-header h3 {
    font-size: 1.75rem;
    color: var(--color-azure);
}

.timeline-camps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
}

.camp-date-card {
    background: var(--color-sand-light);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    cursor: pointer;
}

.camp-date-card:hover {
    border-color: var(--color-terra-cotta);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.camp-special {
    background: linear-gradient(135deg, rgba(200, 107, 75, 0.1), rgba(244, 207, 122, 0.1));
    border-color: var(--color-terra-cotta);
}

.camp-date-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.camp-date-range {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-navy);
}

.camp-badge-small {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-azure);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.camp-badge-special {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--color-terra-cotta);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.camp-date-details {
    margin-top: var(--space-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-sm);
}

.camp-detail {
    font-size: 0.938rem;
    color: var(--color-olive);
}

.camp-price {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-terra-cotta);
    white-space: nowrap;
}

.camp-badge-available {
    background: var(--color-olive);
}

.camp-badge-soldout {
    background: #95a5a6;
}

.camp-waitlist-note {
    margin-top: var(--space-sm);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-terra-cotta);
    text-align: right;
}

.camp-date-card[data-available="false"] {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.08), rgba(149, 165, 166, 0.08));
    border: 2px solid #e74c3c;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.camp-date-card[data-available="false"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    animation: shimmer 3s infinite;
}

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

.camp-date-card[data-available="false"]:hover {
    border-color: #c0392b;
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.2);
}

.form-note {
    font-size: 0.875rem;
    color: var(--color-olive);
    margin: 0;
    font-style: italic;
}

.termine-cta {
    margin-top: var(--space-3xl);
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
}

.termine-cta p {
    font-size: 1.125rem;
    color: var(--color-navy);
    margin-bottom: var(--space-lg);
}

.termine-cta .btn-outline {
    background: transparent;
    color: var(--color-terra-cotta);
    border: 2px solid var(--color-terra-cotta);
}

.termine-cta .btn-outline:hover {
    background: var(--color-terra-cotta);
    color: var(--color-white);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: var(--space-5xl) 0;
    background: var(--color-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact-header {
    margin-bottom: var(--space-xl);
}

.contact-header p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-olive);
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.contact-info-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-sand-light);
    border-radius: var(--radius-md);
    color: var(--color-azure);
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-info-label {
    font-family: var(--font-label);
    font-size: 0.813rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-olive);
}

.contact-info-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-navy);
    transition: color var(--transition-fast);
}

a.contact-info-value:hover {
    color: var(--color-terra-cotta);
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: var(--color-sand-light);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field label {
    font-family: var(--font-display);
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--color-navy);
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 0.938rem 1.25rem;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    background: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-navy);
    transition: all var(--transition-fast);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--color-azure);
    box-shadow: 0 0 0 3px rgba(45, 95, 127, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.footer-column h4 {
    font-size: 0.938rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-golden);
    margin-bottom: var(--space-md);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-golden);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* ===== FLOATING CTA ===== */
.floating-cta {
    position: fixed;
    bottom: var(--space-xl);
    right: var(--space-xl);
    padding: 1rem 2rem;
    background: var(--color-terra-cotta);
    color: var(--color-white);
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    z-index: var(--z-floating);
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

/* Adjust floating CTA position when on pages with timer bar */
.floating-cta.with-timer-bar {
    bottom: calc(60px + 10px);
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.floating-cta:hover {
    background: var(--color-terra-cotta-dark);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

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

/* Tablet */
@media (max-width: 968px) {
    :root {
        --space-3xl: 4rem;
        --space-4xl: 5rem;
        --space-5xl: 6rem;
    }

    .experience-card-large {
        grid-column: span 1;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--color-navy);
        flex-direction: column;
        justify-content: flex-start;
        padding: var(--space-xl);
        gap: var(--space-lg);
        transition: right var(--transition-base);
    }

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

    .burger {
        display: flex;
    }

    .hero {
        min-height: 500px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

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

    .location-highlights {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .timeline-camps {
        grid-template-columns: 1fr;
    }

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

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

    .floating-cta {
        bottom: var(--space-md);
        right: var(--space-md);
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-scroll-indicator {
        display: none;
    }

    .timeline-month {
        padding: var(--space-md);
    }
}

/* ===== EXPERIENCE PAGE STYLES ===== */

/* Experience Hero */
.experience-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.experience-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.experience-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: var(--space-5xl) 0;
}

.experience-hero .hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--color-white);
}

.experience-hero .hero-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.hero-stats {
    display: flex;
    gap: var(--space-3xl);
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-golden);
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

/* Timeline */
.training-program {
    padding: var(--space-5xl) 0;
    background: var(--color-white);
}

.timeline {
    max-width: 900px;
    margin: var(--space-4xl) auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-terra-cotta), var(--color-golden));
}

.timeline-item {
    display: flex;
    gap: var(--space-xl);
    margin-bottom: var(--space-4xl);
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-terra-cotta);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 8px var(--color-white);
}

.timeline-day {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-white);
    font-size: 0.875rem;
}

.timeline-content {
    flex: 1;
    background: var(--color-sand-light);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-navy);
    margin-bottom: var(--space-lg);
}

.timeline-schedule {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.schedule-item {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.schedule-item .time {
    font-weight: 700;
    color: var(--color-terra-cotta);
    min-width: 60px;
    font-family: var(--font-label);
}

.schedule-item .activity {
    color: var(--color-navy);
    font-weight: 500;
}

.timeline-content img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

/* Coaches Section */
.coaches-section {
    padding: var(--space-5xl) 0;
    background: var(--color-sand-light);
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-4xl);
}

.coach-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.coach-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.coach-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: var(--color-terra-cotta);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.coach-info {
    padding: var(--space-xl);
}

.coach-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-navy);
    margin-bottom: 0.25rem;
}

.coach-title {
    color: var(--color-terra-cotta);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.coach-credentials {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.coach-credentials li {
    font-size: 0.938rem;
    color: var(--color-olive);
}

.coach-bio {
    font-style: italic;
    color: var(--color-olive);
    line-height: 1.6;
    border-left: 3px solid var(--color-terra-cotta);
    padding-left: var(--space-md);
    margin-top: var(--space-md);
}

/* Facilities Section */
.facilities-section {
    padding: var(--space-5xl) 0;
    background: var(--color-white);
}

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

.facility-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.facility-card:hover {
    transform: scale(1.02);
}

.facility-large {
    grid-column: span 2;
}

.facility-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.facility-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 43, 60, 0.95), transparent);
    padding: var(--space-xl);
    color: var(--color-white);
}

.facility-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.facility-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Accommodation Section */
.accommodation-section {
    padding: var(--space-5xl) 0;
    background: var(--color-sand-light);
}

.accommodation-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-4xl);
}

.accommodation-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.accommodation-card.featured {
    border: 2px solid var(--color-terra-cotta);
    box-shadow: 0 0 0 4px rgba(200, 107, 75, 0.1);
}

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

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

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

.accommodation-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    background: var(--color-terra-cotta);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.813rem;
    font-weight: 700;
}

.accommodation-info {
    padding: var(--space-lg);
}

.accommodation-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-navy);
    margin-bottom: var(--space-md);
}

.accommodation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--space-md);
}

.accommodation-features .feature {
    font-size: 0.813rem;
    color: var(--color-olive);
    background: var(--color-sand-light);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
}

.accommodation-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-sand-light);
}

.price-from {
    font-size: 0.875rem;
    color: var(--color-olive);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-terra-cotta);
}

.price-period {
    font-size: 0.938rem;
    color: var(--color-olive);
}

.accommodation-note {
    max-width: 700px;
    margin: var(--space-3xl) auto 0;
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-terra-cotta);
}

/* What's Included Section */
.included-section {
    padding: var(--space-5xl) 0;
    background: var(--color-white);
}

.included-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    margin-top: var(--space-4xl);
}

.included-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-navy);
    margin-bottom: var(--space-lg);
}

.included-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.included-list li {
    position: relative;
    padding-left: var(--space-lg);
    line-height: 1.6;
    color: var(--color-navy);
}

.included-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-olive);
    font-weight: 700;
    font-size: 1.25rem;
}

.included-list.excluded li::before {
    content: '⚬';
    color: var(--color-olive);
}

.pricing-box {
    margin-top: var(--space-4xl);
    background: linear-gradient(135deg, var(--color-terra-cotta), var(--color-golden));
    padding: var(--space-3xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.pricing-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-3xl);
}

.pricing-main {
    color: var(--color-white);
}

.pricing-label {
    font-family: var(--font-label);
    font-size: 0.938rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin: var(--space-sm) 0;
}

.price-number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-note {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-cta {
    text-align: center;
}

.pricing-guarantee {
    margin-top: var(--space-md);
    font-size: 0.875rem;
    color: var(--color-white);
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    padding: var(--space-5xl) 0;
    background: var(--color-sand-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-4xl);
}

.faq-item {
    background: var(--color-white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    transition: transform var(--transition-base);
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--color-navy);
    margin-bottom: var(--space-md);
}

.faq-answer {
    color: var(--color-olive);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    padding: var(--space-5xl) 0;
    background: var(--color-navy);
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.cta-box p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: var(--space-3xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .experience-hero .hero-title {
        font-size: 2.5rem;
    }

    .experience-hero .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-stats {
        gap: var(--space-xl);
    }

    .stat-number {
        font-size: 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
    }

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

    .facility-large {
        grid-column: span 1;
    }

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

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

    .price-number {
        font-size: 3rem;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ===== BONUS POPUP ===== */
.bonus-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 43, 60, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bonus-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.bonus-popup {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    max-width: 420px;
    width: 90%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.bonus-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--color-navy);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
    z-index: 10;
}

.bonus-popup-close:hover {
    background: var(--color-sand-light);
}

.bonus-popup-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.bonus-popup-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    animation: bounce 1s ease infinite;
}

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

.bonus-popup-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.bonus-popup-amount {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-terra-cotta);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 0 rgba(200, 107, 75, 0.1);
}

.bonus-popup-text {
    font-size: 1rem;
    color: var(--color-navy);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.bonus-popup-text strong {
    color: var(--color-terra-cotta);
}

.bonus-popup-subtext {
    font-size: 0.813rem;
    color: #666;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.btn-bonus {
    width: 100%;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
}

.bonus-timer {
    background: linear-gradient(135deg, #C86B4B 0%, #A85A3D 100%);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin: 1rem 0;
}

.timer-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timer-display {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
}

.timer-display span {
    display: inline-block;
    min-width: 40px;
}

.floating-timer-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #C86B4B 0%, #A85A3D 100%);
    color: var(--color-white);
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: slideUp 0.5s ease;
    cursor: pointer;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.floating-timer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.floating-timer-text {
    font-size: 0.875rem;
    font-weight: 600;
}

.floating-timer-countdown {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.floating-timer-countdown span {
    display: inline-block;
    min-width: 24px;
}

.btn-floating-timer {
    background: var(--color-white);
    color: var(--color-terra-cotta);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

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

@media (max-width: 768px) {
    .bonus-popup {
        max-width: 360px;
    }

    .bonus-popup-content {
        padding: 1.5rem 1rem;
    }

    .timer-display {
        font-size: 1.75rem;
    }

    .floating-timer-text {
        font-size: 0.75rem;
    }

    .floating-timer-countdown {
        font-size: 1rem;
    }

    .btn-floating-timer {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }

    /* Ensure timer bar sticks to bottom on mobile */
    .floating-timer-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 0.625rem 0.75rem;
    }

    .floating-timer-content {
        gap: 0.5rem;
    }
}

    .bonus-popup-title {
        font-size: 1.5rem;
    }

    .bonus-popup-amount {
        font-size: 2.5rem;
    }
}

/* ===== CUSTOM PVA COOKIE BANNER - MOBILE ONLY FIX ===== */
@media only screen and (max-width: 768px) {
    /* PVA Cookie Banner Container */
    html body #pva-cookie-banner .pva-banner-content {
        padding: 0.75rem 1rem !important;
        max-height: 50vh !important;
        overflow-y: auto !important;
    }

    /* PVA Banner Text */
    html body #pva-cookie-banner .pva-banner-text h3 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    html body #pva-cookie-banner .pva-banner-text p {
        font-size: 0.8125rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.5rem !important;
    }

    /* PVA Button Container - NUCLEAR OVERRIDE */
    html body #pva-cookie-banner .pva-banner-buttons {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
        justify-items: center !important;
        align-items: center !important;
        margin-top: 0.75rem !important;
        width: 100% !important;
        position: relative !important;
    }

    /* All buttons - base styles */
    html body #pva-cookie-banner .pva-banner-buttons button.pva-btn,
    html body #pva-cookie-banner button#pva-accept-all,
    html body #pva-cookie-banner button#pva-reject-all,
    html body #pva-cookie-banner button#pva-cookie-settings {
        padding: 0.5rem 0.25rem !important;
        font-size: 0.65rem !important;
        margin: 0 !important;
        white-space: nowrap !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        text-align: center !important;
        line-height: 1.2 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        box-sizing: border-box !important;
        border-radius: 4px !important;
        height: auto !important;
        min-height: 36px !important;
        position: relative !important;
        float: none !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
    }

    /* Grid positioning */
    html body #pva-cookie-banner button#pva-accept-all {
        grid-column: 1 !important;
    }

    html body #pva-cookie-banner button#pva-reject-all {
        grid-column: 2 !important;
    }

    html body #pva-cookie-banner button#pva-cookie-settings {
        grid-column: 3 !important;
    }
}

/* ===== COOKIE BANNER MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
    /* Target ALL possible cookie banner selectors with maximum specificity */
    body [class*="cookie-banner"],
    body [class*="cookie-notice"],
    body [class*="cookie-consent"],
    body [class*="Cookie"],
    body [id*="cookie"],
    body [id*="Cookie"],
    body .cc-window,
    body #cookie-notice,
    body .moove-gdpr-info-bar-container,
    body div[class*="gdpr"],
    body div[class*="GDPR"] {
        position: fixed !important;
        bottom: 0 !important;
        top: auto !important;
        left: 0 !important;
        right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.8125rem !important;
        max-height: 50vh !important;
        overflow-y: auto !important;
    }

    /* Compact text content */
    body [class*="cookie"] p,
    body [class*="consent"] p,
    body [class*="Cookie"] p,
    body .cc-message,
    body .moove-gdpr-info-bar-content p {
        font-size: 0.8125rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.4 !important;
    }

    /* NUCLEAR: Equal width buttons for ALL cookie banners - Maximum Specificity */
    html body [class*="cookie"] button,
    html body [class*="cookie"] a[class*="button"],
    html body [class*="cookie"] a.btn,
    html body [class*="Cookie"] button,
    html body [class*="Cookie"] a,
    html body [class*="consent"] button,
    html body [class*="consent"] a,
    html body [id*="cookie"] button,
    html body [id*="cookie"] a,
    html body .cc-btn,
    html body .moove-gdpr-button-holder button,
    html body .moove-gdpr-button-holder a,
    html body div[class*="gdpr"] button,
    html body div[class*="gdpr"] a.button,
    html body button[class*="accept"],
    html body button[class*="decline"],
    html body button[class*="settings"],
    html body button[class*="cookie"],
    html body a[class*="accept"],
    html body a[class*="decline"],
    html body a[class*="settings"],
    html body a[class*="cookie"] {
        padding: 0.5rem 0.25rem !important;
        font-size: 0.65rem !important;
        margin: 0.25rem !important;
        white-space: nowrap !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 100px !important;
        max-width: 100px !important;
        width: 100px !important;
        flex: 0 0 100px !important;
        text-align: center !important;
        line-height: 1.2 !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        box-sizing: border-box !important;
        border-radius: 4px !important;
        vertical-align: middle !important;
        height: auto !important;
        min-height: 36px !important;
    }

    /* Force text inside buttons to be centered and truncated */
    html body [class*="cookie"] button *,
    html body [class*="Cookie"] button *,
    html body [class*="consent"] button *,
    html body div[class*="gdpr"] button *,
    html body [id*="cookie"] button * {
        text-align: center !important;
        display: inline-block !important;
        max-width: 100% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    /* Button container horizontal layout */
    body [class*="cookie-buttons"],
    body [class*="cookie"] .button-container,
    body [class*="Cookie"] div[class*="button"],
    body .cc-compliance,
    body .moove-gdpr-button-holder,
    body div[class*="gdpr"] div[class*="button"] {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
        justify-content: center !important;
        margin-top: 0.5rem !important;
        align-items: center !important;
    }

    /* Hide long descriptions on mobile */
    body [class*="cookie"] .description,
    body [class*="cookie"] .details,
    body .cc-message br {
        display: none !important;
    }

    /* Compact title */
    body [class*="cookie"] h2,
    body [class*="cookie"] h3,
    body [class*="Cookie"] h2,
    body [class*="Cookie"] h3,
    body .moove-gdpr-info-bar-container h2,
    body div[class*="gdpr"] h2,
    body div[class*="gdpr"] h3 {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    /* Ensure readability */
    body [class*="cookie"],
    body [class*="Cookie"],
    body [class*="consent"],
    body .cc-window,
    body .moove-gdpr-info-bar-container,
    body div[class*="gdpr"] {
        z-index: 9999 !important;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15) !important;
    }
}
