/* ====================================================
   GARAGE ACHTERHOEK — Stylesheet
   Versie: 1.0
   Auteur: Uw webbureau
   ==================================================== */

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

:root {
    --orange:       #E8890C;
    --orange-dark:  #C97408;
    --orange-light: #FFA32B;
    --dark:         #1a1a1a;
    --dark-2:       #252525;
    --dark-3:       #333333;
    --gray:         #777777;
    --light-gray:   #f5f5f5;
    --mid-gray:     #e8e8e8;
    --white:        #ffffff;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius:    12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm:  0 2px 12px rgba(0, 0, 0, 0.07);
    --shadow-md:  0 4px 28px rgba(0, 0, 0, 0.11);
    --shadow-lg:  0 8px 48px rgba(0, 0, 0, 0.16);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    color: var(--dark);
    line-height: 1.65;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
img  { max-width: 100%; display: block; }
address { font-style: normal; }

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


/* ====================================================
   2. BUTTONS
   ==================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.93rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}
.btn-primary:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 137, 12, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--orange);
    border-color: var(--orange);
    padding: 10px 20px;
    font-size: 0.875rem;
}
.btn-ghost:hover {
    background: var(--orange);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}
.btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-full {
    width: 100%;
    justify-content: center;
    border-radius: var(--radius);
    padding: 16px 24px;
    font-size: 1rem;
}


/* ====================================================
   3. SECTION HELPERS
   ==================================================== */
.section-label {
    display: inline-block;
    background: rgba(232, 137, 12, 0.12);
    color: var(--orange);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.2;
}
.section-header p {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.req { color: var(--orange); }


/* ====================================================
   4. NAVIGATIE
   ==================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, transparent 100%);
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 0 rgba(232, 137, 12, 0.6), 0 4px 24px rgba(0, 0, 0, 0.45);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
}

.nav-title {
    display: none;
}
.nav-title strong {
    color: var(--orange);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    flex-shrink: 0;
}
.nav-logo i       { color: var(--orange); font-size: 1.35rem; }
.nav-logo strong  { color: var(--orange); }

.nav-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    display: block;
}
.footer-logo-img {
    height: 40px;
}
.brand-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    padding: 10px 20px;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ====================================================
   5. HERO
   ==================================================== */
.hero {
    min-height: 100vh;
    background: var(--dark);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Achtergrond gradient — vervang door echte foto via CSS of img-tag */
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #252525 50%, #1a1a1a 100%);
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 75% 50%, rgba(232, 137, 12, 0.12) 0%, transparent 60%);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(232, 137, 12, 0.06) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 100px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 137, 12, 0.15);
    border: 1px solid rgba(232, 137, 12, 0.3);
    color: var(--orange-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 20px;
}
.hero-content h1 span { color: var(--orange); }

.hero-content > p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.08rem;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0;
}

/* Stats-balk */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 22px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    width: fit-content;
}
.stat { text-align: center; }
.stat-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    letter-spacing: 0.3px;
}
.stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* Hero afbeelding / placeholder */
.hero-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #2a2a2a, #3a3a3a);
    border-radius: var(--radius-xl);
    border: 2px dashed rgba(232, 137, 12, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.82rem;
}
.hero-img-placeholder i { font-size: 4rem; color: rgba(232, 137, 12, 0.2); }

/* Klasse voor echte afbeelding — zet op img-element */
.hero-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

/* Scroll-pijl */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.hero-scroll a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    animation: bounce 2.4s infinite;
}
.hero-scroll a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(7px); }
}


/* ====================================================
   6. OVER ONS
   ==================================================== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Afbeelding placeholder */
.about-image { position: relative; }

.about-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(145deg, #f0f0f0, #e0e0e0);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #bbb;
    font-size: 0.82rem;
}
.about-img-placeholder i { font-size: 4rem; color: #ccc; }

/* Klasse voor echte afbeelding */
.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

/* Badge kaartje over afbeelding */
.about-badge-card {
    position: absolute;
    bottom: 28px;
    right: -20px;
    background: var(--white);
    padding: 16px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: none;
}
.about-badge-card i       { font-size: 1.8rem; color: var(--orange); }
.about-badge-card strong  { display: block; font-size: 0.92rem; font-weight: 700; }
.about-badge-card span    { font-size: 0.78rem; color: var(--gray); }

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
    border-left: 4px solid var(--orange);
    padding-left: 16px;
}
.about-text .lead {
    font-size: 1.08rem;
    color: var(--dark-3);
    margin-bottom: 16px;
    line-height: 1.7;
}
.about-text p {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 36px;
}
.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}
.feature i { color: var(--orange); font-size: 1rem; }


