/* Modern 2025 Design System */
:root {
    /* Color Palette - Green Theme */
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --secondary: #14b8a6;
    --accent: #22c55e;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --dark-lighter: #334155;
    --light: #f8fafc;
    --white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --text-light: #ffffff;
    
    /* Gradients - Green Theme */
    --gradient-primary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-secondary: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    --gradient-accent: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    --gradient-hero: linear-gradient(135deg, #10b981 0%, #059669 50%, #14b8a6 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(16, 185, 129, 0.3);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    font-weight: 600;
    background: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Prevent overflow on mobile */
* {
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Animated Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

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

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: var(--gradient-secondary);
    bottom: -300px;
    right: -300px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--gradient-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

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

/* Header - Semi-transparent dark theme - STICKY */
header,
.header,
header.header {
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    padding: 1rem 0 !important;
    background: rgba(15, 23, 42, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    transition: all var(--transition-base) !important;
}

/* Hide any hamburger menu that might exist */
.mobile-menu-btn,
.hamburger-menu,
.menu-toggle,
.mobile-menu {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

header.scrolled,
.header.scrolled,
header.header.scrolled {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(25px) !important;
    -webkit-backdrop-filter: blur(25px) !important;
    padding: 0.75rem 0 !important;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    text-decoration: none;
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

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

.logo-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: transform var(--transition-base);
}

.logo:hover .logo-img {
    transform: scale(1.1);
}

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

/* Header Buttons */
.header-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

.header-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    white-space: nowrap;
    min-width: fit-content;
    position: relative;
    overflow: hidden;
}

.header-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: left 0.5s;
}

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

.phone-btn {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.whatsapp-btn {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #1ea952;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.location-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
    text-align: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    text-align: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-align: center;
}

.highlight {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #1ea952;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(16, 185, 129, 0.3);
}

.trust-item i {
    color: var(--primary-light);
    font-size: 1.25rem;
}

.trust-item span {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Phone Parts Showcase */
.phone-parts-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 400px;
    margin: 0 auto;
}

.part-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.875rem 1.25rem;
    text-align: center;
    transition: all var(--transition-base);
    animation: float 3s ease-in-out infinite;
}

.part-item:nth-child(1) { animation-delay: 0s; }
.part-item:nth-child(2) { animation-delay: 0.5s; }
.part-item:nth-child(3) { animation-delay: 1s; }
.part-item:nth-child(4) { animation-delay: 1.5s; }

.part-item:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.part-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-light);
    font-size: 1.5rem;
    transition: transform var(--transition-base);
}

.part-item:hover .part-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(16, 185, 129, 0.3);
}

.part-item span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Products Section */
.products {
    padding: var(--spacing-3xl) 0;
    position: relative;
    text-align: center;
}

.products h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.products-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    width: 100%;
    overflow-x: hidden;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover::before {
    opacity: 0.1;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
    transition: transform var(--transition-base);
    position: relative;
    z-index: 1;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotateZ(5deg);
}

.product-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.product-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.product-price {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    position: relative;
    z-index: 1;
}

.product-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.brand-tag {
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary-light);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.products-cta {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.products-note {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Brands Section */
.brands {
    padding: var(--spacing-3xl) 0;
    position: relative;
    text-align: center;
}

.brands h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 3rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
}

.brand-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
}

.brand-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
    transition: transform var(--transition-base);
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.brand-item:hover i {
    transform: scale(1.1) rotate(5deg);
}

.brand-item span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
}

/* Why Choose Us */
.why-choose {
    padding: var(--spacing-3xl) 0;
    position: relative;
    text-align: center;
}

.why-choose h2 {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.why-choose-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    width: 100%;
    overflow-x: hidden;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-item:hover::before {
    opacity: 0.1;
}

.feature-item:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 50px rgba(16, 185, 129, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
    transition: transform var(--transition-base);
    position: relative;
    z-index: 1;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotateZ(5deg);
}

.feature-item h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Social Proof */
.social-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    overflow-x: hidden;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}

.testimonial-content i {
    color: var(--primary-light);
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    display: block;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.testimonial-content p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--white);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: block;
    margin-top: 0.25rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
    overflow-x: hidden;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.25rem 0.75rem;
    transition: all var(--transition-base);
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
}

