/* ═══════════════════════════════════════════════════════════════
   RIJSCHOOL RIDE2GO - MODERNE & PROFESSIONELE STYLING
   ═══════════════════════════════════════════════════════════════ */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Kleuren - Professioneel en betrouwbaar */
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #60a5fa;
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    --accent-color: #f59e0b;
    --dark: #1f2937;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-icon {
    font-size: 2.25rem;
    color: var(--primary-color);
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:not(.btn-primary):hover {
    color: var(--primary-color);
}

.nav-menu a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:not(.btn-primary):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    color: var(--white);
    padding: var(--spacing-xl) 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(30, 64, 175, 0.92) 100%);
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-text {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    font-size: 1.75rem;
    color: var(--secondary-color);
}

.feature span {
    font-weight: 600;
    font-size: 1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-content {
    padding: var(--spacing-md);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--dark);
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.section-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.about-features {
    list-style: none;
    margin-top: var(--spacing-md);
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.about-features li:hover {
    background: #e0f2fe;
    transform: translateX(8px);
}

.about-features i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.about-features span {
    flex: 1;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ===== WHY SECTION ===== */
.why {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.why .section-title {
    text-align: center;
}

.why .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.why-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon {
    font-size: 2.25rem;
    color: var(--white);
}

.why-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.why-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray);
}

/* ===== CITIES SECTION ===== */
.cities {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.cities .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.cities .section-title {
    text-align: center;
}

.cities-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-sm);
    max-width: 900px;
    margin: var(--spacing-md) auto 0;
}

.cities-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cities-list li:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.cities-list li i {
    color: var(--primary-color);
}

/* ===== PACKAGES SECTION ===== */
.packages {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.packages .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.package-featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.package-featured:hover {
    transform: scale(1.08);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 3rem;
    font-size: 0.875rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: var(--shadow-md);
}

.package-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: var(--spacing-md);
    text-align: center;
    color: var(--white);
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.package-title {
    font-size: 1.75rem;
    font-weight: 700;
}

.package-content {
    padding: var(--spacing-md);
}

.package-description {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    text-align: center;
}

.package-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--dark);
}

.package-features i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.package-price-section {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 2px solid var(--light-gray);
    border-bottom: 2px solid var(--light-gray);
    margin-bottom: 1.5rem;
}

.package-price {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.package-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
}

.btn-package {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.btn-package:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-featured {
    background: var(--accent-color);
}

.btn-featured:hover {
    background: #d97706;
}

.packages-note {
    margin-top: var(--spacing-lg);
    text-align: center;
    padding: 1.5rem;
    background: #e0f2fe;
    border-radius: var(--radius-md);
}

.packages-note p {
    font-size: 1.05rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.packages-note i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: var(--spacing-xl) 0;
    background: var(--light-gray);
}

.gallery .section-title {
    text-align: center;
}

.gallery .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: var(--spacing-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Scrollbar styling voor horizontale scroll op mobiel */
.gallery-grid::-webkit-scrollbar,
.packages-grid::-webkit-scrollbar,
.why-grid::-webkit-scrollbar {
    height: 8px;
}

.gallery-grid::-webkit-scrollbar-track,
.packages-grid::-webkit-scrollbar-track,
.why-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb,
.packages-grid::-webkit-scrollbar-thumb,
.why-grid::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.gallery-grid::-webkit-scrollbar-thumb:hover,
.packages-grid::-webkit-scrollbar-thumb:hover,
.why-grid::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(16, 185, 129, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gallery-overlay span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.gallery-note {
    margin-top: var(--spacing-lg);
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.gallery-note p {
    font-size: 1.125rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.gallery-note i {
    color: #e1306c;
    font-size: 1.5rem;
}

.gallery-note a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.gallery-note a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.contact .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #e0f2fe;
    transform: translateX(8px);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-wrapper i {
    font-size: 1.75rem;
    color: var(--white);
}

.contact-icon-wrapper.whatsapp {
    background: #25d366;
}

.contact-icon-wrapper.instagram {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 600;
}

.contact-value {
    font-size: 1.125rem;
    color: var(--dark);
    font-weight: 700;
}

.contact-hours {
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
}

.contact-hours h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-hours i {
    color: var(--primary-color);
}

.contact-hours p {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.contact-hours a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-hours a:hover {
    text-decoration: underline;
}

/* Promo Features */
.promo-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.promo-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.promo-feature:hover {
    background: #e0f2fe;
    transform: translateX(5px);
}

.promo-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.promo-feature h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.promo-feature p {
    font-size: 0.95rem;
    color: var(--gray);
}

/* Contact Form */
.contact-form-wrapper {
    display: flex;
    align-items: flex-start;
}

.form-box {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.form-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-intro {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: var(--spacing-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: var(--primary-color);
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232563eb' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-submit i {
    font-size: 1.25rem;
}

.form-note {
    font-size: 0.875rem;
    color: var(--gray);
    text-align: center;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-4px);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info i {
    color: var(--primary-light);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-xl);
        transition: right 0.3s ease;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-text {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Horizontal scroll voor pakketten */
    .packages-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        grid-template-columns: none;
    }
    
    .package-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
    
    .package-featured {
        transform: scale(1);
    }
    
    /* Compactere package styling voor mobiel */
    .package-header {
        padding: 1rem;
    }
    
    .package-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .package-title {
        font-size: 1.25rem;
    }
    
    .package-content {
        padding: 1rem;
    }
    
    .package-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .package-features {
        margin-bottom: 1rem;
    }
    
    .package-features li {
        margin-bottom: 0.6rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .package-features i {
        font-size: 1rem;
    }
    
    .package-price-section {
        padding: 1rem 0;
        margin-bottom: 1rem;
    }
    
    .package-price {
        font-size: 1rem;
    }
    
    .package-label {
        font-size: 0.75rem;
    }
    
    .btn-package {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .package-badge {
        font-size: 0.75rem;
        padding: 0.35rem 2.5rem;
    }
    
    .packages-note {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .packages-note p {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Horizontal scroll voor gallery */
    .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        grid-template-columns: none;
        max-width: none;
    }
    
    .gallery-item {
        flex: 0 0 75%;
        scroll-snap-align: center;
    }
    
    /* Horizontal scroll voor why section */
    .why-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1rem;
        margin-left: -1rem;
        margin-right: -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
        grid-template-columns: none;
        max-width: none;
    }
    
    .why-card {
        flex: 0 0 80%;
        scroll-snap-align: center;
        aspect-ratio: auto;
        padding: 1.5rem;
        min-height: 280px;
    }
    
    .why-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .why-icon {
        font-size: 1.75rem;
    }
    
    .why-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .why-text {
        font-size: 0.95rem;
    }
    
    /* Compacter formulier */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-box {
        padding: 1.25rem;
    }
    
    .form-icon {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .form-box h3 {
        font-size: 1.35rem;
        margin-bottom: 0.35rem;
    }
    
    .form-intro {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.95rem;
    }
    
    .form-group textarea {
        min-height: 70px;
    }
    
    .btn-submit {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .promo-features {
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .promo-feature {
        padding: 0.6rem;
    }
    
    .promo-feature i {
        font-size: 1.35rem;
    }
    
    .promo-feature h4 {
        font-size: 0.95rem;
        margin-bottom: 0.15rem;
    }
    
    .promo-feature p {
        font-size: 0.8rem;
    }
    
    .contact-hours {
        margin-top: 1rem;
    }
    
    .contact-hours h4 {
        font-size: 1.1rem;
    }
    
    .contact-hours p {
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .form-note {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== ACCESSIBILITY ===== */
:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}