/* ===== Contact Page Layout ===== */
/* Contact grid met maximaal 2 kolommen */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Verbeterde contact-info-card styling voor betere uitlijning */
.contact-info-card {
    background: var(--primary); /* Helderder blauw voor beter contrast */
    color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem 0.75rem; /* Minimale horizontale padding voor maximale ruimte */
    height: 100%;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* Gecentreerde iconen */
.contact-info-card .contact-info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card .contact-info-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 0.75rem;
    letter-spacing: 0.01em;
    text-align: center;
}

/* Verbeterde tekstopmaak voor contactkaarten met maximaal contrast */
.contact-info-card p {
    color: #ffffff; /* Puur wit voor maximaal contrast */
    margin-bottom: 1rem; 
    line-height: 1.8; /* Ruimere regelhoogte voor betere leesbaarheid */
    font-size: 1.1rem; /* Grotere tekst voor betere leesbaarheid */
    font-family: var(--font-body);
    text-align: center;
    width: 100%;
    letter-spacing: 0.01em;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2); /* Subtiele schaduw voor beter contrast */
    font-weight: 400; /* Iets dikker lettertype */
}

/* Consistente opmaak voor alle sterke tekst binnen contactkaarten met verhoogd contrast */
.contact-info-card p strong {
    display: inline; /* Inline weergeven voor betere tekstuitlijning */
    margin-right: 0.25rem;
    color: #ffffff; /* Maximaal wit voor beter contrast */
    font-weight: 700; /* Extra vet voor duidelijk onderscheid */
    letter-spacing: 0.02em;
}

.contact-info-card .small {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    line-height: 1.6;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.contact-info-card .btn-text {
    margin-top: 1.5rem;
    align-self: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    font-family: var(--font-body);
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid #ffffff;
    padding: 0.25rem 0.5rem;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.contact-info-card .btn-text i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.contact-info-card .btn-text:hover {
    text-decoration: none;
    border-color: var(--white);
}

.contact-info-card .btn-text:hover i {
    transform: translateX(4px);
}

/* Uniforme styling voor alle contactinhoud */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    width: 100%;
    padding: 0;
}

.contact-content p {
    margin-bottom: 0;
    text-align: center;
    max-width: 100%;
    padding: 0 0.5rem;
}

/* Contact info grid met exact gelijke kolommen op desktop */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem; /* Ruimte tussen de kaarten */
    margin-top: 2rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* Exact gelijke kolommen */
        gap: 2rem;
    }
}

/* Zorgt voor meer ruimte in de container */
.contact-section .container {
    max-width: 1300px;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 767px) {
    .contact-info-grid {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== Uitsluitend op afspraak sectie ===== */
.hours-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
}

.appointment-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
}

.appointment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-icon i {
    font-size: 2rem;
    color: var(--white);
}

.appointment-info h3 {
    margin-bottom: 1rem;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 600;
}

.appointment-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

@media (min-width: 992px) {
    .hours-container {
        flex-direction: row;
        justify-content: center;
        gap: 4rem;
    }
}

.hours-content {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    max-width: 500px;
    margin: 0 auto 2rem;
    width: 100%;
}

@media (min-width: 992px) {
    .hours-content {
        margin: 0;
    }
}

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

.hours-table tr {
    border-bottom: 1px solid var(--gray-200);
}

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

.hours-table td {
    padding: 1rem 0.5rem;
    font-family: var(--font-sans);
}

.hours-table td:first-child {
    font-weight: 700;
    color: var(--dark);
    width: 40%;
}

.hours-table td:last-child {
    text-align: right;
    color: var(--gray-700);
}

.company-info h3 {
    margin-bottom: 1rem;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.company-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.info-list {
    margin-top: 1rem;
}

.info-list li {
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    font-family: var(--font-sans);
}

.hours-note {
    text-align: center;
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--light);
    border-radius: 0.5rem;
    font-style: italic;
    color: var(--gray-600);
}

/* ===== Map Section ===== */
.map-section h2 {
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 0.75rem;
}

.map-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

/* ===== Contact Content Improvements ===== */
.section .section-header h2 {
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section .section-header p {
    color: var(--gray-600);
}

/* Form fixes */
input, select, textarea {
    font-family: var(--font-sans);
}
