/* ========================================
   SMART DESTOCK - Professional CSS
   La téléphonie à petit prix
   ======================================== */

/* CSS Variables */
:root {
    /* Brand Colors */
    --primary-blue: #1B2A4E;
    --primary-red: #E63946;
    --accent-gold: #C9A962;
    --dark-blue: #0D1829;
    --light-blue: #2D4A7C;

    /* Neutral Colors */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    --gradient-red: linear-gradient(135deg, var(--primary-red) 0%, #FF6B6B 100%);
    --gradient-dark: linear-gradient(180deg, var(--dark-blue) 0%, var(--primary-blue) 100%);

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(230, 57, 70, 0.3);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50%;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-secondary);
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    min-width: 320px;
}

/* Prevent horizontal scroll globally */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Main wrapper to prevent overflow */
#main-wrapper {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Selection */
::selection {
    background: var(--primary-red);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-blue);
}

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

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
ul {
    list-style: none;
}

/* ========================================
   PRELOADER
   ======================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-logo {
    margin-bottom: 30px;
    animation: logoFloat 2s ease-in-out infinite;
}

.loader-logo .smart {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-200) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loader-logo .destock {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    background: var(--primary-red);
    padding: 5px 15px;
    border-radius: 5px;
    margin-left: 10px;
    display: inline-block;
    transform: rotate(-5deg);
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    width: 0;
    height: 100%;
    background: var(--gradient-red);
    border-radius: 2px;
    animation: loadProgress 2s ease-in-out forwards;
}

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

@keyframes loadProgress {
    0% { width: 0; }
    100% { width: 100%; }
}

/* ========================================
   CUSTOM CURSOR
   ======================================== */
.cursor,
.cursor-follower {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    display: none;
}

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

.cursor {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-red);
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
}

.cursor-follower.hover {
    width: 50px;
    height: 50px;
    background: rgba(230, 57, 70, 0.1);
}

/* ========================================
   HEADER / NAVBAR
   ======================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
}

#header.scrolled {
    background: rgba(27, 42, 78, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 15px 0;
}

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

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-smart {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
}

.logo-destock {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    background: var(--primary-red);
    padding: 3px 10px;
    border-radius: 4px;
    transform: rotate(-3deg);
    position: relative;
    top: -2px;
}

.logo-tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding: 5px 0;
}

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

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

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

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

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

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

.nav-phone span {
    display: none;
}

@media (min-width: 768px) {
    .nav-phone span {
        display: inline;
    }
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition-normal);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: var(--transition-normal);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

@media (max-width: 991px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--gradient-dark);
        padding: 100px 40px;
        transition: var(--transition-slow);
        box-shadow: var(--shadow-xl);
    }

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

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

    .nav-link {
        font-size: 1.2rem;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-dark);
    max-width: 100vw;
}

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

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(230, 57, 70, 0.5);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(45, 74, 124, 0.2) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 120px 20px 80px;
}

@media (min-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 57, 70, 0.2);
    color: var(--primary-red);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(230, 57, 70, 0); }
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.title-line {
    display: block;
}

.highlight {
    color: var(--white);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(230, 57, 70, 0.3);
    z-index: -1;
    transform: skewX(-10deg);
}

.highlight-red {
    color: var(--primary-red);
    text-shadow: 0 0 30px rgba(230, 57, 70, 0.5);
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::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: var(--transition-slow);
}

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

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    background: #ff4757;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
    border-color: var(--white);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-showcase {
    position: relative;
    width: 300px;
    height: 500px;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
}

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

.phone-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    animation: phoneFloat 4s ease-in-out infinite;
}

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

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.float-card i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.float-1 {
    top: 10%;
    right: 0;
    animation: floatCard1 5s ease-in-out infinite;
}

.float-2 {
    bottom: 30%;
    left: 0;
    animation: floatCard2 6s ease-in-out infinite;
}

.float-3 {
    bottom: 10%;
    right: 0;
    animation: floatCard3 5.5s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-15px) rotate(-3deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(-2deg); }
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-icon i {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* ========================================
   SECTION STYLES
   ======================================== */
