:root {
    --primary: #E67E22;        /* Orange vif du logo */
    --secondary: #34495E;      /* Bleu-gris foncé */
    --accent: #F39C12;         /* Orange clair */
    --success: #27AE60;
    --info: #3498DB;
    --white: #FFFFFF;
    --light: #ECF0F1;

    --dark-grey: #34495E; /*Couleurs du pack*/
    --light-grey: #C8C8C8;
    --sage-green: #A8B5A0;
    --primary-orange: #E67E22;

    --grey-light: #BDC3C7;
    --grey: #7F8C8D;
    --dark: #2C3E50;
    --gradient-primary: linear-gradient(135deg, #E67E22 0%, #F39C12 100%);
    --gradient-secondary: linear-gradient(135deg, #34495E 0%, #2C3E50 100%);
    --shadow-sm: 0 2px 10px rgba(230, 126, 34, 0.1);
    --shadow-md: 0 4px 20px rgba(230, 126, 34, 0.15);
    --shadow-lg: 0 8px 30px rgba(230, 126, 34, 0.2);
    --shadow-xl: 0 16px 50px rgba(230, 126, 34, 0.25);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--white);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* ============================================
   TOP BAR
============================================ */
.top-bar {
    background: var(--secondary);
    color: white;
    padding: 12px 0;
    font-size: 0.9rem;
    border-bottom: 3px solid var(--primary);
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--primary);
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    margin-right: 25px;
}

.top-bar-item i {
    margin-right: 8px;
    color: var(--primary);
    font-size: 1rem;
}

.top-bar-social a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 8px;
    transition: all 0.3s;
}

.top-bar-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ============================================
   NAVBAR
============================================ */
.navbar-custom {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-sm);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s;
}

.navbar-custom.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand-custom {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.navbar-brand-custom span {
    color: var(--primary);
}

.navbar-brand-custom:hover {
    transform: scale(1.05);
    color: var(--primary);
}

.nav-link-custom {
    color: var(--secondary);
    text-decoration: none;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.3s;
    transform: translateX(-50%);
    border-radius: 3px;
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
    width: 60%;
}

.nav-link-custom:hover {
    color: var(--primary);
}

.btn-nav {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   HERO SLIDER
============================================ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
    rgba(52, 73, 94, 0.85) 0%,
    rgba(230, 126, 34, 0.75) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 0 20px;
    animation: slideUp 1s ease-out;
}

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

.slide-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.slide-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.slide-title span {
    color: var(--primary);
    display: block;
}

.slide-subtitle {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slide-cta {
    display: inline-flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-slide-primary {
    background: white;
    color: var(--primary);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
}

.btn-slide-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.btn-slide-secondary {
    background: transparent;
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    border: 3px solid white;
}

.btn-slide-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: white;
    background: rgba(230, 126, 34, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 35px;
    border-radius: 6px;
}

/* ============================================
   SECTION COMMUNE
============================================ */
.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 3px;
    background: var(--primary);
    transform: translateY(-50%);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.section-title span {
    color: var(--primary);
}

.section-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--grey);
    margin-bottom: 40px;
    max-width: 800px;
}

/* ============================================
   ABOUT SECTION
============================================ */
.about-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(230, 126, 34, 0.03) 100%);
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
}

.value-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
    transition: all 0.3s;
    border-left: 5px solid var(--primary);
}

.value-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.value-description {
    color: var(--grey);
    line-height: 1.8;
    margin: 0;
}

.about-image {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.about-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.about-stats {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: 50px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--grey);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   FORMATIONS SECTION
============================================ */
.formations-section {
    padding: 120px 0;
    background: var(--light);
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 70px;
    flex-wrap: wrap;
}

.tab-btn {
    background: white;
    color: var(--secondary);
    padding: 15px 35px;
    border: 2px solid var(--grey-light);
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.tab-content {
    display: none;
}

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

.formation-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.formation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.formation-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.formation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.formation-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
}

.formation-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.formation-meta {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--grey);
}

.formation-meta span {
    /*display: inline-flex;*/
    align-items: center;
    gap: 6px;
}

.formation-meta i {
    color: var(--primary);
}

.formation-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.4;
}

