/* ==========================================================================
   Modern Contact Page Design
   ========================================================================== */

/* Variables (vervang met je eigen :root variabelen als je die hebt) */
:root {
    --dark-teal: #0A3A40;
    --orange: #FB4D17;
    --white: #FFFFFF;
    --background-light: #f8f9fa;
    --text-light: #555;
    --border-light: #e0e0e0;
}

/* Custom Cursor - Same as Google Ads page */
.custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background-color: var(--orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    will-change: transform;
    transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease, border 0.2s ease;
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 2px solid var(--orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Hide default cursor */
body {
    cursor: none;
}

/* Responsive: show default cursor on mobile */
@media (max-width: 768px) {
    .custom-cursor, .employee-cursor, .aiming-arrow {
        display: none;
    }
    body, a, button, .btn, .hamburger, .service-card, .service-list-item, .blog-card {
        cursor: auto;
    }
}

/* Contact Icons Styling */
.contact-details-list .icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(251, 77, 23, 0.1);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details-list .icon-wrapper i {
    color: var(--orange) !important;
    font-size: 18px !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.contact-person h4 i {
    color: var(--orange) !important;
    margin-right: 8px;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
}

.contact-page-section {
    padding: 60px 0 80px 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden; /* Om pseudo-elementen binnen te houden */
}

/* Decoratief element op de achtergrond */
.contact-page-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(251, 77, 23, 0.05), rgba(251, 77, 23, 0));
    border-radius: 50%;
    z-index: 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.contact-header .subtitle {
    display: inline-block;
    color: var(--orange);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    color: var(--dark-teal);
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Asymmetrische layout */
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* --- Kaart Stijlen --- */
.contact-info-card,
.contact-form-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    height: 100%;
}

/* --- Linkerkolom: Info Kaart --- */
.contact-person {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.contact-person-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-person h4 {
    margin: 0 0 4px 0;
    color: var(--dark-teal);
    font-size: 1.1rem;
}

.contact-person p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-details-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--background-light);
    padding: 15px;
    border-radius: 12px;
}

.contact-details-list .icon-wrapper {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background-color: rgba(251, 77, 23, 0.1);
    color: var(--orange);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.contact-details-list .icon-wrapper i {
    width: 22px;
    height: 22px;
}

.contact-details-list strong {
    display: block;
    margin-bottom: 2px;
    font-size: 0.9rem;
    color: var(--dark-teal);
}

.contact-details-list p,
.contact-details-list a {
    margin: 0;
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details-list a:hover {
    color: var(--orange);
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.social-links h5 {
    color: var(--dark-teal);
    margin-bottom: 12px;
    text-align: center;
}

.social-links .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: var(--text-light);
    transition: color 0.3s, transform 0.3s;
}
.social-links a:hover {
    color: var(--orange);
    transform: translateY(-2px);
}


/* --- Rechterkolom: Formulier Kaart --- */
.contact-form-card h2 {
    font-size: 2rem;
    color: var(--dark-teal);
    margin-bottom: 8px;
}
.contact-form-card p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--dark-teal);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: var(--background-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(251, 77, 23, 0.2);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    padding: 14px 20px;
    font-size: 1.1rem;
    gap: 10px;
    background-color: var(--orange);
    color: var(--white);
    border: none;
}

.contact-form .btn:hover {
    background-color: #e6440f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 77, 23, 0.3);
}

/* Formulier Succes Bericht */
.form-success {
    display: none; /* Standaard verborgen */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    border: 2px dashed var(--orange);
    border-radius: 16px;
    min-height: 400px;
}
.form-success .success-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}
.form-success h3 {
    color: var(--dark-teal);
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.form-success p {
    color: var(--text-light);
    max-width: 350px;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 40px 0;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0; /* Geen gap als ze onder elkaar staan */
    }
    /* Zorg dat de 2e form-group in de row nog steeds bottom margin heeft */
    .form-row .form-group:first-child {
        margin-bottom: 20px;
    }
}