/* ====================================================
   7. GARAGE SERVICES
   ==================================================== */
.services {
    padding: 100px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 36px;
}

.services-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.services-category:hover {
    box-shadow: var(--shadow-md);
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}
.category-icon {
    width: 52px;
    height: 52px;
    background: rgba(232, 137, 12, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--orange);
    flex-shrink: 0;
}
.category-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: var(--transition);
    cursor: default;
}
.service-card:hover {
    background: var(--light-gray);
    border-color: rgba(232, 137, 12, 0.3);
}

.scard-icon {
    width: 40px;
    height: 40px;
    background: rgba(232, 137, 12, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--orange);
    flex-shrink: 0;
}

.service-card h4 {
    font-size: 0.93rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.service-card p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Garage contact balk */
.garage-contact-bar {
    background: var(--dark);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.garage-contact-bar .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
}
.garage-contact-bar .contact-item i { color: var(--orange); font-size: 1rem; }
.garage-contact-bar a {
    color: var(--white);
    transition: var(--transition);
}
.garage-contact-bar a:hover { color: var(--orange); }


/* ====================================================
   8. BRAND SCHEIDING (Logo divider)
   ==================================================== */
.brand-divider {
    background: var(--dark-2);
    padding: 52px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.brand-divider-content {
    display: flex;
    align-items: center;
    gap: 36px;
}
.brand-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 137, 12, 0.35), transparent);
}
.brand-logo-center {
    display: flex;
    align-items: center;
    gap: 18px;
    white-space: nowrap;
    text-align: center;
}
.brand-logo-center > i {
    font-size: 2.4rem;
    color: var(--orange);
}
.brand-logo-center > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.brand-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1.3px;
}
.brand-name {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--white);
}
.brand-name strong { color: var(--orange); }


/* ====================================================
   9. CAR DETAILING
   ==================================================== */
.detailing {
    padding: 100px 0;
    background: var(--white);
}

/* Categorie-rij */
.detailing-category {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 20px;
    border-left: 4px solid var(--orange);
    transition: var(--transition);
}
.detailing-category:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(3px);
}

.detailing-cat-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.det-icon {
    width: 60px;
    height: 60px;
    background: var(--orange);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--white);
    flex-shrink: 0;
}
.det-cat-info { flex: 1; }
.det-cat-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.det-cat-info p {
    color: var(--gray);
    font-size: 0.88rem;
}
.price-tag {
    background: var(--orange);
    color: var(--white);
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.detailing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}
.det-feature {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.875rem;
    color: var(--dark-3);
    font-weight: 500;
}
.det-feature i {
    color: var(--orange);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Prijzen grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 52px;
}

.pricing-card {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange);
}

/* Populair kaart */
.pricing-card.featured {
    background: var(--dark);
    border-color: var(--orange);
    transform: scale(1.03);
}
.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-5px);
}
.pricing-card.featured h4,
.pricing-card.featured p {
    color: rgba(255, 255, 255, 0.75);
}

