/* Import Google Fonts - Manrope (similaire à HP Simplified) */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ===== VARIABLES CSS - Stripe-Inspired Modern Design ===== */
:root {
    --primary-color: #635bff;
    --secondary-color: #0a2540;
    --accent-color: #00d4ff;
    --assistance-color: #ff6b35;
    --gradient-1: linear-gradient(135deg, #635bff 0%, #7a73ff 50%, #9b95ff 100%);
    --gradient-2: linear-gradient(135deg, #635bff 0%, #00d4ff 100%);
    --gradient-hero: linear-gradient(180deg, rgba(99,91,255,0.05) 0%, rgba(255,255,255,1) 100%);
    --dark-color: #0a2540;
    --light-color: #f6f9fc;
    --white: #ffffff;
    --text-dark: #0a2540;
    --text-light: #425466;
    --border-color: #e3e8ee;
    --shadow-sm: 0 1px 3px rgba(50, 50, 93, 0.15), 0 1px 0 rgba(0, 0, 0, 0.02);
    --shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 35px rgba(50, 50, 93, 0.1), 0 5px 15px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.95rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== HEADER & NAVIGATION ===== */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
}

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

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 10;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo {
    transform: translateX(-50%) scale(0.75);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo img {
    height: 45px;
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin-right: auto;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-menu {
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

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

/* Assistance Dropdown - Bien mise en valeur */
.assistance-dropdown {
    position: relative;
    margin-left: auto;
}

/* Assistance Link - Highlighted & Prominent */
.nav-link-assistance {
    background: linear-gradient(135deg, var(--assistance-color), #ff8757);
    color: var(--white) !important;
    padding: 0.875rem 1.75rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    animation: pulse-assistance 3s ease-in-out infinite;
    white-space: nowrap;
}

.navbar.scrolled .nav-link-assistance {
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
}

@keyframes pulse-assistance {
    0%, 100% {
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    }
}

.nav-link-assistance i.fa-life-ring {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-link-assistance i.fa-life-ring {
    font-size: 1rem;
}

.nav-link-assistance i.fa-chevron-down {
    font-size: 0.8rem;
    margin-left: 0.25rem;
}

.nav-link-assistance::after {
    display: none;
}

.nav-link-assistance:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #ff8757, var(--assistance-color));
}

.nav-link-assistance.active {
    background: linear-gradient(135deg, #ff8757, var(--assistance-color));
}

.nav-link-assistance i.fa-life-ring {
    font-size: 1.1rem;
}

.nav-link-assistance i.fa-chevron-down {
    font-size: 0.75rem;
}

/* Assistance Dropdown Styling */
.assistance-dropdown .dropdown-menu {
    min-width: 280px;
}

.assistance-dropdown .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
}

.assistance-dropdown .dropdown-menu .teamviewer-link {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 180, 216, 0.1));
    border-left: 3px solid #007bff;
    font-weight: 600;
}

.assistance-dropdown .dropdown-menu .teamviewer-link:hover {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.15), rgba(0, 180, 216, 0.15));
}

.assistance-dropdown .dropdown-menu .teamviewer-link i {
    color: #007bff;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 250px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    margin-top: 1rem;
}

.dropdown-menu-right {
    left: auto;
    right: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.dropdown-menu a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.dropdown-menu i {
    font-size: 1rem;
    width: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* ===== BUTTONS - Modern Stripe Style ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: var(--shadow);
}

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

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

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

.btn-block {
    width: 100%;
}

/* ===== HERO SECTION - Modern with Video Background ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--secondary-color);
    color: var(--white);
    padding-top: 140px;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, rgba(10, 37, 64, 0.6) 0%, rgba(99, 91, 255, 0.4) 100%);
    z-index: 1;
    backdrop-filter: blur(2px);
    overflow: hidden;
}

.atmo-layer {
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    pointer-events: none;
}

.atmo-1 {
    background:
        radial-gradient(ellipse 700px 500px at 10% 30%, rgba(99, 91, 255, 0.55) 0%, transparent 70%),
        radial-gradient(ellipse 500px 400px at 90% 70%, rgba(0, 212, 255, 0.4) 0%, transparent 65%);
    animation: atmoFloat1 7s ease-in-out infinite;
}

.atmo-2 {
    background:
        radial-gradient(ellipse 600px 450px at 80% 20%, rgba(0, 212, 255, 0.5) 0%, transparent 65%),
        radial-gradient(ellipse 550px 400px at 20% 80%, rgba(99, 91, 255, 0.4) 0%, transparent 70%);
    animation: atmoFloat2 9s ease-in-out infinite;
}

.atmo-3 {
    background:
        radial-gradient(ellipse 400px 400px at 50% 50%, rgba(255, 255, 255, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 500px 350px at 60% 30%, rgba(0, 212, 255, 0.3) 0%, transparent 55%),
        radial-gradient(ellipse 450px 350px at 35% 65%, rgba(99, 91, 255, 0.3) 0%, transparent 60%);
    animation: atmoFloat3 11s ease-in-out infinite;
}

@keyframes atmoFloat1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    33% {
        transform: translate(5%, -4%) scale(1.12);
        opacity: 1;
    }
    66% {
        transform: translate(-3%, 3%) scale(0.95);
        opacity: 0.7;
    }
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
}

@keyframes atmoFloat2 {
    0% {
        transform: translate(0, 0) scale(1.05);
        opacity: 0.8;
    }
    33% {
        transform: translate(-5%, 3%) scale(1);
        opacity: 0.5;
    }
    66% {
        transform: translate(4%, -5%) scale(1.15);
        opacity: 1;
    }
    100% {
        transform: translate(0, 0) scale(1.05);
        opacity: 0.8;
    }
}

@keyframes atmoFloat3 {
    0% {
        transform: translate(2%, 2%) scale(1.1) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translate(-4%, -3%) scale(1) rotate(1deg);
        opacity: 1;
    }
    50% {
        transform: translate(3%, -4%) scale(1.15) rotate(-1deg);
        opacity: 0.5;
    }
    75% {
        transform: translate(-2%, 5%) scale(0.95) rotate(0.5deg);
        opacity: 0.9;
    }
    100% {
        transform: translate(2%, 2%) scale(1.1) rotate(0deg);
        opacity: 0.6;
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-description {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
    color: var(--white);
}

.scroll-indicator i {
    font-size: 2rem;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-in 0.9s both;
}

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

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* ===== SERVICES SECTION - Modern Design ===== */
.services {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

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

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.1) 0%, rgba(99, 91, 255, 0.2) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    background: var(--gradient-1);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card > p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    opacity: 0.85;
}

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

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--primary-color);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    gap: 1rem;
}

