/*
Theme Name: Taxi Voorne aan Zee Theme
Theme URI: https://taxivoorneaanzee.nl
Author: Taxi Voorne aan Zee
Author URI: https://taxivoorneaanzee.nl
Description: Een modern, mobielvriendelijk WordPress-theme voor Taxi Voorne aan Zee
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: taxivoorneaanzee
Domain Path: /languages
Tags: taxi, transport, onepage, modern, responsive
*/

:root {
    --color-primary: #00D180;
    --color-text: #232323;
    --color-white: #FFFFFF;
    --color-grey: #F7F9FA;
    --color-grey-dark: #E6EAEF;
    --radius: 18px;
    --shadow: 0 4px 24px rgba(0,209,128,0.08);
    --mobile-padding: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--color-grey);
    color: var(--color-text);
    min-height: 100vh;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--mobile-padding);
}

/* Navigatie */
.main-nav {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--color-white);
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,209,128,0.07);
    transition: box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem var(--mobile-padding);
    height: 80px;
}

.main-nav .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    border: none;
    outline: none;
    box-shadow: none;
    margin-right: 2.5rem;
    min-width: 170px;
}

.main-nav .logo img {
    height: 48px;
    width: auto;
    max-width: 220px;
    background: none;
    border: none;
    box-shadow: none;
    filter: none;
}

.main-nav .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav .nav-links li a {
    color: var(--color-text);
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    min-height: 44px;
}

.main-nav .nav-links li a:hover,
.main-nav .nav-links li a.active {
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    margin-left: auto;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    display: block;
    transition: transform 0.3s, opacity 0.3s;
}

/* Hero */
.hero {
    background: linear-gradient(120deg,#f8fff8 0%,#eafff3 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem var(--mobile-padding);
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 0.7rem;
    text-shadow: 0 2px 8px rgba(17,17,17,0.07);
}
.hero .slogan {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #333;
    font-weight: 500;
    margin-bottom: 2.5rem;
    letter-spacing: 0.2px;
    text-shadow: 0 1px 4px rgba(17,17,17,0.04);
}
.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(17,17,17,0.07);
    border: none;
    cursor: pointer;
    min-height: 44px;
    min-width: 44px;
}
.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}
.btn-primary:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: 0 6px 24px rgba(0,209,128,0.18);
}
.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* Secties */
section {
    padding: 5rem 0 3rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--color-white);
    border-radius: var(--radius);
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow);
}
section h2 {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 2.2rem;
    color: var(--color-text);
    text-align: center;
    text-shadow: 0 2px 8px rgba(17,17,17,0.06);
}

/* Specials grid */
.vehicles-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.vehicle {
    background: var(--color-grey);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    max-width: 320px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.vehicle:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(17,17,17,0.13);
}
.vehicle-image img {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}
.vehicle-info h3 {
    color: var(--color-text);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Team grid */
.team-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.team-member {
    background: var(--color-grey);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    max-width: 300px;
    text-align: center;
}
.member-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--color-primary);
}
.member-info h3 {
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    color: var(--color-text);
}
.position {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* About features */
.features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.feature {
    background: var(--color-grey);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.2rem 1.5rem;
    max-width: 260px;
    text-align: center;
}

/* Contact */
.contact-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-top: 2.5rem;
}
.contact-info {
    min-width: 220px;
}
.contact-info ul {
    list-style: none;
    margin-top: 1rem;
    padding-left: 0;
}
.contact-info li {
    margin-bottom: 0.7rem;
    color: var(--color-text);
}
.contact-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-grey-dark);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
    margin-bottom: 12px;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

/* Footer */
.site-footer {
    background: var(--color-white);
    color: var(--color-text);
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}
.footer-grid, .improved-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.footer-col {
    min-width: 260px;
    flex: 1 1 0;
    word-break: break-word;
}
.footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
    font-weight: 700;
}
.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-grey);
    color: var(--color-text);
    transition: background 0.2s, color 0.2s;
}

