:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --green-accent: #2ecc71;
}

.page-contact-wrapper {
    background: #f8fafc;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #08b12d 100%);
    color: white;
    padding: 120px 0 90px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23000000" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,192C1248,192,1344,128,1392,96L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.3;
}

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

.contact-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.contact-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-hero .breadcrumb-item a:hover {
    color: var(--green-accent);
}

.contact-hero .breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

.contact-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

/* Bloc infos de contact */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--secondary-color);
    height: 100%;
}

.contact-info-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-intro {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-info-block {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.contact-info-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-block h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact-info-block h3 i {
    color: var(--secondary-color);
}

.contact-info-block p {
    margin: 0;
    color: #555;
    line-height: 1.8;
}

.contact-info-block a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-info-block a:hover {
    color: var(--green-accent);
    text-decoration: underline;
}

/* Réseaux sociaux */
.contact-socials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.contact-socials a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(46, 204, 113, 0.1));
    border: 2px solid rgba(52, 152, 219, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-socials a:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--green-accent));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Formulaire */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-form-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-form .form-label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.contact-form .form-control {
    border-radius: 12px;
    border: 2px solid #e8edf2;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.15);
}

.contact-form .form-control::placeholder {
    color: #adb5bd;
}

.btn-contact-submit {
    padding: 14px 35px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, var(--secondary-color), var(--green-accent));
    color: white;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
}

.btn-contact-submit:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 70px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .contact-socials a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