/* Service Button - Modern Style */
.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #7a73ff 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.2);
    margin-top: auto;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 91, 255, 0.4);
    gap: 1rem;
}

.service-btn:active {
    transform: translateY(-1px);
}

.service-btn span {
    position: relative;
    z-index: 1;
}

.service-btn i {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* ===== STATS SECTION - Modern & Clean ===== */
.stats {
    padding: 5rem 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 1.5rem;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 1px;
    background: var(--border-color);
}

.stat-item:last-child::after {
    display: none;
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    opacity: 0.7;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== ABOUT SECTION - REDESIGNED ===== */
.about {
    padding: 6rem 0;
    background-color: var(--light-color);
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.1), rgba(0, 212, 255, 0.1));
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(99, 91, 255, 0.2);
}

.about-header h2 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 2.75rem;
}

.about-tagline {
    font-size: 1.25rem;
    color: var(--text-light);
    margin: 0;
}

/* About Content Wrapper */
.about-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Featured Card */
.about-main-block {
    width: 100%;
}

.about-featured-card {
    background: linear-gradient(135deg, var(--white) 0%, #f9fafe 100%);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(99, 91, 255, 0.1);
    border: 2px solid rgba(99, 91, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.about-featured-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(99, 91, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 91, 255, 0.15);
}

/* Featured Icon */
.featured-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(99, 91, 255, 0.3);
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-1);
    opacity: 0.3;
    animation: pulse 2s ease-out infinite;
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.about-featured-card h3 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    font-size: 2rem;
}