/* Media Queries */
@media (min-width: 769px) {
    .main-nav .nav-links {
        display: flex;
        gap: 2rem;
        list-style: none;
        position: static;
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        color: inherit;
    }
    .mobile-menu-toggle {
        display: none;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 0.5rem var(--mobile-padding);
        height: 70px;
    }

    .main-nav .nav-links {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        padding: 1rem var(--mobile-padding);
        box-shadow: 0 4px 12px rgba(0,209,128,0.1);
        flex-direction: column;
        gap: 0.5rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered animation voor menu items */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }

    .main-nav .nav-links li a {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--color-grey);
        transition: color 0.2s ease, border-color 0.2s ease;
    }

    .main-nav .nav-links li a:hover {
        color: var(--color-primary);
        border-bottom-color: var(--color-primary);
    }

    .main-nav .logo {
        margin-right: 0;
    }

    .main-nav .logo img {
        height: 40px;
    }

    .hero {
        padding: 4rem var(--mobile-padding);
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .footer-grid, .improved-footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-socials {
        justify-content: center;
    }

    /* Mobiele centrering voor informatieblokken */
    
    /* Voertuigen sectie */
    .vehicles-grid {
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .vehicle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 2rem auto;
        padding: 1.5rem;
    }

    .vehicle-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-bottom: 1rem;
    }

    .vehicle-image img {
        width: 100%;
        max-width: 280px;
        height: auto;
        border-radius: var(--radius);
        margin: 0 auto;
    }

    .vehicle-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .vehicle-info h3 {
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .vehicle-info p {
        text-align: center;
        margin: 0;
    }

    /* Team sectie */
    .team-grid {
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .team-member {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 2rem auto;
        padding: 1.5rem;
    }

    .member-image {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
    }

    .member-image img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 50%;
        border: 3px solid var(--color-primary);
        margin: 0 auto;
    }

    .member-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .member-info h3 {
        text-align: center;
        margin-bottom: 0.3rem;
    }

    .position {
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .member-info p {
        text-align: center;
        margin: 0;
    }

    /* Features/About sectie */
    .features {
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin-top: 2rem;
    }

    .feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 260px;
        margin: 0 auto 2rem auto;
        padding: 1.2rem 1.5rem;
    }

    .feature h3 {
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .feature p {
        text-align: center;
        margin: 0;
    }

    /* Contact sectie */
    .contact-grid {
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin-top: 2.5rem;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 2rem auto;
    }

    .contact-info ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        margin-top: 1rem;
        padding-left: 0;
    }

    .contact-info li {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 1rem;
        width: 100%;
    }

    .contact-info li svg {
        margin: 0 auto 0.5rem auto;
    }

    .contact-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        padding: 1rem;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .contact-form label {
        text-align: center;
        margin-bottom: 0.5rem;
        width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        text-align: center;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 12px auto;
    }

    /* WhatsApp knop centrering */
    .whatsapp-btn {
        margin: 2.2rem auto 0 auto;
        justify-content: center;
    }

    /* Contact icons only centrering */
    .contact-info.contact-icons-only ul {
        align-items: center;
        text-align: center;
    }

    .contact-info.contact-icons-only li {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.5rem;
    }

    .contact-info .contact-icon {
        margin: 0 auto 0.5rem auto;
    }

    .contact-value {
        text-align: center;
    }

    /* --- Google Maps Mobiele Fix --- */
    /* Zorgt dat de container de juiste ruimte inneemt */
    #map-container {
        position: relative;
        width: 100%;
        max-width: 100%;
        height: 300px;
        overflow: hidden;
        border-radius: 14px;
        margin: 0 auto;
    }

    /* Stijlt de kaart zelf en forceert de grenzen */
    #map {
        width: 100% !important;
        height: 100% !important;
        position: relative !important;
        overflow: hidden !important;
        border-radius: inherit;
    }

    .gm-style {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        border-radius: inherit;
    }

    .gm-style > div {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
        transform: none !important;
        border-radius: inherit;
    }

    .gm-style iframe,
    .gm-style img[role="presentation"] {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .gm-fullscreen-control,
    .gm-style-mtc,
    .gmnoprint {
        transform: scale(0.85);
        transform-origin: top right;
        right: 10px !important;
        top: 10px !important;
        z-index: 10;
    }

    /* Booking sectie mobiele optimalisatie */
    .booking-section {
        padding: 2rem var(--mobile-padding) !important;
    }

    .booking-section .flex-1.bg-white {
        overflow: visible !important;
        min-height: auto !important;
        padding: 1rem !important;
        margin-bottom: 1rem !important;
    }

    /* Zorg dat de map container goed wordt weergegeven */
    .booking-section .flex-1.bg-white:has(#map) {
        overflow: visible !important;
        min-height: 350px !important;
    }
}