/* Premium kaart */
.pricing-card.featured-gold {
    background: linear-gradient(145deg, #261a00, #3b2800);
    border-color: var(--orange);
}
.pricing-card.featured-gold h4,
.pricing-card.featured-gold p {
    color: rgba(255, 255, 255, 0.75);
}

.pricing-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
}
.pricing-badge.gold {
    background: linear-gradient(135deg, #b8860b, #e8890c);
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: rgba(232, 137, 12, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--orange);
    margin: 0 auto 16px;
}
.pricing-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.price {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 10px;
}
.pricing-card p {
    font-size: 0.835rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Detailing contact balk */
.detailing-contact-bar {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid rgba(232, 137, 12, 0.18);
    flex-wrap: wrap;
}
.detailing-contact-bar p {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}
.detailing-contact-bar span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
}
.detailing-contact-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


/* ====================================================
   10. CONTACT
   ==================================================== */
.contact {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}
.contact-info > p {
    color: var(--gray);
    margin-bottom: 36px;
    font-size: 1rem;
    line-height: 1.65;
}

.contact-block {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 22px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.contact-block:hover {
    box-shadow: var(--shadow-md);
}
.contact-block h4 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-block h4 i { color: var(--orange); }

.contact-link {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--dark-3);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 8px;
    transition: var(--transition);
}
.contact-link:last-child { margin-bottom: 0; }
.contact-link i { color: var(--orange); width: 16px; flex-shrink: 0; }
.contact-link:hover { color: var(--orange); }

.contact-address {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.7;
}

/* Google Maps embed */
.map-wrapper {
    margin-top: 14px;
    border-radius: var(--radius);
    overflow: hidden;
    height: 180px;
}
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Social media */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid;
    transition: var(--transition);
}
.social-link.tiktok { border-color: var(--dark); color: var(--dark); }
.social-link.tiktok:hover { background: var(--dark); color: var(--white); }
.social-link.instagram { border-color: #e1306c; color: #e1306c; }
.social-link.instagram:hover { background: #e1306c; color: var(--white); }

/* Formulier */
.appointment-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.appointment-form h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-3);
    margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--mid-gray);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(232, 137, 12, 0.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.08);
}
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23666' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; padding-right: 38px; }
.form-group textarea { resize: vertical; min-height: 108px; }

.form-note {
    font-size: 0.8rem;
    color: var(--gray);
    text-align: center;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.form-note i { color: var(--orange); }

/* Succes melding */
.form-success {
    text-align: center;
    padding: 40px 24px;
}
.form-success i { font-size: 3.2rem; color: #22c55e; margin-bottom: 16px; }
.form-success h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--gray); font-size: 0.95rem; }


/* Verberg mobiel-alleen items op desktop */
.nav-menu-header,
.nav-menu-cta-item {
    display: none;
}

/* ====================================================
   11. FOOTER
   ==================================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Gedeelde 3-koloms footer layout (index + detailing) */
.det-footer-inner {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr;
    gap: 48px;
    padding: 56px 0 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.det-footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 14px 0 20px;
}

.det-footer-cta h5 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--white);
    margin-bottom: 10px;
}

.det-footer-cta p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.footer-logo { margin-bottom: 16px; }
.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }

.footer-links h5,
.footer-contact h5 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.875rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); padding-left: 5px; }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-contact a,
.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    line-height: 1.5;
    transition: var(--transition);
}
.footer-contact a:hover { color: var(--orange); }
.footer-contact i { color: var(--orange); width: 14px; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.28);
}
.footer-bottom strong { color: var(--orange); }


/* ====================================================
   12. FLOATING WHATSAPP KNOP
   ==================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    color: var(--white);
    box-shadow: 0 4px 22px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.55);
}

/* Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }


/* ====================================================
   13. SCROLL REVEAL ANIMATIES
   ==================================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ====================================================
   14. RESPONSIVE — TABLET (max 1024px)
   ==================================================== */
