/*--------------------------------------------------------------
# SauriBet - Professional Theme CSS
# Version: 2.0
# Colors: #2471d2 (Blue), #f8ce35 (Gold), Azure, White
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
:root {
    /* Primary Colors */
    --primary: #1a3a6e;
    --primary-dark: #1a3a6e;
    --primary-light: #1a3a6e;
    --primary-rgb: 36, 113, 210;

    /* Secondary Colors */
    --secondary: #f8ce35;
    --secondary-dark: #e6bc2a;
    --secondary-light: #ffe066;
    --secondary-rgb: 248, 206, 53;

    /* Neutral Colors */
    --dark: #1a3a6e;
    --dark-light: #1a3a6e;
    --text: #4a5568;
    --text-light: #718096;
    --text-muted: #a0aec0;

    /* Background Colors */
    --white: #ffffff;
    --gray-50: #f7fafc;
    --gray-100: #edf2f7;
    --azure-50: #f0f8ff;
    --azure-100: #e1f0ff;
    --cream-50: #fffef5;
    --cream-100: #fff9e6;

    /* Utility Colors */
    --success: #48bb78;
    --warning: #ed8936;
    --danger: #f56565;
    --border: #e2e8f0;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 10px 30px rgba(var(--primary-rgb), 0.3);
    --shadow-secondary: 0 10px 30px rgba(var(--secondary-rgb), 0.4);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Typography */
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

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

a:hover {
    color: var(--primary-dark);
}

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

::selection {
    background-color: var(--secondary);
    color: var(--dark);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    position: relative;
}

.loader-inner {
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-logo {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

/*--------------------------------------------------------------
# Header / Navigation
--------------------------------------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--dark);
    padding: 12px 0;
    transition: var(--transition);
}

.header-scrolled {
    background: var(--primary);
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.25);
    padding: 8px 0;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.header-scrolled .logo-img {
    height: 45px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    font-style: italic;
}

.logo-accent {
    color: var(--secondary);
}

/* Navigation Menu */
.navbar .nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar .nav-link {
    display: block;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 15px;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--secondary);
    border-radius: var(--radius-full);
}

/* Download Button */
.btn-download {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--secondary);
    color: var(--dark) !important;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.btn-download:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-secondary);
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-xl);
        flex-direction: column;
        gap: 5px;
    }

    .navbar.navbar-mobile .nav-menu {
        display: flex;
    }

    .navbar .nav-link {
        color: var(--dark);
        width: 100%;
        padding: 12px 16px;
    }

    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        background: var(--azure-50);
        color: var(--primary);
    }

    .navbar .nav-link.active::after {
        display: none;
    }

    .nav-cta {
        width: 100%;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px solid var(--border);
    }

    .nav-cta .btn-download {
        width: 100%;
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Cookie Consent
--------------------------------------------------------------*/
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(0);
    transition: var(--transition);
}

.cookie-consent.hiding {
    transform: translateY(100%);
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cookie-icon {
    font-size: 24px;
    color: var(--primary);
}

.cookie-content strong {
    color: var(--dark);
    display: block;
    margin-bottom: 4px;
}

.cookie-content p {
    font-size: 14px;
    color: var(--text-light);
}

.cookie-content a {
    color: var(--primary);
    text-decoration: underline;
}

.btn-cookie-accept {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background: var(--primary-dark);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 500;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.btn-cookie-decline:hover {
    background: var(--gray-50);
    color: var(--dark);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.min-vh-hero {
    min-height: calc(100vh - 100px);
}

/* Hero Background */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #5ba3f0 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-shape 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: -50px;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(90deg); }
    50% { transform: translate(-10px, 20px) rotate(180deg); }
    75% { transform: translate(-20px, -10px) rotate(270deg); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero-title .highlight {
    color: var(--secondary);
    position: relative;
}

.hero-title .underline-text {
    position: relative;
}

.hero-title .underline-text::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(var(--secondary-rgb), 0.4);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--white);
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--secondary);
    color: var(--dark);
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: var(--secondary-light);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stats .stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: var(--radius);
    color: var(--dark);
    font-size: 20px;
}

.hero-stats .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.hero-stats .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
}

.hero-phone {
    display: block;
    max-width: 400px;
    margin: 0 auto;
    animation: float-phone 4s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
}

@keyframes float-phone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    padding: 12px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float-card 3s ease-in-out infinite;
}

