/* CONTACT PAGE */

.contact-hero {
    background: linear-gradient(135deg, var(--donkergroen) 0%, #0d1a12 100%);
    padding: 80px 32px;
    text-align: center;
    color: var(--wit);
}

.contact-hero h1 {
    font-family: var(--kop);
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

/* VAKANTIEMELDING */
#contact-notice {
    background: #fff8e1;
    border-left: 4px solid #f59e0b;
    padding: 16px 24px;
    max-width: 900px;
    margin: 24px auto;
    border-radius: 4px;
}

.notice-inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #854d0e;
}

.notice-inner svg { flex-shrink: 0; margin-top: 2px; }

/* MAIN GRID */
.contact-content { padding: 64px 0; }

.contact-container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 32px;
}

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

.contact-intro {
    color: #555;
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-info h2 {
    font-family: var(--kop);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--donkergroen);
    margin: 0 0 24px;
}

/* STEPS */
.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--groen);
    color: #fff;
    font-family: var(--kop);
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-text h4 {
    font-family: var(--kop);
    font-size: 15px;
    font-weight: 600;
    color: var(--donkergroen);
    margin: 0 0 4px;
}

.step-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* HOURS */
.hours-block h3 {
    font-family: var(--kop);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--donkergroen);
    margin: 0 0 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.hours-day { color: #444; }
.hours-time { font-weight: 600; color: var(--slate); }
.hours-time.groen { color: var(--groen-donker); }

/* CONTACT CARDS */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: #f8faf8;
    border-radius: 8px;
    border: 1px solid #e8f0e8;
}

.card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--donkergroen);
    color: var(--groen);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-body h4 {
    font-family: var(--kop);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--donkergroen);
    margin: 0 0 4px;
}

.card-body a {
    font-size: 15px;
    font-weight: 600;
    color: var(--donkergroen);
}

.card-body a:hover { color: var(--groen-donker); }

.card-body p {
    font-size: 13px;
    color: #888;
    margin: 2px 0 0;
}

/* MAP */
.map-container {
    border-radius: 8px;
    overflow: hidden;
    height: 220px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* SHOWROOM CTA */
.contact-showroom {
    background-size: cover;
    background-position: center;
    padding: 80px 32px;
    position: relative;
}

.contact-showroom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(22, 54, 39, 0.78);
}

.showroom-content {
    position: relative;
    max-width: var(--max);
    margin: 0 auto;
}

.showroom-text {
    max-width: 540px;
}

.showroom-text h2 {
    font-family: var(--display);
    font-size: 2.4rem;
    color: var(--wit);
    margin: 0 0 16px;
}

.showroom-text p {
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0 0 28px;
}

.btn-primary {
    display: inline-block;
    background: var(--groen);
    color: #fff;
    font-family: var(--kop);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 14px 28px;
    border-radius: 4px;
    transition: background 0.2s;
}

.btn-primary:hover { background: var(--groen-donker); color: #fff; }

/* MOBIEL */
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-hero h1 { font-size: 2rem; }
}
