/* Remplacer ceci : */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* Par ceci : */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary:       #1A3A6B;
    --secodo:       #E8A020;
    --secondary:     #38b6ff;
    --accent:        #2F6EB5;
    --light:         #F5F7FA;
    --dark:          #0D1F3C;
    --text:          #2C3E50;
    --muted:         #7F8C8D;
    --white:         #ffffff;
    --border:        #DEE4EE;
    --shadow-sm:     0 2px 12px rgba(26,58,107,0.08);
    --shadow-md:     0 8px 32px rgba(26,58,107,0.14);
    --shadow-lg:     0 20px 60px rgba(26,58,107,0.18);
    --radius:        10px;
    --radius-lg:     18px;
    --transition:    0.3s ease;
   --font-display: 'Poppins', sans-serif;
--font-body: 'Roboto', sans-serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }
body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); color: var(--dark); }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary); }
img { max-width: 100%; }

/* ---- TOPBAR ---- */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 8px 0;
    font-size: 0.82rem;
}
.topbar-contact a {
    color: rgba(255,255,255,0.8);
    margin-right: 20px;
    transition: color var(--transition);
}
.topbar-contact a:hover { color: var(--secondary); }
.topbar-contact i,
.topbar-social i { margin-right: 6px; color: var(--secondary); }
.topbar-social a {
    color: rgba(255,255,255,0.7);
    margin-left: 12px;
    font-size: 0.85rem;
    transition: color var(--transition);
}
.topbar-social a:hover { color: var(--secondary); }

/* ---- NAVBAR ---- */
.navbar-main {
    background: var(--white);
    padding: 14px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--secondary);
    transition: all var(--transition);
}
.navbar-main.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}
.logo-img { transition: transform var(--transition); }
.navbar-brand:hover .logo-img { transform: scale(1.03); }

.navbar-main .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark);
    padding: 8px 14px !important;
    border-radius: 6px;
    transition: all var(--transition);
    letter-spacing: 0.01em;
}
.navbar-main .nav-link i { margin-right: 5px; font-size: 0.85em; color: var(--accent); }
.navbar-main .nav-link:hover,
.navbar-main .nav-link.active { color: var(--primary); background: rgba(26,58,107,0.06); }
.navbar-main .nav-item.active > .nav-link { color: var(--primary); font-weight: 600; }

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius);
    padding: 8px;
    border-top: 3px solid var(--secondary);
    min-width: 220px;
}
.dropdown-item {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    padding: 9px 14px;
    border-radius: 6px;
    transition: all var(--transition);
}
.dropdown-item i { margin-right: 8px; color: var(--accent); font-size: 0.85em; width: 16px; }
.dropdown-item:hover, .dropdown-item.active {
    background: rgba(26,58,107,0.08);
    color: var(--primary);
}

/* CTA Button */
.btn-cta {
    background: var(--secondary);
    color: var(--dark) !important;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 9px 20px;
    border-radius: 6px;
    border: none;
    transition: all var(--transition);
    letter-spacing: 0.02em;
}
.btn-cta:hover {
    background: var(--primary);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(232,160,32,0.4);
}

/* Navbar Toggler */
.navbar-toggler { border: 2px solid var(--primary); padding: 6px 10px; }
.navbar-toggler i { color: var(--primary); font-size: 1.1rem; }

/* ---- BUTTONS GLOBAUX ---- */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 6px;
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary-custom:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26,58,107,0.35);
}
.btn-secondary-custom {
    background: var(--secondary);
    color: var(--dark);
    font-weight: 700;
    padding: 13px 32px;
    border-radius: 6px;
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-secondary-custom:hover {
    background: #cf8e18;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(232,160,32,0.4);
}
.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    font-weight: 600;
    padding: 11px 30px;
    border-radius: 6px;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

/* ---- SECTION UTILITY ---- */
.section-badge {
    display: inline-block;
    background: rgba(232,160,32,0.15);
    color: var(--secondary);
    border: 1px solid rgba(232,160,32,0.4);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
}
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 16px;
}
.section-title span { color: var(--secondary); }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.section-divider {
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 4px;
    margin: 16px auto;
}

/* ============================================
   PAGE D'ACCUEIL
   ============================================ */

/* --- HERO --- */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 60%, #1d4e8f 100%);
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.12;
}

.hero-geo-shape {
    position: absolute;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 550px;
    height: 550px;
    border-radius: 50%;
    border: 60px solid rgba(232,160,32,0.12);
    pointer-events: none;
}
.hero-geo-shape-2 {
    position: absolute;
    right: 80px;
    top: 20px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 30px solid rgba(47,110,181,0.2);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,160,32,0.18);
    border: 1px solid rgba(232,160,32,0.5);
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
}
.hero-eyebrow i { font-size: 0.85em; }
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 22px;
}
.hero-title span { color: var(--secondary); }
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    line-height: 1.75;
    margin-bottom: 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 50px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}
.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.15); }

/* Hero image side */
.hero-image-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-image-wrap img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-height: 520px;
    object-fit: cover;
}
.hero-badge-float {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}
.hero-badge-float .badge-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secodo);
    font-size: 1.2rem;
    flex-shrink: 0;
}
.hero-badge-float .badge-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark);
}
.hero-badge-float .badge-text span { font-size: 0.78rem; color: var(--muted); }