.floating-card.card-success {
    top: 20%;
    right: -10px;
    color: var(--success);
    animation-delay: 0s;
}

.floating-card.card-success i {
    font-size: 24px;
}

.floating-card.card-amount {
    bottom: 25%;
    left: -10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    animation-delay: -1.5s;
}

.floating-card .amount {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--success);
}

.floating-card .currency {
    font-size: 12px;
    color: var(--text-light);
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-container {
        margin-bottom: 40px;
    }

    .hero-phone {
        max-width: 280px;
    }

    .floating-card {
        display: none;
    }
}

/*--------------------------------------------------------------
# Trusted Section
--------------------------------------------------------------*/
.trusted-section {
    padding: 40px 0;
    background: var(--white);
}

.trusted-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.trusted-logos {
    display: flex;
    align-items: center;
    gap: 40px; /* plus d’air entre les logos */
    flex-wrap: wrap;
}

.trusted-logo {
    width: 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.trusted-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


.trusted-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* clé du problème */
}
.trusted-logo span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}


/*--------------------------------------------------------------
# Section Styles
--------------------------------------------------------------*/
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--azure-50);
}

.section-header {
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--primary-rgb), 0.05));
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-badge-light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-title {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 16px;
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
# Feature Cards
--------------------------------------------------------------*/
.features-section {
    background: var(--white);
}

.feature-card {
    position: relative;
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card.featured {
    border-color: var(--secondary);
    background: linear-gradient(135deg, var(--cream-50), var(--white));
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 6px 14px;
    background: var(--secondary);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.feature-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
}

.feature-icon {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 28px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon-bg {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 70px;
    height: 70px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: var(--radius-lg);
}

.feature-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--azure-50);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.feature-tag i {
    font-size: 14px;
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps-image-wrapper {
    position: relative;
}

.steps-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.steps-decoration {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(var(--primary-rgb), 0.2);
}

.deco-1 {
    width: 300px;
    height: 300px;
    top: -30px;
    left: -30px;
}

.deco-2 {
    width: 200px;
    height: 200px;
    bottom: -20px;
    right: -20px;
    border-color: rgba(var(--secondary-rgb), 0.3);
}

.steps-content {
    padding-left: 30px;
}

.steps-list {
    margin-top: 40px;
}

.step-item {
    display: flex;
    gap: 24px;
    position: relative;
    padding-bottom: 32px;
}

.step-item:last-child {
    padding-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-secondary);
}

.step-number span {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

.step-line {
    position: absolute;
    left: 30px;
    top: 70px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary), transparent);
}

.btn-primary-gradient {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.btn-primary-gradient:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

@media (max-width: 991px) {
    .steps-content {
        padding-left: 0;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
}

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

.testimonial-card.highlighted {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border: none;
}

.testimonial-card.highlighted .testimonial-info h5,
.testimonial-card.highlighted .testimonial-text {
    color: var(--white);
}

.testimonial-card.highlighted .testimonial-info span,
.testimonial-card.highlighted .testimonial-badge {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-card.highlighted .testimonial-avatar {
    background: var(--secondary);
    color: var(--dark);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-weight: 700;
    border-radius: 50%;
}

.testimonial-info h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-rating {
    margin-bottom: 16px;
}

.testimonial-rating i {
    color: var(--secondary);
    font-size: 16px;
}

.testimonial-text {
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
}

.testimonial-badge i {
    color: var(--success);
}

/*--------------------------------------------------------------
# Download Section
--------------------------------------------------------------*/
.download-section {
    position: relative;
    overflow: hidden;
}

.download-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.download-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #5ba3f0 100%);
}

.download-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2.5a2.5 2.5 0 1 1 0-5V6H0V4h20V1.5a1.5 1.5 0 0 1 3 0V4h17v2H23v2.5a2.5 2.5 0 1 1 0 5V16h17v2H23v2.5a2.5 2.5 0 1 1 0 5V28h17v2H23v2.5a2.5 2.5 0 1 1 0 5V40H0v-2h20v-2.5a2.5 2.5 0 1 1 0-5V28H0v-2h20v-2.5a2.5 2.5 0 1 1 0-5z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.download-content {
    position: relative;
    z-index: 2;
}

.download-title {
    font-size: clamp(28px, 4vw, 40px);
    color: var(--white);
    margin-bottom: 16px;
}

.download-title .highlight {
    color: var(--secondary);
}

.download-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 500px;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-download-primary,
.btn-download-secondary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border-radius: var(--radius-lg);
    font-size: 15px;
    transition: var(--transition);
}

.btn-download-primary {
    background: var(--secondary);
    color: var(--dark);
}

.btn-download-primary:hover {
    background: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary);
    color: var(--dark);
}

.btn-download-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-download-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-download-primary i,
.btn-download-secondary i {
    font-size: 28px;
}

.btn-text span {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.btn-text strong {
    display: block;
    font-size: 16px;
}

.download-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.download-feature i {
    color: var(--secondary);
}

.download-image-wrapper {
    position: relative;
    z-index: 2;
}

.download-image {
    max-width: 280px;
    animation: float-phone 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.download-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.4) 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-section {
    background: var(--azure-50);
}

.faq-header {
    position: sticky;
    top: 120px;
}

.faq-contact-card {
    margin-top: 40px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.faq-contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.faq-contact-content h5 {
    font-size: 18px;
    margin-bottom: 8px;
}

.faq-contact-content p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.btn-outline-primary-custom {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: var(--white);
}

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

.faq-accordion .accordion-button {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
    background: var(--white);
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--azure-50);
    color: var(--primary);
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232471d2' viewBox='0 0 16 16'%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");
}

.faq-icon {
    margin-right: 12px;
    color: var(--primary);
    font-size: 18px;
}

.faq-accordion .accordion-body {
    padding: 0 24px 24px;
    color: var(--text);
    line-height: 1.8;
}

.faq-accordion .accordion-body ul {
    margin-top: 12px;
    padding-left: 20px;
}

.faq-accordion .accordion-body ul li {
    margin-bottom: 8px;
}

.btn-link-custom {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.btn-link-custom:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/*--------------------------------------------------------------
# Final CTA Section
--------------------------------------------------------------*/
.final-cta-section {
    padding: 60px 0 100px;
    background: var(--white);
}

.final-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 50px;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.final-cta-content h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 8px;
}

.final-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--secondary);
    color: var(--dark);
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-lg);
    white-space: nowrap;
    transition: var(--transition);
}