section {
    padding: var(--section-padding) 0;
    overflow-x: hidden;
    max-width: 100vw;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(230, 57, 70, 0.1);
    color: var(--primary-red);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(230, 57, 70, 0.1);
}

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

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

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

.service-card.featured .service-features li {
    color: rgba(255, 255, 255, 0.8);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.service-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0.05) 100%);
    border-radius: var(--radius-md);
    transform: rotate(45deg);
    transition: var(--transition-normal);
}

.service-card:hover .icon-bg {
    transform: rotate(0deg);
    background: var(--primary-red);
}

.service-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    color: var(--primary-red);
    transition: var(--transition-normal);
    z-index: 1;
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card.featured .icon-bg {
    background: rgba(255, 255, 255, 0.1);
}

.service-card.featured .service-icon i {
    color: var(--white);
}

.service-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

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

.service-features {
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--primary-red);
    font-size: 0.8rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link i {
    transition: var(--transition-normal);
}

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

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

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products {
    background: var(--white);
}

.products-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--gray-300);
    padding: 12px 25px;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

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

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
}

.product-badge.new {
    background: var(--primary-blue);
}

.product-badge.hot {
    background: #FF9500;
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 42, 78, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view,
.add-wishlist {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--primary-blue);
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(20px);
}

.product-card:hover .quick-view,
.product-card:hover .add-wishlist {
    transform: translateY(0);
}

.quick-view:hover,
.add-wishlist:hover {
    background: var(--primary-red);
    color: var(--white);
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary-red);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.product-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 10px 0;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.product-rating i {
    color: #FFB800;
    font-size: 0.85rem;
}

.product-rating span {
    color: var(--gray-500);
    font-size: 0.8rem;
    margin-left: 5px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-old {
    color: var(--gray-500);
    text-decoration: line-through;
    font-size: 0.95rem;
}

.price-current {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-red);
}

