/*
Theme Name: ESR Theme
Theme URI: https://www.esronline.nl
Description: Custom theme for Electronica Service Repair
Author: ESR
Version: 1.0
Text Domain: esr-theme
*/

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Futura', 'Century Gothic', 'AppleGothic', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

/* === SVG ICON BASE === */
.esr-icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    display: inline-block;
    fill: currentColor;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* === TOP NAVBAR === */
.site-header {
    background: #1b3a2d;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
}

.site-logo {
    padding: 8px 0;
    margin-left: -10px;
}

.site-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0;
}

.main-nav ul li a {
    display: block;
    padding: 18px 16px;
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s, color 0.3s;
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a {
    background: #2d6a4f;
    color: #fff;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #1b3a2d;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, rgba(27,58,45,0.75), rgba(45,106,79,0.5));
}

.hero-overlay .btn-storing {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #1b3a2d;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.hero-overlay .btn-storing:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.4);
    background: #d4edda;
}

.btn-storing .gear-icon {
    font-size: 1.5rem;
}

/* === THREE CARDS (TV / AUDIO / HUIS) === */
.services-cards {
    padding: 60px 0;
    background: #f8f9fa;
}

.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    width: auto;
    background: #f0f7f3;
    border: 2px solid #d6d6d6;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #8fbc8f;
}

.service-card:hover {
    transform: translateY(-8px);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: #8fbc8f;
    background: #f0f7f3;
}

.service-card .card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2d6a4f;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1b3a2d;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* === ABOUT / DESCRIPTION TEXT === */
.about-section {
    padding: 60px 0;
}

.about-wrapper {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-style: italic;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.about-image {
    flex: 1;
    max-width: 480px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.about-image-placeholder {
    width: 100%;
    min-height: 300px;
    background: #e9ecef;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-style: italic;
    border: 2px dashed #ccc;
}

@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
    }

    .about-image {
        max-width: 100%;
    }
}

/* === STATS INFOGRAPHIC === */
.stats-section {
    background: transparent;
    padding: 60px 20px;
}

.stats-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1060px;
    margin: 0 auto;
    background: #d4edda;
    border-radius: 18px;
    padding: 44px 50px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1b3a2d;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: #1b3a2d;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.stat-item .stat-icon {
    font-size: 2.6rem;
    margin-bottom: 10px;
    color: #1b3a2d;
    opacity: 0.8;
}

/* === BRAND LOGOS === */
.brands-section {
    padding: 50px 0;
    background: #f8f9fa;
}

.brands-section h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #1b3a2d;
    margin-bottom: 40px;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.brands-grid img {
    max-height: 40px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s, opacity 0.3s;
}

.brands-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* === PARTNER SECTION === */
.partner-section {
    padding: 60px 0;
    text-align: center;
}

.partner-section .partner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-section img {
    max-width: 250px;
    border-radius: 10px;
}

.partner-section .partner-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.partner-section h3 {
    font-size: 1.4rem;
    color: #1b3a2d;
    margin: 0;
}

.partner-gxo-logo {
    max-width: 180px !important;
    max-height: 80px;
    width: auto;
    border-radius: 0 !important;
    object-fit: contain;
}

