:root {
    --primary-color: #1781FE;
    --primary-hover: #1781FE;
    --phone-size: 40px;
    --transition-speed: 0.3s;
}

* {
    font-family: 'Poppins', sans-serif;
}

.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-link {
    position: relative;
    color: #111827;
    font-weight: 600;
    transition: all 0.3s ease;
    /* padding: 8px 0; */
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 50%;
    background: #2563eb;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #2563eb;
}

.promo-banner {
    background: var(--primary-color);
}


/* Améliorations pour le header */
.header-container {
    /* max-width: 1200px; */

    margin: 0 auto;
    padding: 0 1rem;
}

.logo-text {
    font-weight: 700;
    color: #1f2937;
}

.logo-subtext {
    font-size: 0.7rem;
    color: #6b7280;
    letter-spacing: 1px;
}

/* Améliorations pour la section hero */
.hero-title {
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: 55px !important;
}

.hero-subtitle {
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 20px !important;
}

/* Animation pour les boutons */
.btn-primary {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Styles pour les cartes de services */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Styles pour le footer */
.footer-link {
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: white;
    transform: translateX(3px);
}

.hero-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.promo-slides-container {
    min-height: 3rem;
    /* Hauteur fixe pour éviter le saut */
}

.promo-slide {
    padding: 0.75rem 0.75rem;
    /* py-3 equivalent */
}

.services {
    background: url('/images/section-bg.png') center/cover;
    min-height: 600px;
}

.parallax-section {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)),
        url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-assistance {
    background: linear-gradient(rgba(54, 66, 93, 0.85), rgba(15, 23, 42, 0.85)),
        url('/images/conseils en migration.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.country-image {
    width: 270px;
    height: 270px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.title-visas {
    color: var(--title-color);
    font-family: var(--font-poppins);
    font-weight: 900;
    font-size: 20px;
    line-height: 30px;
    background: linear-gradient(to bottom, var(--white-color) 0%, var(--white-color) 98%);
    background-size: 0px 1px;
    background-repeat: no-repeat;
    background-position: right 90%;
    transition: background-size 0.75s;
}



@media (max-width: 768px) {
    .country-image {
        width: 200px;
        height: 200px;
    }


}

@media (max-width: 640px) {
    .country-image {
        width: 180px;
        height: 180px;
    }

    .sous-tilte {
        font-size: 8px !important;
    }
}

.visas-list {
    background: url('/images/section-bg.png') center/cover;
}

