/* ====================================================
   CARDETAILING ACHTERHOEK — detailing.css
   Extra styles voor detailing.html
   ==================================================== */

/* ---- Navbar altijd donker op deze pagina ---- */
.detailing-page .navbar {
    background: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}


/* ====================================================
   HERO
   ==================================================== */
.det-hero {
    padding: 140px 0 80px;
    background: #f7f7f7;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Geometrisch diamant-patroon achtergrond */
.det-hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg,  #e8e8e8 25%, transparent 25%),
        linear-gradient(-45deg, #e8e8e8 25%, transparent 25%),
        linear-gradient(45deg,  transparent 75%, #e8e8e8 75%),
        linear-gradient(-45deg, transparent 75%, #e8e8e8 75%);
    background-size: 48px 48px;
    background-position: 0 0, 0 24px, 24px -24px, -24px 0px;
    opacity: 0.45;
}

.det-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.det-hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 18px;
}
.det-hero-content h1 span {
    color: var(--orange);
}

.det-hero-content p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.det-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.det-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}
.det-phone-link i { color: var(--orange); }
.det-phone-link:hover { color: var(--orange); }


/* ====================================================
   PAKKETTEN GRID
   ==================================================== */
.det-packages {
    padding: 80px 0 40px;
    background: var(--white);
}

.det-packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 36px;
}

/* Kolom */
.det-col-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.det-col-header h2 {
    font-size: 1.3rem;
    font-weight: 800;
}
.det-col-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.det-col-icon.orange { background: rgba(232, 137, 12, 0.15); color: var(--orange); }
.det-col-icon.dark   { background: rgba(26, 26, 26, 0.08);   color: var(--dark); }


/* Kaart */
.det-card {
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    padding: 22px 24px;
    margin-bottom: 14px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}
.det-card:hover {
    border-color: rgba(232, 137, 12, 0.35);
    box-shadow: var(--shadow-md);
}

/* Featured kaart — oranje border */
.det-card-featured {
    border-color: var(--orange);
    background: #fff;
}
.det-card-featured:hover {
    box-shadow: 0 6px 32px rgba(232, 137, 12, 0.18);
}

/* Premium kaart */
.det-card-premium {
    border-color: var(--orange);
    background: linear-gradient(135deg, #fff9f0, #ffffff);
}

.det-card-sublabel {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gray);
    margin-top: 3px;
    margin-bottom: 6px;
}

.det-card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 3px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.det-card-badge.badge-premium {
    background: linear-gradient(135deg, #b8860b, #e8890c);
}

.det-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.det-card-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--dark);
    margin-bottom: 6px;
}
.det-card-desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

.det-price {
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--orange);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Sterren */
.det-stars {
    display: flex;
    gap: 3px;
}
.det-stars i {
    font-size: 0.8rem;
    color: var(--orange);
}
.det-stars .far.fa-star {
    color: #ddd;
}


/* Disclaimer */
.det-disclaimer {
    text-align: center;
    font-size: 0.825rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 60px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    line-height: 1.6;
}
.det-disclaimer i {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}


/* ====================================================
   FOOTER — compacte 3-koloms layout
   ==================================================== */
.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,
.footer-contact 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;
}


/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 768px) {
    .det-packages-grid {
        grid-template-columns: 1fr;
    }

    .det-hero-actions {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .det-hero-actions .btn { justify-content: center; }
    .det-phone-link { justify-content: center; }

    .det-footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .det-card-top {
        flex-direction: column;
        gap: 8px;
    }
}