.btn-cta-primary:hover {
    background: var(--secondary-light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-secondary);
}

@media (max-width: 768px) {
    .final-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background: var(--dark);
    color: var(--white);
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    color: var(--azure-50);
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
}

.footer-main {
    padding: 100px 0 60px;
}

/* Footer Brand */
.footer-brand .footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-brand .logo-text {
    font-size: 24px;
}

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

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.badge-item i {
    color: var(--secondary);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--secondary-rgb), 0.15);
    color: var(--secondary);
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-links ul li a {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: var(--transition);
}

.footer-links ul li a i {
    font-size: 10px;
    margin-right: 8px;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--secondary);
}

.footer-links ul li a:hover i {
    margin-right: 12px;
}

/* Footer Contact */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--secondary-rgb), 0.15);
    color: var(--secondary);
    border-radius: var(--radius);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-text span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.contact-text strong {
    color: var(--white);
    font-weight: 500;
}

/* Footer Bottom */
.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.copyright strong {
    color: var(--secondary);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-methods span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.payment-methods img {
    height: 28px;
    opacity: 0.7;
    transition: var(--transition);
}

.payment-methods img:hover {
    opacity: 1;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--dark);
    font-size: 22px;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-secondary);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

/*--------------------------------------------------------------
# WhatsApp Float Button
--------------------------------------------------------------*/
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: var(--white);
    font-size: 28px;
    border-radius: 50%;
    z-index: 998;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    padding: 8px 16px;
    background: var(--dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    border-radius: var(--radius);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--dark);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/*--------------------------------------------------------------
# Legal Pages
--------------------------------------------------------------*/
.legal-page {
    background: var(--azure-50);
    min-height: 100vh;
    padding-top: 120px;
}

.legal-header {
    margin-bottom: 40px;
}

.legal-header h1 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 12px;
}

.legal-header .breadcrumb {
    font-size: 14px;
}

.legal-content {
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary);
}

.legal-section h3 {
    font-size: 18px;
    color: var(--primary);
    margin: 24px 0 16px;
}

.legal-section p,
.legal-section li {
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    padding-left: 24px;
}