/* --- SECTION ORIENTATION --- */
.section-orientation {
    padding: 100px 0;
    background: var(--light);
}
.orientation-image { position: relative; }
.orientation-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.orientation-badge-float {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--secondary);
    color: var(--dark);
    border-radius: var(--radius);
    padding: 18px 22px;
    text-align: center;
    box-shadow: var(--shadow-md);
}
.orientation-badge-float strong { display: block; font-size: 1.8rem; font-weight: 700; }
.orientation-badge-float span { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; }
.orientation-steps { margin-top: 30px; }
.orientation-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 22px;
}
.step-number {
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}
.step-content h6 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.step-content p { font-size: 0.88rem; color: var(--muted); margin: 0; }

/* --- DESTINATIONS --- */
.section-destinations {
    padding: 100px 0;
    background: var(--white);
}
.destination-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    height: 300px;
}
.destination-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.destination-card:hover img { transform: scale(1.08); }
.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,31,60,0.85) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: all var(--transition);
}
.destination-flag { font-size: 2rem; margin-bottom: 6px; }
.destination-country {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}
.destination-subtitle { color: rgba(255,255,255,0.75); font-size: 0.82rem; }
.destination-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    opacity: 0;
    transition: opacity var(--transition);
}
.destination-card:hover .destination-arrow { opacity: 1; }

/* --- TEMOIGNAGES --- */
.section-testimonials {
    padding: 100px 0;
    background: var(--dark);
}
.section-testimonials .section-title { color: var(--white); }
.testimonial-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    transition: all var(--transition);
}
.testimonial-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}
.testimonial-stars { color: var(--secondary); font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--secondary);
}
.testimonial-name { color: var(--white); font-weight: 600; font-size: 0.95rem; margin: 0; }
.testimonial-dest { color: var(--secondary); font-size: 0.8rem; }

/* --- SERVICES --- */
.section-services {
    padding: 100px 0;
    background: var(--light);
}
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    height: 100%;
    border: 1px solid var(--border);
    transition: all var(--transition);
    text-align: center;
}
.service-card:hover {
    border-color: var(--secondary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.service-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.5rem;
    color: var(--white);
    transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-title { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.service-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.service-link { font-size: 0.85rem; font-weight: 600; color: var(--accent); }
.service-link i { margin-left: 4px; transition: transform var(--transition); }
.service-card:hover .service-link i { transform: translateX(4px); }

/* --- QUI SOMMES NOUS --- */
.section-about {
    padding: 100px 0;
    background: var(--white);
}
.about-image-grid { position: relative; }
.about-img-main {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
}
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 55%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}
.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
}
.about-feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(26,58,107,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary);
    flex-shrink: 0;
}
.about-feature-content h6 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.about-feature-content p { font-size: 0.85rem; color: var(--muted); margin: 0; }

/* --- BLOG --- */
.section-blog {
    padding: 100px 0;
    background: var(--light);
}
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    height: 100%;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card-img {
    height: 200px;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 24px; }
.blog-category {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 10px;
}
.blog-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 10px;
}
.blog-title a { color: inherit; }
.blog-title a:hover { color: var(--primary); }
.blog-excerpt { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; }
.blog-meta { font-size: 0.78rem; color: var(--muted); display: flex; gap: 12px; }
.blog-meta i { color: var(--accent); margin-right: 4px; }

/* --- FORMULAIRE CTA --- */
.section-cta-form {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}
.section-cta-form::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 80px solid rgba(255,255,255,0.04);
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.cta-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}
.cta-form-card .form-label { font-weight: 600; font-size: 0.88rem; color: var(--dark); }
.cta-form-card .form-control,
.cta-form-card .form-select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.9rem;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.cta-form-card .form-control:focus,
.cta-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,58,107,0.12);
}

/* ---- FOOTER ---- */
.site-footer { background: var(--dark); }
.footer-main { padding: 80px 0 50px; }
.footer-logo { filter: brightness(0) invert(1); opacity: 0.9; }
.footer-desc { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.75; }
.footer-stats { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; }
.stat-item { text-align: center; }
.stat-number { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--secondary); }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; }
.footer-heading {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    transition: all var(--transition);
}
.footer-links a i { font-size: 0.65em; margin-right: 6px; color: var(--secondary); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-list { list-style: none; padding: 0; }
.footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    align-items: flex-start;
}
.footer-contact-list i { color: var(--secondary); margin-top: 3px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.7); }
.footer-contact-list a:hover { color: var(--secondary); }
.footer-newsletter .form-control {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    border-radius: 6px;
}
.footer-newsletter .form-control::placeholder { color: rgba(255,255,255,0.4); }
.footer-newsletter .form-control:focus {
    background: rgba(255,255,255,0.12);
    box-shadow: none;
    border-color: var(--secondary);
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.88rem;
    transition: all var(--transition);
}
.footer-social a:hover { background: var(--secondary); color: var(--dark); transform: translateY(-2px); }
.footer-bottom {
    background: rgba(0,0,0,0.25);
    padding: 18px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-links { display: flex; gap: 20px; list-style: none; padding: 0; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--secondary); }

/* ---- BACK TO TOP ---- */
.btn-back-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--secondary);
    color: var(--dark);
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(232,160,32,0.4);
}
.btn-back-top.visible { opacity: 1; pointer-events: auto; }
.btn-back-top:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
    .section-title { font-size: 1.8rem; }
    .hero-title { font-size: 2rem; }
    .hero-stats { gap: 24px; }
    .about-img-secondary { display: none; }
    .topbar { display: none; }
}
@media (max-width: 767px) {
    .hero-section { min-height: auto; padding: 80px 0 60px; }
    .hero-actions { flex-direction: column; }
    .hero-image-wrap { display: none; }
    .destination-card { height: 220px; }
    .cta-form-card { padding: 24px; }
}
