/* static/css/style.css */

/* --- Algemene Stijlen & Variabelen --- */
:root {
    --primary-color: #0B1C3E;
    /* Executive Donkerblauw */
    --secondary-color: #143266;
    /* Iets lichter blauw voor hover */
    --accent-color: #FFD700;
    /* Goud voor knoppen/acties */
    --light-bg-color: #f0f2f5;
    /* Zacht grijs voor achtergronden */
    --dark-text-color: #000000;
    /* Zwart voor tekst */
    --light-text-color: #ffffff;
    /* Wit voor tekst op donkere achtergrond */
    --white-color: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --font-family: 'Poppins', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Noto Color Emoji', sans-serif;
    line-height: 1.7;
    color: var(--dark-text-color);
    background-color: var(--light-bg-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

section {
    padding: 80px 0;
}

h1,
h2,
h3 {
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    color: var(--white-color);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
    /* Donkerblauwe titels */
    position: relative;
    text-transform: none;
    font-weight: 700;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    /* Gouden streep */
    margin: 10px auto 0;
    border-radius: 2px;
}

h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-transform: none;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    font-weight: 400;
}

.cta-button,
.card-button {
    display: inline-block;
    background-color: var(--accent-color);
    /* Gouden knoppen */
    color: #000000;
    /* Zwarte tekst op goud voor contrast */
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    text-transform: none;
}

.cta-button:hover,
.card-button:hover {
    background-color: #FFC107;
    /* Iets donkerder goud bij hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.cta-button.secondary:hover {
    background-color: var(--white-color);
    color: var(--primary-color);
}

.section-bg {
    background-color: var(--white-color);
}

/* --- Header & Navigatie --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--primary-color);
    /* Donkerblauwe navbar */
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-logo {
    color: var(--white-color);
    /* Wit logo */
    font-size: 2rem;
    font-weight: 800;
    text-decoration: none;
    order: 1;
}

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

/* SLIMME TAAL SELECTOR - nu aan de linkerzijde */
.language-selector {
    position: relative;
    order: 2;
    margin-right: auto;
    margin-left: 2rem;
}

/* BURGER MENU - nu aan de rechterzijde */
.hamburger-container {
    order: 3;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 2px solid var(--white-color);
    /* Witte border */
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hamburger .bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--white-color);
    /* Witte bars */
    border-radius: 1px;
    position: relative;
    left: 0;
    transform-origin: center;
}

/* Center de bars perfect in het vierkant */
.hamburger .bar:nth-child(1) {
    margin-top: 4px;
}

.hamburger .bar:nth-child(3) {
    margin-bottom: 4px;
}

.hamburger:hover {
    border-color: var(--accent-color);
    transform: rotate(90deg);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.hamburger:hover .bar {
    background-color: var(--accent-color);
}

.hamburger.active {
    transform: rotate(45deg);
    border-color: var(--accent-color);
    background-color: var(--accent-color);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(0deg);
    width: 20px;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-90deg);
    width: 20px;
}

.hamburger.active .bar {
    background-color: var(--white-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    order: 4;
}

.nav-item {
    margin-left: 2.5rem;
}

.nav-link {
    color: var(--white-color);
    /* Witte links */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    text-transform: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    /* Gouden onderstreep */
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
    /* Goud bij hover */
}

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

/* --- SLIMME TAAL SELECTOR MET VLAGGEN --- */
.language-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.language-display {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background-color: var(--white-color);
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    justify-content: space-between;
    box-shadow: 0 3px 10px rgba(11, 28, 62, 0.2);
}

.language-display:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

#current-flag {
    font-size: 1.4rem;
    line-height: 1;
}

#current-language {
    font-weight: 600;
    color: var(--dark-text-color);
    font-size: 0.9rem;
    flex-grow: 1;
    text-align: center;
    text-transform: none;
}