.about-featured-card p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Featured Stats */
.featured-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.mini-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mini-stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Expertise Grid */
.about-expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.expertise-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 91, 255, 0.3);
}

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

.expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    transition: var(--transition-smooth);
}

.expertise-card:hover .expertise-icon {
    background: var(--gradient-1);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.expertise-card h4 {
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.expertise-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.expertise-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-1);
    color: var(--white);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Coverage Area */
.about-coverage {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    color: var(--white);
}

.coverage-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.coverage-header i {
    font-size: 2rem;
}

.coverage-header h4 {
    color: var(--white);
    margin: 0;
    font-size: 1.5rem;
}

.coverage-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.city-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.city-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.city-tag i {
    font-size: 0.9rem;
}

/* OLD STYLES FOR COMPATIBILITY */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 5rem;
}

.about-content h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-values {
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.value-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.value-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

/* ===== WHY CHOOSE US - Modern Cards ===== */
.why-choose {
    padding: 6rem 0;
    background: var(--light-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.benefit-card:hover::before {
    opacity: 1;
}

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

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.benefit-card:hover i {
    color: var(--white);
    transform: scale(1.1);
}

.benefit-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.benefit-card:hover h3 {
    color: var(--white);
}

.benefit-card p {
    color: var(--text-light);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.benefit-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

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

/* ===== CONTACT FORM - Modern & Clean ===== */
.contact-form {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.125rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 91, 255, 0.1);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-light);
    transition: var(--transition);
    pointer-events: none;
    background-color: var(--white);
    padding: 0 0.25rem;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.875rem;
    color: var(--primary-color);
}

.form-group select + label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.875rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: var(--border-radius);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== SCROLL TO TOP - Modern Style ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

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

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar.scrolled {
        padding: 0.5rem 0;
    }

    .logo {
        position: relative;
        left: 0;
        transform: none;
        order: 1;
    }

    .logo img {
        height: 45px;
    }

    .navbar.scrolled .logo {
        transform: scale(0.9);
    }

    .navbar.scrolled .logo img {
        height: 40px;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
        order: 3;
    }

    .navbar-container {
        flex-wrap: wrap;
    }

    /* Menu déroulant mobile */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        box-shadow: var(--shadow);
        z-index: 999;
        overflow-y: auto;
        transition: var(--transition);
        padding: 2rem 0;
        flex-direction: column;
        gap: 0;
        margin-right: 0;
        order: 4;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu > li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
    }

    .assistance-dropdown {
        order: 2;
        margin-left: 0;
        margin-right: auto;
    }

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

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

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

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: var(--light-color);
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
    }

    .dropdown.active .dropdown-menu {
        max-height: 300px;
    }

    .dropdown > .nav-link i {
        transition: transform 0.3s ease;
    }

    .dropdown.active > .nav-link i {
        transform: rotate(180deg);
    }

    .dropdown-menu a {
        padding: 0.875rem 2rem;
    }

    /* Assistance mobile reste visible en haut */
    .assistance-dropdown {
        position: relative;
    }

    .assistance-dropdown .dropdown-menu {
        width: auto;
        min-width: 280px;
    }

    .dropdown-menu-right {
        right: 0;
        left: auto;
    }

    .nav-link-assistance {
        font-size: 0.95rem;
        padding: 0.625rem 1.25rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-expertise-grid {
        grid-template-columns: 1fr;
    }

    .about-header h2 {
        font-size: 2rem;
    }

    .featured-stats {
        gap: 2rem;
    }

    .about-featured-card {
        padding: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .btn {
        width: 100%;
    }

    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .google-header {
        gap: 1rem;
    }

    .about-expertise-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-header h2 {
        font-size: 1.75rem;
    }

    .about-tagline {
        font-size: 1.1rem;
    }

    .featured-stats {
        gap: 1.5rem;
    }

    .mini-stat-number {
        font-size: 2rem;
    }

    .coverage-cities {
        gap: 0.75rem;
    }

    .city-tag {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .about-coverage {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .google-logo {
        height: 35px;
    }

    .rating-number {
        font-size: 1.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 1.5rem;
    }

    .reviewer-avatar {
        width: 48px;
        height: 48px;
    }

    .reviewer-avatar span {
        font-size: 1.1rem;
    }

    .reviewer-info h4 {
        font-size: 0.938rem;
    }

    .review-meta .stars i {
        font-size: 0.875rem;
    }

    .review-date {
        font-size: 0.75rem;
    }

    .review-text {
        font-size: 0.938rem;
    }

    .about-header h2 {
        font-size: 1.5rem;
    }

    .about-tagline {
        font-size: 1rem;
    }

    .about-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1rem;
    }

    .about-featured-card {
        padding: 1.5rem;
    }

    .about-featured-card h3 {
        font-size: 1.5rem;
    }

    .about-featured-card p {
        font-size: 1rem;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .featured-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .mini-stat-number {
        font-size: 1.75rem;
    }

    .mini-stat-label {
        font-size: 0.85rem;
    }

    .expertise-card {
        padding: 1.5rem;
    }

    .expertise-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .coverage-header h4 {
        font-size: 1.25rem;
    }

    .coverage-header i {
        font-size: 1.5rem;
    }

    .about-coverage {
        padding: 1.5rem;
    }

    .city-tag {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ===== GOOGLE REVIEWS SECTION ===== */
.google-reviews {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--white) 0%, var(--light-color) 100%);
}

.google-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.google-logo {
    height: 45px;
    width: auto;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.rating-summary .stars {
    display: flex;
    gap: 0.25rem;
}

.rating-summary .stars i {
    color: #fbbc04;
    font-size: 1.5rem;
}

.rating-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.review-count {
    color: var(--text-light);
    font-size: 1rem;
}

.reviews-wrapper {
    overflow: hidden;
    position: relative;
    margin-bottom: 3rem;
    padding: 1rem 0;
}

.reviews-wrapper::before,
.reviews-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--light-color) 0%, transparent 100%);
}

.reviews-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--light-color) 0%, transparent 100%);
}