/* === FOOTER === */
.site-footer {
    background: #1b3a2d;
    color: #ccc;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #8fbc8f;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p,
.footer-col a {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col a:hover {
    color: #8fbc8f;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-nav ul li a {
    display: block;
    padding: 8px 16px;
    color: #aaa;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
    color: #8fbc8f;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.8rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        flex-basis: 100%;
    }

    .main-nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1b3a2d;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .main-nav ul.active {
        max-height: 500px;
    }

    .main-nav ul li a {
        padding: 15px 20px;
        border-bottom: 1px solid #2d5a45;
    }

    .hero-section {
        height: 350px;
    }

    .hero-overlay .btn-storing {
        font-size: 1rem;
        padding: 14px 28px;
    }

    .cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 12px;
    }

    .service-card {
        width: auto;
        padding: 18px 10px;
    }

    .service-card .card-icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .service-card h3 {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .footer-content {
        flex-direction: column;
    }

    .partner-section .partner-content {
        flex-direction: column;
    }

    .stats-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 28px 24px;
    }

    .stat-item {
        min-width: unset;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-item .stat-icon {
        font-size: 2rem;
    }
}

/* ============================================
   HET BEDRIJF PAGE
   ============================================ */

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Page Hero */
.bedrijf-hero {
    position: relative;
    height: 350px;
    background: linear-gradient(135deg, #1b3a2d 0%, #2d6a4f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bedrijf-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

.bedrijf-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

.bedrijf-hero-overlay {
    text-align: center;
    z-index: 1;
}

.bedrijf-hero .breadcrumb {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 10px;
    color: #fff;
}

.bedrijf-hero .breadcrumb a {
    color: #d4edda;
    text-decoration: none;
}

.bedrijf-hero .breadcrumb a:hover {
    text-decoration: underline;
}

.bedrijf-hero h1 {
    font-size: 3rem;
    color: #fff;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.bedrijf-hero p {
    color: #8fbc8f;
    font-size: 1.15rem;
    font-weight: 400;
}

/* Content blocks - alternating layout */
.bedrijf-block {
    padding: 80px 0;
}

.bedrijf-block:nth-child(even) {
    background: #f8f9fa;
}

.bedrijf-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

.bedrijf-block.reverse .bedrijf-row {
    flex-direction: row-reverse;
}

.bedrijf-text {
    flex: 1;
}

.bedrijf-label {
    display: inline-block;
    background: #d4edda;
    color: #1b3a2d;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.bedrijf-text h2 {
    font-size: 2rem;
    color: #1b3a2d;
    margin-bottom: 20px;
    font-weight: 700;
}

.bedrijf-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.bedrijf-btn {
    display: inline-block;
    background: #2d6a4f;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 10px;
    transition: background 0.3s, transform 0.3s;
}

.bedrijf-btn:hover {
    background: #1b3a2d;
    transform: translateY(-2px);
}

.bedrijf-btn-light {
    background: #fff;
    color: #1b3a2d;
    border: 2px solid #fff;
}

.bedrijf-btn-light:hover {
    background: transparent;
    color: #fff;
}

/* Image blocks */
.bedrijf-img {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.bedrijf-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.bedrijf-img:hover img {
    transform: scale(1.02);
}

.bedrijf-img .img-placeholder {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 320px;
    background: #e9ecef;
    border-radius: 16px;
    border: 3px dashed #ccc;
    font-size: 1.1rem;
    color: #999;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bedrijf-img.placeholder-active img {
    display: none;
}

.bedrijf-img.placeholder-active .img-placeholder {
    display: flex;
}



.strip-track {
    display: flex;
    gap: 20px;
    padding: 0 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: #2d6a4f #1b3a2d;
}

.strip-track::-webkit-scrollbar {
    height: 6px;
}

.strip-track::-webkit-scrollbar-track {
    background: #1b3a2d;
}

.strip-track::-webkit-scrollbar-thumb {
    background: #2d6a4f;
    border-radius: 3px;
}

.strip-item {
    flex-shrink: 0;
    width: 320px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.strip-item:hover {
    transform: scale(1.05);
}

.strip-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Highlight banner */
.bedrijf-highlight {
    padding: 50px 0;
    background: #d4edda;
}

.highlight-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-icon {
    font-size: 3rem;
    color: #2d6a4f;
    flex-shrink: 0;
}

.highlight-inner p {
    font-size: 1.15rem;
    color: #1b3a2d;
    line-height: 1.7;
    font-weight: 500;
}

/* Service feature tags */
.service-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #d4edda;
    color: #1b3a2d;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
}

.feature-tag:hover {
    background: #2d6a4f;
    color: #fff;
    transform: translateY(-3px);
}

.feature-tag span {
    font-size: 1.2rem;
}

/* Photo Gallery */
.bedrijf-gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.bedrijf-gallery h2 {
    text-align: center;
    font-size: 2rem;
    color: #1b3a2d;
    margin-bottom: 40px;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

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

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

/* CTA section */
.bedrijf-cta {
    padding: 80px 0;
    background: #1b3a2d;
    text-align: center;
}

.bedrijf-cta h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.bedrijf-cta p {
    color: #8fbc8f;
    font-size: 1.15rem;
    margin-bottom: 30px;
}

/* Het Bedrijf responsive */
@media (max-width: 768px) {
    .bedrijf-hero h1 {
        font-size: 2rem;
    }

    .bedrijf-row {
        flex-direction: column !important;
        gap: 30px;
    }

    .bedrijf-img {
        max-width: 100%;
    }

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

    .highlight-inner {
        flex-direction: column;
        text-align: center;
    }

    .strip-item {
        width: 260px;
    }
}

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

/* ============================================
   TARIEVEN PAGE
   ============================================ */

.tarieven-hero {
    background: linear-gradient(135deg, #1b3a2d 0%, #2d6a4f 100%);
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
}

.tarieven-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.tarieven-hero .breadcrumb {
    font-size: 0.95rem;
    opacity: 0.8;
}

.tarieven-hero .breadcrumb a {
    color: #d4edda;
    text-decoration: none;
}

.tarieven-hero .breadcrumb a:hover {
    text-decoration: underline;
}

.tarieven-intro {
    max-width: 800px;
    margin: 60px auto 10px;
    padding: 0 20px;
    text-align: center;
}

.tarieven-intro p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
}

.tarieven-section {
    padding: 60px 0 80px;
}

.tarieven-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.tarieven-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 60px;
    padding: 0 60px;
}

.tarieven-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarieven-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.tarieven-card-header {
    background: #1b3a2d;
    color: #fff;
    padding: 24px 28px;
}

.tarieven-card-header h2 {
    font-size: 1.35rem;
    margin: 0;
}

.tarieven-card-body {
    padding: 28px;
}

.tarieven-card-intro {
    padding: 20px 28px 0;
}

.tarieven-card-intro p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.tarieven-table {
    width: calc(100% - 56px);
    margin: 0 28px;
    border-collapse: collapse;
}

.tarieven-table tr {
    border-bottom: 1px solid #e8e8e8;
}

.tarieven-table tr:last-child {
    border-bottom: none;
}

.tarieven-table td {
    padding: 14px 0;
    font-size: 0.95rem;
    color: #333;
}

.tarieven-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #1b3a2d;
    white-space: nowrap;
}

.tarieven-card-note {
    margin: 18px 28px 28px;
    padding: 14px 16px;
    background: #f0f7f3;
    border-left: 3px solid #2d6a4f;
    border-radius: 0 6px 6px 0;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
}

.tarieven-card-highlight {
    margin: 18px 28px 28px;
    padding: 16px;
    background: #d4edda;
    border-radius: 8px;
    text-align: center;
}

.tarieven-card-highlight .highlight-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1b3a2d;
    display: block;
    margin-bottom: 4px;
}

.tarieven-card-highlight .highlight-label {
    font-size: 0.9rem;
    color: #2d6a4f;
}

.tarieven-cta {
    background: #f0f7f3;
    padding: 60px 20px;
    text-align: center;
}

.tarieven-cta h2 {
    font-size: 1.8rem;
    color: #1b3a2d;
    margin-bottom: 12px;
}

.tarieven-cta p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tarieven-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #2d6a4f;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.tarieven-btn:hover {
    background: #1b3a2d;
    transform: translateY(-2px);
}

/* Tarieven responsive */
@media (max-width: 768px) {
    .tarieven-hero {
        padding: 80px 0 40px;
    }

    .tarieven-hero h1 {
        font-size: 2rem;
    }

    .tarieven-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tarieven-cta h2 {
        font-size: 1.4rem;
    }
}

/* ============================================
   AUTORISATIE PAGE
   ============================================ */

.autorisatie-hero {
    background: linear-gradient(135deg, #1b3a2d 0%, #2d6a4f 100%);
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
}

.autorisatie-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.autorisatie-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
}

.autorisatie-hero .breadcrumb {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.autorisatie-hero .breadcrumb a {
    color: #d4edda;
    text-decoration: none;
}

.autorisatie-hero .breadcrumb a:hover {
    text-decoration: underline;
}

/* Intro section */
.autorisatie-intro {
    padding: 70px 0 50px;
}

.autorisatie-content {
    max-width: 900px;
    margin: 0 auto;
}

.autorisatie-content h2 {
    font-size: 2rem;
    color: #1b3a2d;
    margin-bottom: 20px;
}

.autorisatie-content > p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Feature checkmarks */
.autorisatie-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.autorisatie-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #f0f7f3;
    padding: 24px 28px;
    border-radius: 10px;
    border-left: 4px solid #2d6a4f;
}

.autorisatie-feature .feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #2d6a4f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 2px;
}

