/* =====================================================
   BB TRANSPORTS - MODERN WEBSITE STYLES
   Dark Pattern Edition with Subtle Animations
   ===================================================== */

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

:root {
    /* Primary Colors */
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary: #f97316;
    --secondary-dark: #ea580c;
    
    /* Dark Theme Colors */
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: #1e293b;
    --bg-card-hover: #334155;
    
    /* Text Colors */
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    
    /* Accent Colors */
    --accent-blue: #60a5fa;
    --accent-orange: #fb923c;
    --accent-green: #4ade80;
    --whatsapp: #25D366;
    
    /* Borders & Shadows */
    --border-color: #334155;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.3);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px 0;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

strong {
    font-weight: 700;
    color: var(--accent-orange);
}

em {
    font-style: italic;
    color: var(--accent-blue);
    font-weight: 500;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    z-index: 1000;
    transition: all var(--transition-normal);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(15, 23, 42, 0.98);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    cursor: pointer;
    position: relative;
}

.logo-icon {
    position: relative;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.logo-icon::before {
    content: 'BB';
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: white;
    letter-spacing: -1px;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 12px;
    height: 12px;
    background: var(--accent-green);
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    animation: pulse-dot 2s infinite;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text-main {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-text-sub {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

.logo:hover .logo-icon {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.logo i {
    color: var(--secondary);
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color var(--transition-fast);
}

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

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

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

.nav-link.cta-nav {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    padding: 10px 25px;
    border-radius: 25px;
    color: white;
}

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

.nav-link.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(249, 115, 22, 0.4);
}

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

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all var(--transition-normal);
    border-radius: 3px;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-background-slide.active {
    opacity: 1;
}

.hero-background-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.90) 0%, rgba(30, 41, 59, 0.85) 50%, rgba(15, 23, 42, 0.90) 100%);
    z-index: 1;
}

/* Image 1: Entrepôt logistique avec travailleurs */
.hero-background-slide:nth-child(1) {
    background-image: url('https://sspark.genspark.ai/cfimages?u1=2js2hGVtxfk7JK5Da2ZeSIuo1e71effez67FfE0g83fC6ADem7V6kgKQBe%2BLb4%2BLI9gZrX1n4OaW4cTfoZ7lrb508c1E9%2BlQRX%2FeV%2FxenluFKZcH4ODIIAV9wubQZogRXqBhg%2BDT7K7qRZWunJj7ZSvCMFsoNEhyFNHq%2BnoZSpY%3D&u2=wKEkH5qp5uQh8vmZ&width=2560');
}

/* Image 2: Livreur chargeant des colis dans camion */
.hero-background-slide:nth-child(2) {
    background-image: url('https://sspark.genspark.ai/cfimages?u1=4VlyHRXMHeZSAuWtvBKhps1cfgpLGXeXewRed6Atqtm9HfjfHxeV%2FsTiYTt8ko9MQ8b3n4U4dwHqDsusB4qHCnivc75mAtWhuP3A3%2BoLYMcHEA%3D%3D&u2=Jg5grin93b4SC5e%2B&width=2560');
}

/* Image 3: Flotte de camions garés */
.hero-background-slide:nth-child(3) {
    background-image: url('https://sspark.genspark.ai/cfimages?u1=jshYR32wLijqpAX49t4IIfnQI20GOV%2Fj6mSNwceWKEPAI%2B3MbLVIE8Jq4AfR3RLVQ8xtkf7JQ1nHlb8KhdoS8OREh16KDTMku6ZczUMoiH0LcHba%2Bk6iH3XqaDq2EG4KL97bP58vodLTknoPSv48UpCar8%2FLme0f&u2=b1Ptxd6PJCkfRllM&width=2560');
}

/* Image 4: Livreur organisant colis dans van */
.hero-background-slide:nth-child(4) {
    background-image: url('https://sspark.genspark.ai/cfimages?u1=GW44Rj4kTYPI3%2Ba4JmaXQ2KWPWcCTSbTn2A84SS87WJSxOLFSdZVauU9p1GydUaWZYwEKBbD4lk0VMSYbIkkCkrYcJrL3d0tqbkd%2BPjSzLsShg%3D%3D&u2=tJaOh%2FlPcc5iUS5l&width=2560');
}

/* Image 5: Entrepôt avec chariots élévateurs */
.hero-background-slide:nth-child(5) {
    background-image: url('https://sspark.genspark.ai/cfimages?u1=qbs8euH0b%2FJYH51kaNlQ7m9dRd6zj4gPkKt%2B2%2Bx%2FH%2FCXz%2B2pZb8rzxY3IGF087oOYdFo4oHlQtW1j%2BaGFoLTh7ah%2B51Zh3kbgqUla33%2BWkll6r4SHlNhci5sCGxsPKtiVwQMaCXr6qtBmSSiZkcYaWyPTnuAPD6qmymuM9vHDV7uuYhfrkMZWevr3Jtn9jYH%2F2Ok1hdZvo%2B%2BwQ%3D%3D&u2=VpeLZutJB1luhfpe&width=2560');
}

.hero-background::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(249, 115, 22, 0.12) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

/* Navigation Controls for Hero Carousel */
.hero-carousel-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    align-items: center;
}

.hero-carousel-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.hero-carousel-dot.active {
    background: var(--secondary);
    border-color: var(--secondary);
    width: 30px;
    border-radius: 6px;
}

.hero-carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.hero-carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-carousel-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(30, 64, 175, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 60%, rgba(249, 115, 22, 0.12) 0%, transparent 60%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,150 Q300,50 600,150 T1200,150 L1200,0 L0,0 Z" fill="rgba(59,130,246,0.05)"/></svg>') no-repeat center top;
    background-size: cover;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--accent-blue);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta-benefits {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 600;
}

.cta-benefit i {
    color: var(--accent-green);
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.partners-band {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

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

.partners-logos {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.partner-logo {
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--accent-blue);
    transition: all var(--transition-normal);
}

.partner-logo:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

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

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--accent-blue);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), #128C7E);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

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

/* =====================================================
   SECTIONS
   ===================================================== */
section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
    background: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-orange));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-blue);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(249, 115, 22, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: var(--accent-orange);
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 14px;
}