.cookie-type {
    background: var(--azure-50);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
    }

    .legal-section h2 {
        font-size: 20px;
    }
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-secondary);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-light {
    background-color: var(--azure-50) !important;
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 1199px) {
    .section {
        padding: 80px 0;
    }
}

@media (max-width: 991px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .faq-header {
        position: static;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 50px 0;
    }

    .hero-cta {
        flex-direction: column;
    }

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

    .download-buttons {
        flex-direction: column;
    }

    .download-buttons .btn {
        width: 100%;
    }

    .trusted-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .scroll-top {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
}

/*--------------------------------------------------------------
# Animation Classes
--------------------------------------------------------------*/
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

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

.slide-up {
    animation: slideUp 0.6s ease forwards;
}

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

/*--------------------------------------------------------------
# Print Styles
--------------------------------------------------------------*/
@media print {
    .header,
    .footer,
    .scroll-top,
    .whatsapp-float,
    .cookie-consent {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section {
        padding: 30px 0;
    }
}
/*--------------------------------------------------------------
# SauriBet - Pages Intérieures CSS
# À ajouter à la suite du style.css principal
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Page Hero Section
--------------------------------------------------------------*/
.page-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #5ba3f0 100%);
}

.page-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.page-hero-title {
    font-size: clamp(36px, 5vw, 52px);
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.page-breadcrumb .breadcrumb {
    margin: 0;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    display: inline-flex;
}

.page-breadcrumb .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.page-breadcrumb .breadcrumb-item a {
    color: var(--secondary);
}

.page-breadcrumb .breadcrumb-item.active {
    color: var(--white);
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "›";
}

.page-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.page-hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/*--------------------------------------------------------------
# Process Overview Section
--------------------------------------------------------------*/
.process-overview-section {
    background: var(--white);
}

.process-card {
    position: relative;
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    overflow: hidden;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--gray-100);
    line-height: 1;
}

.process-icon-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
}

.process-icon {
    position: relative;
    z-index: 2;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    color: var(--white);
    font-size: 36px;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-primary);
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.process-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.process-arrow,
.process-check {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--azure-50);
    border-radius: 50%;
    color: var(--primary);
    font-size: 18px;
}

.process-check {
    background: var(--success);
    color: var(--white);
}

@media (max-width: 991px) {
    .process-arrow {
        display: none;
    }
}

/*--------------------------------------------------------------
# Step Sections
--------------------------------------------------------------*/
.step-section {
    overflow: hidden;
}

/* Step Image */
.step-image-wrapper {
    position: relative;
}

.step-image {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.step-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--secondary);
    color: var(--dark);
    font-weight: 700;
    font-size: 14px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-secondary);
}

.step-image-badge i {
    font-size: 18px;
}

.step-image-badge-alt {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.step-image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px dashed rgba(var(--primary-rgb), 0.2);
    border-radius: var(--radius-xl);
    z-index: -1;
}

/* Step Content */
.step-content {
    padding: 20px 0;
}

.step-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.step-badge-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    border-radius: var(--radius);
    box-shadow: var(--shadow-secondary);
}

.step-badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-badge-deposit .step-badge-number {
    background: linear-gradient(135deg, var(--success), #6dd5a0);
}

.step-badge-withdraw .step-badge-number {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.step-title {
    font-size: clamp(28px, 3.5vw, 36px);
    margin-bottom: 16px;
}

.step-intro {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Step Features */
.step-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-feature-item {
    display: flex;
    gap: 16px;
}

.step-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--azure-50);
    color: var(--primary);
    font-size: 20px;
    border-radius: var(--radius);
}

.step-feature-content h4 {
    font-size: 17px;
    margin-bottom: 6px;
}

.step-feature-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

/* Step CTA */
.step-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.btn-download-dark {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--dark);
    color: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.btn-download-dark:hover {
    background: var(--dark-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-download-dark i {
    font-size: 24px;
}

.btn-download-outline {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.btn-download-outline:hover {
    background: var(--gray-50);
    border-color: var(--dark);
    color: var(--dark);
}

.btn-download-outline i {
    font-size: 24px;
}

.btn-text span {
    display: block;
    font-size: 11px;
    opacity: 0.7;
}

.btn-text strong {
    display: block;
    font-size: 15px;
}

/* Step Tip */
.step-tip {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 32px;
    padding: 20px;
    background: var(--cream-50);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary);
}

.step-tip-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--dark);
    border-radius: 50%;
    font-size: 18px;
}

.step-tip-content {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}

.step-tip-content strong {
    color: var(--dark);
}

/* Numbered Steps List */
.numbered-steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.numbered-step-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.numbered-step-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.numbered-step-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    border-radius: 50%;
}