/* Browser compatibiliteit */
@supports (-webkit-appearance:none) {
    .btn {
        -webkit-appearance: none;
    }
}

@supports (-moz-appearance:none) {
    .btn {
        -moz-appearance: none;
    }
}

/* Verbeterde touch targets voor mobiel */
@media (hover: none) {
    .btn,
    .nav-links li a,
    .footer-socials a {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Verbeterde leesbaarheid op kleine schermen */
@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 var(--mobile-padding);
    }

    section {
        padding: 3rem var(--mobile-padding);
    }
}

/* --- UITLIJNING & SPACING --- */
section, .hero {
    justify-content: center;
    flex-direction: column;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-content, .features, .vehicles-grid, .team-grid, .contact-grid {
    width: 100%;
    justify-content: center;
    align-items: center;
}
.about-content > p {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

/* --- CARDS & GRIDS --- */
.vehicle, .team-member, .feature {
    margin-bottom: 2rem;
    box-shadow: 0 4px 24px rgba(17,17,17,0.10);
    border: 1.5px solid #ececec;
    transition: box-shadow 0.2s, transform 0.2s;
}
.vehicle:hover, .team-member:hover, .feature:hover {
    box-shadow: 0 8px 32px rgba(17,17,17,0.18);
    transform: translateY(-8px) scale(1.04);
}

/* --- CONTACT ICONEN --- */
.contact-info ul {
    padding-left: 0;
}
.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.7em;
    font-size: 1.08rem;
}
.contact-info li svg {
    width: 1.2em;
    height: 1.2em;
    color: var(--color-primary);
    flex-shrink: 0;
}

/* --- KNOPPEN --- */
.btn {
    font-family: inherit;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 2px 8px rgba(17,17,17,0.10);
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}
.btn-primary:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: 0 6px 24px rgba(0,209,128,0.18);
}
.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}
.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* --- ANIMATIES --- */
@media (prefers-reduced-motion: no-preference) {
    .btn, .vehicle, .team-member, .feature {
        transition: box-shadow 0.2s, transform 0.2s, background 0.2s, color 0.2s;
    }
}

/* --- ICONEN ALGEMEEN --- */
.icon {
    display: inline-flex;
    vertical-align: middle;
    margin-right: 0.3em;
}

