/* ============================================
   YOCOLO CI - Page d'Accueil SPECTACULAIRE
   CSS Ultra Premium - Animations époustouflantes
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-primary: #1a7a3e;
    --green-dark: #145a2e;
    --green-light: #2d9e5e;
    --green-glow: rgba(26, 122, 62, 0.4);
    --green-glow-strong: rgba(26, 122, 62, 0.6);
    --orange: #e67e22;
    --orange-light: #f39c12;
    --orange-glow: rgba(230, 126, 34, 0.4);
    --dark: #0a0a1a;
    --dark-blue: #0d1117;
    --text-dark: #1a1a2e;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-light: #f8fafc;
    --gray: #e2e8f0;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(26, 122, 62, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* ============================================
   CURSOR GLOW EFFECT
   ============================================ */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,122,62,0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ============================================
   PARTICLES CANVAS
   ============================================ */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.12;
}

/* ============================================
   SECTION HEADER UNIVERSAL
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(26,122,62,0.1), rgba(230,126,34,0.1));
    border: 1px solid rgba(26,122,62,0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(26,122,62,0.2); }
    50% { box-shadow: 0 0 0 10px rgba(26,122,62,0); }
}

/* ============================================
   NAVIGATION - Glassmorphism Premium
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 122, 62, 0.1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px var(--green-glow);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 20px var(--green-glow); transform: scale(1); }
    50% { box-shadow: 0 0 40px var(--green-glow), 0 0 60px rgba(26, 122, 62, 0.2); transform: scale(1.05); }
}

.logo-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--orange);
    border-radius: 50%;
    top: -5px;
    left: -5px;
    border-top-color: transparent;
    animation: spin 3s linear infinite;
}

.logo-ring-outer {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 1px solid rgba(26, 122, 62, 0.3);
    border-radius: 50%;
    top: -10px;
    left: -10px;
    animation: spinReverse 4s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes spinReverse {
    to { transform: rotate(-360deg); }
}

.logo-icon i {
    color: var(--white);
    font-size: 22px;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-main .ci {
    color: var(--orange);
    animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(230, 126, 34, 0.3); }
    50% { text-shadow: 0 0 20px rgba(230, 126, 34, 0.6), 0 0 40px rgba(230, 126, 34, 0.3); }
}

.logo-tagline {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-primary), var(--orange));
    border-radius: 3px;
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-primary);
    transform: translateY(-2px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-search {
    width: 42px;
    height: 42px;
    border: none;
    background: linear-gradient(135deg, var(--gray-light), var(--gray));
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.btn-search:hover::before {
    left: 100%;
}

.btn-search:hover {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 20px var(--green-glow);
}

.btn-connexion {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(26, 122, 62, 0.3);
}

.btn-connexion::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.6s;
}

.btn-connexion:hover::before {
    left: 100%;
}

.btn-connexion:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(26, 122, 62, 0.4);
}

.btn-menu {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.btn-menu:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--green-glow);
}

/* ============================================
   HERO SECTION - Parallax + Gradient Mesh + Stats
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1489392191049-fc10c97e64b6?w=1920&h=1080&fit=crop') center/cover;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(26, 122, 62, 0.92) 0%, rgba(22, 33, 62, 0.97) 100%);
}

.hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(230, 126, 34, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(26, 122, 62, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(230, 126, 34, 0.1) 0%, transparent 50%);
    animation: meshFloat 15s ease-in-out infinite;
}

@keyframes meshFloat {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: orbFloat1 8s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 122, 62, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    animation: orbFloat2 10s ease-in-out infinite;
    z-index: 1;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -20px) scale(1.15); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    color: var(--white);
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 25px;
    font-size: 13px;
    font-weight: 500;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: badgeDotPulse 2s ease-in-out infinite;
}

@keyframes badgeDotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(230,126,34,0.7); }
    50% { box-shadow: 0 0 0 8px rgba(230,126,34,0); }
}

.hero-title {
    margin-bottom: 25px;
}

.title-welcome {
    display: block;
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 8px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.title-brand {
    display: block;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.title-brand .ci {
    color: var(--orange);
    animation: glowOrange 2s ease-in-out infinite;
}

@keyframes glowOrange {
    0%, 100% { text-shadow: 0 0 10px rgba(230, 126, 34, 0.5); }
    50% { text-shadow: 0 0 30px rgba(230, 126, 34, 0.8), 0 0 60px rgba(230, 126, 34, 0.4); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 45px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.6s both;
    line-height: 1.8;
    min-height: 60px;
}

.hero-features {
    display: flex;
    gap: 30px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    padding: 15px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
    cursor: pointer;
}

.feature-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.feature-icon.green {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 122, 62, 0.4);
}

.feature-icon.orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stat-label {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}

.hero-right {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    animation: fadeInRight 1s ease-out 0.5s both;
    overflow: visible;
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* City Selector */
.city-selector {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.2),
        0 0 0 1px rgba(255,255,255,0.3),
        inset 0 0 30px rgba(255,255,255,0.5);
    flex: 1;
    max-width: 380px;
    position: relative;
    overflow: visible;
    transition: var(--transition);
}