.numbered-step-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.numbered-step-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
}

/* Step Highlight */
.step-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--success), #6dd5a0);
    color: var(--white);
    border-radius: var(--radius-lg);
}

.step-highlight i {
    font-size: 28px;
}

.step-highlight strong {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}

.step-highlight span {
    font-size: 18px;
    font-weight: 600;
}

.step-highlight-alt {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

/*--------------------------------------------------------------
# Operators Section
--------------------------------------------------------------*/
.operators-section {
    background: var(--azure-50);
}

.operator-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border);
    height: 100%;
    transition: var(--transition);
}

.operator-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.operator-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--azure-100), var(--azure-50));
    color: var(--primary);
    font-size: 32px;
    border-radius: 50%;
}

.operator-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.operator-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing-section {
    background: var(--white);
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    transition: var(--transition);
}

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

.pricing-card-header {
    padding: 32px;
    text-align: center;
}

.pricing-card-deposit .pricing-card-header {
    background: linear-gradient(135deg, var(--success), #6dd5a0);
    color: var(--white);
}

.pricing-card-withdraw .pricing-card-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.pricing-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 28px;
}

.pricing-card-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: inherit;
}

.pricing-card-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 15px;
}

.pricing-card-body {
    padding: 32px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.pricing-item:last-child {
    border-bottom: none;
}

.pricing-item.highlighted {
    background: var(--cream-50);
    margin: 0 -32px;
    padding: 16px 32px;
    border-bottom: none;
}

.pricing-label {
    color: var(--text-light);
    font-size: 15px;
}

.pricing-value {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.pricing-item.highlighted .pricing-value {
    color: var(--primary);
}

.pricing-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    background: var(--cream-100);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--warning);
}

.pricing-notice i {
    color: var(--warning);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-notice strong {
    color: var(--dark);
}

/*--------------------------------------------------------------
# Security Section
--------------------------------------------------------------*/
.security-section {
    background: var(--azure-50);
}

.security-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-xl);
    text-align: center;
    height: 100%;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.security-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 36px;
    border-radius: var(--radius-lg);
}

.security-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.security-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #5ba3f0 100%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40L40 0H20L0 20V40zM20 40L40 20V40H20z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(32px, 4vw, 44px);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--secondary);
    color: var(--dark);
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.btn-cta-primary:hover {
    background: var(--secondary-light);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-secondary);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-3px);
}

.cta-links {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-links a {
    color: var(--secondary);
    text-decoration: underline;
}

.cta-links a:hover {
    color: var(--white);
}

.cta-links .separator {
    margin: 0 8px;
}

/*--------------------------------------------------------------
# FAQ Page Styles
--------------------------------------------------------------*/
.faq-page-section {
    background: var(--white);
}

.faq-category {
    margin-bottom: 48px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--secondary);
}

.faq-category-title i {
    color: var(--primary);
}

.faq-sidebar {
    position: sticky;
    top: 120px;
}

.faq-nav-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.faq-nav-title {
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.faq-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-nav-list li {
    margin-bottom: 8px;
}

.faq-nav-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--text);
    border-radius: var(--radius);
    transition: var(--transition);
}

.faq-nav-list a:hover,
.faq-nav-list a.active {
    background: var(--azure-50);
    color: var(--primary);
}

.faq-nav-list a i {
    font-size: 18px;
}

/*--------------------------------------------------------------
# Contact Page Styles
--------------------------------------------------------------*/
.contact-section {
    background: var(--white);
}

.contact-info-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 24px;
    border-radius: var(--radius-lg);
}

.contact-info-content h4 {
    font-size: 17px;
    margin-bottom: 6px;
}

.contact-info-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 15px;
}

