/* =============================================
   CONTACT PAGE STYLES
   ============================================= */

/* Header spécifique à la page contact - DESKTOP */
.contact-page header#header {
    background-image: url('/assets/images/AARION_Contact.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    min-height: 600px;
}

/* Header spécifique à la page contact - MOBILE */
@media (max-width: 768px) {
    .contact-page header#header {
        background-image: url('/assets/images/AARION_Contact_Page_Mobile.png') !important;
        background-size: cover !important;
        background-position: center center !important;
        min-height: 500px;
    }
}

/* Header content */
.contact-page .header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 150px;
}

.contact-page .header-content h1 {
    font-size: 65px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.contact-page .header-content p {
    font-size: 18px;
    color: #333;
    margin-bottom: 30px;
}

/* =============================================
   CONTACT CARDS SECTION
   ============================================= */
.contact-cards-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
}

.contact-card-icon.phone-icon { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.contact-card-icon.email-icon { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.contact-card-icon.location-icon { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.contact-card-icon.urgent-icon { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.contact-card-link {
    font-size: 16px;
    font-weight: 600;
    color: #ED170A;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-card-link:hover {
    color: #c0120a;
}

.contact-card-hours {
    font-size: 12px;
    color: #999;
}

/* =============================================
   CONTACT MAIN SECTION (Form + Info)
   ============================================= */
.contact-main-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Form Column */
.contact-form-column {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-header .text-accent {
    color: #ED170A;
}

.form-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.contact-form label .required {
    color: #ED170A;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ED170A;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(237, 23, 10, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

/* Checkbox */
.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: #ED170A;
}

/* Submit Button */
.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #ED170A 0%, #c0120a 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(237, 23, 10, 0.3);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

/* Info Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

/* Hours Card */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.hours-row:last-of-type {
    border-bottom: none;
}

.hours-note {
    font-size: 13px;
    color: #ED170A;
    font-weight: 500;
    margin-top: 10px;
    padding: 10px;
    background: rgba(237, 23, 10, 0.05);
    border-radius: 8px;
    text-align: center;
}

/* Social Card */
.social-card .social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link.facebook { background: #1877f2; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.linkedin { background: #0a66c2; }
.social-link.youtube { background: #ff0000; }

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* =============================================
   MAP SECTION
   ============================================= */
.map-section {
    padding: 80px 0;
    background-color: #fff;
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.map-header p {
    font-size: 16px;
    color: #666;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

/* =============================================
   FAQ SECTION (Contact page specific)
   ============================================= */
.contact-faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.faq-header p {
    font-size: 16px;
    color: #666;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-faq-section .faq-item {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-faq-section .faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-faq-section .faq-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* =============================================
   ORIGINAL CONTACT PAGE STYLES (English version)
   ============================================= */
.contact-layout {
    gap: 50px;
    padding: 80px 0;
}

.form-column {
    padding-right: 30px;
}

.form-column h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-intro {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.contact-form .group-inputs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .input {
    flex: 1;
}

.contact-form .input label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.contact-form .input input,
.contact-form .input select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form .group-textarea {
    margin-bottom: 20px;
}

.contact-form .group-textarea label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.contact-form .group-textarea textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    resize: vertical;
    min-height: 150px;
    transition: all 0.3s ease;
}

.action-button {
    margin-top: 20px;
}

.action-button .submit-btn {
    padding: 16px 40px;
    background: #ED170A;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-button .submit-btn:hover {
    background: #c0120a;
    transform: translateY(-3px);
}

/* Info Column (English version) */
.info-column {
    padding-left: 30px;
}

.contact-info-card {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 40px;
}

.contact-info-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 24px;
}

.info-content strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.info-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.info-content a {
    color: #ED170A;
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.social-links-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.social-links-contact h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.social-icons img {
    width: 20px;
    height: 20px;
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-form-column {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-page .header-content h1 {
        font-size: 40px;
    }
    
    .contact-cards-section {
        padding: 50px 0;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-main-section {
        padding: 50px 0;
    }
    
    .contact-form-column {
        padding: 30px 20px;
    }
    
    .form-header h2 {
        font-size: 28px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    /* English version responsive */
    .contact-layout {
        flex-direction: column;
    }
    
    .form-column,
    .info-column {
        padding: 0;
        width: 100%;
    }
    
    .contact-form .group-inputs {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .contact-page .header-content h1 {
        font-size: 32px;
    }
    
    .contact-form-column {
        padding: 25px 15px;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}