    :root {
    /* Color Palette */
    --primary-color: #137840;
    --secondary-color: #083723;
    --accent-color: #32bd70;
    --background-light: #0f0f0f;
    --text-dark: #333;
    --text-muted: #666;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Allerta Stencil', sans-serif;
    
    /* Shadows and Transitions */
    --shadow-subtle: 0 4px 15px rgba(19, 120, 64, 0.1);
    --shadow-medium: 0 10px 30px rgba(19, 120, 64, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Global Refinements */
body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-light);
}

/* Google Map Styling */
.google-map {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.google-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(30%) contrast(1.2);
    transition: var(--transition-smooth);
}

.google-map:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* Contact Section Refinements */
.contact {
    padding: 80px 0;
    background-color: white;
}

.contact .sec-head h2 {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.contact .sec-head h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
}

/* Form Styling */
#contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

#contact-form:hover {
    box-shadow: 0 15px 40px rgba(19, 120, 64, 0.1);
}

#contact-form .form-group {
    margin-bottom: 25px;
}

#contact-form input,
#contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    background-color: rgb(12, 12, 12);
    transition: var(--transition-smooth);
    font-size: 1rem;
}

#contact-form input:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(224, 142, 20, 0.2);
}

#contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Submit Button */
#contact-form button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#contact-form button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(19, 120, 64, 0.3);
}

/* Contact Information Section */
.contact-info {
    background-color: white;
    padding: 60px 0;
}

.contact-info .text-u {
    margin-bottom: 30px;
}

.contact-info h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    line-height: 1.8;
}

.contact-info .phone a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-info .phone a:hover {
    color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .contact .sec-head h2 {
        font-size: 2.5rem;
    }

    #contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .google-map {
        height: 300px;
    }

    .contact .sec-head h2 {
        font-size: 2rem;
    }

    #contact-form {
        padding: 20px;
    }

    #contact-form button {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 1s ease forwards;
}

/* Additional Decorative Elements */
.contact-section-wrapper {
    position: relative;
    overflow: hidden;
}

.contact-section-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(19, 120, 64, 0.05);
    border-radius: 50%;
    z-index: -1;
}

.contact-section-wrapper::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(224, 142, 20, 0.05);
    border-radius: 50%;
    z-index: -1;
}
    /* Styles CSS pour le footer commun */

        .footer {
            background-color: var(--secondary-color, #083723);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-top {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }

        .footer-info {
            flex-basis: 35%;
            margin-bottom: 30px;
        }

        .footer-logo {
            display: inline-block;
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 80px;
        }

        .footer-desc {
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: var(--accent-color, #f8b400);
            color: var(--dark-color, #333);
            transform: translateY(-3px);
        }

        .footer-links {
            flex-basis: 15%;
            margin-bottom: 30px;
        }

        .footer-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--accent-color, #f8b400);
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-color, #f8b400);
            padding-left: 5px;
        }

        .footer-contact {
            flex-basis: 30%;
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .contact-icon {
            margin-right: 15px;
            color: var(--accent-color, #f8b400);
            font-size: 1.2rem;
        }

        .footer-cta {
            margin-top: 30px;
        }

        .footer-cta .btn {
            display: inline-block;
            background-color: var(--accent-color, #f8b400);
            color: var(--dark-color, #333);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--accent-color, #f8b400);
        }

        .footer-cta .btn:hover {
            background-color: transparent;
            color: var(--accent-color, #f8b400);
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Responsive Design */
        @media screen and (max-width: 992px) {
            .footer-info, .footer-links, .footer-contact {
                flex-basis: 48%;
            }
        }

        @media screen and (max-width: 768px) {
            .footer-top {
                flex-direction: column;
            }
            
            .footer-info, .footer-links, .footer-contact {
                flex-basis: 100%;
            }
        }
        .don-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .don-button:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }


        /* Styles qui s'appliquent UNIQUEMENT sur la page contact */
        .navbar-nav .nav-item:nth-child(6) .nav-link {
            color: #137840 !important;
            position: relative;
        }
        
        .navbar-nav .nav-item:nth-child(6) .nav-link span {
            color: #137840 !important;
        }
        
        .navbar-nav .nav-item:nth-child(6) .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #137840;
        }
/* Styles pour les messages d'alerte en mode sombre */
.page-contact .alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #e0e0e0;
    background-color: #222;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-contact .alert-success {
    border-left: 4px solid #32bd70;
    background-color: #222;
}

.page-contact .alert-danger {
    border-left: 4px solid #e74c3c;
    background-color: rgba(231, 76, 60, 0.15);
}

.page-contact .alert-loading {
    text-align: center;
    padding: 15px;
    color: #e0e0e0;
}