.contact-info-content a {
    color: var(--primary);
    font-weight: 500;
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form-title {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-form-subtitle {
    color: var(--text-light);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
}

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

.form-control::placeholder {
    color: var(--text-muted);
}

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

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

/*--------------------------------------------------------------
# Responsive Adjustments for Pages
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .page-hero {
        padding: 140px 0 80px;
    }

    .step-cta {
        flex-direction: column;
    }

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

    .faq-sidebar {
        position: static;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero-title {
        font-size: 32px;
    }

    .step-feature-item {
        flex-direction: column;
        gap: 12px;
    }

    .step-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .numbered-step-item {
        flex-direction: column;
        gap: 12px;
    }

    .pricing-item.highlighted {
        margin: 0 -20px;
        padding: 16px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

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

    .contact-form-card {
        padding: 24px;
    }
}
/*--------------------------------------------------------------
# FAQ Page Specific Styles
--------------------------------------------------------------*/

/* FAQ Search Box */
.faq-search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto 24px;
}

.faq-search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 18px;
}

.faq-search-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 16px;
    color: var(--white);
    transition: var(--transition);
}

.faq-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.faq-search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--secondary);
}

/* FAQ Categories Section */
.faq-categories-section {
    padding: 30px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.faq-categories-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.faq-category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--gray-50);
    color: var(--text);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-category-btn:hover {
    background: var(--azure-50);
    color: var(--primary);
    transform: translateY(-2px);
}

.faq-category-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.faq-category-btn i {
    font-size: 18px;
}

/* FAQ Content Section */
.faq-content-section {
    background: var(--gray-50);
}

/* FAQ Sidebar */
.faq-sidebar {
    position: sticky;
    top: 140px;
}

.faq-stats-card,
.faq-nav-card,
.faq-contact-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.faq-stats-card h4,
.faq-nav-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.faq-stats-card h4 i,
.faq-nav-card h4 i {
    color: var(--primary);
}

.faq-stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.faq-stat-item:last-child {
    border-bottom: none;
}

.faq-stat-number {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.faq-stat-label {
    font-size: 14px;
    color: var(--text-light);
}

/* FAQ Navigation */
.faq-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-nav-list li {
    margin-bottom: 4px;
}

.faq-nav-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    color: var(--text);
    border-radius: var(--radius);
    transition: var(--transition);
    font-size: 14px;
}

.faq-nav-list a:hover,
.faq-nav-list a.active {
    background: var(--azure-50);
    color: var(--primary);
}

.faq-nav-list a i {
    font-size: 16px;
    color: var(--primary);
}

/* FAQ Contact Card */
.faq-contact-card {
    text-align: center;
    background: linear-gradient(135deg, var(--azure-50), var(--white));
}

.faq-contact-card .faq-contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 28px;
    border-radius: var(--radius-lg);
}

.faq-contact-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.faq-contact-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

/* FAQ Main Content */
.faq-main-content {
    padding-left: 20px;
}

/* FAQ Section Block */
.faq-section-block {
    margin-bottom: 48px;
}

.faq-section-block:last-child {
    margin-bottom: 0;
}

.faq-section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border);
}

.faq-section-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 24px;
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.faq-section-icon-compte {
    background: linear-gradient(135deg, #6366f1, #818cf8);
}

.faq-section-icon-depot {
    background: linear-gradient(135deg, var(--success), #6dd5a0);
}

.faq-section-icon-retrait {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.faq-section-icon-securite {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.faq-section-icon-technique {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
}

.faq-section-header h2 {
    font-size: 22px;
    margin-bottom: 4px;
}

.faq-section-header p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* FAQ Accordion Enhanced */
.faq-accordion .accordion-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg) !important;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.faq-accordion .accordion-button {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    gap: 12px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--azure-50);
    color: var(--primary);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232471d2' viewBox='0 0 16 16'%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");
    transition: var(--transition);
}

.faq-q-icon {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.faq-accordion .accordion-body {
    padding: 0 24px 24px;
    color: var(--text);
    line-height: 1.8;
}

.faq-accordion .accordion-body p {
    margin-bottom: 16px;
}

.faq-accordion .accordion-body p:last-child {
    margin-bottom: 0;
}

/* FAQ Lists */
.faq-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.faq-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
}

.faq-list li i {
    color: var(--success);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.faq-list-security li i {
    color: var(--primary);
}

.faq-ordered-list {
    padding-left: 0;
    counter-reset: item;
    list-style: none;
    margin: 16px 0;
}

.faq-ordered-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    counter-increment: item;
}

.faq-ordered-list li::before {
    content: counter(item);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--azure-50);
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    border-radius: 50%;
}

/* FAQ Highlight Boxes */
.faq-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--azure-50);
    color: var(--primary);
    border-radius: var(--radius);
    font-weight: 500;
    margin-top: 16px;
}

