/* Global Styles - Dark Automobile Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff4444;
    --secondary-color: #00d9ff;
    --accent-color: #ffd700;
    --dark-bg: #0a0a0a;
    --dark-card: #1a1a1a;
    --darker-card: #141414;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --text-dark: #333;
    --success: #00ff88;
    --warning: #ffaa00;
    --gradient-red: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    --gradient-blue: linear-gradient(135deg, #00d9ff 0%, #0066ff 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    --neon-glow: 0 0 20px rgba(255, 68, 68, 0.6);
    --blue-glow: 0 0 20px rgba(0, 217, 255, 0.6);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 68, 68, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.05) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 68, 68, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary-color);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 2px;
    text-shadow: var(--neon-glow);
}

.logo .slogan {
    font-size: 12px;
    color: var(--accent-color);
    font-style: italic;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s;
    font-size: 15px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-red);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gradient-red);
    transition: 0.3s;
    box-shadow: var(--neon-glow);
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background: 
        linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.8)),
        url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?w=1600') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 68, 68, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 217, 255, 0.15) 0%, transparent 50%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 68, 68, 0.05);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff4444 0%, #00d9ff 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--neon-glow);
    animation: textShine 3s ease-in-out infinite;
}

@keyframes textShine {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.5;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    color: var(--text-light);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.btn-secondary {
    background: var(--gradient-blue);
    color: var(--text-light);
    box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.6);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--dark-bg);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 50px;
    margin-top: -30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--gradient-dark);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 68, 68, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 68, 68, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(255, 68, 68, 0.4);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 32px;
    box-shadow: var(--neon-glow);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Parts Section */
.parts-section {
    padding: 80px 0;
    background: var(--darker-card);
}

.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.part-card {
    background: var(--gradient-dark);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.part-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--primary-color), transparent 30%);
    animation: rotate 4s linear infinite;
}

.part-card:hover::after {
    animation-duration: 2s;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.part-card > * {
    position: relative;
    z-index: 1;
}

.part-card::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--dark-card);
    border-radius: 10px;
    z-index: 0;
}

.part-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.3);
}

.part-card i {
    font-size: 48px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.6));
}

.part-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.part-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.inquire-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--gradient-red);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
}

.inquire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 68, 68, 0.6);
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.brand-category {
    margin-bottom: 60px;
}

.brand-category h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.brand-card {
    background: var(--gradient-dark);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.brand-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4);
    border-color: var(--secondary-color);
}

.brand-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 10px;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: contrast(1.1);
}

.brand-card p {
    font-weight: 600;
    color: var(--text-light);
    font-size: 15px;
}

.cta-box {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: var(--gradient-dark);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(255, 68, 68, 0.3);
    border: 1px solid var(--primary-color);
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--text-light);
}

/* Service Area */
.service-area {
    padding: 80px 0;
    background: var(--darker-card);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.region-card {
    background: var(--gradient-dark);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.region-card:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.3);
    border-left-width: 8px;
}

.region-card i {
    font-size: 36px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.region-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.region-card p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: 
        linear-gradient(rgba(10, 10, 10, 0.9), rgba(10, 10, 10, 0.9)),
        url('https://images.unsplash.com/photo-1485291571150-772bcfc10da5?w=1600') center/cover fixed;
    color: var(--text-light);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 68, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: var(--text-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.info-box {
    text-align: center;
    padding: 30px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 68, 68, 0.3);
    transition: all 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.4);
}

.info-box i {
    font-size: 36px;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 68, 68, 0.6));
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.info-box p,
.info-box a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.info-box a:hover {
    color: var(--primary-color);
}

.contact-cta {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    padding: 18px 40px;
    font-size: 18px;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp:hover {
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
}

/* Footer */
.footer {
    background: var(--dark-card);
    color: var(--text-light);
    padding: 60px 0 20px;
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 15px;
    background: var(--gradient-red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 68, 68, 0.2);
    color: var(--text-gray);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
    animation: floatBounce 3s ease-in-out infinite;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.whatsapp-float:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
}

/* Page Hero (for inner pages) */
.page-hero {
    position: relative;
    padding: 100px 0;
    background: 
        linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.9)),
        url('https://images.unsplash.com/photo-1503376780353-7e6692767b70?w=1600') center/cover;
    color: var(--text-light);
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff4444 0%, #00d9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero p {
    color: var(--text-gray);
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: var(--dark-bg);
}

.about-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-intro p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.about-card {
    background: var(--gradient-dark);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 68, 68, 0.2);
    transition: all 0.3s;
}

.about-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 68, 68, 0.3);
}

.about-card i {
    font-size: 48px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.6));
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.about-card p {
    color: var(--text-gray);
}

.why-choose {
    margin-bottom: 80px;
}

.why-choose h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
}

.feature-list {
    display: grid;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--gradient-dark);
    border-radius: 12px;
    border-left: 4px solid var(--success);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 25px rgba(0, 255, 136, 0.2);
}

.feature-item i {
    font-size: 28px;
    color: var(--success);
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.6));
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.service-regions {
    background: var(--gradient-dark);
    padding: 60px;
    border-radius: 12px;
    margin-bottom: 80px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.service-regions h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-regions > p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.regions-list {
    list-style: none;
}

.regions-list li {
    padding: 15px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    color: var(--text-gray);
}

.regions-list li:last-child {
    border-bottom: none;
}

.regions-list i {
    color: var(--accent-color);
    margin-right: 10px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.cta-section {
    text-align: center;
    padding: 60px;
    background: var(--gradient-red);
    color: var(--text-light);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(255, 68, 68, 0.4);
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
    background: var(--dark-bg);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background: var(--gradient-dark);
    padding: 60px;
    border-radius: 12px;
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.legal-text h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--secondary-color);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-gray);
}

.legal-text ul {
    margin: 20px 0 20px 40px;
    line-height: 1.8;
}

.legal-text ul li {
    margin-bottom: 10px;
    color: var(--text-gray);
}

.legal-text strong {
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(255, 68, 68, 0.3);
        padding: 30px 0;
        gap: 15px;
        border-bottom: 2px solid var(--primary-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .page-hero h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .features-grid,
    .parts-grid,
    .brands-grid,
    .regions-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        padding: 8px 15px;
        font-size: 13px;
    }

    .logo h1 {
        font-size: 22px;
    }

    .legal-text {
        padding: 30px 20px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-red);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff6666 0%, #ff0000 100%);
}
