/* ============================================
   MODERN DESIGN SYSTEM - A+ PNEUS
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #FFD700;
    --primary-dark: #FFC000;
    --primary-light: #FFEB3B;
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --black-lighter: #2A2A2A;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --gradient-dark: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    --gradient-glow: radial-gradient(circle at center, rgba(255, 215, 0, 0.15) 0%, transparent 70%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(255, 215, 0, 0.3);
    --shadow-glow-strong: 0 0 60px rgba(255, 215, 0, 0.5);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-popover: 500;
    --z-tooltip: 600;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Mobile optimization - improve touch handling */
    touch-action: pan-y pan-x;
    -webkit-tap-highlight-color: transparent;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* iOS smooth scroll */
    -webkit-overflow-scrolling: touch;
}

/* Mobile safe area support for iPhone X+ */
@supports (padding: max(0px)) {
    .navbar {
        padding-top: max(0px, env(safe-area-inset-top));
    }

    .floating-actions {
        padding-bottom: max(0px, env(safe-area-inset-bottom));
        right: max(20px, env(safe-area-inset-right));
    }
}

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

/* Ensure all interactive elements meet 44x44px minimum */
@media (hover: none) and (pointer: coarse) {
    /* Links and buttons minimum touch target */
    a,
    button,
    .service-link,
    .nav-link {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch devices */
    .service-card:hover,
    .contact-card:hover,
    .testimonial-card:hover {
        transform: none;
    }

    /* Better touch feedback */
    .btn:active,
    .float-btn:active {
        opacity: 0.7;
        transform: scale(0.98);
    }

    /* Optimize images for mobile */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Disable complex animations on mobile */
    .gradient-orb,
    .nasa-scan-line {
        animation-duration: 3s;
    }
}

::selection {
    background: var(--primary);
    color: var(--black);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    display: none;
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
    display: none;
}

@media (min-width: 1024px) {
    .cursor,
    .cursor-follower {
        display: block;
    }
}

/* Disable cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    .cursor,
    .cursor-follower {
        display: none !important;
    }
}

/* ============================================
   LOADER - NETFLIX STYLE
   ============================================ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    max-width: 90vw;
    overflow: hidden;
}

.loader-logo {
    font-size: 36px;
    font-weight: 900;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
    animation: netflixZoom 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes netflixZoom {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.loader-logo .logo-letter {
    color: var(--primary);
    font-size: 44px;
    animation: letterPop 0.5s ease-out 0.3s forwards;
    opacity: 0;
    transform: scale(0);
}

.loader-logo .logo-plus {
    color: var(--primary);
    font-size: 36px;
    animation: letterPop 0.5s ease-out 0.4s forwards;
    opacity: 0;
    transform: scale(0);
}

.loader-logo .logo-pneus {
    color: var(--white);
    font-size: 36px;
    letter-spacing: 3px;
    animation: letterPop 0.5s ease-out 0.5s forwards;
    opacity: 0;
    transform: scale(0);
}

.loader-logo .logo-44 {
    color: var(--primary);
    font-size: 44px;
    font-weight: 900;
    animation: letterPop 0.5s ease-out 0.6s forwards;
    opacity: 0;
    transform: scale(0);
}

@keyframes letterPop {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-10deg);
    }
    60% {
        transform: scale(1.1) rotate(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-fixed);
    padding: 20px 0;
    transition: all var(--transition-base);
    backdrop-filter: blur(0);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    transition: transform var(--transition-base);
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo .logo-a {
    color: var(--primary);
    font-size: 36px;
}

.nav-logo .logo-plus {
    color: var(--primary);
    font-size: 32px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    position: relative;
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color var(--transition-base);
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: var(--primary);
    overflow: hidden;
    white-space: nowrap;
    max-width: 0;
    transition: max-width var(--transition-base);
}

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

.nav-link:hover {
    color: transparent;
}

.nav-link.active {
    color: transparent;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    background: var(--primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    margin-right: 15px;
}

.nav-phone:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-phone i {
    font-size: 16px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

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

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

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

/* Nav links mobile optimisation */
@media (max-width: 992px) {
    .nav-link {
        width: 100%;
        padding: 20px 0;
        font-size: 24px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        min-height: 60px;
        display: flex;
        align-items: center;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary) !important;
        padding-left: 10px;
    }

    /* Meilleure zone tactile pour le toggle */
    .nav-toggle {
        width: 50px;
        height: 50px;
        padding: 12px;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-toggle span {
        width: 26px;
    }
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-dark);
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-light);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    animation: slideUp 1s ease forwards;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
}

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

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

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 25px;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 0.8s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.title-line.highlight {
    color: var(--primary);
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: var(--black);
}

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

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-strong);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gray-600);
}

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

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