/* Contact icons only - update voor links uitlijnen en spacing */
.contact-info.contact-icons-only ul {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    align-items: flex-start;
    margin-top: 1.5rem;
    padding-left: 0;
}
.contact-info.contact-icons-only li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.18rem;
    color: var(--color-text);
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    text-align: left;
}
.contact-info .contact-icon {
    width: 2.2rem;
    height: 2.2rem;
    color: var(--color-primary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.2rem;
}
.contact-value {
    font-size: 1.18rem;
    color: var(--color-text);
    font-weight: 500;
    word-break: break-word;
    text-align: left;
}
.contact-value a {
    color: var(--color-text);
    text-decoration: underline;
    transition: color 0.2s;
}
.contact-value a:hover {
    color: var(--color-primary);
}

/* WhatsApp knop */
.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 2.2rem;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 1.08rem;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(17,17,17,0.10);
    transition: background 0.2s, box-shadow 0.2s;
    width: fit-content;
}
.whatsapp-btn:hover {
    background: #1ebe57;
    color: #fff;
    box-shadow: 0 4px 16px rgba(17,17,17,0.13);
}
.whatsapp-icon {
    width: 1.7rem;
    height: 1.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Kleinere formulier velden */
.contact-form input,
.contact-form textarea {
    font-size: 0.98rem;
    padding: 0.5rem 0.7rem;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-bottom: 0.2rem;
    background: #fff;
    transition: border 0.2s;
}
.contact-form input {
    height: 2.1rem;
    min-height: 2.1rem;
    max-height: 2.1rem;
}
.contact-form textarea {
    min-height: 70px;
    max-height: 180px;
    resize: vertical;
}

/* Booking sectie fallback styling */
.booking-section {
    background: #fff;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.booking-section h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
}
.booking-section .bg-gray-50 {
    background: #f7f7f7;
}
.booking-section .rounded-xl {
    border-radius: 1rem;
}
.booking-section .shadow-lg {
    box-shadow: 0 8px 32px rgba(17,17,17,0.10);
}
.booking-section .p-6 {
    padding: 1.5rem;
}
.booking-section .mb-8 {
    margin-bottom: 2rem;
}
.booking-section .grid.gap-4 > * + * {
    margin-top: 1rem;
}
.booking-section label {
    font-weight: 600;
}
.booking-section input,
.booking-section select,
.booking-section textarea {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.5rem 0.7rem;
    font-size: 1rem;
    width: 100%;
    background: #fff;
    margin-bottom: 0.2rem;
}
.booking-section input[readonly] {
    background: #f3f3f3;
    font-weight: 700;
}
.booking-section button[type="submit"] {
    background: #FFD500;
    color: #111;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 2rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.booking-section button[type="submit"]:hover {
    background: #e6c000;
}
.booking-section .text-yellow-600 {
    color: #FFD500;
}
.booking-section .text-green-600 {
    color: #16a34a;
}

/* Rit Details Modal */
.rit-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: var(--color-white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: var(--radius);
    width: 90%;
    max-width: 600px;
    box-shadow: var(--shadow);
    position: relative;
}

.modal-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.rit-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.rit-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rit-detail-item strong {
    color: var(--color-text);
    font-weight: 600;
}

.rit-detail-item span {
    color: #666;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.modal-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }

    .rit-details-grid {
        grid-template-columns: 1fr;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-buttons .btn {
        width: 100%;
    }
}

/* Verbeterde footer layout */
.footer-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3.5rem;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}
.footer-col-logo {
    flex: 1 1 260px;
    min-width: 220px;
}
.footer-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin-bottom: 1.2rem;
    display: block;
}
.footer-col {
    flex: 1 1 180px;
    min-width: 180px;
    margin-bottom: 1.5rem;
}
.footer-links li a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links li a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}
.footer-link-voorwaarden {
    color: var(--color-primary);
    text-decoration: underline;
    font-size: 0.98rem;
    margin-top: 0.5rem;
    display: inline-block;
    transition: color 0.2s;
}
.footer-link-voorwaarden:hover {
    color: #00B86B;
}
.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 1.5rem;
    border-top: 1px solid var(--color-grey-dark);
    padding-top: 1rem;
}
@media (max-width: 900px) {
    .improved-footer-grid {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }
    .footer-col, .footer-col-logo {
        min-width: 0;
        width: 100%;
    }
    .footer-logo {
        margin-left: 0;
        margin-right: 0;
    }
}

.footer-logo-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
}
.footer-logo-centered {
    max-width: 220px;
    width: 100%;
    height: auto;
    margin-bottom: 1.1rem;
    display: block;
}
.footer-socials-centered {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}
.footer-socials-centered a {
    color: var(--color-primary);
    font-size: 1.7rem;
    transition: color 0.2s;
}
.footer-socials-centered a:hover {
    color: #232323;
}
.footer-links li {
    margin-bottom: 0.7rem;
}
.footer-links li a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    padding: 2px 0;
    display: inline-block;
    transition: color 0.2s;
}
.footer-links li a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.footer-contact li {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text);
}

