         :root {
            --cruise-blue: #1E3A8A;
            --cruise-gold: #D4AF37;
            --cruise-white: #FFFFFF;
            --cruise-light-blue: #3B82F6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
            color: #333;
        }
        
        /* Barre de navigation */
        .navbar {
            background: rgba(30, 58, 138, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo {
            height: 50px;
            margin-right: 10px;
        }
        
        .logo-text {
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 25px;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-links a:hover {
            color: var(--cruise-gold);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--cruise-gold);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }
        
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            margin: 3px 0;
            transition: 0.3s;
        }
        
        /* En-tête principal */
        .hero {
            background: linear-gradient(rgba(30, 58, 138, 0.65), rgba(59, 130, 246, 0.65)), url('../Img/Ankara1.jpeg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 120px 20px 80px;
            position: relative;
        }
        
        .hero-content h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hero-content p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .btn-hero {
            display: inline-block;
            background: var(--cruise-gold);
            color: var(--cruise-blue);
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border: 2px solid transparent;
        }
        
        .btn-hero:hover {
            background: white;
            color: var(--cruise-blue);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cruise-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Header Croisière */
        .cruise-header {
            background: linear-gradient(rgba(30,58,138,0.65), rgba(59,130,246,0.65)), url('../Img/Lok2.jpeg');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 80px 20px;
            border-radius: 20px;
            margin-bottom: 40px;
            position: relative;
        }
        
        .cruise-badge {
            background: var(--cruise-gold);
            color: var(--cruise-blue);
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            display: inline-block;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .cruise-header h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .cruise-timer {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 20px;
            border-radius: 15px;
            margin: 30px auto;
            max-width: 500px;
        }
        
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            border: 3px solid transparent;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--cruise-gold);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--cruise-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }
        
        .service-card h3 {
            color: var(--cruise-blue);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        
        /* Ports Section */
        .ports-section {
            background: white;
            border-radius: 20px;
            padding: 50px;
            margin: 50px 0;
        }
        
        .ports-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .port-card {
            background: var(--cruise-light-blue);
            color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
        }
        
        .port-card.nosy-be { background: linear-gradient(135deg, #1E3A8A, #3B82F6); }
        .port-card.diego { background: linear-gradient(135deg, #059669, #10B981); }
        .port-card.tamatave { background: linear-gradient(135deg, #DC2626, #EF4444); }
        
        /* Garanties */
        .guarantees {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        
        .guarantee {
            background: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border-left: 5px solid var(--cruise-gold);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--cruise-gold), #F59E0B);
            color: var(--cruise-blue);
            padding: 60px 40px;
            border-radius: 20px;
            text-align: center;
            margin: 50px 0;
        }
        
        .btn {
            display: inline-block;
            background: var(--cruise-blue);
            color: white;
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            margin: 15px;
            transition: all 0.3s;
            border: 3px solid transparent;
        }
        
        .btn:hover {
            background: white;
            color: var(--cruise-blue);
            border-color: var(--cruise-blue);
            transform: translateY(-3px);
        }
        
        .btn-whatsapp {
            background: #25D366;
        }
        
        .btn-email {
            background: var(--cruise-gold);
            color: var(--cruise-blue);
        }
        
        /* Contact Urgent */
        .urgent-contact {
            background: #DC2626;
            color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin: 30px 0;
            animation: flash 2s infinite;
        }
        
        @keyframes flash {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }
        
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }
            
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--cruise-blue);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: left 0.3s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 20px 0;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .cruise-header h1 {
                font-size: 2.5rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

       /* FOOTER STYLE PREMIUM */
.footer {
    background: linear-gradient(135deg, #001f3f, #003c73);
    color: white;
    padding-top: 60px;
    padding-bottom: 20px;
    font-family: "Poppins", sans-serif;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #ffdd57;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-text {
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 15px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links li i,
.footer-contact li i {
    margin-right: 10px;
    color: #ffdd57;
}

.footer-links a {
    color: white;
    opacity: 0.85;
    transition: 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
    color: #ffdd57;
}

/* Icônes sociales rondes */
.footer-socials {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    font-size: 1.3rem;
    transition: 0.3s;
}

.social-btn:hover {
    background: #ffdd57;
    color: #001f3f;
    transform: translateY(-4px);
}

/* Newsletter */
.newsletter-box {
    margin-top: 20px;
}

.newsletter-box form {
    display: flex;
    margin-top: 10px;
}

.newsletter-box input {
    padding: 10px;
    border-radius: 8px 0 0 8px;
    border: none;
    outline: none;
    flex: 1;
}

.newsletter-box button {
    background: #ffdd57;
    border: none;
    padding: 12px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 1rem;
}

.newsletter-box button:hover {
    background: white;
}

/* Bas du footer */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    opacity: 0.8;
}