.formation-description {
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.formation-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.formation-features li {
    padding: 8px 0;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 10px;
}

.formation-features i {
    color: var(--success);
    font-size: 1rem;
}

.formation-footer {
    padding: 25px 30px;
    background: var(--light);
    border-top: 1px solid var(--grey-light);
}

.btn-formation {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-formation:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/*************
PACK SECTION
**/

.pack-card {
    background: linear-gradient(135deg, #2c3e50 0%, var(--dark-grey) 100%);
    border-radius: 25px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    transition: all 0.4s;
}

.pack-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-orange) 0%, transparent 70%);
    opacity: 0.2;
}

.pack-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(200, 150, 46, 0.3);
}

.pack-badge {
    background: var(--primary-orange);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.pack-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.pack-description {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    line-height: 1.7;
}

.pack-includes {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.pack-includes h5 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--primary-orange);
}

.pack-includes ul {
    list-style: none;
    padding: 0;
}

.pack-includes li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.pack-includes li i {
    color: var(--primary-orange);
}

.btn-pack {
    background: white;
    color: var(--dark-grey);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-pack:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
}

/* ============================================
   TEMOIGNAGES SECTION
============================================ */
.testimonials-section {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
    height: 100%;
    border-top: 5px solid var(--primary);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #F39C12;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--grey);
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.testimonial-info h5 {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.testimonial-info p {
    color: var(--grey);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   EQUIPE SECTION
============================================ */
.team-section {
    padding: 120px 0;
    background: var(--light);
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.team-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: var(--gradient-primary);
    transition: bottom 0.4s;
}

.team-card:hover .team-overlay {
    bottom: 0;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.team-social a:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-5px);
}

.team-info {
    padding: 10px;
}

.team-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.team-info p {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-badge {
    display: inline-block;
    background: rgba(230, 126, 34, 0.1);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ============================================
   NEWSLETTER SECTION
============================================ */
.newsletter-section {
    padding: 100px 0;
    background: var(--light);
    position: relative;
}

.newsletter-box {
    background: var(--gradient-secondary);
    border-radius: 25px;
    padding: 70px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
}

.newsletter-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: var(--shadow-lg);
}

.newsletter-icon i {
    font-size: 2.5rem;
    color: white;
}

.newsletter-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.newsletter-form {
    position: relative;
    z-index: 2;
}

.input-group-newsletter {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-control-newsletter {
    flex: 1;
    padding: 20px 30px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transition: all 0.3s;
}

.form-control-newsletter::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-newsletter:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.25);
}

.btn-newsletter {
    padding: 20px 50px;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

.btn-newsletter:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.newsletter-privacy i {
    color: var(--success);
    font-size: 1.1rem;
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--secondary);
    color: white;
    padding-top: 80px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--primary);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

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

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links i {
    font-size: 0.8rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    margin-top: 60px;
}

.footer-copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ============================================
   SIDEBAR FORM
============================================ */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-form {
    position: fixed;
    top: 0;
    right: -600px;
    width: 550px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    padding: 50px 40px;
}

.sidebar-form.active {
    right: 0;
}

.sidebar-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--secondary);
    z-index: 900;
}

.sidebar-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}

.sidebar-header {
    text-align: center;
    margin-bottom: 45px;
    padding-bottom: 35px;
    border-bottom: 3px solid var(--light);
}

.sidebar-icon-header {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-md);
}

.sidebar-icon-header i {
    font-size: 2.5rem;
    color: white;
}

.sidebar-header h3 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 12px;
}

.sidebar-header p {
    color: var(--grey);
    font-size: 1rem;
}