.footer-contact li i {
    margin-right: 0.5rem;
    color: var(--color-primary);
    width: 1rem;
    text-align: center;
}

.footer-opening li {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-text);
}
@media (max-width: 900px) {
    .footer-logo-socials {
        margin-bottom: 1.5rem;
    }
}

.footer-row-logo-links {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 2.5rem;
}
.footer-logo-col-small {
    flex: 0 0 90px;
    min-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.footer-logo-small {
    max-width: 160px;
    width: 100%;
    height: auto;
    margin-bottom: 0.7rem;
    display: block;
}
.footer-socials-left {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.footer-socials-left a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: #00D180;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}
.footer-socials-left a:hover {
    background: #009e60;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 209, 128, 0.3);
}
.improved-footer-grid {
    flex: 1 1 0%;
    display: flex;
    flex-direction: row;
    gap: 4rem;
    justify-content: flex-start;
}
@media (max-width: 900px) {
    .footer-row-logo-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .footer-logo-col-small {
        align-items: center;
        margin-bottom: 1.2rem;
    }
    .improved-footer-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        width: 100%;
    }
    .footer-col {
        width: 100%;
        min-width: 0;
        text-align: center;
    }
    .footer-socials-left {
        justify-content: center;
    }
}

.whatsapp-btn-custom {
    background: #25D366 !important;
    color: #fff !important;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 1.1rem 1.5rem !important;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(37,211,102,0.10);
    transition: background 0.2s, box-shadow 0.2s;
}
.whatsapp-btn-custom:hover {
    background: #1ebe57 !important;
    color: #fff !important;
    box-shadow: 0 6px 24px rgba(37,211,102,0.18);
}
.whatsapp-icon-large {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.3rem;
}

/* Fallback voor desktop, mochten de Tailwind klassen niet laden */
#map-container {
    min-height: 480px;
}
#map {
    height: 420px;
    width: 100%;
    max-width: 520px;
    border-radius: 18px;
}
.map-loading-overlay {
    display: none;
}

/* Desktop styling voor contacticoontjes */
@media screen and (min-width: 769px) {
    .contact-icons-wrapper {
        display: flex;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
        gap: 16px;
        max-width: 300px !important; /* Maak container smaller op desktop */
        margin: 0 auto;
    }

    .contact-icons-wrapper .icon-block {
        flex: none; /* Geen flex-grow op desktop */
        width: 60px; /* Vaste breedte voor iconen */
        height: 60px; /* Vaste hoogte voor iconen */
    }
    
    .contact-icons-wrapper .contact-btn {
        width: 60px !important;
        height: 60px !important;
        padding: 16px !important;
        border-radius: 50% !important;
    }
    
    .contact-icons-wrapper .contact-btn svg {
        width: 28px !important;
        height: 28px !important;
    }
}

/* Mobiele styling voor contacticoontjes */
@media screen and (max-width: 768px) {
    .contact-icons-wrapper {
        display: flex;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }

    .contact-icons-wrapper .icon-block {
        flex: 1;
        text-align: center;
    }
} 

/* 1) Nieuwe widget: #results (afstand/tijd/prijs) → verberg 3e/laatste regel (prijs) */
#results .mb-2:last-child { display: none !important; }

/* 2) Nieuwe compacte samenvatting (template-parts/booking/price-summary.php) */
#tvz-price-summary .tvz-sum-row:last-child { display: none !important; }

/* 3) Oude samenvatting (page-booking.php) */
#tvz-summary div:last-child { display: none !important; }

/* 4) Losse prijs-elementen die JS invult (failsafe) */
#tvz-sum-price,
[data-price-display],
#totalPrice { display: none !important; }
