/* ===== PAGE CONTACT - STYLES SPÉCIFIQUES ===== */

/* Contact Info Section - Design moderne */
.contact-info-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 180, 131, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.contact-info-section .container {
    position: relative;
    z-index: 2;
}

.contact-info-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-info-section .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--light-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-section .section-header .section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-method-card:hover::before {
    transform: scaleX(1);
}

.contact-method-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border-color: rgba(255, 107, 53, 0.4);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
}

.contact-method-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: 4px solid var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-method-card:hover .contact-method-icon {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 20px 45px rgba(255, 107, 53, 0.6);
    border-color: var(--primary-color);
}

.contact-method-card h3 {
    color: var(--light-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-method-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
}

.contact-schedule,
.contact-address {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.chat-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.chat-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Contact Form Section - Design moderne */
.contact-form-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--dark-color) 100%);
    position: relative;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(212, 180, 131, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form-section .container {
    position: relative;
    z-index: 2;
}

.contact-form-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-form-section .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-form-section .section-header .section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.form-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 25px;
    padding: 3.5rem;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.form-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.form-content:hover::before {
    transform: scaleX(1);
}

.form-content:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.15);
}

.contact-form {
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    color: var(--light-color);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

select.form-control {
    cursor: pointer;
}

select.form-control option {
    background: var(--darker-color);
    color: var(--light-color);
}

/* Checkbox personnalisé */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    flex-shrink: 0;
    margin-top: 0.1rem;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.btn-submit i {
    margin-right: 0.5rem;
}

/* Sidebar */
.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.sidebar-card:hover::before {
    transform: scaleX(1);
}

.sidebar-card:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.sidebar-card h3 {
    color: var(--light-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.sidebar-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.contact-reasons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-reasons li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-reasons i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.guarantee-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.guarantee-item h4 {
    color: var(--light-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.guarantee-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Map Section - Design moderne */
.map-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, #1a1a1a 100%);
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 180, 131, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.map-section .container {
    position: relative;
    z-index: 2;
}

.map-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.map-section .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--light-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-section .section-header .section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.map-container {
    margin-top: 3rem;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 70px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.4);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-sidebar {
        order: -1;
    }
}

@media (max-width: 992px) {
    .contact-info-section .section-header h2,
    .contact-form-section .section-header h2,
    .map-section .section-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-method-icon {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-info-section,
    .contact-form-section,
    .map-section {
        padding: 4rem 0;
    }
    
    .contact-info-section .section-header h2,
    .contact-form-section .section-header h2,
    .map-section .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-content {
        padding: 2rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
    
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-info-section,
    .contact-form-section,
    .map-section {
        padding: 3rem 0;
    }
    
    .contact-info-section .section-header h2,
    .contact-form-section .section-header h2,
    .map-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .form-content {
        padding: 1.5rem;
    }
    
    .contact-method-card {
        padding: 1.5rem;
    }
    
    .contact-method-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
    }
    
    .sidebar-card {
        padding: 1.5rem;
    }
}