.autorisatie-feature h3 {
    font-size: 1.1rem;
    color: #1b3a2d;
    margin: 0 0 6px;
}

.autorisatie-feature p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Brands section (reuses .brands-grid from homepage) */
.autorisatie-brands {
    background: #f8f9fa;
    padding: 70px 0;
    text-align: center;
}

.autorisatie-brands h2 {
    font-size: 2rem;
    color: #1b3a2d;
    margin-bottom: 40px;
}

/* GXO Partner */
.autorisatie-gxo {
    padding: 70px 0;
    background: #fff;
}

.autorisatie-gxo-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
    background: #f0f7f3;
    border-left: 4px solid #2d6a4f;
    border-radius: 10px;
    padding: 40px 40px;
    flex-wrap: wrap;
}

.autorisatie-gxo-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.autorisatie-gxo-logo img {
    width: 160px;
    max-height: 100px;
    object-fit: contain;
}

.autorisatie-gxo-text {
    flex: 1;
    min-width: 260px;
}

.autorisatie-gxo-text h2 {
    font-size: 1.6rem;
    color: #1b3a2d;
    margin-bottom: 16px;
}

.autorisatie-gxo-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.autorisatie-gxo-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .autorisatie-gxo-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }

    .autorisatie-gxo-logo img {
        width: 120px;
    }

    .autorisatie-gxo-text h2 {
        font-size: 1.3rem;
    }
}

