/* CONTACT SPECIFIEKE STYLING */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #1A1A1A;
    border-radius: 12px;
    border: 1px solid #2A2A2A;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #C9A646;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(201, 166, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-content h3 {
    color: #C9A646;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-content p {
    color: #E0E0E0;
    margin: 0;
}

.contact-content a {
    color: #E0E0E0;
    transition: color 0.3s ease;
}

.contact-content a:hover {
    color: #C9A646;
}

/* FORMULIER STYLING */
.contact-form-container {
    background: #1A1A1A;
    border-radius: 15px;
    padding: 40px;
    border: 1px solid #2A2A2A;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: #C9A646;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-header p {
    color: #E0E0E0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: #C9A646;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-input {
    padding: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 166, 70, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #C9A646;
    box-shadow: 0 0 0 3px rgba(201, 166, 70, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C9A646' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

/* ENIGE AANPASSING: Dropdown tekstkleur */
select.form-input,
select.form-input option {
    color: #ffffff !important;
    background-color: #1A1A1A;
}

.form-submit {
    margin-top: 10px;
    text-align: center; /* Center de button */
}

/* AANGEPASTE BUTTON STYLING - Gelijk aan andere buttons */
.contact-form .btn.luxury-btn {
    width: auto !important; /* Niet de volle breedte */
    display: inline-block !important; /* Gelijk aan andere buttons */
    padding: 12px 30px !important; /* Zelfde padding als andere buttons */
    font-size: 1rem !important; /* Zelfde font size */
    min-width: 200px; /* Minimale breedte voor goede verhouding */
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    animation: rotate 2s linear infinite;
    width: 20px;
    height: 20px;
}

.spinner .path {
    stroke: #0B0B0B;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

.hidden {
    display: none !important;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    margin-top: 15px;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: #51cf66;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: #ff6b6b;
}

/* CONTACT ACTIES */
.contact-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-action-card {
    background: #1A1A1A;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #2A2A2A;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-action-card:hover {
    border-color: #C9A646;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.action-icon {
    width: 70px;
    height: 70px;
    background: rgba(201, 166, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.action-icon svg {
    width: 30px;
    height: 30px;
}

.contact-action-card h3 {
    color: #C9A646;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.contact-action-card p {
    color: #E0E0E0;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* AANGEPASTE BUTTONS IN CONTACT ACTIES - Gelijk aan andere buttons */
.contact-action-card .btn {
    padding: 12px 24px !important;
    font-size: 1rem !important;
    width: auto !important;
    display: inline-block !important;
    min-width: 160px;
}

/* BEDRIJFSINFORMATIE */
.company-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.company-detail {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #2A2A2A;
}

.company-detail strong {
    color: #C9A646;
}

.company-detail span {
    color: #E0E0E0;
}

/* CONTACT FORMULIER SPECIFIEKE STYLING */
.form-loading {
    opacity: 0.7;
    pointer-events: none;
}

.field-error {
    color: #ff6b6b;
    font-size: 0.875rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-input.error {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-input.error:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2);
}

/* ANIMATIES */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* RESPONSIVE STYLING */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-actions {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-actions {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .company-detail {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    /* AANGEPASTE BUTTONS OP MOBIEL */
    .contact-form .btn.luxury-btn {
        padding: 12px 25px !important;
        font-size: 0.95rem !important;
        min-width: 180px;
    }
    
    .contact-action-card .btn {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-icon {
        align-self: center;
    }
    
    .contact-action-card {
        padding: 30px 20px;
    }
    
    .action-icon {
        width: 60px;
        height: 60px;
    }
    
    .action-icon svg {
        width: 24px;
        height: 24px;
    }
    
    /* AANGEPASTE BUTTONS OP KLEINE MOBIEL */
    .contact-form .btn.luxury-btn {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        min-width: 160px;
    }
    
    .contact-action-card .btn {
        padding: 10px 18px !important;
        font-size: 0.9rem !important;
        min-width: 120px;
    }
}