
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Pacifico&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

   
   
   /* ===== VARIABLES CSS ===== */
        :root {
            --primary-color: #e67e22;
            --secondary-color: #2c3e50;
            --accent-color: #16a085;
            --light-color: #ecf0f1;
            --dark-color: #2c3e50;
            --text-color: #333;
            --text-light: #7f8c8d;
            --white: #fff;
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 10px;
        }

        /* ===== GÉNÉRAL ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--light-color);
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .section-transition {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .section-visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* ===== ÉCRAN DE CHARGEMENT ===== */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loading-text {
            font-size: 3rem;
            font-weight: bold;
            color: var(--white);
        }

        .loading-text span {
            display: inline-block;
            opacity: 0;
            animation: loadingLetter 1.5s infinite alternate;
        }

        .loading-text span:nth-child(1) { animation-delay: 0.1s; }
        .loading-text span:nth-child(2) { animation-delay: 0.2s; }
        .loading-text span:nth-child(3) { animation-delay: 0.3s; }
        .loading-text span:nth-child(4) { animation-delay: 0.4s; }
        .loading-text span:nth-child(5) { animation-delay: 0.5s; }
        .loading-text span:nth-child(6) { animation-delay: 0.6s; }
        .loading-text span:nth-child(7) { animation-delay: 0.7s; }
        .loading-text span:nth-child(8) { animation-delay: 0.8s; }
        .loading-text span:nth-child(9) { animation-delay: 0.9s; }
        .loading-text span:nth-child(10) { animation-delay: 1.0s; }
        .loading-text span:nth-child(11) { animation-delay: 1.1s; }

        @keyframes loadingLetter {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

      /* ===== HEADER AMÉLIORÉ ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 5px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    transition: var(--transition);
}

/* Logo amélioré */
.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.4s ease;
    border-radius: 2px;
}

.logo-container:hover::before {
    width: 100%;
}

.logo-img {
    height: 45px;
    margin-right: 12px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-container:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(230, 126, 34, 0.3));
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.logo-text span {
    background: linear-gradient(135deg, var(--primary-color), #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-container:hover .logo-text {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Navigation améliorée */
.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    position: relative;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 12px 18px;
    border-radius: 25px;
    overflow: hidden;
    background: transparent;
    letter-spacing: 0.3px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(230, 126, 34, 0.15), 
        rgba(22, 160, 133, 0.1),
        transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
    background: rgba(230, 126, 34, 0.05);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.15);
}

.nav-links a:hover::after {
    width: 80%;
}

.active-nav {
    color: var(--white) !important;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3) !important;
    transform: translateY(-2px) !important;
}

.active-nav::after {
    width: 0 !important;
}

.active-nav:hover {
    background: linear-gradient(135deg, #d35400, #138a6f) !important;
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4) !important;
}

/* Menu hamburger amélioré */
.hamburger {
    display: none;
    position: relative;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 24px;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-color));
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
}

.hamburger span:nth-child(1) {
    transform: translateY(-8px);
    width: 20px;
}

.hamburger span:nth-child(2) {
    width: 24px;
}

.hamburger span:nth-child(3) {
    transform: translateY(8px);
    width: 16px;
}

.hamburger:hover span {
    background: var(--primary-color);
    box-shadow: 0 2px 4px rgba(230, 126, 34, 0.3);
}

.hamburger:hover span:nth-child(1) {
    width: 24px;
}

.hamburger:hover span:nth-child(3) {
    width: 24px;
}

.hamburger.active {
    transform: rotate(180deg);
}