.selector-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(26, 122, 62, 0.03) 50%,
        transparent 70%
    );
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.city-selector:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 80px rgba(0,0,0,0.25),
        0 0 0 1px rgba(255,255,255,0.4),
        0 0 40px rgba(26, 122, 62, 0.1);
}

.city-selector h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
}

.selector-desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 30px;
    position: relative;
}

.btn-location {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    border: none;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 122, 62, 0.3);
}

.btn-location::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.6s;
}

.btn-location:hover::before {
    left: 100%;
}

.btn-location:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 122, 62, 0.4);
}

.btn-location i {
    animation: locationPulse 2s ease-in-out infinite;
}

@keyframes locationPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.search-box {
    position: relative;
    margin-bottom: 22px;
}

.search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    transition: var(--transition);
}

.search-box input {
    width: 100%;
    padding: 16px 18px 16px 50px;
    border: 2px solid var(--gray);
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
}

.search-box input:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 4px rgba(26, 122, 62, 0.1);
}

.search-box input:focus + i {
    color: var(--green-primary);
}

.or-divider {
    text-align: center;
    margin: 22px 0;
    position: relative;
}

.or-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray), transparent);
}

.or-divider span {
    background: var(--white);
    padding: 0 18px;
    position: relative;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
}

.ville-input-box {
    display: flex;
    gap: 12px;
}

.ville-input-box input {
    flex: 1;
    padding: 16px 18px;
    border: 2px solid var(--gray);
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition);
}

.ville-input-box input:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 4px rgba(26, 122, 62, 0.1);
}

.btn-validate {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(26, 122, 62, 0.3);
}

.btn-validate:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(26, 122, 62, 0.4);
}

/* Phone Mockup - 3D Floating */
.phone-mockup {
    flex-shrink: 0;
    perspective: 1000px;
}

.phone-frame {
    width: 230px;
    height: 460px;
    background: linear-gradient(145deg, #1a1a2e, #0a0a1a);
    border-radius: 35px;
    padding: 12px;
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 0 20px rgba(255,255,255,0.05);
    position: relative;
    animation: phoneFloat 4s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotateY(-5deg) rotateX(5deg); }
    50% { transform: translateY(-15px) rotateY(5deg) rotateX(-5deg); }
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 22px;
    background: #0a0a1a;
    border-radius: 12px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.app-header {
    padding: 35px 18px 12px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    position: relative;
    overflow: hidden;
}

.app-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: var(--white);
    border-radius: 50% 50% 0 0;
}

.app-logo-small {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.app-logo-small i {
    font-size: 20px;
    animation: iconSpin 3s ease-in-out infinite;
}

@keyframes iconSpin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

.app-map {
    height: 210px;
    background: linear-gradient(180deg, #e8f5e9 0%, #c8e6c9 100%);
    position: relative;
    overflow: hidden;
}

.app-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(26, 122, 62, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(26, 122, 62, 0.1) 0%, transparent 50%);
}

.map-pin {
    position: absolute;
    color: var(--green-primary);
    font-size: 22px;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.map-pin.pin-1 { top: 20%; left: 25%; animation-delay: 0s; }
.map-pin.pin-2 { top: 40%; left: 60%; animation-delay: 0.3s; }
.map-pin.pin-3 { top: 60%; left: 30%; animation-delay: 0.6s; }
.map-pin.pin-4 { top: 30%; left: 75%; animation-delay: 0.9s; }

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.map-location {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); box-shadow: 0 4px 20px rgba(230, 126, 34, 0.4); }
    50% { transform: translate(-50%, -50%) scale(1.15); box-shadow: 0 8px 30px rgba(230, 126, 34, 0.6); }
}

