:root {
    --brand-yellow: #ffa200;
    --brand-dark: #1a1a1a;
    --brand-grey: #f8f9fa;
    --text-main: #2d3436;
    --google-blue: #4285F4;
    --brand-orange: #ff9800;
}

/* 🌟 BIJGEWERKTE EN GECORRIGEERDE H2 TITELS */
h2 {
    font-size: 2rem;
    color: var(--brand-dark);
    margin-top: 15px;
    /* 🔥 Sterk verlaagd om loze browser-witruimte te elimineren */
    margin-bottom: 25px;
    text-decoration: underline;
    text-decoration-color: var(--brand-yellow);
    text-decoration-thickness: 5px;
    text-underline-offset: 12px;
}

/* RESET */
* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    color: var(--text-main);
    line-height: 1.6;
    background-color: #fff;
}


section,
.about-section,
.comparison-vs-section,
.reviews-section,
.booking-section {
    padding-top: 50px !important;
    /* 🔥 Halveert de witruimte aan de bovenkant van elke pagina/sectie */
    padding-bottom: 50px !important;
}

/* ---------------- HERO ---------------- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin: 0;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    margin: 15px 0 30px;
    opacity: 0.9;
}

/* Buttons */
.main-btn {
    background: var(--brand-yellow);
    color: var(--brand-dark);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    display: inline-block;
    transition: 0.3s;
}

.main-btn:hover {
    transform: scale(1.05);
    background: #fff;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.secondary-btn {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
}

.secondary-btn:hover {
    background: #fff;
    color: #000;
}

/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--brand-yellow);
    color: var(--brand-dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: 0.3s;
}

.floating-call:hover {
    transform: scale(1.1);
    background: #fff;
}

/* ---------------- STATS ---------------- */
.stats-section {
    background: var(--brand-dark);
    color: white;
    padding: 60px 10% !important;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--brand-yellow);
}

.symbol {
    font-size: 2rem;
    color: var(--brand-yellow);
}

.stat-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-top: 10px;
    opacity: 0.8;
}

/* ---------------- Split-Screen VS Section ---------------- */
.vs-header {
    text-align: center;
    margin-bottom: 35px;
}

.vs-header h2 {
    margin-bottom: 10px;
}

/* DESKTOP VS CONTAINER */
.vs-container {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.vs-side {
    flex: 1;
    padding: 50px 50px;
}

.vs-others {
    background-color: #f8f9fa;
}

.vs-bready {
    background-color: var(--brand-dark);
    color: #fff;
}

/* TITLES */
.side-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vs-others .side-title {
    color: #888;
}

.vs-bready .side-title {
    color: var(--brand-yellow);
}

/* LIST */
.vs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vs-list li {
    padding: 18px 0;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.vs-bready .vs-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vs-list li i {
    margin-right: 15px;
    font-size: 1.2rem;
}

.vs-others li i {
    color: #ff4d4d;
}

.vs-bready li i {
    color: var(--brand-yellow);
}

/* DIVIDER */
.vs-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--brand-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--brand-dark);
    box-shadow: 0 0 0 8px #fff;
    z-index: 10;
}

/* ---------------- Reviews Section ---------------- */
.reviews-section {
    text-align: center;
}

.google-rating .stars {
    color: #fbbc05;
    font-size: 1.5rem;
}

.reviews-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid #f0f0f0;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.user-info img {
    width: 50px;
    border-radius: 50%;
}

.google-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--google-blue);
    font-size: 1.3rem;
}


/* ---------------- Over Ons (Asymmetrical Bento Dashboard Grid) ---------------- */
.about-bento-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
    max-width: 1140px;
    margin: 0 auto;
}

.bento-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.bento-text-main {
    grid-column: span 7;
    text-align: left;
}

.bento-text-main .about-header h2 {
    font-size: 2.3rem;
    color: var(--brand-dark, #111);
    margin-bottom: 25px;
    display: inline-block;
    text-decoration-line: underline;
    text-decoration-color: orange;
    text-decoration-thickness: 5px;
    text-underline-offset: 8px;
}

.bento-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-dark, #222);
    line-height: 1.6;
    margin-bottom: 20px;
}

.bento-text-main p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #444;
}

.bento-gallery-grid {
    grid-column: span 5;
    padding: 20px;
    background: #fff;
    display: flex;
    align-items: center;
}

.clean-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    height: 100%;
}

.grid-photo {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.grid-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-photo:hover img {
    transform: scale(1.04);
}

.img-1 {
    grid-row: span 2;
    height: 320px;
}

.img-2,
.img-3 {
    height: 152px;
}

.bento-stats-deck {
    grid-column: span 12;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 30px;
}

.bento-stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    border-right: 1px solid #eee;
}

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