/* CTA */
.autorisatie-cta {
    background: #1b3a2d;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.autorisatie-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.autorisatie-cta p {
    font-size: 1.05rem;
    opacity: 0.85;
    margin-bottom: 28px;
}

.autorisatie-btn {
    display: inline-block;
    padding: 14px 36px;
    background: #2d6a4f;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease, transform 0.2s ease;
}

.autorisatie-btn:hover {
    background: #8fbc8f;
    color: #1b3a2d;
    transform: translateY(-2px);
}

/* Autorisatie responsive */
@media (max-width: 768px) {
    .autorisatie-hero {
        padding: 80px 0 40px;
    }

    .autorisatie-hero h1 {
        font-size: 2rem;
    }

    .autorisatie-content h2 {
        font-size: 1.5rem;
    }

    .autorisatie-cta h2 {
        font-size: 1.4rem;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-hero {
    background: linear-gradient(135deg, #1b3a2d 0%, #2d6a4f 100%);
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.contact-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
}

.contact-hero .breadcrumb {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.contact-hero .breadcrumb a {
    color: #d4edda;
    text-decoration: none;
}

.contact-hero .breadcrumb a:hover {
    text-decoration: underline;
}

/* Main content grid */
.contact-main {
    padding: 70px 0 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-intro p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Contact cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: #f0f7f3;
    border-radius: 10px;
    border-left: 4px solid #2d6a4f;
}

.contact-card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #2d6a4f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.contact-card-body h3 {
    font-size: 1rem;
    color: #1b3a2d;
    margin: 0 0 6px;
}

.contact-card-body p {
    font-size: 0.93rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.contact-card-body a {
    color: #2d6a4f;
    text-decoration: none;
}

.contact-card-body a:hover {
    text-decoration: underline;
}

/* Opening hours */
.contact-hours {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 24px 28px;
}

.contact-hours h3 {
    font-size: 1.15rem;
    color: #1b3a2d;
    margin: 0 0 16px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
}

.hours-table td {
    padding: 10px 0;
    font-size: 0.93rem;
    color: #444;
    border-bottom: 1px solid #eee;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 600;
    color: #1b3a2d;
}

.closed-row td {
    color: #999 !important;
}

/* Contact form wrapper */
.contact-form-wrapper {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    color: #1b3a2d;
    margin: 0 0 24px;
}

/* CF7 form styling */
.contact-form-wrapper .wpcf7-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

.contact-form-wrapper .wpcf7-form input[type="text"],
.contact-form-wrapper .wpcf7-form input[type="email"],
.contact-form-wrapper .wpcf7-form input[type="tel"],
.contact-form-wrapper .wpcf7-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    margin-top: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.contact-form-wrapper .wpcf7-form input[type="text"]:focus,
.contact-form-wrapper .wpcf7-form input[type="email"]:focus,
.contact-form-wrapper .wpcf7-form input[type="tel"]:focus,
.contact-form-wrapper .wpcf7-form textarea:focus {
    border-color: #2d6a4f;
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
    outline: none;
}

.contact-form-wrapper .wpcf7-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form-wrapper .wpcf7-form input[type="submit"] {
    display: inline-block;
    padding: 14px 36px;
    background: #2d6a4f;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 8px;
}

.contact-form-wrapper .wpcf7-form input[type="submit"]:hover {
    background: #1b3a2d;
    transform: translateY(-2px);
}

/* CF7 response messages */
.contact-form-wrapper .wpcf7-response-output {
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 0.9rem;
    margin-top: 16px;
}

.contact-form-wrapper .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.82rem;
    margin-top: 4px;
}

/* Google Maps */
.contact-map {
    padding: 0 0 0;
}

.map-title {
    text-align: center;
    font-size: 1.8rem;
    color: #1b3a2d;
    padding: 40px 0 24px;
    margin: 0;
}

.map-wrapper {
    width: 100%;
    line-height: 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* Contact responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 40px;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

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

    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}

/* ============================================
   STORING MELDEN PAGE
   ============================================ */

.storing-hero {
    background: linear-gradient(135deg, #1b3a2d 0%, #2d6a4f 100%);
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
}

.storing-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

.storing-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
}

.storing-hero .breadcrumb {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.storing-hero .breadcrumb a {
    color: #d4edda;
    text-decoration: none;
}

.storing-form-section {
    padding: 50px 0 80px;
    background: #f8f9fa;
}

.storing-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    padding: 40px 50px 50px;
}

/* Progress bar */
.progress-bar-wrapper {
    margin-bottom: 40px;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: #2d6a4f;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.2);
}

.progress-step.completed .step-number {
    background: #1b3a2d;
    color: #fff;
}

.step-label {
    font-size: 0.75rem;
    color: #999;
    margin-top: 6px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: #1b3a2d;
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    margin: 0 8px;
    border-radius: 2px;
    position: relative;
    min-width: 40px;
    max-width: 80px;
    margin-bottom: 20px;
}

.progress-line-fill {
    height: 100%;
    background: #2d6a4f;
    border-radius: 2px;
    width: 0%;
    transition: width 0.4s ease;
}

/* Form steps */
.form-step {
    display: none;
    animation: fadeInStep 0.3s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h2 {
    font-size: 1.5rem;
    color: #1b3a2d;
    margin: 0 0 8px;
}

.step-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Device type grid (Step 3) */
.device-grid {
    display: block;
}

/* CF7 wrappers: transparent containers */
.device-grid .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

/* CF7 radio span becomes the actual 4-column grid */
.device-grid .wpcf7-radio {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    width: 100%;
}

.storing-form-container .wpcf7-radio .wpcf7-list-item {
    margin: 0;
}

.storing-form-container .wpcf7-radio .wpcf7-list-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.storing-form-container .wpcf7-radio .wpcf7-list-item label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 12px 16px;
    border: 2px solid #d6d6d6;
    border-radius: 14px;
    background: #f0f7f3;
    transition: all 0.25s ease;
    text-align: center;
    min-height: 100px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.88rem;
    color: #333;
    margin-bottom: 0;
    gap: 0;
}

/* Device icons injected by JS */
.storing-form-container .wpcf7-radio .wpcf7-list-item .device-icon,
.device-grid .device-icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 8px;
    line-height: 1;
    color: #2d6a4f;
}

.storing-form-container .wpcf7-radio .wpcf7-list-item .device-icon .esr-icon,
.device-grid .device-icon .esr-icon {
    width: 2rem;
    height: 2rem;
}

.storing-form-container .wpcf7-radio .wpcf7-list-item label:hover {
    border-color: #8fbc8f;
    background: #e8f5e9;
    transform: translateY(-2px);
}

.storing-form-container .wpcf7-radio .wpcf7-list-item label:has(input:checked) {
    border-color: #2d6a4f;
    background: #d4edda;
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

.device-option {
    cursor: pointer;
}

.device-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.device-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 12px;
    border: 2px solid #d6d6d6;
    border-radius: 14px;
    background: #f0f7f3;
    transition: all 0.25s ease;
    text-align: center;
    min-height: 90px;
}

.device-block:hover {
    border-color: #8fbc8f;
    background: #f0f7f3;
    transform: translateY(-2px);
}

.device-option input:checked + .device-block {
    border-color: #2d6a4f;
    background: #d4edda;
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.15);
}

.device-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    line-height: 1;
}