.app-services {
    display: flex;
    justify-content: space-around;
    padding: 18px;
    background: var(--white);
}

.service-tag {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
    cursor: pointer;
}

.service-tag:hover {
    transform: translateY(-5px) scale(1.1);
}

.service-tag:nth-child(1) { background: linear-gradient(135deg, var(--green-primary), var(--green-light)); }
.service-tag:nth-child(2) { background: linear-gradient(135deg, #e74c3c, #c0392b); }
.service-tag:nth-child(3) { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }
.service-tag:nth-child(4) { background: linear-gradient(135deg, #3498db, #2980b9); }
.service-tag:nth-child(5) { background: linear-gradient(135deg, #9b59b6, #8e44ad); }

/* ============================================
   SERVICES SECTION - ULTRA PREMIUM CARDS
   ============================================ */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-light) 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(26, 122, 62, 0.03) 0%, transparent 100%);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--green-primary), var(--orange));
    border-radius: 2px;
    margin: 15px auto 0;
}

.section-title .brand {
    color: var(--green-primary);
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 17px;
    margin-bottom: 60px;
    font-weight: 400;
}

/* Services Grid - 3D Perspective */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    perspective: 1500px;
}

/* ULTRA PREMIUM Service Card */
.service-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.08),
        0 0 0 1px rgba(0,0,0,0.02);
    transition: var(--transition-slow);
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
    border: 1px solid rgba(0,0,0,0.03);
}

/* Glow effect behind card */
.card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(26,122,62,0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: var(--transition-slow);
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

.service-card:hover .card-glow {
    opacity: 1;
}

/* Shine effect on hover */
.service-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.6s;
    z-index: 3;
    pointer-events: none;
}

.service-card:hover .service-shine {
    left: 150%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 122, 62, 0.03) 0%, rgba(230, 126, 34, 0.03) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) rotateX(2deg);
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.12),
        0 0 0 1px rgba(26, 122, 62, 0.08),
        0 0 50px rgba(26, 122, 62, 0.08);
}

.service-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-img img {
    transform: scale(1.15);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
    transition: var(--transition);
    z-index: 2;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to top, rgba(26, 122, 62, 0.4) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.service-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    margin: -32px auto 18px;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 8px 25px rgba(26, 122, 62, 0.3),
        0 0 0 4px var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 
        0 12px 35px rgba(26, 122, 62, 0.4),
        0 0 0 4px var(--white),
        0 0 30px rgba(26, 122, 62, 0.3);
}

.service-content {
    padding: 0 25px 30px;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Service Meta Tags */
.service-meta {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(26,122,62,0.08), rgba(230,126,34,0.08));
    border: 1px solid rgba(26,122,62,0.15);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--green-primary);
    transition: var(--transition);
}

.meta-tag i {
    font-size: 10px;
}

.meta-tag.urgent {
    background: linear-gradient(135deg, rgba(231,76,60,0.1), rgba(192,57,43,0.1));
    border-color: rgba(231,76,60,0.2);
    color: #e74c3c;
}

.service-card:hover .meta-tag {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(26,122,62,0.1);
}

/* ============================================
   HOW IT WORKS - Animated Steps
   ============================================ */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 122, 62, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 60px;
    position: relative;
}

.step-item {
    text-align: center;
    max-width: 240px;
    position: relative;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: var(--transition-slow);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-primary), var(--orange));
    transform: scaleX(0);
    transition: var(--transition-slow);
    border-radius: 24px 24px 0 0;
}

.step-item:hover::before {
    transform: scaleX(1);
}

.step-item:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(0,0,0,0.1),
        0 0 0 1px rgba(26, 122, 62, 0.1);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(26, 122, 62, 0.3);
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(26, 122, 62, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(26, 122, 62, 0.5), 0 0 20px rgba(26, 122, 62, 0.2); }
}

.step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--white), var(--gray-light));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
    color: var(--green-primary);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.08),
        inset 0 0 20px rgba(255,255,255,0.8);
    position: relative;
    transition: var(--transition);
}

.step-item:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    box-shadow: 0 12px 35px rgba(26, 122, 62, 0.3);
}

