/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette Professionnelle B.E.V. */
    --primary-color: #8bc34a;
    --primary-dark: #689f38;
    --primary-light: #aed581;
    --primary-gradient: linear-gradient(135deg, #8bc34a 0%, #689f38 100%);
    --secondary-color: #1e3a8a;
    --secondary-light: #3b5998;
    --accent-color: #7b2d8e;
    --dark-color: #1a1a1a;
    --dark-gray: #2d3748;
    --light-color: #f8f9fa;
    --lighter-color: #fafbfc;
    --text-color: #2d3748;
    --text-light: #718096;
    --text-muted: #a0aec0;
    --white: #ffffff;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --success-color: #27ae60;
    --border-color: #e2e8f0;
    --border-light: #edf2f7;
    
    /* Ombres Professionnelles */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 20px 60px rgba(0, 0, 0, 0.18);
    
    /* Transitions Professionnelles */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Espacements Professionnels */
    --space-xs: 0.4rem;
    --space-sm: 0.8rem;
    --space-md: 1.2rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
    cursor: none;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loaded {
    cursor: default;
}

/* Typographie Professionnelle */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-gray);
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.35rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--space-md);
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.75;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--primary-gradient);
    z-index: 10001;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 8px rgba(139, 195, 74, 0.3);
}

.scroll-progress::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ===== Custom 3D Cursor ===== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease, opacity 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.2s ease;
    opacity: 0.5;
}

.cursor-dot.hover,
.cursor-outline.hover {
    transform: scale(1.5);
}

/* ===== 3D Page Loader ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* Logo en haut avec ombre élégante */
.loader-logo {
    position: relative;
    width: 150px;
    height: 150px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    box-shadow: 
        0 15px 60px rgba(139, 195, 74, 0.25),
        0 8px 30px rgba(30, 58, 138, 0.15),
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 0 0 10px rgba(139, 195, 74, 0.05),
        inset 0 2px 5px rgba(255, 255, 255, 0.9);
    animation: logoFloat 3s ease-in-out infinite;
    z-index: 2;
}

.loader-logo::before {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color),
        var(--primary-color)
    );
    opacity: 0.15;
    animation: rotate 4s linear infinite;
    z-index: -1;
    filter: blur(8px);
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 5px 15px rgba(139, 195, 74, 0.35));
    position: relative;
    z-index: 1;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0) scale(1);
        box-shadow: 
            0 15px 60px rgba(139, 195, 74, 0.25),
            0 8px 30px rgba(30, 58, 138, 0.15),
            0 4px 15px rgba(0, 0, 0, 0.1),
            0 0 0 10px rgba(139, 195, 74, 0.05),
            inset 0 2px 5px rgba(255, 255, 255, 0.9);
    }
    50% { 
        transform: translateY(-12px) scale(1.05);
        box-shadow: 
            0 20px 70px rgba(139, 195, 74, 0.35),
            0 12px 40px rgba(30, 58, 138, 0.2),
            0 6px 20px rgba(0, 0, 0, 0.15),
            0 0 0 10px rgba(139, 195, 74, 0.08),
            inset 0 2px 5px rgba(255, 255, 255, 0.9);
    }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Spinner 3D en dessous du logo */
.loader-3d {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #8bc34a;
    border-right-color: #8bc34a;
    animation: spin3D 3s linear infinite;
}

.spinner-ring:nth-child(2) {
    animation-duration: 4s;
    animation-direction: reverse;
    border-top-color: #1e3a8a;
    border-right-color: #1e3a8a;
    width: 85%;
    height: 85%;
    top: 7.5%;
    left: 7.5%;
}

.spinner-ring:nth-child(3) {
    animation-duration: 5s;
    border-top-color: rgba(123, 45, 142, 0.4);
    border-right-color: rgba(123, 45, 142, 0.4);
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

@keyframes spin3D {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

.loader-text {
    text-align: center;
    margin-top: 20px;
}

.loader-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.loader-text p {
    font-size: 14px;
    color: var(--text-light);
    animation: pulse 2s infinite;
    font-weight: 500;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== Glassmorphism Effect ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    /* backdrop-filter: blur(20px); - Desactivé pour performance */
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* ===== 3D Transform Effects ===== */
.transform-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.lift-3d {
    transition: var(--transition);
}

.lift-3d:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-3d);
}

/* ===== Parallax Background ===== */
.parallax-bg {
    position: relative;
    overflow: hidden;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at 50% 50%, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
    animation: floatBackground 30s ease-in-out infinite;
}

@keyframes floatBackground {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -10px); }
}

/* ===== Reveal Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* ===== Floating Animation ===== */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== Glow Effect ===== */
.glow {
    position: relative;
}

.glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.glow:hover::before {
    opacity: 0.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* Sections Professionnelles */
section {
    padding: var(--space-xl) 0;
    position: relative;
}

section.bg-light {
    background: var(--lighter-color);
}

section.bg-primary {
    background: var(--primary-gradient);
    color: var(--white);
}

section.bg-primary h2,
section.bg-primary h3,
section.bg-primary p {
    color: var(--white);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.section-subtitle {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
    padding: 0.3rem 0.8rem;
    background: rgba(139, 195, 74, 0.1);
    border-radius: var(--radius-full);
}

.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.section-description {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 11px 26px;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.01em;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(139, 195, 74, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 195, 74, 0.4);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* ===== Section Styles ===== */
.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Border gradient effect on scroll */
.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-gradient);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled::after {
    width: 100%;
}

.header.scrolled {
    box-shadow: 0 5px 30px rgba(139, 195, 74, 0.2);
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(0);
}

/* Hide top-bar when scrolled with smooth animation */
.header.scrolled .top-bar {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    transform: translateY(-20px);
}

/* Compact navbar when scrolled */
.header.scrolled .navbar {
    padding: 12px 0;
}

/* Reduce logo size when scrolled with smooth transition */
.header.scrolled .logo img {
    height: 55px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 6px rgba(139, 195, 74, 0.25));
}

.header.scrolled .logo {
    font-size: 19px;
    transition: all 0.4s ease;
}

.header.scrolled .logo span {
    font-size: 19px;
}

/* Add subtle scale effect to header when scrolling */
.header.scrolled .nav-wrapper {
    transform: scale(0.98);
    transition: transform 0.4s ease;
}

.header.scrolled .nav-wrapper:hover {
    transform: scale(1);
}

.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 12px;
    max-height: 42px;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 25px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 8px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-left: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* ===== Navigation ===== */
.navbar {
    padding: 12px 0;
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

/* Compact button in scrolled header */
.header.scrolled .nav-wrapper .btn {
    padding: 10px 25px;
    font-size: 14px;
    transition: all 0.4s ease;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 3px 0;
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 6px rgba(139, 195, 74, 0.3));
}

.logo:hover img {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 4px 12px rgba(139, 195, 74, 0.5));
}

.logo span {
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    font-size: 18px;
    letter-spacing: 0.3px;
}

.logo strong {
    color: var(--primary-color);
    margin-left: 5px;
    font-weight: 800;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    transition: all 0.3s ease;
}

/* Reduce gap when scrolled */
.header.scrolled .nav-menu {
    gap: 25px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
}

/* Smaller padding when scrolled */
.header.scrolled .nav-menu a {
    padding: 5px 0;
    font-size: 15px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.header.scrolled .nav-menu a:hover {
    transform: translateY(-1px);
}

/* ===== Submenu Styles ===== */
.has-submenu {
    position: relative;
}

.has-submenu > a i {
    font-size: 10px;
    margin-left: 5px;
    transition: var(--transition);
}

.has-submenu:hover > a i {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--white);
    min-width: 450px;
    max-width: 550px;
    width: max-content;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}

/* Ajustement pour éviter le débordement */
.has-submenu {
    position: relative;
}

.has-submenu .submenu {
    left: 50%;
    right: auto;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.submenu li {
    padding: 0;
    width: 100%;
}

.submenu a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-color);
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
    border-radius: 6px;
}

.submenu a::after {
    display: none;
}

.submenu a i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 16px;
    width: 20px;
}

