/* ============================================
   GreenParking Zaventem - Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600;1,700&display=swap');

/* CSS Variables */
:root {
    --color-primary: #1B3A5C;
    --color-orange: #F37021;
    --color-orange-hover: #e05f10;
    --color-green: #88BC24;
    --color-green-dark: #6fa01a;
    --color-white: #ffffff;
    --color-bg-light: #F5F7FA;
    --color-bg-dark: #1B3A5C;
    --color-text: #333333;
    --color-text-secondary: #666666;
    --color-border: #dee2e6;
    --font-family: 'Open Sans', sans-serif;
    --max-width: 1200px;
    --header-height: 100px;
    --transition: 0.3s ease;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-secondary {
    border-bottom: 1px solid #eee;
    padding: 8px 0;
}

.header-secondary .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.header-secondary a {
    font-size: 13px;
    color: var(--color-text-secondary);
}

.header-secondary a:hover {
    color: var(--color-orange);
}

.header-secondary a.active {
    text-decoration: underline;
    color: var(--color-primary);
    font-weight: 600;
}

.header-secondary .lang-divider {
    width: 1px;
    height: 14px;
    background: #ddd;
}

.header-main {
    padding: 15px 0;
}

.header-main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 55px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
}

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

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--color-orange);
    color: var(--color-white);
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.btn-cta:hover {
    background: var(--color-orange-hover);
    transform: translateY(-1px);
    color: var(--color-white);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--color-orange);
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    border: 2px solid var(--color-orange);
    cursor: pointer;
    transition: all var(--transition);
}

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

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    z-index: 999;
    padding: 100px 20px 40px;
    flex-direction: column;
    gap: 0;
    overflow-y: auto;
}

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

.mobile-menu a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    border-bottom: 1px solid #eee;
}

.mobile-menu a:hover {
    color: var(--color-orange);
}

.mobile-menu .btn-cta {
    margin-top: 20px;
    text-align: center;
    justify-content: center;
}

/* ============================================
   USP Bar (Green Bar)
   ============================================ */
.usp-bar {
    background: var(--color-green);
    padding: 14px 0;
}

.usp-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
}

.usp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: 2px solid var(--color-white);
    border-radius: 50%;
}

.usp-icon svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--color-white);
    stroke-width: 3;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-content {
    max-width: 620px;
    color: var(--color-white);
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--color-white);
}

.hero-content p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.95;
}

/* Hero Left-aligned variant */
.hero-left .container {
    justify-content: flex-start;
}

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

/* ============================================
   Booking Widget
   ============================================ */
.booking-section {
    padding: 50px 0;
    background: var(--color-white);
}

.booking-section h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.booking-form {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.booking-group {
    flex: 1;
    min-width: 150px;
}

.booking-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.booking-group input[type="date"] {
    cursor: pointer;
}

.booking-group input[type="date"],
.booking-group select {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-family: var(--font-family);
    border: 2px solid var(--color-border);
    border-radius: 6px;
    background: var(--color-white);
    color: var(--color-text);
    cursor: pointer;
    transition: border-color var(--transition);
}

.booking-group input[type="date"]:focus,
.booking-group select:focus {
    outline: none;
    border-color: var(--color-orange);
}

.booking-separator {
    font-size: 20px;
    color: #999;
    padding-bottom: 12px;
    font-weight: 700;
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: 70px 0;
}

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

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

.section-dark h2,
.section-dark h3 {
    color: var(--color-white);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.85);
}

.section-green {
    background: var(--color-green);
    padding: 8px 0;
}

h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1.2;
}

h2 em {
    font-style: italic;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
}

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

.orange-line {
    width: 60px;
    height: 4px;
    background: var(--color-orange);
    margin-top: 15px;
}

/* ============================================
   Two Column Layout
   ============================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-col img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
}

.two-col-content h2 {
    margin-bottom: 20px;
}

.two-col-content h3 {
    margin-bottom: 15px;
    color: var(--color-orange);
}

.two-col-content p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--color-text-secondary);
}

/* ============================================
   Card Grid (How it works)
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card {
    text-align: center;
}

.card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform var(--transition);
}

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

.card p {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.4;
}

/* 3-column variant */
.card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--color-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--color-green);
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
}

/* ============================================
   Benefits / Checklist
   ============================================ */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    font-weight: 600;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: var(--color-green);
    border-radius: 50%;
}

.benefit-icon svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--color-white);
    stroke-width: 3;
}

/* White text variant */
.benefits-list-white .benefit-item {
    color: var(--color-white);
}