.step-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.step-line {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, var(--green-primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.step-item:hover .step-line {
    opacity: 1;
}

.step-arrow {
    color: var(--green-primary);
    font-size: 28px;
    opacity: 0.6;
    margin-top: -50px;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(10px); opacity: 1; }
}

/* ============================================
   VILLES SECTION - Glass Cards with Badges
   ============================================ */
.villes {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.villes-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin: 50px 0;
}

.ville-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-slow);
    height: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform-style: preserve-3d;
}

.ville-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 122, 62, 0.1), rgba(230, 126, 34, 0.1));
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.ville-card:hover::before {
    opacity: 1;
}

.ville-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.2),
        0 0 0 1px rgba(26, 122, 62, 0.1),
        0 0 40px rgba(26, 122, 62, 0.08);
}

.ville-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.ville-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.ville-card:hover .ville-img img {
    transform: scale(1.2);
}

.ville-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    transition: var(--transition);
    z-index: 2;
}

.ville-card:hover .ville-overlay {
    background: linear-gradient(to top, rgba(26, 122, 62, 0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.ville-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 3;
    transition: var(--transition);
}

.ville-card h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.ville-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
    color: var(--white);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.ville-card:hover .ville-badge {
    opacity: 1;
    transform: translateY(0);
}

.ville-card:hover h3 {
    transform: translateY(-5px);
    text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

.btn-villes {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    margin-top: 25px;
    box-shadow: 0 4px 20px rgba(26, 122, 62, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-villes::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.6s;
}

.btn-villes:hover::before {
    left: 100%;
}

.btn-villes:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(26, 122, 62, 0.4);
}

.btn-arrow {
    display: inline-block;
    transition: var(--transition);
}

.btn-villes:hover .btn-arrow {
    transform: translateX(5px);
}

/* ============================================
   WHY USE - Floating Icons with depth
   ============================================ */
.why-use {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.why-use::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -300px;
    left: -300px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.why-item {
    text-align: center;
    padding: 30px 15px;
    border-radius: 24px;
    transition: var(--transition-slow);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,122,62,0.05), rgba(230,126,34,0.05));
    opacity: 0;
    transition: var(--transition);
    border-radius: 24px;
}

.why-item:hover::before {
    opacity: 1;
}

.why-item:hover {
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-10px);
}

.why-item p {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.why-item:hover p {
    opacity: 1;
    transform: translateY(0);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--white), var(--gray-light));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--green-primary);
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.08),
        inset 0 0 20px rgba(255,255,255,0.8);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.why-item:hover .why-icon::before {
    left: 100%;
}

.why-item:hover .why-icon {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(26, 122, 62, 0.3);
}

.why-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

/* ============================================
   APP SECTION - Dark with Glow + Features
   ============================================ */
.app-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d1117 0%, #1a1a2e 50%, #16213e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(26, 122, 62, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    top: -400px;
    right: -400px;
    animation: orbFloat3 12s ease-in-out infinite;
}

.app-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    bottom: -300px;
    left: -300px;
    animation: orbFloat4 10s ease-in-out infinite;
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, 50px); }
}

@keyframes orbFloat4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -30px); }
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.app-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: badgePulse 3s ease-in-out infinite;
}

.app-info h2 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 8px;
    opacity: 0.9;
}

.brand-big {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.brand-big .ci {
    color: var(--orange);
    animation: glowOrange 2s ease-in-out infinite;
}

.app-info p {
    font-size: 17px;
    opacity: 0.85;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* App Features List */
.app-features-list {
    margin-bottom: 40px;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    opacity: 0.9;
    transition: var(--transition);
}

.app-feature i {
    color: var(--green-primary);
    font-size: 20px;
    transition: var(--transition);
}

.app-feature:hover {
    transform: translateX(5px);
    opacity: 1;
}

.app-feature:hover i {
    transform: scale(1.2);
    color: var(--orange);
}

.app-buttons {
    display: flex;
    gap: 20px;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    text-decoration: none;
    border-radius: 16px;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.btn-store::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.6s;
}

.btn-store:hover::before {
    left: 100%;
}

.btn-store:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.3);
}

.btn-store i {
    font-size: 26px;
}

.btn-store-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-label {
    font-size: 11px;
    opacity: 0.7;
    font-weight: 400;
}

.store-name {
    font-size: 16px;
    font-weight: 700;
}