.submenu a:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Responsive submenu */
@media (max-width: 1200px) {
    .submenu {
        min-width: 350px;
        max-width: 450px;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .submenu {
        min-width: 300px;
        max-width: 400px;
        display: flex;
        flex-direction: column;
        padding: 20px;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
    }
    
    .has-submenu:hover .submenu {
        transform: translateX(-50%) translateY(0);
    }
    
    .submenu a {
        font-size: 13px;
        padding: 10px 15px;
    }
}

@media (max-width: 768px) {
    .submenu {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        padding: 15px;
        left: 0;
        transform: translateY(20px);
    }
    
    .has-submenu:hover .submenu {
        transform: translateY(0);
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 70vh;
    max-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 0;
    margin-top: 80px;
    overflow: hidden;
    background: #1e3a8a;
    transition: all 0.4s ease;
    border-radius: 0 0 25px 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Adjust hero when header is compact */
body.scrolled .hero {
    margin-top: 60px;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    z-index: 2;
}

/* Hero Slider Styles Modernes */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out, transform 0.3s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    animation: kenBurns 20s ease-out forwards;
}

/* Contenu centré dans les slides */
.hero-content-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
    max-width: 1000px;
    padding: 40px;
    animation: fadeInUp 1s ease;
}

/* Texte de bienvenue - première ligne */
.hero-welcome-text {
    font-size: clamp(18px, 2.5vw, 32px);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #ffffff;
    animation: fadeInUp 0.8s ease;
}

/* Nom de l'entreprise - deuxième ligne */
.hero-company-name {
    font-size: clamp(24px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 0;
    color: #ffffff;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-align: center;
}

/* Slogan pour slide 3 */
.hero-slogan {
    font-size: clamp(26px, 4.5vw, 52px);
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 0;
    color: #ffffff;
    animation: fadeInUp 0.8s ease;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Couleurs du logo pour le texte */
.text-blue {
    color: #1e3a8a;
}

.text-green {
    color: #8bc34a;
}

/* ===== Section Références Clients ===== */
.references-section {
    position: relative;
    overflow: hidden;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.reference-card {
    background: var(--white);
    padding: 40px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    border: 1px solid var(--border-light);
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.reference-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px;
}

.reference-logo img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.reference-card:hover .reference-logo img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .reference-card {
        padding: 30px 15px;
        min-height: 120px;
    }
    
    .reference-name {
        font-size: 16px;
    }
}

/* Effet Ken Burns - Zoom lent sur les images */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}

/* Overlay professionnel et élégant */
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(30, 58, 138, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

/* Badge désactivé */
.slide-badge {
    display: none;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Styles badge supprimés */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: var(--white);
}

.hero-subtitle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
    color: #ffffff;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.hero-buttons .btn-secondary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--white);
    top: 10%;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--white);
    bottom: 10%;
    left: -50px;
    animation-delay: 2s;
}

/* ===== Slider Controls Modernes ===== */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: none;
    border-radius: 50%;
    color: var(--dark-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    pointer-events: all;
    opacity: 0.85;
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 10px 35px rgba(139, 195, 74, 0.4);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-btn i {
    transition: transform 0.3s ease;
}

.slider-btn:hover i {
    transform: translateX(0);
}

.slider-btn.prev:hover i {
    transform: translateX(-3px);
}

.slider-btn.next:hover i {
    transform: translateX(3px);
}

/* ===== Slider Indicators Modernes ===== */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    padding: 10px 18px;
    border-radius: 50px;
}

.indicator {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.indicator.active {
    width: 30px;
    border-radius: 10px;
    background: var(--primary-color);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 25px;
    right: 50px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 12px;
    font-weight: 500;
    animation: scrollBounce 2s ease-in-out infinite;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.scroll-indicator i {
    font-size: 20px;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(5px);
    }
}

/* ===== Slider Progress Bar (Professionnel) ===== */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(139, 195, 74, 0.5);
}

/* ===== Call to Action Button (Désactivé) ===== */
.hero-cta {
    display: none;
}

/* ===== Services de Gestion des Déchets (Style Moderne) ===== */
/* ===== Prestations Complètes Section ===== */
.prestations-completes {
    padding: var(--space-xl) 0;
    background: var(--white);
    position: relative;
}

.prestations-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.prestations-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.prestations-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.prestations-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    justify-items: center;
    align-items: center;
}

.prestation-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    padding: var(--space-sm);
    width: 100%;
}

.prestation-icon-item:hover {
    transform: translateY(-5px);
}