.benefits-list-white .benefit-icon {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.4);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    text-align: center;
    padding: 50px 0;
}

.cta-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.cta-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.cta-icon svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   Dark Pricing Section
   ============================================ */
.pricing-dark {
    background: var(--color-bg-dark);
    padding: 80px 0;
}

.pricing-dark .two-col {
    align-items: flex-start;
}

.pricing-dark h2 {
    color: var(--color-white);
    font-size: 34px;
    line-height: 1.2;
}

.pricing-dark p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-size: 16px;
}

.pricing-dark a {
    color: var(--color-orange);
}

.pricing-dark a:hover {
    text-decoration: underline;
}

/* ============================================
   Full-width Image Section with overlay
   ============================================ */
.image-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 58, 92, 0.85);
}

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

.image-section h2 {
    color: var(--color-white);
    margin-bottom: 30px;
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-category {
    margin-bottom: 40px;
}

.faq-category-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--color-green);
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-family);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--color-orange);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: var(--color-bg-light);
    border-radius: 50%;
    font-size: 18px;
    color: var(--color-primary);
    transition: all var(--transition);
}

.faq-item.active .faq-toggle {
    background: var(--color-orange);
    color: var(--color-white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 18px;
}

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

/* ============================================
   Contact Cards
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: transform var(--transition), box-shadow var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: #FFF3EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 15px;
}

.contact-card a.card-link {
    font-weight: 700;
    color: var(--color-orange);
    font-size: 15px;
}

.contact-card a.card-link:hover {
    color: var(--color-orange-hover);
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-family: var(--font-family);
    border: 2px solid var(--color-border);
    border-radius: 6px;
    background: var(--color-white);
    color: var(--color-text);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
}

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

.form-success {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* ============================================
   Stats Row
   ============================================ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--color-orange);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    color: var(--color-text-secondary);
}

/* ============================================
   Bottom USP Bar
   ============================================ */
.bottom-usp {
    background: var(--color-bg-light);
    padding: 30px 0;
    border-top: 1px solid #eee;
}

.bottom-usp .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.bottom-usp .usp-item {
    color: var(--color-text);
    font-size: 13px;
}

.bottom-usp .usp-icon {
    border-color: var(--color-green);
}

.bottom-usp .usp-icon svg {
    stroke: var(--color-green);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-white);
    padding: 40px 0 30px;
    border-top: 1px solid #eee;
}

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

.footer-logo img {
    height: 45px;
    opacity: 0.4;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.footer-select {
    padding: 8px 14px;
    font-size: 14px;
    font-family: var(--font-family);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-text);
    cursor: pointer;
    background: var(--color-white);
}

.footer-subtitle {
    font-size: 12px;
    color: #999;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.footer-links a:hover {
    color: var(--color-orange);
}

/* ============================================
   Scroll to Top
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--color-orange);
    transform: translateY(-2px);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

/* ============================================
   Map
   ============================================ */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 30px 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   Divider
   ============================================ */
.divider {
    height: 1px;
    background: #eee;
    margin: 40px 0;
}

/* ============================================
   Page-specific: Reserveren
   ============================================ */
.reservation-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.reservation-form .booking-form {
    flex-direction: column;
    gap: 20px;
}

.reservation-form .booking-row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.reservation-form .booking-group {
    flex: 1;
}

/* ============================================
   Responsive - Tablet
   ============================================ */
@media (max-width: 1024px) {
    .header-secondary {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-main .container {
        position: relative;
    }

    .usp-bar .container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .usp-item {
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .two-col {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

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

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

    .pricing-dark h2 {
        font-size: 28px;
    }

    h2 {
        font-size: 26px;
    }

    .bottom-usp .container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-middle {
        align-items: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   Responsive - Mobile
   ============================================ */
@media (max-width: 768px) {
    .hero {
        min-height: 400px;
    }

    .hero .container {
        justify-content: center;
    }

    .hero-content {
        text-align: center;
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .booking-form {
        flex-direction: column;
    }

    .booking-separator {
        display: none;
    }

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

    .card-grid-3 {
        grid-template-columns: 1fr;
    }

    .usp-bar .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .bottom-usp .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .section {
        padding: 50px 0;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    .pricing-dark {
        padding: 50px 0;
    }

    .pricing-dark h2 {
        font-size: 24px;
    }

    .reservation-form {
        padding: 25px;
    }

    .reservation-form .booking-row {
        flex-direction: column;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .btn-cta {
        padding: 10px 18px;
        font-size: 14px;
    }

    .logo img {
        height: 42px;
    }

    .section {
        padding: 35px 0;
    }
}