@media (max-width: 1024px) {

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-image { display: none; }
    .hero-content h1 { max-width: 100%; }
    .hero-content > p { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-stats   { margin: 0 auto; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { display: none; }

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

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

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}


/* ====================================================
   15. RESPONSIVE — MOBIEL (max 768px)
   ==================================================== */
@media (max-width: 768px) {

    /* Navbar altijd zichtbaar op mobiel — geen backdrop-filter want dat
       maakt de navbar de containing block voor het position:fixed menu */
    .nav-title {
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        color: var(--white);
        font-size: 1rem;
        font-weight: 700;
        white-space: nowrap;
        pointer-events: none;
        letter-spacing: 0.01em;
    }

    .navbar,
    .navbar.scrolled {
        background: rgba(20, 20, 20, 0.98) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 10px 0 !important;
        box-shadow: 0 2px 0 rgba(232, 137, 12, 0.6), 0 4px 24px rgba(0, 0, 0, 0.45);
    }

    /* Nav mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: #141414;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: 0;
        margin: 0;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1002;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-menu.open { transform: translateX(0); }

    /* Alle li-items in het mobile menu zichtbaar */
    .nav-menu > li {
        display: block !important;
        width: 100%;
        flex-shrink: 0;
    }

    /* Mobile menu header row */
    .nav-menu-header {
        display: flex !important;
        align-items: center;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        background: #141414;
    }
    .nav-menu-header .nav-logo-img {
        height: 36px;
    }
    /* X-knop absoluut rechtsboven in het overlay */
    .nav-menu-close {
        position: absolute;
        top: 14px;
        right: 16px;
        background: rgba(255,255,255,0.07);
        border: none;
        color: rgba(255,255,255,0.8);
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-size: 1.1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
        transition: var(--transition);
    }
    .nav-menu-close:hover { background: rgba(232,137,12,0.2); color: var(--orange); }

    /* Mobile links */
    .nav-menu > li:not(.nav-menu-header):not(.nav-menu-cta-item) {
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-menu > li > .nav-link {
        display: block !important;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 500;
        padding: 20px 24px;
        border-radius: 0;
        color: rgba(255,255,255,0.9) !important;
        background: transparent;
        transition: background 0.2s, color 0.2s, padding-left 0.2s;
    }
    .nav-menu > li > .nav-link:hover,
    .nav-menu > li > .nav-link.active {
        background: rgba(232,137,12,0.12) !important;
        color: var(--orange) !important;
        padding-left: 32px;
    }
    .nav-menu-cta-item {
        display: block !important;
        padding: 24px;
    }
    .nav-cta   { display: none; }
    .hamburger { display: flex; z-index: 1001; position: relative; }

    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid  { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: none; }
    .pricing-card.featured:hover { transform: translateY(-5px); }

    .garage-contact-bar {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .detailing-contact-bar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .detailing-contact-btns { justify-content: center; }

    .form-row { grid-template-columns: 1fr; }
    .appointment-form { padding: 28px 20px; }

    .footer-grid        { grid-template-columns: 1fr; gap: 28px; }
    .det-footer-inner   { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .brand-divider-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .brand-line { width: 80%; height: 1px; }

    .hero-stats {
        flex-direction: row;
        gap: 16px;
        padding: 18px 20px;
        justify-content: center;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
        bottom: 20px;
        right: 20px;
    }
}


/* ====================================================
   16. RESPONSIVE — KLEIN MOBIEL (max 480px)
   ==================================================== */
@media (max-width: 480px) {
    .hero-buttons  { flex-direction: column; align-items: stretch; text-align: center; }
    .hero-buttons .btn { justify-content: center; }

    .hero-stats {
        flex-direction: column;
        gap: 14px;
        padding: 20px;
    }
    .stat-divider { width: 60px; height: 1px; }

    .about-features { grid-template-columns: 1fr; }

    .social-links { flex-direction: column; }
    .social-link  { justify-content: center; }

    .detailing-cat-header { flex-wrap: wrap; }
    .price-tag { order: 3; }

    .footer-simple-grid { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-legal-links { flex-direction: column; gap: 12px; }
}


/* ====================================================
   17. NEW DESIGN COMPONENTS
   ==================================================== */

/* --- Service items (left-border style) --- */
.service-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 28px;
}
.service-item {
    padding: 14px 0 14px 16px;
    border-left: 4px solid var(--mid-gray);
    transition: var(--transition);
}
.service-item:hover,
.service-item.service-item-active {
    border-left-color: var(--orange);
}
.service-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.service-item p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.5;
    margin: 0;
}
.services-cta-text {
    font-size: 0.82rem;
    color: var(--gray);
    text-align: center;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
}
.services-cta-text a {
    color: var(--orange);
    font-weight: 700;
    transition: var(--transition);
}
.services-cta-text a:hover { text-decoration: underline; }

/* --- Contact icon bubbles --- */
.cinfo-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.cinfo-bubble {
    width: 48px;
    height: 48px;
    background: rgba(232, 137, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.05rem;
    flex-shrink: 0;
}
.cinfo-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gray);
    margin-bottom: 3px;
}
.cinfo-value {
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--dark);
    display: block;
    transition: var(--transition);
}
a.cinfo-value:hover { color: var(--orange); }

/* --- Map wrapper (Google Maps iframe) --- */
.map-wrapper {
    margin-top: 28px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* --- Simple footer --- */
.footer-simple-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 36px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    flex-wrap: wrap;
}
.footer-brand-simple {
    display: flex;
    align-items: center;
    gap: 18px;
}
.footer-brand-simple p {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    line-height: 1.5;
}
.footer-kvk {
    color: rgba(255, 255, 255, 0.25) !important;
    font-size: 0.75rem !important;
    margin-top: 2px;
}
.footer-legal-links {
    display: flex;
    gap: 24px;
}
.footer-legal-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
    transition: var(--transition);
}
.footer-legal-links a:hover { color: var(--white); }