.service-features i {
    color: var(--accent-green);
    font-size: 12px;
}

.service-cta {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.service-price {
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    color: var(--accent-orange);
    background: rgba(249, 115, 22, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
}

/* =====================================================
   WHY CHOOSE US SECTION
   ===================================================== */
.why-choose {
    background: var(--bg-darker);
}

.why-grid {
    display: grid;
    gap: 30px;
}

.why-card {
    display: flex;
    gap: 30px;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    align-items: flex-start;
}

.why-card:hover {
    border-color: var(--accent-blue);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.why-number {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-blue);
    opacity: 0.3;
    line-height: 1;
}

.why-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-content h3 i {
    color: var(--accent-orange);
    font-size: 24px;
}

.why-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.why-content a {
    color: var(--accent-blue);
    text-decoration: none;
    border-bottom: 1px dotted var(--accent-blue);
    transition: all var(--transition-fast);
}

.why-content a:hover {
    color: var(--accent-orange);
    border-bottom-color: var(--accent-orange);
}

/* =====================================================
   RÉALISATIONS SECTION
   ===================================================== */
.realisations {
    background: var(--bg-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--bg-card);
    padding: 50px 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-slow);
}

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

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

.stat-icon {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-blue);
    display: inline-block;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 15px;
    font-weight: 500;
}

/* =====================================================
   TÉMOIGNAGES SECTION
   ===================================================== */
.testimonials {
    background: var(--bg-darker);
}

.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-wrapper {
    position: relative;
    min-height: 350px;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all var(--transition-slow);
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.testimonial-info h4 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 14px;
    color: var(--text-muted);
}

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

.testimonial-rating i {
    color: #fbbf24;
    font-size: 18px;
    margin-right: 3px;
}

.testimonial-text {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    font-style: italic;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    color: var(--text-primary);
    font-size: 18px;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -70px;
}