.prestation-icon-wrapper {
    width: 170px;
    height: 170px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: var(--transition);
    background: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.prestation-icon-wrapper::after {
    content: '';
    position: absolute;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.prestation-icon-item:hover .prestation-icon-wrapper {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.prestation-icon-item:hover .prestation-icon-wrapper::after {
    opacity: 0;
}

.prestation-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.prestation-icon-item:hover .prestation-icon-wrapper img {
    transform: scale(1.1);
}

.prestation-icon-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.4;
    max-width: 150px;
    text-align: center;
    margin: 0;
}

.prestation-icon-item:hover .prestation-icon-label {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Prestations */
@media (max-width: 1400px) {
    .prestations-icons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }
    
    .prestation-icon-wrapper {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 1200px) {
    .prestations-icons-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .prestation-icon-wrapper {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .prestations-title {
        font-size: 2rem;
    }

    .prestations-description {
        font-size: 1rem;
    }

    .prestations-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
        padding: 0 var(--space-sm);
    }

    .prestation-icon-wrapper {
        width: 120px;
        height: 120px;
    }

    .prestation-icon-label {
        font-size: 0.875rem;
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .prestations-icons-grid {
        grid-template-columns: 1fr;
    }

    .prestation-icon-wrapper {
        width: 110px;
        height: 110px;
    }

}

/* ===== Features Section ===== */
.features {
    padding: 50px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.02);
    box-shadow: 0 25px 50px rgba(46, 204, 113, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(46, 204, 113, 0.3);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(46, 204, 113, 0.5);
}

.feature-icon i {
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    text-align: center;
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
    text-align: center;
}

.feature-card a {
    display: block;
    text-align: center;
    margin: 0 auto;
    word-break: break-word;
}

/* ===== About Section ===== */
.about {
    padding: 40px 0;
    background: var(--light-color);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.about-experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-experience h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
}

.about-experience p {
    font-size: 12px;
    font-weight: 600;
}

.about-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-features {
    margin: 30px 0 40px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.about-feature i {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 5px;
}

.about-feature h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.about-feature p {
    color: var(--text-light);
    font-size: 14px;
}

/* ===== Services Section ===== */
.services {
    padding: 40px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(139, 195, 74, 0.2);
    border-color: var(--primary-color);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: var(--lighter-color);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) saturate(0.95);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
    filter: brightness(1) saturate(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.95), rgba(104, 159, 56, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-link {
    width: 55px;
    height: 55px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transform: scale(0) rotate(-180deg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card:hover .service-link {
    transform: scale(1) rotate(0deg);
}

.service-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(90deg);
}

.service-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(139, 195, 74, 0.1), rgba(139, 195, 74, 0.05));
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(139, 195, 74, 0.2);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.service-card:hover .service-icon::before {
    width: 200%;
    height: 200%;
}

.service-card:hover .service-icon {
    border-color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(139, 195, 74, 0.3);
}

.service-icon i {
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    line-height: 1.3;
}

.service-card:hover .service-content h3 {
    color: var(--primary-color);
}

.service-content p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 15px;
    line-height: 1.6;
    flex: 1;
}

.service-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid var(--border-light);
}

.service-card:hover .service-more {
    border-top-color: var(--primary-color);
    gap: 12px;
    color: var(--primary-dark);
}

.service-more i {
    transition: all 0.3s ease;
    font-size: 14px;
}

.service-more:hover {
    gap: 15px;
}

.service-more:hover i {
    transform: translateX(5px);
}

/* ===== Services Section Header ===== */
.services-section {
    position: relative;
}

.section-header-services {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle-services {
    display: inline-block;
    background: rgba(139, 195, 74, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title-services {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description-services {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Responsive Services Header */
@media (max-width: 768px) {
    .section-header-services {
        margin-bottom: 40px;
    }

    .section-title-services {
        font-size: 2rem;
    }

    .section-description-services {
        font-size: 1rem;
    }
}

/* ===== Stats Section ===== */
.stats {
    padding: 35px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 26px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    position: relative;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.stat-item:hover .stat-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(360deg);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    color: #ffffff;
}

/* ===== Why Choose Us ===== */
.why-choose {
    padding: 40px 0;
    background: var(--light-color);
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-list {
    margin: 30px 0;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark-color);
}

.why-item p {
    color: var(--text-light);
    font-size: 13px;
}

.progress-bars {
    margin-top: 40px;
}

.progress-item {
    margin-bottom: 35px;
}

.progress-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.progress-header span {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
}

.progress-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.progress-bar {
    flex: 1;
    height: 20px;
    background: #ffffff;
    border-radius: 25px;
    overflow: visible;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #aed581 0%, #8bc34a 50%, #689f38 100%);
    border-radius: 25px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 2px 6px rgba(139, 195, 74, 0.25);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 2px;
}

.progress-icon {
    width: 28px;
    height: 28px;
    background: #689f38;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    box-shadow: 0 2px 6px rgba(104, 159, 56, 0.4);
    position: relative;
    animation: runAnimation 1.5s ease-in-out infinite;
    transform: translateX(50%);
}

.progress-icon i {
    position: relative;
    z-index: 1;
}

.progress-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes runAnimation {
    0%, 100% {
        transform: translateX(50%) translateY(0) scale(1);
    }
    25% {
        transform: translateX(50%) translateY(-4px) scale(1.05);
    }
    50% {
        transform: translateX(50%) translateY(-2px) scale(1.1);
    }
    75% {
        transform: translateX(50%) translateY(-4px) scale(1.05);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.progress-percent {
    font-size: 20px;
    font-weight: 700;
    color: #689f38;
    min-width: 50px;
    text-align: right;
}

.progress-item:hover .progress-fill {
    box-shadow: 0 3px 10px rgba(139, 195, 74, 0.35);
}

.progress-item:hover .progress-icon {
    animation: runAnimation 0.8s ease-in-out infinite;
    box-shadow: 0 3px 8px rgba(104, 159, 56, 0.5);
}

.why-choose-image {
    position: relative;
}

.why-choose-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 0 20px rgba(255,255,255,0.2);
    animation: pulse 2s infinite;
}

/* ===== Projects Section ===== */
.projects {
    padding: 60px 0;
    background: var(--white);
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    position: relative;
    transform-style: preserve-3d;
    background: var(--white);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2) 0%, rgba(39, 174, 96, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(46, 204, 113, 0.25);
}

.project-card:hover::before {
    opacity: 1;
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.2) brightness(0.95);
}

.project-card:hover .project-image img {
    transform: scale(1.2) rotate(-2deg);
    filter: grayscale(0) brightness(1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-overlay h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.project-overlay p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.project-link {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 60px 0;
    background: var(--light-color);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 100px;
    color: rgba(46, 204, 113, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(46, 204, 113, 0.15);
    border-color: var(--primary-color);
}

.testimonial-rating {
    color: var(--warning-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.author-info span {
    font-size: 14px;
    color: var(--primary-color);
}

/* ===== CTA Section ===== */
.cta {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.95), rgba(39, 174, 96, 0.95)),
                url('../img/video-gallery-style2-bg.jpg') center/cover fixed;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ===== Contact Section ===== */
.contact {
    padding: 40px 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-items {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.contact-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.contact-form {
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--dark-gray);
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(139, 195, 74, 0.1);
}

.form-group {
    position: relative;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.5;
    transform: translateX(5px);
    transition: var(--transition);
}

.contact-form .btn {
    width: 100%;
}

/* ===== Footer ===== */
.footer {
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--dark-color) 100%);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 195, 74, 0.3), transparent);
}

.footer-main {
    padding: var(--space-2xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    gap: 10px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-logo span {
    display: flex;
    align-items: center;
}

.footer-logo strong {
    color: var(--primary-color);
    margin-left: 5px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 25px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 14px;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--primary-color);
    border: none;
    border-radius: 0 50px 50px 0;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.4);
    transition: var(--transition);
    z-index: 999;
    position: fixed;
    overflow: hidden;
}

.scroll-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-top:hover::before {
    opacity: 1;
}

.scroll-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.5);
}

.scroll-top.show {
    display: flex;
    animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-top i {
    animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 9999;
    overflow: hidden;
    text-decoration: none;
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover::before {
    opacity: 1;
}

.whatsapp-button:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-button i {
    position: relative;
    z-index: 1;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .section-title {
        font-size: 36px;
    }

    .hero-title {
        font-size: 48px;
    }

    .about-wrapper,
    .why-choose-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .navbar {
        padding: 12px 0;
    }

    .nav-wrapper {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .logo {
        flex: 0 0 auto;
        min-width: 0;
    }

    .logo span {
        display: none;
    }

    .logo img {
        height: 45px;
    }

    .hamburger {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 50px 20px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-wrapper > .btn {
        display: none;
    }

    /* Mobile header adjustments */
    .header.scrolled .navbar {
        padding: 8px 0;
    }

    .header.scrolled .logo img {
        height: 45px;
    }


    /* Submenu mobile */
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-color);
        padding: 10px 0;
        display: none;
        border-radius: 0;
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        flex-direction: column;
        gap: 0;
    }

    .has-submenu.active .submenu {
        display: flex;
        flex-direction: column;
    }

    .submenu a {
        padding-left: 40px;
        font-size: 14px;
        white-space: normal;
    }

    .submenu a:hover {
        padding-left: 45px;
    }

    .hero {
        min-height: 60vh;
        max-height: 500px;
        margin-top: 60px;
        border-radius: 0;
    }

    /* Slider professionnel responsive */
    .scroll-indicator {
        display: none;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .slider-indicators {
        padding: 8px 12px;
        bottom: 15px;
        gap: 8px;
    }

    .slider-controls {
        padding: 0 10px;
    }

    .slider-progress {
        height: 2px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title {
        font-size: 30px;
    }

    .features-grid,
    /* Services Grid Responsive */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .service-image {
        height: 180px;
    }

    .service-content {
        padding: 18px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .service-content h3 {
        font-size: 1.15rem;
        min-height: auto;
        margin-bottom: 10px;
    }

    .service-content p {
        font-size: 0.875rem;
        margin-bottom: 12px;
    }


    .services-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    .stat-number {
        font-size: 36px;
    }

    .about-experience {
        padding: 15px;
    }

    .about-experience h3 {
        font-size: 28px;
    }

    .contact-form {
        padding: 25px;
    }
}