/* Large Phone - Enhanced */
.app-phone {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-frame-large {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1a1a2e, #0a0a1a);
    border-radius: 40px;
    padding: 14px;
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 0 30px rgba(255,255,255,0.05),
        0 0 60px rgba(26, 122, 62, 0.1);
    position: relative;
    animation: phoneFloatLarge 5s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes phoneFloatLarge {
    0%, 100% { transform: translateY(0) rotateY(-8deg) rotateX(5deg); }
    50% { transform: translateY(-20px) rotateY(8deg) rotateX(-5deg); }
}

.phone-frame-large::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 28px;
    background: #0a0a1a;
    border-radius: 14px;
    z-index: 10;
}

.phone-screen-large {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header-large {
    padding: 40px 22px 18px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    position: relative;
    overflow: hidden;
}

.app-header-large::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 0;
    right: 0;
    height: 50px;
    background: var(--white);
    border-radius: 50% 50% 0 0;
}

.app-logo-large {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.app-logo-large i {
    font-size: 24px;
    animation: iconSpin 3s ease-in-out infinite;
}

.app-map-large {
    flex: 1;
    position: relative;
    background: linear-gradient(180deg, #e8f5e9 0%, #c8e6c9 100%);
    overflow: hidden;
}

.map-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 30%, rgba(26, 122, 62, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 50%, rgba(26, 122, 62, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 75%, rgba(26, 122, 62, 0.15) 0%, transparent 50%);
}

.map-pin-lg {
    position: absolute;
    color: var(--green-primary);
    font-size: 26px;
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.map-pin-lg.pin-lg-1 { top: 15%; left: 20%; animation-delay: 0s; }
.map-pin-lg.pin-lg-2 { top: 35%; left: 65%; animation-delay: 0.4s; }
.map-pin-lg.pin-lg-3 { top: 55%; left: 25%; animation-delay: 0.8s; }
.map-pin-lg.pin-lg-4 { top: 25%; left: 80%; animation-delay: 1.2s; }

.map-location-lg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--orange), var(--orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 4px 25px rgba(230, 126, 34, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.app-bottom {
    padding: 18px;
    background: var(--white);
    border-top: 1px solid var(--gray);
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
}

.nav-item {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
}

.nav-item.active,
.nav-item:hover {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 122, 62, 0.3);
    transform: translateY(-3px);
}

/* ============================================
   PARTENAIRES - Glass Cards
   ============================================ */
.partenaires {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.partenaires-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 30px;
    background: var(--white);
    border-radius: 16px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.partner-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.partner-logo:hover::before {
    left: 100%;
}

.partner-logo:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: rgba(26, 122, 62, 0.1);
}

.partner-logo i {
    font-size: 32px;
    color: var(--green-primary);
    transition: var(--transition);
}

.partner-logo:hover i {
    transform: scale(1.2);
    color: var(--orange);
}

.partner-logo img {
    height: 40px;
    width: auto;
    transition: var(--transition);
    filter: grayscale(0.3);
}

.partner-logo:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.partner-logo span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* ============================================
   TESTIMONIALS - Glassmorphism Cards
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 
        0 10px 40px rgba(0,0,0,0.06),
        0 0 0 1px rgba(0,0,0,0.02);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-primary), var(--orange));
    transform: scaleX(0);
    transition: var(--transition-slow);
    transform-origin: left;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: var(--green-primary);
    opacity: 0.15;
    transition: var(--transition);
}

.testimonial-card:hover .quote-icon {
    opacity: 0.3;
    transform: scale(1.2) rotate(10deg);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.1),
        0 0 0 1px rgba(26, 122, 62, 0.1);
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 4px solid var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
    position: relative;
}

.testimonial-avatar::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--green-primary), var(--orange)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-avatar::after {
    opacity: 1;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(26, 122, 62, 0.2);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    margin-bottom: 12px;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-light);
}

.stars {
    color: var(--orange);
    font-size: 15px;
}

.stars i {
    margin-right: 4px;
    animation: starGlow 2s ease-in-out infinite;
}

.stars i:nth-child(2) { animation-delay: 0.2s; }
.stars i:nth-child(3) { animation-delay: 0.4s; }
.stars i:nth-child(4) { animation-delay: 0.6s; }
.stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(230, 126, 34, 0.3); }
    50% { text-shadow: 0 0 15px rgba(230, 126, 34, 0.6); }
}