.next-btn {
    right: -70px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    background: var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.indicator.active {
    background: var(--accent-blue);
    width: 30px;
    border-radius: 6px;
}

/* =====================================================
   CALCULATEUR DE DEVIS
   ===================================================== */
.devis-calculator {
    background: var(--bg-dark);
}

.calculator-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.calculator-form,
.calculator-result {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

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

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

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

.form-group label i {
    color: var(--accent-orange);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Autocomplete Styles */
.city-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-darker);
    border: 1px solid var(--accent-blue);
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-height: 250px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.city-autocomplete.show {
    display: block;
}

.city-option {
    padding: 12px 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.city-option:hover,
.city-option.selected {
    background: var(--bg-card);
    color: var(--accent-orange);
}

.city-option i {
    color: var(--accent-blue);
    font-size: 14px;
}

.city-name {
    font-weight: 600;
}

.city-dept {
    font-size: 12px;
    color: var(--text-muted);
}

.form-group {
    position: relative;
}

.distance-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
}

.distance-info i {
    font-size: 24px;
    color: var(--accent-blue);
}

.distance-info div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.distance-info strong {
    font-size: 14px;
    color: var(--text-primary);
}

.distance-info span {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-orange);
}

.calculator-result {
    animation: slideInUp 0.5s ease-out;
}

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

.result-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.result-header i {
    font-size: 32px;
    color: var(--accent-green);
}

.result-header h3 {
    font-size: 24px;
    color: var(--text-primary);
}

.result-details {
    margin-bottom: 30px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.result-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.result-value {
    color: var(--text-primary);
    font-weight: 600;
}

.result-price {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(249, 115, 22, 0.1));
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 30px;
}

.price-label {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
}

.price-value {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 5px;
}

.price-note {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq {
    background: var(--bg-darker);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--accent-blue);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 600;
}

.faq-question i {
    color: var(--accent-orange);
    font-size: 18px;
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
    background: var(--bg-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-intro {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 15px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-orange));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.contact-details a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-details a:hover {
    color: var(--accent-orange);
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
}

.footer-logo .logo-icon::before {
    font-size: 16px;
}

.footer-logo .logo-icon::after {
    width: 10px;
    height: 10px;
}

.footer-logo .logo-text-main {
    font-size: 20px;
}

.footer-logo .logo-text-sub {
    font-size: 9px;
}

.footer-logo i {
    color: var(--secondary);
    font-size: 28px;
}

.footer-col p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 12px;
    color: var(--accent-blue);
}

.footer-col h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

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

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

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: var(--accent-blue);
}

.footer-contact i {
    color: var(--accent-orange);
    font-size: 14px;
}

.footer-partners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.footer-partners span:first-child {
    color: var(--text-muted);
    font-size: 14px;
}