.stat-icon {
    font-size: 1.8rem;
    color: var(--brand-yellow, #f5b041);
    background: var(--brand-dark, #111);
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-data {
    text-align: left;
}

.stat-data h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-dark, #111);
}

.stat-data p {
    margin: 2px 0 0 0;
    font-size: 0.9rem;
    color: #666;
}


/* ---------------- CTA BANNER ---------------- */
.cta-banner {
    background: linear-gradient(135deg, #ff9800 0%, #e65100 100%);
    padding: 50px 5% !important;
    text-align: center;
    color: white;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cta-banner h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-btn {
    background: var(--brand-dark);
    color: var(--brand-yellow);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    display: inline-block;
    transition: 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
    background: #000;
    color: #fff;
}

/* ---------------- ANIMATIONS ---------------- */
.hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s;
}

.show {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================================
   CUSTOM HERO BACKGROUNDS FOR SEO PAGES
   ========================================================================== */
body.luchthaven-page .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/airport-service.jpg');
    background-size: cover;
    background-position: center;
}

/* Unique Hero Background for the Festival Page */
body.festival-page .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('/images/festival-service.jpg');
    background-size: cover;
    background-position: center;
}

body.dilbeek-page .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/map_2.png');
    background-size: cover;
    background-position: center;
}

body.internationaal-page .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/international-trip.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

body.zakelijk-page .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/business-trip.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

body.vakantie-page .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/city-trip.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* --- Google-Stijl Review Button --- */
.review-footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    color: #1f1f1f;
    /* Google Material Dark Grey Text */
    font-family: 'Google Sans', Roboto, Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: none;
    padding: 0 16px 0 0;
    /* Ruimte aan de rechterkant */
    border: 1px solid #dadce0;
    /* Google lichte border */
    border-radius: 4px;
    /* Google's standaard subtiele afronding */
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.08), 0 1px 2px rgba(60, 64, 67, 0.16);
    height: 40px;
    transition: background-color 0.2s, box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    cursor: pointer;
}

.google-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 100%;
    padding-left: 4px;
}

.google-review-btn .btn-text {
    padding-left: 8px;
    font-weight: 600;
}

/* Hover- en Active-effecten conform Google Material richtlijnen */
.google-review-btn:hover {
    background-color: #f8f9fa;
    border-color: #d2d4d7;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.12), 0 4px 8px rgba(60, 64, 67, 0.14);
    transform: translateY(-1px);
}

.google-review-btn:active {
    background-color: #f1f3f4;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
    transform: translateY(0);
}

/* Mobiele optimalisatie zodat de knop nooit buiten het scherm valt */
@media (max-width: 480px) {
    .google-review-btn {
        width: 100%;
        max-width: 290px;
        font-size: 0.88rem;
        justify-content: center;
    }
}

/* ---------------- RESPONSIVE MEDIA QUERIES ---------------- */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 850px) {
    .comparison-vs-section {
        padding: 40px 5% !important;
    }

    .vs-container {
        flex-direction: column;
        box-shadow: none;
        background: transparent;
        gap: 20px;
    }

    .vs-divider {
        display: none;
    }

    .vs-side {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .vs-bready {
        order: 1;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .vs-others {
        order: 2;
        opacity: 0.7;
        border: 1px dashed #ccc;
        background: #fafafa;
    }

    .side-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .vs-list li {
        font-size: 0.95rem;
        padding: 12px 0;
    }
}

@media (max-width: 991px) {
    .about-bento-container {
        gap: 20px;
    }

    .bento-text-main,
    .bento-gallery-grid {
        grid-column: span 12;
    }

    .clean-grid-wrapper {
        height: auto;
    }

    .img-1 {
        height: 280px;
    }

    .img-2,
    .img-3 {
        height: 132px;
    }
}

/* 📱 RESPONSIVE SYSTEM SCHERMEN (MOBIELE ENGINE) */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 80vh;
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        margin: 10px 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .main-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .cta-banner h2 {
        font-size: 1.8rem;
    }

    /* 🔥 FORCEERT DE STATISTIEKEN/BADGES OP ÉÉN HORIZONTALE LIJN (ZOWEL VOOR INDEX ALS BENTO) */
    .stats-section {
        padding: 30px 10px !important;
    }

    .stats-grid,
    .bento-stats-deck {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px !important;
        padding: 20px 10px !important;
    }

    .stat-item,
    .bento-stat-card {
        display: flex !important;
        flex-direction: column !important;
        /* Icon/Logo boven */
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 5px 0 !important;
    }

    .bento-stat-card {
        border-right: 1px solid #eee !important;
    }

    .stat-item:last-child,
    .bento-stat-card:last-child {
        border-right: none !important;
    }

    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
        margin-bottom: 10px !important;
    }

    .stat-number {
        font-size: 1.6rem !important;
    }

    .symbol {
        font-size: 1rem !important;
    }

    .stat-data,
    .stat-label {
        text-align: center !important;
    }

    .stat-data h3 {
        font-size: 1rem !important;
    }

    .stat-label,
    .stat-data p {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
        margin-top: 5px !important;
    }
}

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

    .hero p {
        font-size: 0.95rem;
    }

    .side-title {
        font-size: 1.1rem;
    }

    .vs-list li {
        font-size: 0.9rem;
    }

    .bento-box {
        padding: 20px;
    }

    .bento-text-main .about-header h2 {
        font-size: 1.9rem;
    }

    .img-1 {
        height: 200px;
    }

    .img-2,
    .img-3 {
        height: 92px;
    }

    .stat-number {
        font-size: 1.3rem !important;
    }

    .stat-data h3 {
        font-size: 0.85rem !important;
    }

    .stat-data p,
    .stat-label {
        font-size: 0.65rem !important;
    }
}