.btn-icon {
    transition: transform var(--transition-base);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--gray-700);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.floating-card {
    position: absolute;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
    animation: floatCard 6s ease-in-out infinite;
}

.card-1 {
    top: 5%;
    right: 5%;
}

.card-2 {
    top: 35%;
    right: -8%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 15%;
    right: 12%;
    animation-delay: 4s;
}

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

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--black);
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.card-subtitle {
    font-size: 14px;
    color: var(--gray-400);
}

.main-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   SIMPLE SERVICES
   ============================================ */
.simple-services {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.simple-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    padding: 12px 25px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.simple-item i {
    color: var(--primary);
    font-size: 20px;
}

.simple-item span {
    white-space: nowrap;
}

.simple-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-500);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

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

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

.section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

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

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

.service-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: all var(--transition-base);
    overflow: hidden;
}

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

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

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

.service-card.featured {
    background: var(--black);
    color: var(--white);
}

.service-card.featured .service-title,
.service-card.featured .service-description,
.service-card.featured li {
    color: var(--white);
}

.service-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 6px 12px;
    background: var(--primary);
    color: var(--black);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.service-number {
    font-size: 60px;
    font-weight: 900;
    color: var(--gray-100);
    margin-bottom: 20px;
    line-height: 1;
}

.service-card.featured .service-number {
    color: var(--gray-800);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--black);
    margin-bottom: 25px;
    transition: transform var(--transition-base);
}

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

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.service-description {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray-600);
}

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

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
}

.service-link:hover {
    color: var(--primary);
    gap: 15px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    background: var(--black);
    color: var(--white);
    overflow: hidden;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.process-text .section-tag {
    background: rgba(255, 215, 0, 0.15);
    color: var(--primary);
}

.process-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.process-description {
    color: var(--gray-400);
    margin-bottom: 50px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--black);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--white);
}

.step-content p {
    color: var(--gray-400);
}

.process-visual {
    display: flex;
    justify-content: center;
}

.process-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: 50px;
    text-align: center;
}

.process-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--black);
    margin: 0 auto 30px;
}

.process-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.process-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-info {
    font-size: 14px;
    color: var(--gray-400);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    transition: all var(--transition-base);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.pricing-card.featured {
    background: var(--black);
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.featured .pricing-title,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-features li {
    color: var(--white);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--primary);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-value {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
}

.price-unit {
    font-size: 16px;
    color: var(--gray-600);
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.feature-included {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
}

.feature-included:last-child {
    border-bottom: none;
}

.feature-included i {
    color: var(--primary);
    font-size: 16px;
}

.btn-outline {
    width: 100%;
    background: transparent;
    color: var(--black);
    border: 2px solid var(--gray-300);
}

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

.pricing-card.featured .btn-primary {
    width: 100%;
}

/* ============================================
   AREAS SECTION
   ============================================ */
.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.areas-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
}

.areas-description {
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.8;
}

.areas-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.area-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

.area-dot {
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.area-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.area-name {
    font-weight: 600;
    color: var(--black);
}

.area-time {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 500;
}

.areas-visual {
    display: flex;
    justify-content: center;
}

/* ============================================
   NASA FUTURISTIC MAP
   ============================================ */
.nasa-map {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, #0a1628 0%, #000814 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow:
        0 0 60px rgba(255, 215, 0, 0.1),
        inset 0 0 60px rgba(255, 215, 0, 0.05);
}

.nasa-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.nasa-scan-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
        transparent 0%,
        rgba(255, 215, 0, 0.8) 50%,
        transparent 100%);
    transform-origin: center;
    animation: scanRotate 4s linear infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

@keyframes scanRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nasa-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.nasa-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.nasa-circle.circle-1 {
    width: 120px;
    height: 120px;
    animation: nasaPulse 2s ease-in-out infinite;
    border-color: rgba(255, 215, 0, 0.4);
}

.nasa-circle.circle-2 {
    width: 220px;
    height: 220px;
    animation: nasaPulse 2s ease-in-out infinite 0.4s;
    border-color: rgba(255, 215, 0, 0.3);
}

.nasa-circle.circle-3 {
    width: 320px;
    height: 320px;
    animation: nasaPulse 2s ease-in-out infinite 0.8s;
    border-color: rgba(255, 215, 0, 0.2);
}

@keyframes nasaPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.02);
    }
}

