/* ========================================
   VotePlus - Custom Styles
   ======================================== */

/* --- Variables CSS --- */
:root {
    /* Couleurs principales du logo */
    --primary-blue: #1e88e5;
    --primary-cyan: #4dd0e1;
    --primary-green: #9ccc65;
    --secondary-blue: #2962ff;
    
    /* Couleurs complémentaires */
    --dark-blue: #0d47a1;
    --light-blue: #e3f2fd;
    --success: #4caf50;
    --warning: #ff9800;
    --danger: #f44336;
    --info: #00bcd4;
    --gray-50: #f9fafb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    
    /* Couleurs neutres */
    --text-primary: #212121;
    --text-secondary: #757575;
    --text-light: #9e9e9e;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    
    /* Ombres */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-hover: 0 12px 40px rgba(30, 136, 229, 0.2);
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
}

/* --- Reset & Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: var(--transition-base);
}

/* --- Utility Classes --- */
.section-padding {
    padding: 80px 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Navbar --- */
.navbar {
    padding: 0rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.navbar.scrolled {
    /*padding: 0.3rem 0;*/
    box-shadow: var(--shadow-md);
}

.navbar-brand .logo {
    height: 70px;
    transition: var(--transition-base);
    filter: drop-shadow(0 2px 8px rgba(30, 136, 229, 0.3));
}

.navbar-brand .logo:hover {
    filter: drop-shadow(0 4px 12px rgba(30, 136, 229, 0.5));
    transform: scale(1.05);
}

.navbar.scrolled .navbar-brand .logo {
    height: 55px;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    transform: translateX(-50%);
    transition: var(--transition-base);
}

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

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

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(30, 136, 229, 0.4);
    color: white;
}

.btn-outline-primary-custom {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-outline-primary-custom:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3f2fd 100%);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-blue);
    top: 10%;
    left: -50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--primary-green);
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-cyan);
    bottom: 10%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

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

.badge-trust {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    font-size: 0.9rem;
    animation: slideInLeft 0.8s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    animation: slideInLeft 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
    animation: slideInLeft 0.8s ease 0.4s both;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    animation: slideInLeft 0.8s ease 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-primary);
}

.feature-item i {
    color: var(--primary-green);
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.hero-cta {
    animation: slideInLeft 0.8s ease 0.8s both;
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 500px;
}

.illustration-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 1s ease;
}

.illustration-card i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.card-content h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.card-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0.2s;
    z-index: 3;
}

.card-2 {
    top: 45%;
    right: 10%;
    animation-delay: 0.4s;
    z-index: 2;
}

.card-3 {
    bottom: 10%;
    left: 5%;
    animation-delay: 0.6s;
    z-index: 1;
}

.progress-bar-custom {
    width: 120px;
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-fill {
    width: 75%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    animation: progressAnimation 2s ease infinite;
}

@keyframes progressAnimation {
    0%, 100% { width: 75%; }
    50% { width: 85%; }
}

.amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.chart-mini {
    width: 80px;
    height: 30px;
    background: linear-gradient(to right, 
        var(--primary-blue) 0%, 
        var(--primary-blue) 20%, 
        var(--primary-cyan) 40%, 
        var(--primary-green) 60%, 
        var(--primary-cyan) 80%, 
        var(--primary-blue) 100%);
    border-radius: 5px;
    margin-top: 0.5rem;
}

.hero-main-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: pulse 3s ease-in-out infinite;
}

.mobile-mockup i {
    font-size: 8rem;
    color: white;
    opacity: 0.3;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* --- Trust Band --- */
.trust-band {
    padding: 3rem 0;
    background: white;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-item {
    text-align: center;
    transition: var(--transition-base);
}

.trust-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    transition: var(--transition-base);
}

.trust-item p {
    margin: 0;
    font-weight: 500;
    color: var(--text-secondary);
}

.trust-item:hover i {
    transform: scale(1.2);
    color: var(--primary-green);
}

/* --- Section Headers --- */
.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.section-badge {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* --- Campaign Cards --- */
.campaign-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition-base);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.campaign-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-green));
    transform: scaleX(0);
    transition: var(--transition-base);
}

.campaign-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-blue);
}

.campaign-card:hover::before {
    transform: scaleX(1);
}

