/* Section Hero Contact */
.contact-hero-section {
    padding: 100px 0;
    background-color: #0c8e36; /* Vert AKNOVA */
    color: white; /* Texte en blanc pour contraster */
    position: relative;
    overflow: hidden;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 40px; /* Espacement entre le texte et l'image */
}

.contact-hero-content {
    flex: 1;
    animation: fadeInLeft 1s ease-out; /* Animation du texte */
}

.contact-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.contact-hero-cta {
    display: inline-block;
    padding: 15px 30px;
    background-color: white;
    color: #0c8e36; /* Vert AKNOVA */
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-hero-cta:hover {
    background-color: #f0f0f0;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-hero-media {
    flex: 1;
    animation: fadeInRight 1s ease-out; /* Animation de l'image */
}

.contact-hero-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-description {
        font-size: 1rem;
    }

    .contact-hero-cta {
        font-size: 1rem;
        padding: 12px 25px;
    }

    .contact-hero-media {
        width: 100%;
    }
}

/* Section Contact////////////////////////////////////// */
.contact-section {
    padding: 100px 0;
    background-color: #f9f9f9; /* Fond léger pour contraster */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #0c8e36; /* Couleur verte AKNOVA */
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #555;
}

/* Contenu de la page de contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px; /* Espacement entre le formulaire et les infos */
    padding: 0 20px;
}

/* Formulaire de contact */
.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #0c8e36; /* Couleur verte AKNOVA */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #94c120; /* Couleur verte claire AKNOVA */
    outline: none;
}

.submit-button {
    background-color: #0c8e36; /* Couleur verte AKNOVA */
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #94c120; /* Couleur verte claire AKNOVA */
}

/* Informations de contact */
.contact-info {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0c8e36; /* Couleur verte AKNOVA */
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #555;
}

.contact-info ul li i {
    margin-right: 10px;
    color: #94c120; /* Couleur verte claire AKNOVA */
}

/* Carte Google Maps */
.contact-map {
    margin-top: 20px;
    border-radius: 15px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

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