/* ============================================
   FOOTER - Dark with Glow
   ============================================ */
.footer {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 122, 62, 0.5), var(--orange), rgba(26, 122, 62, 0.5), transparent);
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.footer-main {
    padding: 80px 0 50px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-logo .logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(26, 122, 62, 0.3);
}

.footer-logo .logo-icon i {
    color: var(--white);
    font-size: 20px;
}

.footer-logo .logo-main {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.footer-logo .logo-tagline {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
}

.footer-desc {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(26, 122, 62, 0.3);
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-contact h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--green-primary), var(--orange));
    border-radius: 2px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 14px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--green-primary);
    transform: translateX(8px);
    text-shadow: 0 0 10px rgba(26, 122, 62, 0.3);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-contact li:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact i {
    color: var(--green-primary);
    width: 22px;
    font-size: 16px;
}

.footer-newsletter p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.newsletter-form input:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
    border-color: rgba(26, 122, 62, 0.3);
    box-shadow: 0 0 20px rgba(26, 122, 62, 0.1);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form button {
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.6s;
}

.newsletter-form button:hover::before {
    left: 100%;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 122, 62, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 25px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--green-primary);
    text-shadow: 0 0 10px rgba(26, 122, 62, 0.3);
}

.footer-legal span {
    opacity: 0.3;
}

/* ============================================
   WHATSAPP WIDGET - Ultra Pro
   ============================================ */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.2),
        0 0 0 1px rgba(0,0,0,0.05);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    visibility: hidden;
}

.whatsapp-popup.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
    visibility: visible;
}

.whatsapp-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.whatsapp-avatar {
    position: relative;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.3);
}

.whatsapp-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #00E676;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,230,118,0.7); }
    50% { box-shadow: 0 0 0 8px rgba(0,230,118,0); }
}

.whatsapp-info h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.whatsapp-info span {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
}

.whatsapp-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.whatsapp-close:hover {
    opacity: 1;
    background: rgba(255,255,255,0.2);
}

.whatsapp-body {
    padding: 20px;
    background: #f0f2f5;
    min-height: 120px;
}

.whatsapp-message {
    background: var(--white);
    padding: 15px;
    border-radius: 15px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    animation: messageSlide 0.4s ease-out;
}

@keyframes messageSlide {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.whatsapp-message p {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

.whatsapp-message p:last-child {
    margin-bottom: 0;
}

.message-time {
    display: block;
    text-align: right;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 8px;
}

.whatsapp-footer {
    padding: 15px 20px;
    background: var(--white);
    border-top: 1px solid var(--gray);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.6s;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 20px;
}

.whatsapp-toggle {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    position: relative;
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); transform: scale(1); }
    50% { box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6), 0 0 20px rgba(37, 211, 102, 0.2); transform: scale(1.05); }
}

.whatsapp-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #e74c3c;
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: notificationBounce 1s ease-in-out infinite;
}

@keyframes notificationBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.btn-back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(26, 122, 62, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    animation: backToTopPulse 2s ease-in-out infinite;
}

@keyframes backToTopPulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(26, 122, 62, 0.4); }
    50% { box-shadow: 0 8px 35px rgba(26, 122, 62, 0.6), 0 0 20px rgba(26, 122, 62, 0.2); }
}

.btn-back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 40px rgba(26, 122, 62, 0.5);
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--green-primary), var(--green-light));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--green-light), var(--orange));
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-right {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .villes-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-buttons {
        justify-content: center;
    }

    .app-features-list {
        display: inline-block;
        text-align: left;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        gap: 15px;
    }

    .step-arrow {
        display: none;
    }

    .cursor-glow {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 25px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .btn-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-connexion {
        display: none;
    }

    .title-brand {
        font-size: 42px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .villes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .partenaires-logos {
        gap: 20px;
    }

    .partner-logo {
        padding: 12px 18px;
    }

    .app-info h2 {
        font-size: 24px;
    }

    .brand-big {
        font-size: 36px;
    }

    .whatsapp-popup {
        width: 280px;
        right: -10px;
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        display: none;
    }

    .city-selector {
        max-width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .title-brand {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .villes-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }

    .btn-back-to-top {
        bottom: 100px;
        right: 20px;
    }
}