.language-display .fa-chevron-down {
    font-size: 0.8rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.language-selector:focus-within .language-display .fa-chevron-down {
    transform: rotate(180deg);
}

.language-selector select {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

/* Language dropdown */
.language-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 200px;
    background: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px;
    display: none;
    z-index: 1002;
    border: 1px solid #eee;
}

.language-selector:focus-within .language-dropdown {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-family);
    font-size: 0.95rem;
}

.language-option:hover {
    background-color: var(--light-bg-color);
    transform: translateX(5px);
}

.language-option .flag {
    font-size: 1.2rem;
    min-width: 24px;
}

.language-option .name {
    flex-grow: 1;
    color: var(--dark-text-color);
    font-weight: 500;
}

/* RTL ondersteuning voor taal selector */
[dir="rtl"] .language-display .fa-chevron-down {
    transform: rotate(180deg);
}

[dir="rtl"] .language-selector:focus-within .language-display .fa-chevron-down {
    transform: rotate(0deg);
}

[dir="rtl"] .language-option:hover {
    transform: translateX(-5px);
}

/* --- Hero Section --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    /* Donkerblauwe overlay */
    background: linear-gradient(rgba(222, 222, 222, 0.85), rgba(11, 28, 62, 0.7)), url('/static/images/snelweg.jpg') no-repeat center center/cover;
    height: 100vh;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* --- Over Ons Section --- */
.about-story {
    max-width: 1200px;
    margin: 0 auto 60px auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    background: var(--white-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* --- Tarieven Section --- */
.price-table-container {
    margin-bottom: 60px;
}

.price-table-container h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.price-table th,
.price-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.price-table thead th {
    background-color: var(--primary-color);
    /* Donkerblauwe header */
    color: var(--white-color);
    font-weight: 600;
    text-transform: none;
}

.price-table tbody tr:hover {
    background-color: var(--light-bg-color);
}

.pricing-note {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
}

/* Pakketten Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.pricing-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-weight: 700;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text-color);
    margin-bottom: 20px;
}

.price .amount {
    font-size: 3.5rem;
}

.pricing-card ul {
    list-style: none;
    margin: 20px 0;
    text-align: left;
    padding-left: 20px;
}

.pricing-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.pricing-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    /* Donkerblauwe vinkjes */
    font-weight: bold;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* Doorgestreepte originele prijs */
.price-original {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
    margin-bottom: -8px;
}

/* Kortingsbadge */
.price-badge {
    display: inline-block;
    background-color: #e8f5e9;
    color: #2e7d32;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid #a5d6a7;
}

/* --- Voorwaarden Section --- */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.terms-item {
    background: var(--white-color);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow);
}

.terms-item i {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.terms-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* --- Galerij --- */
.gallery-block {
    margin-bottom: 60px;
}

.gallery-block-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 3px solid var(--accent-color);
}

.gallery-block-header i {
    font-size: 1.4rem;
    color: var(--accent-color);
    background: var(--primary-color);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-block-header h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 0;
}

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

.cars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cars-grid .gallery-item {
    aspect-ratio: 16 / 9;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-loading {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: #aaa;
    font-size: 2rem;
}

.student-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--primary-color), #1a3a6e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.student-placeholder i {
    font-size: 3.5rem;
    color: rgba(255, 215, 0, 0.25);
}

.car-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #0d2450, var(--primary-color));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.car-placeholder i {
    font-size: 3.5rem;
    color: rgba(255, 215, 0, 0.3);
}

.car-placeholder span {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 28, 62, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    font-size: 1.8rem;
    color: var(--accent-color);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.93);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 88vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.lightbox-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.4);
    width: 360px;
    height: 260px;
}

.lightbox-placeholder i {
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.35);
}

.lightbox-placeholder p {
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 215, 0, 0.25);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .students-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
    .students-grid {
        grid-template-columns: 1fr;
    }
    .cars-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Contact Form --- */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background: var(--white-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contact-card-header {
    background: var(--primary-color);
    padding: 30px 35px;
    text-align: center;
    color: var(--white-color);
}

.contact-card-header i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: block;
}