.device-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}

.step-error {
    display: none;
    color: #dc3545;
    font-size: 0.88rem;
    margin-top: 14px;
    text-align: center;
}

/* Form fields */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 4px;
}

.form-group-wide {
    flex: 2;
}

.form-group-narrow {
    flex: 1;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.required {
    color: #dc3545;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2d6a4f;
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.field-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12) !important;
}

/* Navigation buttons */
.form-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.btn-step {
    padding: 13px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-prev {
    background: #e8e8e8;
    color: #555;
}

.btn-prev:hover {
    background: #d0d0d0;
}

.btn-next {
    background: #2d6a4f;
    color: #fff;
    margin-left: auto;
}

.btn-next:hover {
    background: #1b3a2d;
    transform: translateY(-1px);
}

.btn-submit {
    background: #1b3a2d;
    color: #fff;
    margin-left: auto;
}

.btn-submit:hover {
    background: #2d6a4f;
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Success message */
.storing-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: #2d6a4f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.storing-success h2 {
    font-size: 1.6rem;
    color: #1b3a2d;
    margin-bottom: 10px;
}

.storing-success p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.storing-success .btn-next {
    display: inline-block;
    text-decoration: none;
}

/* Storing melden responsive */
@media (max-width: 768px) {
    .storing-hero {
        padding: 80px 0 40px;
    }

    .storing-hero h1 {
        font-size: 2rem;
    }

    .storing-form-container {
        padding: 24px 20px 30px;
        margin: 0 10px;
    }

    .device-grid .wpcf7-radio,
    .device-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .progress-steps {
        flex-wrap: nowrap;
        overflow: visible;
    }

    .progress-line {
        min-width: 10px;
        max-width: 30px;
        margin: 0 4px 20px;
    }

    .step-label {
        font-size: 0.55rem;
    }

    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }
}