.campaign-card-featured {
    border: 2px solid var(--primary-green);
    box-shadow: var(--shadow-md);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #856404;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.campaign-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.campaign-card:hover .campaign-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.vote-classic {
    background: linear-gradient(135deg, #1e88e5, #1565c0);
}

.vote-support {
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

.vote-sponsored {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.cagnotte {
    background: linear-gradient(135deg, #9c27b0, #7b1fa2);
}

.cotisation {
    background: linear-gradient(135deg, #00bcd4, #0097a7);
}

.mensualite {
    background: linear-gradient(135deg, #4caf50, #388e3c);
}

.campaign-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.campaign-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.campaign-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.campaign-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: start;
    color: var(--text-primary);
}

.campaign-features i {
    color: var(--primary-green);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
}

.card-example {
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    /*margin-bottom: 8px;*/
}

.example-label {
    font-weight: 600;
    color: var(--gray-700);
    display: block;
    margin-bottom: 0.25rem;
}

.example-text {
    color: var(--gray-600);
    font-style: italic;
}

.btn-learn-more {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-base);
}

.btn-learn-more:hover {
    color: var(--primary-green);
    gap: 0.5rem;
}

/* --- Feature Boxes --- */
.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-base);
    height: 100%;
    border: 1px solid var(--border-color);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--light-blue), rgba(77, 208, 225, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-base);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: var(--transition-base);
}

.feature-box:hover .feature-icon i {
    color: white;
}

.feature-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-box p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* --- Timeline --- */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-blue), var(--primary-green));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 0 0 8px white;
}

.timeline-content {
    width: 45%;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.timeline-content p {
    margin: 0;
    color: var(--text-secondary);
}

.timeline-icon {
    width: 45%;
    display: flex;
    justify-content: center;
}

.timeline-icon i {
    font-size: 3rem;
    color: var(--primary-blue);
    opacity: 0.2;
}

/* --- Schools Section --- */
.bg-schools {
    background: linear-gradient(135deg, #e3f2fd 0%, #f5f7fa 100%);
}

.schools-image {
    position: relative;
}

.school-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

.school-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.school-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.school-card p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
}

.school-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
}

.stat-label {
    font-size: 0.9rem;
    /*color: var(--text-secondary);*/
}

.schools-content .lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
    margin-bottom: 2rem;
}

.check-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.check-list i {
    color: var(--primary-green);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.testimonial-school {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar i {
    font-size: 1.5rem;
    color: white;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.testimonial-content strong {
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* --- Stats Section --- */
.stats-section {
    /*background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));*/
    background: linear-gradient(135deg, #013D8C 0%, #087B32 100%);
    color: white;
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* --- Use Case Cards --- */
.use-case-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    height: 100%;
}

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

.use-case-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.use-case-icon.school {
    background: linear-gradient(135deg, #1e88e5, #1565c0);
}

.use-case-icon.contest {
    background: linear-gradient(135deg, #ff9800, #f57c00);
}

.use-case-icon.solidarity {
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

.use-case-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.use-case-result {
    margin-bottom: 1rem;
}

.result-amount {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.result-time {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.use-case-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.use-case-author {
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.use-case-author strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.use-case-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* --- FAQ Accordion --- */
.accordion-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 15px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.5rem;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--light-blue);
    color: var(--primary-blue);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e88e5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* --- CTA Final --- */
.cta-final {
    /*background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));*/
    background: linear-gradient(135deg, #024189 30%, #108435 70%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite;
}

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

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
}

.cta-icon i {
    font-size: 3rem;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons .btn-light {
    background: white;
    color: var(--primary-blue);
    border: none;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.cta-feature-item i {
    color: var(--primary-green);
}

/* --- Footer --- */
.footer {
    background: #1a237e;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    height: 70px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 8px rgba(30, 136, 229, 0.3));
    transition: var(--transition-base);
}

.footer-logo:hover {
    filter: drop-shadow(0 4px 12px rgba(30, 136, 229, 0.5));
    transform: scale(1.05);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition-base);
}

.social-link:hover {
    transform: translateY(-3px);
    color: white;
}

/* Couleurs spécifiques des réseaux sociaux */
.social-link.facebook:hover {
    background: #1877f2;
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-link.twitter:hover {
    background: #1da1f2;
    box-shadow: 0 4px 15px rgba(29, 161, 242, 0.4);
}

.social-link.linkedin:hover {
    background: #0a66c2;
    box-shadow: 0 4px 15px rgba(10, 102, 194, 0.4);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

.social-link.whatsapp:hover {
    background: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
}

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

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

.footer-contact li {
    display: flex;
    align-items: start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    color: var(--primary-green);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-payment-methods span {
    color: rgba(255, 255, 255, 0.7);
}

.payment-logo {
    height: 30px;
    border-radius: 5px;
}

/* --- Scroll to Top --- */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(30, 136, 229, 0.4);
}

/* --- Animations --- */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* --- Responsive --- */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-illustration {
        margin-top: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-number {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px;
        text-align: left !important;
    }
    
    .timeline-icon {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
}