.nasa-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.nasa-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: centerPulse 1.5s ease-in-out infinite;
}

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

.nasa-marker {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--black);
    box-shadow:
        0 0 30px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.3);
    animation: markerGlow 2s ease-in-out infinite;
}

@keyframes markerGlow {
    0%, 100% {
        box-shadow:
            0 0 30px rgba(255, 215, 0, 0.6),
            0 0 60px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow:
            0 0 40px rgba(255, 215, 0, 0.8),
            0 0 80px rgba(255, 215, 0, 0.4);
    }
}

.nasa-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 55px);
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    z-index: 10;
    text-shadow:
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.4);
    animation: labelGlow 2s ease-in-out infinite;
}

@keyframes labelGlow {
    0%, 100% {
        text-shadow:
            0 0 10px rgba(255, 215, 0, 0.8),
            0 0 20px rgba(255, 215, 0, 0.4);
    }
    50% {
        text-shadow:
            0 0 15px rgba(255, 215, 0, 1),
            0 0 30px rgba(255, 215, 0, 0.6);
    }
}

.nasa-coords {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    color: rgba(255, 215, 0, 0.7);
    z-index: 10;
}

.coord-line {
    display: block;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.nasa-distance {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    letter-spacing: 2px;
    z-index: 10;
}

.nasa-status {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: rgba(255, 215, 0, 0.8);
    z-index: 10;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: statusBlink 1s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.status-text {
    letter-spacing: 1px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    background: var(--black);
    color: var(--white);
}

.testimonials .section-title {
    color: var(--white);
}

/* Google Review CTA */
.google-review-cta {
    text-align: center;
    margin-bottom: 40px;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--black);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.google-review-btn i {
    font-size: 20px;
}

.google-review-btn .fa-google {
    color: #4285F4;
}

.google-review-btn .fa-arrow-right {
    font-size: 14px;
    transition: transform var(--transition-base);
}

.google-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.google-review-btn:hover .fa-arrow-right {
    transform: translateX(5px);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: var(--primary);
    font-size: 14px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--white);
}

.author-location {
    font-size: 14px;
    color: var(--gray-500);
}

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

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

.contact-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 50px 30px;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

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

.contact-card.main-cta {
    background: var(--gradient-primary);
}

.contact-card.main-cta::before {
    background: var(--black);
}

.contact-card.main-cta .contact-icon-large {
    background: var(--white);
    color: var(--black);
}

.contact-card.main-cta .contact-card-title,
.contact-card.main-cta .contact-phone {
    color: var(--black);
}

.contact-icon-large {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--black);
    margin: 0 auto 25px;
}