.partners-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.partners-list span {
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--accent-blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-links span {
    color: var(--border-color);
}

/* =====================================================
   WHATSAPP FLOATING BUTTON
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--whatsapp), #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all var(--transition-normal);
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: 25px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
    border: 1px solid var(--border-color);
}

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

/* =====================================================
   ANIMATIONS
   ===================================================== */
[data-animation] {
    opacity: 0;
}

[data-animation].animated {
    animation-duration: 0.8s;
    animation-fill-mode: both;
    opacity: 1;
}

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

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

@keyframes slide-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-up {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

[data-animation="fade-up"].animated {
    animation-name: fade-up;
}

[data-animation="fade-down"].animated {
    animation-name: fade-down;
}

[data-animation="slide-left"].animated {
    animation-name: slide-left;
}

[data-animation="slide-right"].animated {
    animation-name: slide-right;
}

[data-animation="scale-up"].animated {
    animation-name: scale-up;
}

/* =====================================================
   MOBILE TOUCH OPTIMIZATIONS
   ===================================================== */

/* Better touch targets */
@media (max-width: 768px) {
    button,
    a,
    .nav-link,
    .btn,
    .hero-carousel-dot,
    .indicator,
    .faq-question {
        -webkit-tap-highlight-color: rgba(249, 115, 22, 0.2);
    }
    
    /* Prevent text selection on buttons */
    button,
    .btn,
    .hero-carousel-dot,
    .indicator {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    /* Smooth scrolling on iOS */
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent zoom on input focus */
    input,
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .prev-btn {
        left: -20px;
    }
    
    .next-btn {
        right: -20px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 44px;
    }
    
    .section-title {
        font-size: 36px;
    }
}

/* Mobile Large (max-width: 768px) */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 16px;
    }
    
    /* Navigation */
    .navbar {
        padding: 16px 0;
    }
    
    .logo-icon {
        width: 38px;
        height: 38px;
    }
    
    .logo-icon::before {
        font-size: 16px;
    }
    
    .logo-icon::after {
        width: 10px;
        height: 10px;
        top: -2px;
        right: -2px;
    }
    
    .logo-text-main {
        font-size: 18px;
    }
    
    .logo-text-sub {
        font-size: 9px;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 20px;
        transition: left var(--transition-normal);
        gap: 0;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        width: 100%;
    }
    
    .nav-link.cta-nav {
        margin-top: 20px;
        text-align: center;
        padding: 14px 20px;
        border-radius: 30px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding-top: 72px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .partners-band {
        margin-top: 40px;
        padding-top: 30px;
        flex-direction: column;
        gap: 20px;
    }
    
    .partners-logos {
        gap: 12px;
        justify-content: center;
    }
    
    .partner-logo {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    .hero-carousel-controls {
        display: none;
    }
    
    .hero-carousel-nav {
        bottom: 80px;
        gap: 8px;
    }
    
    .hero-carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-carousel-dot.active {
        width: 24px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .service-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    /* Why Choose */
    .why-grid {
        gap: 20px;
    }
    
    .why-card {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .why-number {
        font-size: 36px;
    }
    
    .why-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-icon {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-suffix {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 14px;
        margin-top: 12px;
    }
    
    /* Testimonials */
    .testimonials-wrapper {
        min-height: 400px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .testimonial-info h4 {
        font-size: 18px;
    }
    
    .testimonial-info p {
        font-size: 13px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .carousel-indicators {
        margin-top: 25px;
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 24px;
    }
    
    /* Calculator */
    .calculator-form,
    .calculator-result {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .result-header h3 {
        font-size: 20px;
    }
    
    .result-header i {
        font-size: 28px;
    }
    
    .result-item {
        padding: 12px 0;
        font-size: 14px;
    }
    
    .result-price {
        padding: 24px 20px;
    }
    
    .price-value {
        font-size: 42px;
    }
    
    /* FAQ */
    .faq-item {
        margin-bottom: 16px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-question i {
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 15px;
    }
    
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info h3 {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .contact-item {
        margin-bottom: 24px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .contact-details h4 {
        font-size: 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        font-size: 22px;
        margin-bottom: 16px;
    }
    
    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }
    
    .footer-col ul li {
        margin-bottom: 10px;
    }
    
    .footer-partners {
        padding: 24px 0;
        gap: 16px;
    }
    
    .partners-list {
        gap: 12px;
        justify-content: center;
    }
    
    .partners-list span {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 24px;
        gap: 16px;
    }
    
    .footer-bottom p {
        font-size: 13px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* Mobile Small (max-width: 480px) */
@media (max-width: 480px) {
    /* Hero */
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero-carousel-nav {
        bottom: 70px;
    }
    
    /* Sections */
    section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-description {
        font-size: 15px;
    }
    
    /* Services */
    .service-card {
        padding: 24px 16px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .service-features li {
        font-size: 13px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-suffix {
        font-size: 20px;
    }
    
    /* Why Choose */
    .why-card {
        padding: 24px 16px;
    }
    
    .why-number {
        font-size: 32px;
    }
    
    .why-content h3 {
        font-size: 18px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 24px 16px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    /* Calculator */
    .calculator-form,
    .calculator-result {
        padding: 24px 16px;
    }
    
    .price-value {
        font-size: 36px;
    }
    
    .result-price {
        padding: 20px 16px;
    }
    
    /* FAQ */
    .faq-question {
        padding: 16px;
    }
    
    .faq-question h3 {
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 0 16px 16px 16px;
        font-size: 14px;
    }
    
    /* Contact */
    .contact-form {
        padding: 24px 16px;
    }
    
    .contact-info h3 {
        font-size: 22px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 24px;
    }
    
    .footer-logo {
        font-size: 20px;
    }
    
    /* WhatsApp */
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 26px;
        bottom: 16px;
        right: 16px;
    }
}