.form-custom {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group-custom {
    display: flex;
    flex-direction: column;
}

.form-group-custom label {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group-custom label i {
    color: var(--primary);
    font-size: 1.1rem;
}

.form-control-custom {
    padding: 16px 20px;
    border: 2px solid var(--grey-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
    background: white;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}

.form-control-custom::placeholder {
    color: var(--grey);
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 120px;
}

select.form-control-custom {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23E67E22' d='M7 10L2 5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 50px;
}

.radio-group-custom {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.radio-custom {
    display: flex;
    align-items: center;
    padding: 18px;
    border: 2px solid var(--grey-light);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.radio-custom:hover {
    border-color: var(--primary);
    background: rgba(230, 126, 34, 0.05);
}

.radio-custom input[type="radio"] {
    width: 22px;
    height: 22px;
    margin-right: 15px;
    cursor: pointer;
    accent-color: var(--primary);
}

.radio-custom span {
    font-weight: 600;
    color: var(--secondary);
}

.btn-submit-custom {
    padding: 20px 35px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    box-shadow: var(--shadow-md);
}

.btn-submit-custom:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.form-privacy-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    background: rgba(39, 174, 96, 0.1);
    border-radius: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--grey);
}

.form-privacy-custom i {
    color: var(--success);
    font-size: 1.3rem;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 991px) {
    .slide-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 25px;
    }

    .newsletter-box {
        padding: 50px 35px;
    }

    .input-group-newsletter {
        flex-direction: column;
    }

    .btn-newsletter {
        width: 100%;
        justify-content: center;
    }

    .footer-legal {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .slide-title {
        font-size: 2.2rem;
    }

    .slide-subtitle {
        font-size: 1.1rem;
    }

    .slide-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn-slide-primary,
    .btn-slide-secondary {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .newsletter-title {
        font-size: 2rem;
    }

    .sidebar-form {
        width: 100%;
        right: -100%;
        padding: 40px 25px;
    }
}

/* ============================================
   SCROLL TO TOP BUTTON
============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: all 0.3s;
}

.scroll-top:hover {
    transform: translateY(-5px);
}

.scroll-top.visible {
    display: flex;
}

/* ============================================
SIDEBAR FORM - VERSION ÉLÉGANTE
============================================ */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-form {
    position: fixed;
    top: 0;
    right: -600px;
    width: 550px;
    height: 100vh;
    background: white;
    z-index: 9999;
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
}

.sidebar-form.active {
    right: 0;
}

/* Header de la sidebar */
.sidebar-header {
    background: transparent;
    padding: 40px 30px;
    position: relative;
    color: white;
}

.sidebar-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.btn-close-sidebar {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.btn-close-sidebar:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.sidebar-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.sidebar-subtitle {
    font-size: 1rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

/* Body de la sidebar */
.sidebar-body {
    padding: 40px 30px;
}

/* Form groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary);
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--grey-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
    transform: translateY(-2px);
}

.form-control::placeholder {
    color: var(--grey-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23E67E22' d='M7 10L2 5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 50px;
}

/* Radio group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio {
    display: flex;
    align-items: center;
    padding: 16px 18px;
    border: 2px solid var(--grey-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.radio:hover {
    border-color: var(--primary);
    background: rgba(230, 126, 34, 0.05);
    transform: translateX(5px);
}

.radio input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    cursor: pointer;
    accent-color: var(--primary);
}

.radio span {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 18px 30px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
    margin-top: 30px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(230, 126, 34, 0.4);
}

.btn-submit i {
    font-size: 1.2rem;
}

/* Form privacy */
.form-privacy {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(230, 126, 34, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.form-privacy i {
    color: var(--primary);
    font-size: 1.2rem;
}

.form-privacy span {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.5;
}

.sidebar-form::-webkit-scrollbar {
    width: 8px;
    height: 0; /* Pas de scrollbar horizontale */
}

.sidebar-form::-webkit-scrollbar-track {
    background: var(--light);
}

.sidebar-form::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.sidebar-form::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Scrollbar personnalisée pour la sidebar */
.sidebar-form::-webkit-scrollbar {
    width: 8px;
}

.sidebar-form::-webkit-scrollbar-track {
    background: var(--light);
}

.sidebar-form::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.sidebar-form::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Responsive */
@media (max-width: 767px) {
    .sidebar-form {
        width: 100%;
        right: -100%;
    }

    .sidebar-header {
        padding: 30px 20px;
    }

    .sidebar-title {
        font-size: 1.5rem;
    }

    .sidebar-body {
        padding: 30px 20px;
    }
}

/* Animation d'entrée pour les champs */
.sidebar-form.active .form-group {
    animation: slideInRight 0.5s ease-out backwards;
}

.sidebar-form.active .form-group:nth-child(1) { animation-delay: 0.1s; }
.sidebar-form.active .form-group:nth-child(2) { animation-delay: 0.15s; }
.sidebar-form.active .form-group:nth-child(3) { animation-delay: 0.2s; }
.sidebar-form.active .form-group:nth-child(4) { animation-delay: 0.25s; }
.sidebar-form.active .form-group:nth-child(5) { animation-delay: 0.3s; }
.sidebar-form.active .form-group:nth-child(6) { animation-delay: 0.35s; }
.sidebar-form.active .form-group:nth-child(7) { animation-delay: 0.4s; }

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