.contact-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.contact-phone {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-email {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-address {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.6;
}

.contact-card-desc {
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 10px;
}

/* Snapchat QR Code */
.snapchat-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.snapchat-qr-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: var(--radius-md);
    margin: 15px 0;
    transition: transform var(--transition-base);
}

.snapchat-qr:hover .snapchat-qr-img {
    transform: scale(1.05);
}

/* ============================================
   SNAPCHAT POPUP - DISCREET & MODERN
   ============================================ */
.snapchat-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.snapchat-popup.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.popup-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    max-width: 260px;
    width: auto;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    cursor: pointer;
    font-size: 12px;
    color: var(--gray-600);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.popup-close:hover {
    background: var(--gray-200);
    color: var(--black);
    transform: rotate(90deg);
}

.popup-content {
    padding: 18px;
    text-align: center;
}

.popup-qr-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.popup-qr {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.popup-card:hover .popup-qr {
    transform: scale(1.05);
}

.qr-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FFFC00 0%, #FFEB3B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 252, 0, 0.4);
    border: 3px solid var(--white);
}

.qr-badge i {
    font-size: 18px;
    color: var(--black);
}

.popup-info {
    margin-bottom: 12px;
}

.popup-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.popup-info p {
    font-size: 13px;
    color: var(--gray-600);
    font-weight: 500;
}

.popup-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #FFFC00 0%, #FFEB3B 100%);
    color: var(--black);
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 252, 0, 0.3);
}

.popup-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 252, 0, 0.4);
}

/* Mobile */
@media (max-width: 768px) {
    .snapchat-popup {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: calc(100% - 40px);
    }

    .popup-card {
        max-width: 100%;
    }

    .popup-qr {
        width: 100px;
        height: 100px;
    }

    .popup-content {
        padding: 16px;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 50px 0 25px;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo .logo-a {
    color: var(--primary);
}

.footer-logo .logo-plus {
    color: var(--primary);
}

.footer-description {
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: color var(--transition-base);
}

.footer-link:hover {
    color: var(--primary);
}

.footer-link i {
    color: var(--primary);
}

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

.footer-bottom p {
    color: var(--gray-500);
    font-size: 13px;
}

/* ============================================
   FLOATING ACTIONS
   ============================================ */
.floating-actions {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    font-size: 24px;
}

.float-btn.phone {
    background: #25D366;
    color: var(--white);
}

.float-btn.calendar {
    background: var(--primary);
    color: var(--black);
}

.float-btn.snapchat {
    background: #FFFC00;
    color: var(--black);
}

.float-btn.snapchat:hover {
    background: #FFE600;
    box-shadow: 0 0 30px rgba(255, 252, 0, 0.7);
}

.float-btn:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-glow-strong);
}