.faq-highlight i {
    font-size: 20px;
}

.faq-highlight-success {
    background: rgba(72, 187, 120, 0.1);
    color: var(--success);
}

.faq-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: var(--cream-50);
    border-left: 4px solid var(--secondary);
    border-radius: var(--radius);
    margin-top: 16px;
    font-size: 14px;
}

.faq-info-box i {
    color: var(--secondary);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-warning-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--warning);
    border-radius: var(--radius);
    margin-top: 16px;
    font-size: 14px;
}

.faq-warning-box i {
    color: var(--warning);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* FAQ Limits Grid */
.faq-limits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 16px 0;
}

.faq-limit-item {
    text-align: center;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.faq-limit-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.faq-limit-value {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

/* FAQ Devices Grid */
.faq-devices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 16px 0;
}

.faq-device-item {
    text-align: center;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.faq-device-item i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 12px;
}

.faq-device-item strong {
    display: block;
    font-size: 16px;
    color: var(--dark);
    margin-bottom: 4px;
}

.faq-device-item span {
    font-size: 13px;
    color: var(--text-light);
}

/* Hidden state for filtered items */
.faq-item.hidden {
    display: none;
}

/* CTA Section Enhancements */
.cta-icon-large {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    font-size: 44px;
    color: var(--secondary);
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.cta-contact-item i {
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 991px) {
    .faq-categories-section {
        position: static;
    }

    .faq-sidebar {
        position: static;
        margin-bottom: 40px;
    }

    .faq-main-content {
        padding-left: 0;
    }

    .faq-stats-card,
    .faq-nav-card {
        display: none;
    }
}

@media (max-width: 767px) {
    .faq-categories-wrapper {
        gap: 8px;
    }

    .faq-category-btn {
        padding: 10px 14px;
        font-size: 13px;
    }

    .faq-category-btn span {
        display: none;
    }

    .faq-category-btn i {
        font-size: 20px;
    }

    .faq-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .faq-limits-grid,
    .faq-devices-grid {
        grid-template-columns: 1fr;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 16px;
    }
}
/*--------------------------------------------------------------
# Contact Page Specific Styles
--------------------------------------------------------------*/

/* Contact Methods Section */
.contact-methods-section {
    background: var(--white);
    padding-top: 60px;
}

.contact-method-card {
    position: relative;
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    text-align: center;
    height: 100%;
    transition: var(--transition);
    overflow: hidden;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.contact-method-featured {
    border-color: var(--success);
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.05), var(--white));
}

.contact-method-featured:hover {
    border-color: var(--success);
}

.featured-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 12px;
    background: var(--success);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 32px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.contact-method-card:hover .contact-method-icon {
    transform: scale(1.1);
}

.contact-method-featured .contact-method-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-method-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.contact-method-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-method-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.contact-method-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.contact-method-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    padding: 8px 14px;
    background: var(--azure-50);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.contact-method-featured .contact-method-badge {
    background: rgba(72, 187, 120, 0.1);
    color: var(--success);
}

/* Contact Form Section */
.contact-form-section {
    background: var(--azure-50);
}

.contact-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

/* Form Container */
.contact-form-container {
    padding: 48px;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.form-header p {
    color: var(--text-light);
    font-size: 15px;
}

/* Custom Alerts */
.alert-custom {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.alert-custom i {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-custom strong {
    display: block;
    margin-bottom: 4px;
}

.alert-custom p {
    margin: 0;
    font-size: 14px;
}

.alert-success {
    background: rgba(72, 187, 120, 0.1);
    border-left: 4px solid var(--success);
}

.alert-success i {
    color: var(--success);
}

.alert-error {
    background: rgba(245, 101, 101, 0.1);
    border-left: 4px solid var(--danger);
}

.alert-error i {
    color: var(--danger);
}

/* Form Styles */
.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-form .form-label i {
    color: var(--primary);
    font-size: 16px;
}

.contact-form .form-label .required {
    color: var(--danger);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--white);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
    border-color: var(--danger);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.invalid-feedback {
    font-size: 13px;
    margin-top: 6px;
}

/* Custom Checkbox */
.form-check-custom {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-check-custom .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    border: 2px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-check-custom .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-custom .form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.form-check-custom .form-check-label {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
}

.form-check-custom .form-check-label a {
    color: var(--primary);
    text-decoration: underline;
}

/* Submit Button */
.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-submit i {
    font-size: 18px;
}

/* Contact Sidebar */
.contact-sidebar {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 48px 36px;
    height: 100%;
    color: var(--white);
}

.sidebar-header {
    margin-bottom: 36px;
}

.sidebar-header h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 8px;
}

.sidebar-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 0;
}

/* Info Items */
.info-items {
    margin-bottom: 36px;
}

.info-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.info-item:last-child {
    border-bottom: none;
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary);
    font-size: 20px;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 6px;
}

.info-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.info-content strong {
    color: var(--secondary);
}

/* Sidebar Social */
.sidebar-social {
    margin-bottom: 36px;
}

.sidebar-social h4 {
    font-size: 16px;
    color: var(--white);
    margin-bottom: 16px;
}

.social-links-grid {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 20px;
    border-radius: 50%;
    transition: var(--transition);
}

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

.social-btn-whatsapp:hover {
    background: #25D366;
    color: var(--white);
}

/* Sidebar Tip */
.sidebar-tip {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--secondary);
}

.tip-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    color: var(--dark);
    font-size: 18px;
    border-radius: 50%;
    flex-shrink: 0;
}