.reviews-grid {
    display: flex;
    gap: 2rem;
    animation: scrollReviews 40s linear infinite;
    width: fit-content;
}

.reviews-grid:hover {
    animation-play-state: paused;
}

@keyframes scrollReviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.review-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfd 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -30px;
    right: 15px;
    font-size: 10rem;
    color: rgba(99, 91, 255, 0.04);
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: 700;
}

.review-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(99, 91, 255, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(99, 91, 255, 0.3);
}

.review-card:hover::after {
    transform: scaleX(1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.reviewer-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.reviewer-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover .reviewer-avatar::after {
    opacity: 1;
}

.review-card:hover .reviewer-avatar {
    transform: scale(1.1) rotate(5deg);
}

.reviewer-avatar span {
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.reviewer-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    min-width: 0;
}

.reviewer-info h4 {
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.review-meta .stars {
    display: flex;
    gap: 0.125rem;
    flex-shrink: 0;
}

.review-meta .stars i {
    color: #fbbc04;
    font-size: 0.95rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.813rem;
    white-space: nowrap;
    font-weight: 500;
    opacity: 0.85;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

/* Hidden reviews */
.review-card.hidden {
    display: none;
}

/* Load More Button */
.load-more-reviews {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.btn-load-more {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    padding: 1rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(99, 91, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-load-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn-load-more:hover::before {
    left: 100%;
}

.btn-load-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(99, 91, 255, 0.4);
}

.btn-load-more:active {
    transform: translateY(-1px);
}

.btn-load-more i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-load-more:hover i {
    transform: rotate(180deg);
}

.btn-load-more.hidden {
    display: none;
}

.reviews-cta {
    text-align: center;
    margin-top: 2rem;
}

.reviews-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.reviews-cta .btn i {
    font-size: 1.25rem;
}

.review-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--light-color);
    border-radius: var(--border-radius-lg);
    border: 2px dashed var(--border-color);
}

.review-error i {
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.review-error p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0.5rem 0;
}

/* ===== AOS ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: perspective(2500px) rotateY(-100deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(2500px) rotateY(0);
}

/* ===== SIDE PARTICLES ANIMATION ===== */
.side-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.side-particles .particle-column {
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
}

.side-particles .particle-column.left { left: 0; }
.side-particles .particle-column.right { right: 0; }

.side-particles .particle {
    position: absolute;
    border-radius: 50%;
}

/* Left particles */
.side-particles .p-l1 {
    width: 4px; height: 4px; left: 25px;
    background: var(--primary-color); box-shadow: 0 0 8px var(--primary-color);
    animation: sideParticleRise 8s linear infinite;
}
.side-particles .p-l2 {
    width: 5px; height: 5px; left: 60px;
    background: var(--accent-color); box-shadow: 0 0 10px var(--accent-color);
    animation: sideParticleRise 10s linear infinite 1.5s;
}
.side-particles .p-l3 {
    width: 3px; height: 3px; left: 90px;
    background: var(--primary-color); box-shadow: 0 0 6px var(--primary-color);
    animation: sideParticleRise 9s linear infinite 3s;
}
.side-particles .p-l4 {
    width: 4px; height: 4px; left: 40px;
    background: var(--accent-color); box-shadow: 0 0 8px var(--accent-color);
    animation: sideParticleRise 11s linear infinite 5s;
}
.side-particles .p-l5 {
    width: 3px; height: 3px; left: 110px;
    background: var(--primary-color); box-shadow: 0 0 6px var(--primary-color);
    animation: sideParticleRise 7s linear infinite 2s;
}
.side-particles .p-l6 {
    width: 4px; height: 4px; left: 15px;
    background: var(--accent-color); box-shadow: 0 0 7px var(--accent-color);
    animation: sideParticleRise 12s linear infinite 4s;
}
.side-particles .p-l7 {
    width: 3px; height: 3px; left: 75px;
    background: var(--primary-color); box-shadow: 0 0 6px var(--primary-color);
    animation: sideParticleRise 9.5s linear infinite 6.5s;
}

/* Right particles */
.side-particles .p-r1 {
    width: 4px; height: 4px; right: 25px;
    background: var(--accent-color); box-shadow: 0 0 8px var(--accent-color);
    animation: sideParticleRise 9s linear infinite 0.5s;
}
.side-particles .p-r2 {
    width: 5px; height: 5px; right: 55px;
    background: var(--primary-color); box-shadow: 0 0 10px var(--primary-color);
    animation: sideParticleRise 8s linear infinite 2.5s;
}
.side-particles .p-r3 {
    width: 3px; height: 3px; right: 90px;
    background: var(--accent-color); box-shadow: 0 0 6px var(--accent-color);
    animation: sideParticleRise 10s linear infinite 4.5s;
}
.side-particles .p-r4 {
    width: 4px; height: 4px; right: 35px;
    background: var(--primary-color); box-shadow: 0 0 8px var(--primary-color);
    animation: sideParticleRise 11s linear infinite 1s;
}
.side-particles .p-r5 {
    width: 3px; height: 3px; right: 110px;
    background: var(--accent-color); box-shadow: 0 0 6px var(--accent-color);
    animation: sideParticleRise 7.5s linear infinite 3.5s;
}
.side-particles .p-r6 {
    width: 4px; height: 4px; right: 70px;
    background: var(--primary-color); box-shadow: 0 0 7px var(--primary-color);
    animation: sideParticleRise 12s linear infinite 5.5s;
}
.side-particles .p-r7 {
    width: 3px; height: 3px; right: 15px;
    background: var(--accent-color); box-shadow: 0 0 6px var(--accent-color);
    animation: sideParticleRise 8.5s linear infinite 7s;
}

@keyframes sideParticleRise {
    0% { bottom: -10px; opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.5; }
    100% { bottom: 105%; opacity: 0; }
}

/* Hide particles on small screens where side margins don't exist */
@media (max-width: 1400px) {
    .side-particles { display: none; }
}