.float-tooltip {
    position: absolute;
    right: 70px;
    padding: 8px 16px;
    background: var(--black);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-md);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-container,
    .process-content,
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 350px;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 200px;
    }

    .service-feature-card {
        padding: 20px 15px;
    }

    .card-icon-wrapper {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }

    .icon-circle {
        font-size: 22px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-subtitle {
        font-size: 11px;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 140px 40px 80px;
        transition: right var(--transition-base);
        z-index: 999;
    }

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

    .nav-toggle {
        display: flex;
        z-index: 1000;
    }

    .nav-phone {
        display: none;
    }

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

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

    .footer-contact {
        flex-direction: column;
        gap: 15px;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
}

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

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

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

    .section-description {
        font-size: 16px;
    }

    /* Hero */
    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats {
        justify-content: center;
        margin-top: 40px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-divider {
        display: none;
    }

    .hero-visual {
        height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
    }

    .service-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        width: 100%;
    }

    .service-feature-card {
        padding: 15px 8px;
    }

    .card-icon-wrapper {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .icon-circle {
        font-size: 18px;
    }

    .card-title {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .card-subtitle {
        font-size: 9px;
    }

    .icon-ring {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-width: 1px;
    }

    .floating-card {
        padding: 8px 12px;
        gap: 10px;
    }

    .card-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .card-title {
        font-size: 13px;
    }

    .card-subtitle {
        font-size: 11px;
    }

    /* Services */
    .service-card {
        padding: 30px 25px;
    }

    .service-number {
        font-size: 40px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .service-title {
        font-size: 20px;
    }

    /* Process */
    .process-content {
        gap: 40px;
    }

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

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    /* Areas */
    .areas-title {
        font-size: 32px;
    }

    .nasa-map {
        height: 350px;
    }

    .nasa-marker {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .nasa-label {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .nasa-coords,
    .nasa-distance,
    .nasa-status {
        font-size: 10px;
    }

    /* Contact */
    .contact-grid {
        gap: 20px;
    }

    .contact-card {
        padding: 35px 25px;
    }

    .contact-icon-large {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .contact-card-title {
        font-size: 20px;
    }

    .contact-phone {
        font-size: 26px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 30px 25px;
    }

    /* Footer */
    .footer-logo {
        font-size: 24px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-contact {
        gap: 20px;
    }

    .footer-link {
        font-size: 14px;
    }

    /* Floating buttons */
    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .float-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .hero-visual {
        height: 350px;
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 200px;
    }

    .service-feature-card {
        padding: 20px 15px;
    }

    .card-icon-wrapper {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }

    .icon-circle {
        font-size: 22px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-subtitle {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        height: 280px;
    }

    .service-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        max-width: 100%;
        padding: 0 15px;
    }

    .service-feature-card {
        padding: 15px 8px;
    }

    .card-icon-wrapper {
        width: 45px;
        height: 45px;
        margin-bottom: 10px;
    }

    .icon-circle {
        font-size: 18px;
    }

    .card-title {
        font-size: 12px;
        margin-bottom: 3px;
    }

    .card-subtitle {
        font-size: 9px;
    }

    .icon-ring {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-width: 1px;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-visual {
        height: 250px;
        padding: 0 20px;
    }

    .simple-services {
        flex-direction: column;
        gap: 12px;
    }

    .simple-item {
        font-size: 15px;
        padding: 8px 15px;
        width: 100%;
        justify-content: center;
    }

    .simple-item i {
        font-size: 18px;
    }

    .simple-divider {
        display: none;
    }

    /* Boutons flottants - plus gros pour tactile */
    .float-btn {
        width: 55px;
        height: 55px;
    }

    .float-btn i {
        font-size: 22px;
    }

    /* Bouton Google Review - optimisé */
    .google-review-btn {
        font-size: 14px;
        padding: 12px 20px;
        gap: 8px;
    }

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

    /* Cards Services - optimisées */
    .service-card {
        padding: 25px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 26px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-description {
        font-size: 14px;
    }

    .service-features {
        gap: 8px;
    }

    .service-features li {
        font-size: 13px;
    }

    /* Contact Cards - optimisées */
    .contact-card {
        padding: 30px 20px;
    }

    .contact-icon-large {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .contact-card-title {
        font-size: 18px;
    }

    .snapchat-qr-img {
        width: 140px;
        height: 140px;
    }

    /* Boutons CTA */
    .btn {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Areas List */
    .area-item {
        padding: 10px 0;
    }

    .area-name {
        font-size: 14px;
    }

    .area-time {
        font-size: 12px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 25px 20px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* ============================================
   TINY MOBILE (360px) - Extra optimisation
   ============================================ */

    /* Navigation */
    .nav-logo {
        font-size: 24px;
    }

    .nav-logo .logo-a {
        font-size: 30px;
    }

    .nav-logo .logo-plus {
        font-size: 26px;
    }

    /* Hero */
    .hero {
        padding-top: 70px;
    }

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

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .btn {
        padding: 15px 30px;
        font-size: 15px;
    }

    /* Sections */
    section {
        padding: 40px 0;
    }

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

    .section-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Stats */
    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* Visual */
    .hero-visual {
        height: 320px;
    }

    .wheel-container {
        width: 240px;
        height: 240px;
    }

    .wheel-rim {
        width: 130px;
        height: 130px;
    }

    .rim-spoke {
        width: 55px;
        height: 12px;
    }

    .rim-spoke.spoke-1 { transform: translate(-50%, -50%) rotate(0deg) translateX(45px); }
    .rim-spoke.spoke-2 { transform: translate(-50%, -50%) rotate(60deg) translateX(45px); }
    .rim-spoke.spoke-3 { transform: translate(-50%, -50%) rotate(120deg) translateX(45px); }
    .rim-spoke.spoke-4 { transform: translate(-50%, -50%) rotate(180deg) translateX(45px); }
    .rim-spoke.spoke-5 { transform: translate(-50%, -50%) rotate(240deg) translateX(45px); }
    .rim-spoke.spoke-6 { transform: translate(-50%, -50%) rotate(300deg) translateX(45px); }

    .rim-center {
        width: 60px;
        height: 60px;
    }

    .center-logo {
        font-size: 22px;
    }

    .wheel-glow {
        width: 260px;
        height: 260px;
    }

    /* Services */
    .services-grid {
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-number {
        font-size: 36px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 14px;
    }

    /* Process */
    .process-card {
        padding: 35px 25px;
    }

    .process-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .process-stats {
        gap: 20px;
    }

    .stat-value {
        font-size: 28px;
    }

    /* Areas */
    .area-item {
        padding: 18px 20px;
    }

    .area-name {
        font-size: 15px;
    }

    .area-time {
        font-size: 13px;
    }

    /* Map */
    .nasa-map {
        height: 280px;
        max-width: 100%;
    }

    .nasa-marker {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .nasa-label {
        font-size: 14px;
        letter-spacing: 2px;
        transform: translate(-50%, 45px);
    }

    .nasa-coords,
    .nasa-distance,
    .nasa-status {
        font-size: 9px;
        padding: 6px 10px;
    }

    .nasa-grid {
        background-size: 30px 30px;
    }

    /* Contact */
    .contact-card {
        padding: 30px 20px;
    }

    .contact-icon-large {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .contact-card-title {
        font-size: 18px;
    }

    .contact-phone {
        font-size: 24px;
    }

    .contact-email {
        font-size: 16px;
    }

    .contact-address {
        font-size: 14px;
    }

    /* Testimonials */
    .testimonial-text {
        font-size: 14px;
    }

    .author-name {
        font-size: 15px;
    }

    .author-location {
        font-size: 12px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-logo {
        font-size: 22px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 12px;
    }

    .footer-link {
        font-size: 13px;
    }

    /* Floating buttons */
    .floating-actions {
        bottom: 15px;
        right: 15px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .float-tooltip {
        display: none;
    }
}

/* Small mobile optimisations */
@media (max-width: 360px) {
    /* Hero */
    .hero-title {
        font-size: 26px;
        line-height: 1.1;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-description {
        font-size: 14px;
    }

    /* Navigation */
    .nav-logo {
        font-size: 20px;
    }

    .nav-logo .logo-a {
        font-size: 26px;
    }

    /* Boutons - min 44px pour Apple guidelines */
    .btn {
        min-height: 44px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .btn-text {
        font-size: 14px;
    }

    /* Sections */
    .section-title {
        font-size: 22px;
        line-height: 1.2;
    }

    .section-description {
        font-size: 14px;
    }

    /* Services Cards */
    .service-card {
        padding: 20px 15px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 22px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 13px;
        line-height: 1.4;
    }

    .service-features li {
        font-size: 12px;
        padding: 4px 0;
    }

    /* Contact */
    .contact-card {
        padding: 25px 15px;
    }

    .contact-icon-large {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .contact-card-title {
        font-size: 16px;
    }

    .contact-phone {
        font-size: 20px;
    }

    .contact-email {
        font-size: 14px;
    }

    .snapchat-qr-img {
        width: 120px;
        height: 120px;
    }

    /* Boutons flottants */
    .float-btn {
        width: 50px;
        height: 50px;
    }

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

    /* Google Review */
    .google-review-btn {
        font-size: 13px;
        padding: 10px 16px;
    }

    .google-review-btn i {
        font-size: 16px;
    }

    /* Areas */
    .area-name {
        font-size: 13px;
    }

    .area-time {
        font-size: 11px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 20px 15px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .author-name {
        font-size: 14px;
    }

    .author-location {
        font-size: 11px;
    }

    /* Stats */
    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 10px;
    }

    /* Container padding ajusted */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