.tip-content strong {
    display: block;
    color: var(--secondary);
    font-size: 14px;
    margin-bottom: 6px;
}

.tip-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.tip-content strong {
    color: var(--white);
}

/* Quick FAQ Section */
.quick-faq-section {
    background: var(--white);
}

.quick-faq-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.quick-faq-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.quick-faq-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-size: 28px;
    border-radius: var(--radius-lg);
}

.quick-faq-icon-green {
    background: linear-gradient(135deg, var(--success), #6dd5a0);
}

.quick-faq-icon-orange {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.quick-faq-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.quick-faq-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.quick-faq-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.quick-faq-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-form-container {
        padding: 36px 28px;
    }

    .contact-sidebar {
        padding: 36px 28px;
    }
}

@media (max-width: 767px) {
    .contact-form-container {
        padding: 28px 20px;
    }

    .contact-sidebar {
        padding: 28px 20px;
    }

    .form-header h2 {
        font-size: 24px;
    }

    .sidebar-header h3 {
        font-size: 20px;
    }

    .social-links-grid {
        justify-content: center;
    }
}
/*--------------------------------------------------------------
# Mobile Navigation Fix - À ajouter au style.css
--------------------------------------------------------------*/

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

/* Hamburger Animation */
.mobile-nav-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-nav-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Desktop Navigation - Default */
@media (min-width: 992px) {
    .mobile-nav-toggle {
        display: none !important;
    }

    .navbar .nav-menu {
        display: flex !important;
        align-items: center;
        gap: 8px;
        list-style: none;
        margin: 0;
        padding: 0;
        position: static;
        background: transparent;
        box-shadow: none;
        flex-direction: row;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    /* Hide menu by default on mobile */
    .navbar .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        padding: 30px 20px;
        flex-direction: column;
        gap: 8px;
        list-style: none;
        margin: 0;
        overflow-y: auto;
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    /* Show menu when navbar-mobile class is active */
    .navbar.navbar-mobile .nav-menu {
        display: flex !important;
    }

    /* Mobile nav links */
    .navbar .nav-menu .nav-link {
        display: block;
        width: 100%;
        padding: 16px 20px;
        color: var(--dark);
        font-weight: 600;
        font-size: 16px;
        border-radius: var(--radius);
        transition: var(--transition);
        background: var(--gray-50);
        margin-bottom: 4px;
    }

    .navbar .nav-menu .nav-link:hover,
    .navbar .nav-menu .nav-link.active {
        background: var(--azure-100);
        color: var(--primary);
    }

    .navbar .nav-menu .nav-link.active::after {
        display: none;
    }

    /* Mobile CTA button */
    .navbar .nav-menu .nav-cta {
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--border);
    }

    .navbar .nav-menu .nav-cta .btn-download {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 16px;
    }

    /* Prevent body scroll when menu is open */
    body.mobile-nav-active {
        overflow: hidden;
    }
}

/* Small mobile devices */
@media (max-width: 575px) {
    .navbar .nav-menu {
        top: 65px;
        padding: 20px 15px;
    }

    .navbar .nav-menu .nav-link {
        padding: 14px 16px;
        font-size: 15px;
    }
}