.stat-item:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Location & Contact */
.location-contact {
    padding: var(--spacing-3xl) 0;
    position: relative;
    text-align: center;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.location-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.address {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.address i {
    color: var(--primary-light);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.address strong {
    color: var(--white);
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.5rem;
}

.address small {
    color: var(--text-light);
    font-size: 0.9rem;
}

.opening-hours {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.opening-hours h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span {
    color: var(--text-light);
    font-size: 1rem;
}

.hour-item strong {
    color: var(--white);
    font-size: 1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--white);
    transition: all var(--transition-base);
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(0.75rem);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-light);
    transition: transform var(--transition-base);
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.contact-method:hover i {
    transform: scale(1.1);
}

.contact-method strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-method span {
    font-size: 0.9rem;
    opacity: 0.8;
    display: block;
}

.contact-method small {
    font-size: 0.8rem;
    opacity: 0.7;
    display: block;
    margin-top: 0.125rem;
}

.cta-final {
    text-align: center;
}

.btn-large {
    padding: 1.5rem 2.5rem;
    font-size: 1.25rem;
    min-height: 70px;
}

.cta-note {
    margin-top: 1.25rem;
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.map-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-placeholder {
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1.25rem;
    color: var(--primary-light);
    filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.5));
}

.map-placeholder p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.map-placeholder small {
    font-size: 1rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

.footer-section h3, .footer-section h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-section ul li {
    color: var(--text-light);
    opacity: 0.8;
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    gap: 20px;
}

.floating-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    min-width: 120px;
    position: relative;
    overflow: hidden;
    animation: bounce 2s infinite;
}

.floating-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: left 0.5s;
}

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

.floating-btn i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.floating-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.phone-floating {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.phone-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

.whatsapp-floating {
    background: linear-gradient(135deg, #25d366 0%, #1ea952 100%);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-floating:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-grid,
    .features-grid,
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .social-proof {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 5rem 0 2rem;
    }
    
    .hero h1 {
        font-size: 2.25rem;
        font-weight: 900;
        line-height: 1.2;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .phone-parts-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .products-grid,
    .features-grid,
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-proof {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .floating-buttons {
        bottom: 20px;
        left: 20px;
        right: 20px;
        gap: 15px;
    }
    
    .floating-btn {
        padding: 0.875rem 1.25rem;
        min-width: 100px;
        font-size: 0.8rem;
    }
    
    .floating-btn i {
        font-size: 1.25rem;
    }
    
    .floating-text {
        font-size: 0.7rem;
    }
    
    /* Fix navbar overflow on mobile */
    .nav {
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    
    .logo {
        font-size: 1rem;
        gap: 0.5rem;
    }
    
    .logo-img {
        width: 30px;
        height: 30px;
    }
    
    .header-buttons {
        gap: 0.75rem;
        width: 100%;
        justify-content: center;
    }
    
    .header-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        gap: 0.5rem;
        flex: 1;
        min-width: 120px;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero h1 {
        font-size: 2rem;
        font-weight: 900;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        font-weight: 500;
        line-height: 1.6;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .floating-buttons {
        bottom: 15px;
        left: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        padding: 0.75rem 1rem;
        min-width: 90px;
        font-size: 0.75rem;
    }
    
    .floating-btn i {
        font-size: 1.125rem;
    }
    
    .floating-text {
        font-size: 0.65rem;
    }
    
    /* Further navbar optimization for very small screens */
    .logo-text {
        display: none;
    }
    
    .header-btn {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
        min-width: 100px;
    }
    
    .header-btn span {
        display: inline;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero {
        padding: 4rem 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        font-weight: 900;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.5;
    }
    
    .product-card,
    .feature-item,
    .testimonial {
        padding: 1rem;
    }
    
    .floating-buttons {
        bottom: 10px;
        left: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .floating-btn {
        padding: 0.625rem 0.875rem;
        min-width: 80px;
        font-size: 0.7rem;
    }
    
    .floating-btn i {
        font-size: 1rem;
    }
    
    .floating-text {
        font-size: 0.6rem;
    }
    
    /* Keep buttons large on very small screens */
    .header-btn {
        padding: 0.75rem 0.875rem;
        font-size: 0.85rem;
        min-width: 90px;
    }
    
    .header-buttons {
        gap: 0.5rem;
    }
}
}