/**
 * Contact Page - Full Page Design
 * Theme: Hello Elementor Child
 * Version: 1.0.0
 */

.contact-page {
    width: 100%;
    background: #ffffff;
}

/* Hero Section */
.contact-hero {
    position: relative;
    padding: 100px 40px;
    background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
    text-align: center;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(193, 163, 95, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.contact-hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.contact-hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(193, 163, 95, 0.1);
    border: 2px solid #c1a35f;
    border-radius: 30px;
    color: #c1a35f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.contact-hero-title {
    font-size: 64px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.1;
}

.contact-hero-subtitle {
    font-size: 20px;
    color: #666666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content Section */
.contact-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Formulaire */
.contact-form-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.contact-form-group {
    margin-bottom: 24px;
}

.contact-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-form-input,
.contact-form-textarea,
.contact-form-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    font-size: 16px;
    color: #1a1a1a;
    transition: all 0.3s;
    font-family: inherit;
}

.contact-form-input:focus,
.contact-form-textarea:focus,
.contact-form-select:focus {
    outline: none;
    border-color: #c1a35f;
}

.contact-form-textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.contact-form-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #c1a35f;
}

.contact-form-checkbox-label {
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

.contact-form-checkbox-label a {
    color: #c1a35f;
    text-decoration: underline;
}

.contact-form-button {
    width: 100%;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form-button:hover {
    background: #c1a35f;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(193, 163, 95, 0.3);
}

.contact-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    display: none;
}

.contact-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.contact-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Informations de contact */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(193, 163, 95, 0.15);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #c1a35f 0%, #d4b76f 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.contact-info-content p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

.contact-info-content a {
    color: #c1a35f;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-info-content a:hover {
    text-decoration: underline;
}

/* Carte Google Maps */
.contact-map {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.contact-faq {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    background: #f5f5f7;
}

.contact-faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 50px;
}

.contact-faq-item {
    background: #ffffff !important;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.contact-faq-item:hover {
    box-shadow: 0 8px 24px rgba(193, 163, 95, 0.15);
    background: #ffffff !important;
}

.contact-faq-question {
    width: 100%;
    padding: 24px 30px;
    background: #ffffff;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.contact-faq-question:hover {
    color: #c1a35f !important;
    background: #ffffff !important;
}

.contact-faq-item.active .contact-faq-question {
    background: #ffffff !important;
    color: #c1a35f !important;
}

.contact-faq-icon {
    font-size: 24px;
    color: #c1a35f;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 20px;
}

.contact-faq-item.active .contact-faq-icon {
    transform: rotate(180deg);
}

.contact-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.contact-faq-answer-content {
    padding: 0 30px 24px;
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
}

.contact-faq-item.active .contact-faq-answer {
    max-height: 500px;
}

/* Section Réassurance */
.contact-reassurance {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-reassurance-item {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.contact-reassurance-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(193, 163, 95, 0.15);
}

.contact-reassurance-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.contact-reassurance-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-reassurance-text {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-hero {
        padding: 60px 30px;
    }

    .contact-hero-title {
        font-size: 42px;
    }

    .contact-hero-subtitle {
        font-size: 18px;
    }

    .contact-main {
        grid-template-columns: 1fr;
        padding: 60px 30px;
        gap: 40px;
    }

    .contact-faq {
        padding: 60px 30px;
    }

    .contact-faq-title {
        font-size: 36px;
    }

    .contact-reassurance {
        grid-template-columns: 1fr;
        padding: 60px 30px;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 40px 20px;
    }

    .contact-hero-title {
        font-size: 32px;
    }

    .contact-hero-subtitle {
        font-size: 16px;
    }

    .contact-main {
        padding: 40px 20px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .contact-info-card {
        padding: 20px;
    }

    .contact-faq {
        padding: 40px 20px;
    }

    .contact-faq-title {
        font-size: 28px;
    }

    .contact-faq-question {
        font-size: 16px;
        padding: 20px;
    }

    .contact-reassurance {
        padding: 40px 20px;
    }
}
