/* CSS voor contact/index.php - Contact pagina */

/* Reset en basis styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f8fafc;
}

/* Header Section */
.contact-section {
    width: 100vw;
    background: #f9fafb;
    padding: 8rem 0 5rem;
}

.contact-container {
    width: 91.666667%;
    margin: 0 auto;
    padding: 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .contact-title {
        font-size: 3rem;
    }
}

.contact-title-accent {
    color: #F15A24;
    position: relative;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
     background: #f9fafb;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 2rem;
}

.contact-accent {
    color: #F15A24;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: white;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #F15A24;
    box-shadow: 0 0 0 2px rgba(241, 90, 36, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

/* Contact Type Options */
.contact-type-group {
    margin-bottom: 2rem;
}

.contact-type-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.contact-type-option {
    position: relative;
}

.contact-type-option input[type="radio"] {
    display: none;
}

.contact-type-option label {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
    margin-bottom: 0;
    font-weight: 500;
}

.contact-type-option label:hover {
    border-color: #F15A24;
    background-color: #fef7f0;
}

.contact-type-option input[type="radio"]:checked + label {
    border-color: #F15A24;
    background-color: #fef7f0;
    color: #111827;
}

.contact-type-option label i {
    font-size: 1.25rem;
    margin-right: 0.75rem;
    color: #6b7280;
    min-width: 20px;
}

.contact-type-option input[type="radio"]:checked + label i {
    color: #F15A24;
}

/* Contact Preferences */
.contact-preference {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
    margin-bottom: 0;
    color: #374151;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    transform: scale(1.1);
    accent-color: #F15A24;
}

/* Privacy Group */
.privacy-group .checkbox-label {
    line-height: 1.5;
}

.privacy-group a {
    color: #F15A24;
    text-decoration: none;
}

.privacy-group a:hover {
    text-decoration: underline;
}

/* Submit Button */
.contact-submit-btn {
    background: linear-gradient(135deg, #F15A24, #e14d1f);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #e14d1f, #c13c17);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(241, 90, 36, 0.3);
}

.contact-submit-btn i {
    font-size: 1rem;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.contact-info-sidebar h3 {
    color: #111827;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.contact-info-item i {
    font-size: 1.25rem;
    color: #F15A24;
    margin-top: 0.125rem;
    min-width: 20px;
}

.contact-info-item strong {
    color: #111827;
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contact-info-item p {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.contact-info-item a {
    color: #F15A24;
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

/* Response Info */
.response-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.response-info h4 {
    color: #111827;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.response-info > p {
    color: #6b7280;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.response-types {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.response-type {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.response-type i {
    font-size: 1rem;
    min-width: 16px;
}

.text-blue { color: #F15A24; }
.text-yellow { color: #F15A24; }
.text-green { color: #F15A24; }

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 6rem 0 3rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.125rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-type-options {
        grid-template-columns: 1fr;
    }
    
    .contact-preference {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-info-sidebar {
        padding: 1.5rem;
    }
    
    .response-types {
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .contact-container {
        width: 95%;
    }
    
    .contact-section {
        padding: 4rem 0 2rem;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }
    
    .contact-type-option label {
        padding: 1rem;
        font-size: 0.875rem;
    }
    
    .contact-type-option label i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
}