.contact-card-header h3 {
    color: var(--white-color);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.info-grid {
    display: grid;
    gap: 0;
    padding: 20px 25px;
}

.info-item {
    display: flex;
    align-items: center;
    padding: 14px 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-bottom: 6px;
    border: 1px solid #f0f0f0;
}

.info-item:hover {
    background-color: var(--light-bg-color);
    transform: translateX(4px);
}

.info-item.whatsapp-item .info-icon {
    background-color: #e8f5e9;
    color: #25D366;
}

.info-item.whatsapp-item:hover .info-icon {
    background-color: #25D366;
    color: var(--white-color);
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    height: 46px;
    background-color: var(--light-bg-color);
    border-radius: 50%;
    margin-right: 16px;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.info-item:hover .info-icon {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.info-item.whatsapp-item:hover .info-icon {
    background-color: #25D366;
    color: var(--white-color);
}

.info-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.info-text strong {
    color: var(--dark-text-color);
    font-weight: 600;
    margin-bottom: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-text span {
    color: #444;
    font-size: 0.95rem;
}

.info-arrow {
    color: #ccc;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.info-item:hover .info-arrow {
    color: var(--primary-color);
}

.openingstijden-card {
    margin: 0 25px 25px;
    padding: 20px;
    background-color: var(--light-bg-color);
    border-radius: 10px;
    border-left: 5px solid var(--primary-color);
}

.openingstijden-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.openingstijden-card h4 i {
    margin-right: 10px;
    color: var(--primary-color);
}

.openingstijden-list {
    list-style: none;
}

.openingstijden-list li {
    padding: 9px 0;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #ddd;
}

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

.openingstijden-list .dag {
    font-weight: 600;
    color: var(--primary-color);
}

.openingstijden-list .tijd {
    color: #555;
}

.openingstijden-list .tijd em {
    font-style: normal;
    font-size: 0.8rem;
    background: #fff3cd;
    color: #856404;
    padding: 2px 7px;
    border-radius: 10px;
    margin-left: 6px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: none;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #f9f9f9;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 28, 62, 0.2);
    background-color: var(--white-color);
}

.error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 5px;
    position: absolute;
    bottom: -20px;
    left: 0;
}

.form-group.has-error .error-message {
    display: block;
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #e74c3c;
}

.contact-form .cta-button {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

/* --- Instagram CTA --- */
.instagram-cta {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    color: var(--white-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 40px;
}

.instagram-cta h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--white-color);
}

.instagram-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.instagram-cta .cta-button {
    background-color: var(--white-color);
    color: #bc1888;
    border: 2px solid var(--white-color);
}

.instagram-cta .cta-button:hover {
    background-color: transparent;
    color: var(--white-color);
}

/* --- Footer --- */
.main-footer {
    background-color: var(--primary-color);
    /* Donkerblauwe footer */
    color: #f4f4f4;
    padding: 70px 0 20px 0;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    /* Textuur verwijderd of aangepast voor strakke look? Laten we hem houden maar subtiel maken */
    background-image: linear-gradient(135deg, #0B1C3E 0%, #1A3152 100%);
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/dark-denim-3.png');
    opacity: 0.05;
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-color);
    /* Gouden titels in footer */
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: none;
}

.footer-section h3 {
    font-size: 1.8rem;
}

.footer-section h4 {
    font-size: 1.2rem;
}

/* Footer contact links - WIT en ZONDER underline */
.footer-section.contact p,
.footer-section.contact a {
    color: var(--white-color) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-section.contact a:hover {
    color: var(--accent-color) !important;
    transform: translateX(5px);
}

.footer-section.contact i {
    color: var(--accent-color);
    width: 20px;
    text-align: center;
}

.footer-section p,
.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-section p i,
.footer-section ul li a i {
    color: var(--accent-color);
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.footer-section p:hover,
.footer-section ul li a:hover {
    color: var(--white-color);
    transform: translateX(5px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section .social-links a {
    display: inline-flex;
    /* Zorgt voor perfecte uitlijning in de cirkel */
    align-items: center;
    /* Verticaal gecentreerd */
    justify-content: center;
    /* Horizontaal gecentreerd */
    width: 40px;
    /* Grootte van de knop */
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    /* Maakt er een perfect rondje van */

    font-size: 1.1rem;
    /* Grootte van het icoon */
    margin-right: 12px;
    transition: all 0.3s ease;
    /* Smooth animatie bij hover */
    box-sizing: border-box;
    /* Belangrijk voor correcte randen */
    line-height: 1;
    /* Verwijdert witruimte */
    text-decoration: none;
    /* Geen onderstreep */
}

/* Hover Effect (Goud) */
.footer-section .social-links a:hover {
    background-color: var(--accent-color);
    /* Wordt goud */
    color: #000000;
    /* Icoon wordt zwart */
    border-color: var(--accent-color);
    transform: translateY(-3px);
    /* Lichten op bij hover */
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #1A3152;
    font-size: 0.8rem;
    color: #888;
    position: relative;
    z-index: 1;
}

.footer-bottom i.fa-heart {
    color: #e74c3c;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* --- Floating Buttons --- */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-button,
.call-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--white-color);
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button {
    background-color: #25d366;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: scale(1.1) rotate(5deg);
}

.call-button {
    background-color: var(--primary-color);
    /* Donkerblauwe bel knop */
}

.call-button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

/* --- Responsive Design --- */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }

    .footer-section ul li a:hover {
        transform: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-buttons .cta-button {
        width: 80%;
    }
}

@media (max-width: 768px) {

    /* Navbar responsive layout */
    .navbar {
        padding: 1rem 20px;
        flex-wrap: wrap;
    }

    .nav-logo {
        order: 1;
    }

    .language-selector {
        order: 2;
        margin-left: auto;
        margin-right: 15px;
    }

    .hamburger-container {
        order: 3;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--white-color);
        width: 80%;
        height: 100vh;
        text-align: left;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
        padding: 100px 30px 30px;
        z-index: 999;
        overflow-y: auto;
    }

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

    .nav-item {
        margin: 0;
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.4s ease;
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active .nav-item:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-menu.active .nav-item:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-menu.active .nav-item:nth-child(4) {
        transition-delay: 0.4s;
    }

    .nav-link {
        display: block;
        padding: 20px 0;
        width: 100%;
        font-size: 1.2rem;
        border-bottom: 1px solid #f0f0f0;
        color: var(--white-color);
        /* Donkerblauwe tekst in menu */
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

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

    /* Luxe hamburger menu */
    .hamburger {
        display: block;
        position: relative;
        width: 40px;
        height: 40px;
        background: var(--primary-color);
        border-radius: 8px;
        border: 2px solid var(--primary-color);
        padding: 8px;
        transition: all 0.3s ease;
    }

    .hamburger:hover {
        border-color: var(--accent-color);
        transform: rotate(90deg);
    }

    .hamburger.active {
        transform: rotate(45deg);
        border-color: var(--accent-color);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(0deg);
        width: 25px;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-90deg);
        width: 25px;
    }

    /* Responsive typography */
    h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Hero section */
    .hero {
        padding-top: 100px;
        height: auto;
        min-height: 100vh;
        padding-bottom: 80px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    /* Pricing grid */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

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

    /* Form responsive */
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
        padding-bottom: 30px;
        border-bottom: 1px solid #1A3152;
    }

    .footer-section:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-section ul li a:hover {
        transform: none;
    }

    /* Floating buttons smaller */
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button,
    .call-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    /* Language selector mobile */
    .language-display {
        min-width: 80px;
        padding: 6px 12px;
    }

    #current-flag {
        font-size: 1.2rem;
    }

    #current-language {
        font-size: 0.8rem;
    }

    .language-dropdown {
        width: 180px;
    }

    .language-option {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 60px 15px;
    }

    section {
        padding: 60px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-buttons .cta-button {
        width: 100%;
        margin: 5px 0;
    }

    .price-table th,
    .price-table td {
        padding: 12px 8px;
        font-size: 0.9rem;
    }

    .contact-info-card,
    .contact-form {
        padding: 25px 20px;
    }

    .instagram-cta {
        padding: 30px 20px;
    }

    .about-story {
        padding: 25px 20px;
    }

    .footer-bottom {
        font-size: 0.75rem;
        line-height: 1.6;
    }
}

/* Tablet aanpassingen */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 60px 20px;
    }

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

    .hero-content {
        padding: 0 20px;
    }

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

/* Animation for menu overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap');

:root {
    --font-family: 'Poppins', 'Noto Color Emoji', 'Apple Color Emoji',
        'Segoe UI Emoji', sans-serif;
}

body {
    font-family: var(--font-family);
    font-feature-settings: "liga", "clig", "kern", "calt";
}

#current-flag {
    font-size: 1.4rem;
    line-height: 1;
}

.language-option .flag {
    font-size: 1.2rem;
    min-width: 24px;
    display: inline-block;
    text-align: center;
}
@media (max-width: 768px) {

    /* 1. NAVBAR AANPASSINGEN */
    .navbar {
        padding: 1rem 20px;
        flex-wrap: wrap;
        height: 80px; /* Vaste hoogte */
    }

    .nav-logo {
        order: 1;
    }

    .language-selector {
        order: 2;
        margin-left: auto;
        margin-right: 70px; /* Ruimte voor de grote hamburger */
    }

    .hamburger-container {
        order: 3;
    }

    /* 2. HAMBURGER: NEON / GLOW STYLE */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 55px;
        height: 55px;
        cursor: pointer;
        z-index: 1002;
        position: relative;
        transition: all 0.4s ease;
    }

    .hamburger:hover {
        background: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 25px rgba(255, 215, 0, 0.4); /* Sterkere glow */
        transform: rotate(90deg);
    }

    .hamburger .bar {
        width: 26px;
        height: 3px;
        background-color: #ffffff;
        border-radius: 3px;
        margin: 3px 0;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    /* Active X */
    .hamburger.active {
        background: var(--accent-color); /* Wordt Goud */
        border-color: var(--accent-color);
        transform: rotate(0deg);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    }

    .hamburger.active .bar {
        background-color: #000000; /* Zwart op goud */
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* 3. MENU CONTAINER: GLASSMORPHISM */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%; /* Start buiten beeld rechts */
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: rgba(11, 28, 62, 0.95); /* Donkerblauw met dekking */
        backdrop-filter: blur(20px); /* Glass effect */
        -webkit-backdrop-filter: blur(20px);
        
        display: flex;
        flex-direction: column;
        justify-content: center; /* Centreren */
        padding: 0 50px;
        
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
        transition: right 0.6s cubic-bezier(0.22, 1, 0.36, 1); /* Luxe curve */
        z-index: 1000;
        overflow-y: auto;
        border-left: 2px solid var(--accent-color); /* Gouden rand links */
    }

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

    /* 4. NAV ITEMS: FLOATING STYLE */
    .nav-item {
        margin: 15px 0;
        width: 100%;
        opacity: 0;
        transform: translateY(30px) scale(0.9);
        transition: all 0.5s ease;
        text-align: center;
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    /* Staggered animatie */
    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.35s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.45s; }

    /* 5. NAV LINKS: NEON CARDS */
    .nav-link {
        display: block;
        padding: 25px;
        font-size: 1.4rem; /* Groot */
        font-weight: 700;
        color: rgba(255, 255, 255, 0.7); /* Semi-transparant wit */
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 2px;
        background: rgba(255, 255, 255, 0.05); /* Lichte kaart achtergrond */
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    /* Verwijder de standaard bar/underline */
    .nav-link::after {
        display: none;
    }

    /* HOVER EFFECT: Vol Goud & Schuiven */
    .nav-link:hover {
        color: #000000;
        background: var(--accent-color); /* Goud */
        border-color: var(--accent-color);
        transform: scale(1.05); /* Wordt groter */
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
        letter-spacing: 3px; /* Tekst spat uiteen */
    }

    /* Kleine animatie effect binnenin */
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        transition: left 0.5s ease;
    }

    .nav-link:hover::before {
        left: 100%;
    }

    /* 6. OVERIGE RESPONSIVE FIXES */
    h1 { font-size: 2.5rem; line-height: 1.2; }
    h2 { font-size: 2rem; margin-bottom: 40px; }
    h3 { font-size: 1.5rem; }
    
    .hero { padding-top: 100px; height: auto; min-height: 100vh; padding-bottom: 80px; }
    .hero-content { padding: 0 15px; }
    
    .pricing-grid { grid-template-columns: 1fr; gap: 25px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    
    .footer-content { grid-template-columns: 1fr; text-align: left; gap: 30px; }
    .footer-section { text-align: center; padding-bottom: 30px; border-bottom: 1px solid #1A3152; }
    
    .floating-buttons { bottom: 20px; right: 20px; }
    .whatsapp-button, .call-button { width: 50px; height: 50px; font-size: 24px; }
}

/* ===== VERKEERSBORDEN PAGINA ===== */

.theorie-section {
    padding-top: 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
}

.theorie-hero {
    text-align: center;
    padding: 60px 20px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.theorie-hero h1 {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
}

.theorie-hero p {
    font-size: 1.3rem;
    color: #4a5568;
    opacity: 0.9;
}

/* Download Section */
.download-section {
    background: var(--white-color);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin: 40px auto;
    max-width: 1200px;
    padding: 40px;
    border: 1px solid #e2e8f0;
}

.download-header {
    text-align: center;
    margin-bottom: 50px;
}

.download-header h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.download-header p {
    color: #718096;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Download Grid */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.download-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.language-flag {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1;
}

.download-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.download-card p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    width: 100%;
    max-width: 200px;
}

.download-button:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.download-button i {
    font-size: 1.1rem;
}

/* Theorie Tips (blijft hetzelfde) */
.theorie-tips {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.tips-header {
    text-align: center;
    margin-bottom: 50px;
}

.tips-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tips-header p {
    color: #718096;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.tip-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tip-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tip-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(11, 28, 62, 0.1);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.tip-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.tip-card p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* CTA Section */
.theorie-cta {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 80px auto;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    color: var(--white-color);
    box-shadow: 0 20px 60px rgba(11, 28, 62, 0.3);
}

.cta-content {
    flex: 2;
}

.cta-content h2 {
    color: var(--white-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button.large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 3px solid var(--accent-color);
}

.cta-button.large:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cta-image {
    flex: 1;
    text-align: center;
}

.cta-image i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .theorie-cta {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 40px;
    }
    
    .cta-image i {
        font-size: 6rem;
    }
    
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .theorie-hero h1 {
        font-size: 2.5rem;
    }
    
    .theorie-hero p {
        font-size: 1.1rem;
    }
    
    .download-section {
        padding: 30px 20px;
    }
    
    .download-header h2 {
        font-size: 1.8rem;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .tip-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .theorie-hero h1 {
        font-size: 2rem;
    }

    .download-card {
        padding: 25px 20px;
    }

    .download-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .theorie-cta {
        padding: 30px 20px;
        margin: 40px auto;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-button.large {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--primary-color);
    color: var(--light-text-color);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    animation: slideUpBanner 0.4s ease;
}

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

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
}

.cookie-banner p a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 22px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-family);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-btn:hover {
    opacity: 0.85;
}

.cookie-btn.accept {
    background: var(--accent-color);
    color: var(--primary-color);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--light-text-color);
    border: 1.5px solid rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}