.btn-product {
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-product:hover {
    background: var(--primary-red);
}

.products-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   REPAIR SECTION
   ======================================== */
.repair {
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.repair-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.repair-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231B2A4E' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.repair-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 992px) {
    .repair-content {
        grid-template-columns: 1fr 1fr;
    }
}

.repair-description {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.repair-services {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.repair-service {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
}

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

.repair-icon {
    width: 50px;
    height: 50px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.repair-icon i {
    font-size: 1.3rem;
    color: var(--primary-red);
}

.repair-text h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.repair-text p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.repair-time {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--primary-red);
    font-weight: 600;
}

.repair-guarantee {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.guarantee-item i {
    color: var(--primary-red);
}

.guarantee-item span {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9rem;
}

/* Repair Visual */
.repair-visual {
    position: relative;
}

.repair-image-wrapper {
    position: relative;
}

.repair-image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.repair-stats-card {
    position: absolute;
    bottom: 30px;
    left: 0;
    background: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: floatCard1 5s ease-in-out infinite;
}

.stats-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.stats-number {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
}

.stats-label {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.repair-badge-card {
    position: absolute;
    top: 30px;
    right: 0;
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    animation: floatCard2 6s ease-in-out infinite;
}

.repair-badge-card i {
    color: var(--accent-gold);
}

/* ========================================
   BRANDS SECTION
   ======================================== */
.brands {
    background: var(--primary-blue);
    padding: 60px 0;
}

.brands-header h3 {
    text-align: center;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 40px;
}

.brands-slider {
    overflow: hidden;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

.brand-item i {
    font-size: 2.5rem;
}

.brand-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.brand-item:hover {
    color: var(--white);
    transform: scale(1.1);
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    background: var(--white);
}

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

@media (min-width: 992px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-images {
    position: relative;
}

.about-image-main {
    position: relative;
    z-index: 1;
}

.about-image-main img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 200px;
    z-index: 2;
}

.about-image-secondary img {
    border-radius: var(--radius-md);
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.about-experience {
    position: absolute;
    top: 30px;
    left: 0;
    background: var(--primary-red);
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    z-index: 3;
    animation: floatCard1 5s ease-in-out infinite;
}

.exp-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 500;
}

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

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
    color: var(--primary-red);
}

.feature-text h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.testimonials .section-badge {
    background: rgba(230, 57, 70, 0.2);
}

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

.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-slider {
    padding: 20px 0 60px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 10px;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

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

.testimonial-rating i {
    color: #FFB800;
    font-size: 1rem;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-red);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--primary-blue);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.testimonials-swiper .swiper-pagination {
    bottom: 0;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--primary-red);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background: var(--white);
    padding-bottom: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

@media (min-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

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

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

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

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--primary-red);
}

.contact-text h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-text a:hover {
    color: var(--primary-red);
}

.contact-social h4 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--gray-100);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-size: 1rem;
    color: var(--gray-800);
    transition: var(--transition-normal);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
}

/* Contact Map */
.contact-map {
    margin-top: 80px;
}

.contact-map iframe {
    filter: grayscale(100%) contrast(1.2);
    transition: var(--transition-normal);
}

.contact-map:hover iframe {
    filter: grayscale(0%) contrast(1);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--gradient-dark);
    position: relative;
    padding-top: 100px;
    overflow-x: hidden;
    max-width: 100vw;
}

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.footer-wave path {
    fill: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.footer-logo .logo-smart {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
}

.footer-logo .logo-destock {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 700;
    background: var(--primary-red);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 4px;
    transform: rotate(-3deg);
}

.footer-tagline {
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.social-icon:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
}

.footer-links ul li a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li i {
    color: var(--primary-red);
    margin-top: 4px;
}

.footer-contact ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li a:hover {
    color: var(--white);
}

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

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
    background: var(--primary-blue);
    transform: translateY(-5px);
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366;
    color: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.whatsapp-float span {
    display: none;
}

@media (min-width: 768px) {
    .whatsapp-float span {
        display: inline;
    }
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    75% {
        transform: translateX(5px);
    }
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST PRO
   ======================================== */

/* Tablet Large */
@media (max-width: 1200px) {
    :root {
        --section-padding: 80px;
    }

    .container {
        padding: 0 30px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    :root {
        --section-padding: 60px;
    }

    /* Navigation Mobile */
    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-sm);
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(180deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
        padding: 100px 30px 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        z-index: 1000;
    }

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

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.5;
        pointer-events: none;
    }

    .nav-list {
        flex-direction: column;
        gap: 8px;
        position: relative;
        z-index: 1;
    }

    .nav-item {
        opacity: 0;
        transform: translateX(30px);
        transition: all 0.3s ease;
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(5) { transition-delay: 0.3s; }

    .nav-link {
        display: block;
        font-size: 1.3rem;
        padding: 15px 20px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 5px;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(230, 57, 70, 0.2);
    }

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

    /* Mobile menu overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        backdrop-filter: blur(3px);
    }

    /* Hero Tablet */
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 100px;
    }

    .phone-showcase {
        width: 250px;
        height: 400px;
    }

    /* Cards Tablet */
    .repair-stats-card,
    .repair-badge-card {
        display: none;
    }

    .about-image-secondary,
    .about-experience {
        display: none;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

/* Mobile Large */
@media (max-width: 767px) {
    :root {
        --section-padding: 50px;
    }

    .container {
        padding: 0 20px;
    }

    /* Header Mobile */
    .navbar {
        padding: 12px 0;
    }

    .logo-smart {
        font-size: 1.5rem;
    }

    .logo-destock {
        font-size: 0.75rem;
        padding: 2px 8px;
    }

    .logo-tagline {
        font-size: 0.6rem;
    }

    .nav-phone {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .nav-phone span {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }

    .hero-content {
        padding: 100px 20px 60px;
        text-align: center;
    }

    .hero-badge {
        justify-content: center;
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 1rem;
        margin: 0 auto 25px;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 15px;
        padding-top: 25px;
    }

    .stat-item {
        flex: 1 1 calc(50% - 15px);
        min-width: 120px;
    }

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

    .stat-suffix {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-visual {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 40px;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

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

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.15rem;
    }

    .service-description {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .service-features li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .featured-badge {
        top: 15px;
        right: 15px;
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    /* Repair Section Mobile */
    .repair-content {
        gap: 40px;
    }

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

    .repair-services {
        gap: 12px;
    }

    .repair-service {
        padding: 16px;
        gap: 15px;
    }

    .repair-icon {
        width: 45px;
        height: 45px;
    }

    .repair-icon i {
        font-size: 1.1rem;
    }

    .repair-text h4 {
        font-size: 0.95rem;
    }

    .repair-text p {
        font-size: 0.85rem;
    }

    .repair-guarantee {
        flex-direction: column;
        gap: 10px;
    }

    .guarantee-item {
        justify-content: center;
        padding: 10px 15px;
    }

    .repair-visual {
        order: -1;
    }

    .repair-image {
        border-radius: var(--radius-md);
    }

    /* Brands Mobile */
    .brands {
        padding: 40px 0;
    }

    .brands-header h3 {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .brand-item i {
        font-size: 2rem;
    }

    .brand-item span {
        font-size: 0.8rem;
    }

    /* About Mobile */
    .about-content {
        gap: 40px;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-feature {
        background: var(--gray-100);
        padding: 15px;
        border-radius: var(--radius-md);
    }

    .feature-icon {
        width: 45px;
        height: 45px;
    }

    .feature-text h4 {
        font-size: 0.95rem;
    }

    .feature-text p {
        font-size: 0.8rem;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 25px 20px;
        margin: 5px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }

    .author-info h4 {
        font-size: 0.95rem;
    }

    /* Contact Mobile */
    .contact-content {
        gap: 40px;
    }

    .contact-description {
        font-size: 0.95rem;
    }

    .contact-item {
        margin-bottom: 20px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-text h4 {
        font-size: 0.95rem;
    }

    .contact-text p,
    .contact-text a {
        font-size: 0.9rem;
    }

    .social-links {
        justify-content: flex-start;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: var(--radius-md);
    }

    .contact-form h3 {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .contact-map {
        margin-top: 50px;
    }

    .contact-map iframe {
        height: 300px;
    }

    /* Footer Mobile */
    .footer {
        padding-top: 70px;
    }

    .footer-wave svg {
        height: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
        padding-bottom: 35px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .footer-links ul li,
    .footer-contact ul li {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }

    .footer-contact ul li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 25px 0;
    }

    .footer-copyright p {
        font-size: 0.85rem;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .footer-legal a {
        font-size: 0.8rem;
    }

    /* Floating Elements Mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        padding: 12px 18px;
        border-radius: 25px;
    }

    .whatsapp-float i {
        font-size: 1.3rem;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    :root {
        --section-padding: 40px;
    }

    .container {
        padding: 0 16px;
    }

    /* Header Small */
    .nav-container {
        padding: 0 16px;
    }

    .logo-smart {
        font-size: 1.3rem;
    }

    .logo-destock {
        font-size: 0.65rem;
    }

    .logo-tagline {
        display: none;
    }

    .nav-phone {
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    /* Hero Small */
    .hero-content {
        padding: 90px 16px 50px;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .hero-cta .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 12px;
        padding-top: 20px;
    }

    .stat-item {
        flex: 1 1 calc(50% - 12px);
    }

    .stat-number {
        font-size: 1.7rem;
    }

    .stat-suffix {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Section Small */
    .section-header {
        margin-bottom: 30px;
    }

    .section-badge {
        font-size: 0.7rem;
        padding: 5px 14px;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    /* Services Small */
    .service-card {
        padding: 20px 16px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
    }

    .service-title {
        font-size: 1.05rem;
    }

    .service-description {
        font-size: 0.85rem;
    }

    /* Repair Small */
    .repair-service {
        padding: 14px;
    }

    .repair-icon {
        width: 40px;
        height: 40px;
    }

    .repair-text h4 {
        font-size: 0.9rem;
    }

    /* Contact Small */
    .contact-form-wrapper {
        padding: 20px 16px;
    }

    .contact-form h3 {
        font-size: 1.15rem;
    }

    /* Footer Small */
    .footer-content {
        gap: 30px;
    }

    .footer-logo .logo-smart {
        font-size: 1.5rem;
    }

    /* Buttons Touch Target */
    .btn {
        min-height: 48px;
        padding: 12px 20px;
    }

    .btn-product {
        min-height: 48px;
    }

    .filter-btn {
        min-height: 44px;
        padding: 10px 18px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-cta .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .stat-item {
        flex: 1 1 100%;
    }

    .service-card {
        padding: 18px 14px;
    }

    .repair-service {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-icon {
        margin: 0 auto;
    }
}

/* Landscape Mobile */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-stats {
        flex-wrap: nowrap;
    }

    .stat-item {
        flex: 1;
        min-width: auto;
    }
}

/* Touch Device Improvements */
@media (hover: none) and (pointer: coarse) {
    .btn:hover {
        transform: none;
    }

    .btn:active {
        transform: scale(0.98);
    }

    .service-card:hover {
        transform: none;
    }

    .service-card:active {
        transform: scale(0.99);
    }

    .nav-link:hover::after {
        width: 0;
    }

    .nav-link:active {
        background: rgba(230, 57, 70, 0.2);
    }

    /* Larger touch targets */
    .social-link,
    .social-icon {
        min-width: 48px;
        min-height: 48px;
    }
}

/* Safe Area for notched devices */
@supports (padding: max(0px)) {
    .hero-content {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }

    .footer-bottom {
        padding-bottom: max(30px, env(safe-area-inset-bottom));
    }

    .whatsapp-float {
        left: max(20px, env(safe-area-inset-left));
        bottom: max(20px, env(safe-area-inset-bottom));
    }

    .back-to-top {
        right: max(20px, env(safe-area-inset-right));
        bottom: max(20px, env(safe-area-inset-bottom));
    }
}

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

.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* ========================================
   ADDITIONAL MOBILE ENHANCEMENTS
   ======================================== */

/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Better focus states for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

/* Remove focus outline for mouse users */
*:focus:not(:focus-visible) {
    outline: none;
}

/* Loading skeleton animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        border: 2px solid var(--white);
    }

    .service-card {
        border: 2px solid var(--gray-400);
    }
}

/* Print styles */
@media print {
    .nav-toggle,
    .nav-phone,
    .whatsapp-float,
    .back-to-top,
    #preloader,
    .hero-scroll {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    section {
        page-break-inside: avoid;
    }
}

/* ========================================
   MOBILE FIXES - CRITICAL OVERRIDES
   ======================================== */
@media (max-width: 991px) {
    /* STOP ALL HORIZONTAL OVERFLOW */
    *, *::before, *::after {
        max-width: 100vw;
    }

    /* Disable all floating animations that cause overflow */
    .float-card,
    .float-1,
    .float-2,
    .float-3,
    .floating-elements,
    .phone-showcase,
    .phone-glow,
    .phone-image,
    .repair-stats-card,
    .repair-badge-card,
    .about-experience,
    .about-image-secondary {
        display: none !important;
    }

    /* Fix hero visual */
    .hero-visual {
        display: none !important;
    }

    /* Container overflow fix */
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        overflow-x: hidden;
    }

    /* Section overflow fix */
    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Hero section fix */
    .hero {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 100px 20px 60px;
        overflow: hidden;
    }

    .hero-bg,
    .hero-gradient,
    .particles {
        width: 100%;
        max-width: 100vw;
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    /* BETTER TEXT READABILITY */

    /* Hero text - BIGGER */
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    .hero-description {
        font-size: 1.05rem !important;
        line-height: 1.7 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        margin-bottom: 30px !important;
    }

    .hero-badge {
        font-size: 0.85rem !important;
        padding: 10px 18px !important;
    }

    /* Stats - more readable */
    .hero-stats {
        gap: 20px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .stat-item {
        flex: 0 0 auto !important;
        min-width: 100px !important;
        text-align: center !important;
    }

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

    .stat-label {
        font-size: 0.8rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    /* Section titles - BIGGER */
    .section-title {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }

    .section-subtitle {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        color: var(--gray-600) !important;
    }

    .section-badge {
        font-size: 0.8rem !important;
        padding: 8px 16px !important;
    }

    /* Service cards - better text */
    .service-title {
        font-size: 1.2rem !important;
        margin-bottom: 12px !important;
    }

    .service-description {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
        color: var(--gray-600) !important;
    }

    .service-features li {
        font-size: 0.9rem !important;
        margin-bottom: 10px !important;
    }

    /* Repair section text */
    .repair-description {
        font-size: 1rem !important;
        line-height: 1.8 !important;
    }

    .repair-text h4 {
        font-size: 1rem !important;
    }

    .repair-text p {
        font-size: 0.9rem !important;
    }

    /* Contact section text */
    .contact-description {
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }

    .contact-text h4 {
        font-size: 1rem !important;
    }

    .contact-text p,
    .contact-text a {
        font-size: 0.95rem !important;
    }

    /* Form inputs - prevent zoom on iOS */
    input, select, textarea {
        font-size: 16px !important;
    }

    /* Footer text */
    .footer-description {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }

    .footer-links ul li a,
    .footer-contact ul li {
        font-size: 0.95rem !important;
    }

    /* Buttons - bigger touch targets */
    .btn {
        min-height: 50px !important;
        padding: 14px 28px !important;
        font-size: 1rem !important;
    }

    .btn-product {
        min-height: 48px !important;
        font-size: 0.95rem !important;
    }

    /* Testimonials */
    .testimonial-text {
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }

    .author-info h4 {
        font-size: 1rem !important;
    }

    /* About section */
    .about-description {
        font-size: 1rem !important;
        line-height: 1.8 !important;
    }

    .feature-text h4 {
        font-size: 1rem !important;
    }

    .feature-text p {
        font-size: 0.9rem !important;
    }

    /* Brands section */
    .brands-header h3 {
        font-size: 1.1rem !important;
    }

    /* WhatsApp button */
    .whatsapp-float {
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
    }

    .whatsapp-float span {
        display: inline !important;
    }
}

@media (max-width: 480px) {
    /* Extra small screens - even simpler */

    .hero-title {
        font-size: 1.75rem !important;
    }

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

    .section-title {
        font-size: 1.5rem !important;
    }

    .hero-cta {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .hero-cta .btn {
        width: 100% !important;
        max-width: 280px !important;
    }

    /* Stack stats vertically on very small screens */
    .stat-item {
        flex: 1 1 45% !important;
    }

    /* Simpler service cards */
    .service-card {
        padding: 24px 20px !important;
    }

    /* Contact form */
    .contact-form-wrapper {
        padding: 24px 16px !important;
    }

    .contact-form h3 {
        font-size: 1.25rem !important;
    }

    /* WhatsApp - icon only on very small */
    .whatsapp-float span {
        display: none !important;
    }

    .whatsapp-float {
        padding: 14px !important;
        border-radius: 50% !important;
    }
}
