/* ==========================================================================
   Consistente Styling: Offertepagina
   ========================================================================== */

/* 1. Hero Sectie (Consistent met de contactpagina) */
.detail-page-hero {
    position: relative;
    padding: 4rem 2rem 4rem 2rem;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-blur-bg {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(10, 10, 10, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

.luxury-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent, #d4af37);
    color: var(--accent, #d4af37);
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; margin-bottom: 1rem; color: #fff; }
.hero-lead { font-size: 1.1rem; color: #aaa; max-width: 600px; margin: 0 auto; }

/* 2. Grid Layout (Gekopieerd van de succesvolle contact-pagina structuur) */
.contact-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Links info, Rechts formulier */
    gap: 3rem;
    align-items: start;
}

/* 3. Cards (Consistent met contact-styling) */
.contact-info-card, .contact-form-card {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem;
    border-radius: 20px;
}

/* Container voor de video */
.video-slider {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: #000;
}

/* De video vult de ruimte en behoudt zijn aspect ratio */
.slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Zorgt dat de video het vlak vult */
    display: block;
}

/* De crossfade animatie voorkomt zwarte flitsen */
@keyframes crossfade {
    0% { opacity: 1; }
    40% { opacity: 1; }  /* Blijft zichtbaar */
    50% { opacity: 0; }  /* Fade out */
    90% { opacity: 0; }  /* Blijft onzichtbaar */
    100% { opacity: 1; } /* Fade in */
}

/* 4. Formulier Componenten (Gelijk aan contact.css) */
.form-control {
    width: 100%;
    background: rgba(5, 5, 5, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-sizing: border-box;
}

.submit-premium-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--accent, #d4af37);
    border: none;
    border-radius: 8px;
    color: #0a0a0a;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

/* Responsive fix: 1 kolom op mobiel */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
}