.hamburger.active span {
    background: var(--primary-color);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
    width: 24px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
    width: 24px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links a {
        padding: 10px 16px;
        font-size: 0.88rem;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-img {
        height: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-top: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links li {
        margin: 8px 0;
        width: 80%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 20px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.8);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-links a:hover {
        transform: translateX(10px);
        background: rgba(230, 126, 34, 0.1);
    }
    
    .active-nav {
        transform: translateX(10px) !important;
    }
    
    header.scrolled {
        padding: 8px 0;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-img {
        height: 35px;
        margin-right: 8px;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .nav-links a {
        padding: 12px 18px;
        font-size: 0.85rem;
    }
}
        /* ===== HERO SECTION ===== */
        .hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)), url('../Img/NRI2.jpg') no-repeat center center/cover;

            display: flex;
            align-items: center;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(transparent, var(--light-color));
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }

        .hero-btn {
            display: inline-block;
            padding: 15px 30px;
            background: var(--primary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
            box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
        }

        .hero-btn:hover {
            background: #d35400;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(230, 126, 34, 0.6);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== DESTINATIONS SECTION ===== */
        .destinations-section {
            padding: 100px 0;
            background: var(--white);
        }

        .destination-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .destination-tab {
            padding: 12px 25px;
            margin: 0 10px 10px;
            background: var(--light-color);
            border: 2px solid transparent;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            color: var(--text-light);
        }

        .destination-tab.active {
            background: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
            box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
        }

        .destination-tab:hover:not(.active) {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }

        .destination-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .destination-content.active {
            display: block;
        }

        .destination-content h3 {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
            text-align: center;
        }

        .destination-content > p {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .destination-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .highlight-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
        }

        .highlight-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .highlight-image {
            height: 220px;
            overflow: hidden;
        }

        .highlight-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .highlight-card:hover .highlight-image img {
            transform: scale(1.1);
        }

        .highlight-content {
            padding: 25px;
        }

        .highlight-content h3 {
            font-size: 1.4rem;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .highlight-content > p {
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .highlight-features {
            list-style: none;
        }

        .highlight-features li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .highlight-features li:last-child {
            border-bottom: none;
        }

        .highlight-features li i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 0.9rem;
        }

        /* ===== CIRCUITS SECTION ===== */
        .circuits-section {
            padding: 100px 0;
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('../Follio/Img/NRI2.jpg') no-repeat center center/cover;
            color: var(--white);
            text-align: center;
        }

        .circuits-section .section-title h2 {
            color: var(--white);
        }

        .circuits-section .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }

        .circuit-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .circuit-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            overflow: hidden;
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .circuit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .circuit-header {
            padding: 25px;
            background: rgba(230, 126, 34, 0.8);
        }

        .circuit-header h3 {
            margin: 0;
            font-size: 1.5rem;
        }

        .circuit-duration {
            font-style: italic;
            margin-top: 5px;
            opacity: 0.9;
        }

        .circuit-body {
            padding: 25px;
        }

        .circuit-destinations {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin: 15px 0;
            justify-content: center;
        }

        .destination-tag {
            background: rgba(255, 255, 255, 0.2);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .circuit-features {
            list-style: none;
            text-align: left;
            margin: 20px 0;
        }

        .circuit-features li {
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
        }

        .circuit-features li:last-child {
            border-bottom: none;
        }

        .circuit-features li i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .circuit-price {
            font-size: 1.8rem;
            font-weight: bold;
            margin: 20px 0;
            color: var(--primary-color);
        }

        .circuit-cta {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: var(--transition);
            border: 2px solid var(--primary-color);
        }

        .circuit-cta:hover {
            background: transparent;
            color: var(--primary-color);
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--secondary-color);
            color: var(--white);
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary-color);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .footer-column ul li a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .footer-column ul li a i {
            margin-right: 10px;
            font-size: 0.9rem;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            display: inline-block;
            transition: var(--transition);
        }

        .social-icon:hover {
            transform: translateY(-5px);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .copyright i {
            color: #e74c3c;
            margin: 0 5px;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .destination-highlights {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .circuit-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: var(--transition);
            }
            
            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
            }
            
            .nav-links li {
                margin: 10px 0;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .destination-tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .destination-tab {
                width: 80%;
                text-align: center;
                margin-bottom: 10px;
            }
            
            .destination-highlights {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero-btn {
                padding: 12px 25px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .highlight-card, .circuit-card {
                margin: 0 10px;
            }
        }