/* ===========================================
   AL BARQ - COMPLETE STYLESHEET
   Design: Charcoal Grey + Automotive Orange
   Features: Glassmorphism, Particles, Micro-interactions
=========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Rich Charcoal Palette */
    --bg-dark: #0f0f0f;
    --bg-primary: #1a1a1a;
    --bg-secondary: #252525;
    --bg-card: #2a2a2a;
    
    /* Vibrant Automotive Orange */
    --orange: #FF6B35;
    --orange-bright: #FF8A5B;
    --orange-dark: #E85D31;
    --orange-glow: rgba(255, 107, 53, 0.3);
    
    /* Accent Gold */
    --gold: #FFB84D;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-400: #a0a0a0;
    --gray-600: #6b6b6b;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FFB84D 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(42, 42, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--gray-100);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--orange);
    color: var(--white);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ============================================
   PARTICLE BACKGROUND
============================================ */
#particles-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    50% { transform: translateY(-100px) translateX(50px); opacity: 0.6; }
}

/* ============================================
   SCROLL CONTAINER
============================================ */
.scroll-container {
    position: relative;
    z-index: 1;
}

/* ============================================
   HEADER
============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(15, 15, 15, 0.95);
    border-bottom-color: rgba(255, 107, 53, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--gray-200);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--orange);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

.nav-links a.active::before,
.nav-links a:hover::before {
    width: 100%;
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--orange);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lang-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--orange);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--orange);
    cursor: pointer;
}

/* ============================================
   BUTTONS
============================================ */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--orange-glow);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 0.8rem 1.8rem;
    border: 2px solid var(--orange);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: var(--orange);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--orange-glow);
}

/* ============================================
   HERO
============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero-bg-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    animation: pulse-glow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    animation: slideDown 0.8s ease-out;
}

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

.hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--orange-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideUp 1s ease-out 0.2s backwards;
}

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

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

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-400);
    max-width: 750px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    animation: slideUp 1s ease-out 0.4s backwards;
}

.hero-stats-mini {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: slideUp 1s ease-out 0.5s backwards;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-400);
    font-size: 0.9rem;
}

.mini-stat i {
    color: var(--orange);
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 1s ease-out 0.6s backwards;
    margin-bottom: 60px;
}

/* ============================================
   PART FINDER
============================================ */
.finder-wrapper {
    margin-top: 20px;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.part-finder {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    transition: var(--transition-smooth);
}

.part-finder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 24px 24px 0 0;
}

.part-finder:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 60px var(--orange-glow);
}

.finder-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.finder-subtitle {
    text-align: center;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(15, 15, 15, 0.6);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition-smooth);
    outline: none;
}

.form-group select:hover {
    border-color: rgba(255, 107, 53, 0.4);
    background: rgba(15, 15, 15, 0.8);
}

.form-group select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px var(--orange-glow);
    transform: translateY(-2px);
}

.form-group select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.finder-submit {
    grid-column: 1 / -1;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.3rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.finder-submit::after {
    content: '→';
    position: absolute;
    right: 2rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.finder-submit:hover::after {
    opacity: 1;
    right: 1.5rem;
}

.finder-submit:hover:not(:disabled) {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px var(--orange-glow);
}

.finder-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Finder Steps */
.finder-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.step-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.step-number {
    width: 35px;
    height: 35px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.step-item:hover .step-number {
    background: rgba(255, 107, 53, 0.25);
    transform: scale(1.1);
}

.step-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
}

/* ============================================
   STATS SECTION
============================================ */
.stats-section {
    padding: 6rem 2rem;
    background: var(--bg-primary);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.stats-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition-bounce);
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--orange);
    box-shadow: 0 20px 50px var(--orange-glow);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--orange);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============================================
   SECTION TITLES
============================================ */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-title h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--gray-400);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   CATEGORIES
============================================ */
.categories-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.categories-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: var(--transition-smooth);
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--orange);
    box-shadow: 0 20px 60px var(--orange-glow);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    transition: var(--transition-bounce);
}

.category-card:hover .category-icon {
    transform: rotate(360deg) scale(1.1);
}

.category-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-arrow {
    display: inline-block;
    color: var(--orange);
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-smooth);
}

.category-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   BRANDS SECTION
============================================ */
.brands-section {
    padding: 6rem 2rem;
    background: var(--bg-primary);
}

.brands-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.brand-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 800;
    color: var(--gray-400);
    text-decoration: none;
    display: block;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.brand-card:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--orange-glow);
}

/* ============================================
   WHY CHOOSE US
============================================ */
.why-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: start;
}

.why-intro {
    color: var(--gray-400);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

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

.why-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 107, 53, 0.2);
}

.why-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.why-text p {
    color: var(--gray-400);
    line-height: 1.7;
}

/* Reviews Box */
.reviews-box {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    position: sticky;
    top: 120px;
}

.reviews-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

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

.review-count {
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.review-quote {
    position: relative;
    padding: 2rem;
    background: rgba(15, 15, 15, 0.6);
    border-radius: 15px;
    margin-top: 2rem;
}

.review-quote .fa-quote-left {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 2rem;
    color: var(--orange);
    opacity: 0.3;
}

.review-quote p {
    font-style: italic;
    color: var(--gray-200);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

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

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    color: var(--white);
}

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

/* ============================================
   BRANCHES
============================================ */
.branches-section {
    padding: 6rem 2rem;
    background: var(--bg-primary);
}

.branches-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.branch-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition-smooth);
}

.branch-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 20px 50px var(--orange-glow);
}

.branch-status {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
}

.branch-status.open {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.branch-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.branch-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--gray-200);
}

.branch-detail i {
    color: var(--orange);
    width: 20px;
    margin-top: 0.2rem;
}

.branch-detail a {
    color: var(--gray-200);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.branch-detail a:hover {
    color: var(--orange);
}

.branch-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-branch-primary,
.btn-branch-secondary {
    flex: 1;
    padding: 0.9rem;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.btn-branch-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-branch-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--orange-glow);
}

.btn-branch-secondary {
    background: transparent;
    border: 1px solid var(--orange);
    color: var(--orange);
}

.btn-branch-secondary:hover {
    background: rgba(255, 107, 53, 0.1);
}

/* ============================================
   BLOG SECTION
============================================ */
.blog-section {
    padding: 6rem 2rem;
    background: var(--bg-dark);
}

.blog-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange);
    box-shadow: 0 20px 50px var(--orange-glow);
}

.blog-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-content {
    padding: 2rem;
}

.blog-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    color: var(--orange);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    color: var(--gray-600);
    font-size: 0.85rem;
}

.blog-meta i {
    margin-right: 0.3rem;
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   FAQ SECTION
============================================ */
.faq-section {
    padding: 6rem 2rem;
    background: var(--bg-primary);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.faq-question i {
    color: var(--orange);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--gray-400);
    line-height: 1.8;
}

/* ============================================
   NEWSLETTER
============================================ */
.newsletter-section {
    padding: 5rem 2rem;
    background: var(--bg-dark);
}

.newsletter-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.newsletter-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.newsletter-text p {
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(15, 15, 15, 0.6);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.newsletter-form input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px var(--orange-glow);
}

/* ============================================
   FOOTER
============================================ */
.footer {
    background: var(--bg-primary);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-col p {
    color: var(--gray-400);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    font-size: 0.95rem;
    color: var(--orange);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: var(--gray-400);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: var(--transition-smooth);
}

.footer-col a:hover {
    color: var(--orange);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--orange);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--orange);
}

/* ============================================
   WHATSAPP FLOAT
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
    animation: pulse-whatsapp 2s infinite;
    transition: var(--transition-smooth);
    text-decoration: none;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 10px 60px rgba(37, 211, 102, 0.8);
        transform: scale(1.05);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 50px rgba(37, 211, 102, 0.7);
}

/* ============================================
   CHAT WIDGET
============================================ */
.chat-widget {
    position: fixed;
    bottom: 110px;
    right: 2rem;
    width: 350px;
    max-height: 500px;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    z-index: 999;
    display: none;
    flex-direction: column;
}

.chat-widget.active {
    display: flex;
}

.chat-header {
    background: var(--gradient-primary);
    padding: 1.2rem 1.5rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.chat-header strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.chat-status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.chat-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
}

.chat-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    max-height: 350px;
}

.chat-message {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 12px;
    max-width: 80%;
}

.chat-message.bot {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-right: auto;
}

.chat-message.user {
    background: var(--orange);
    color: var(--white);
    margin-left: auto;
}

.chat-message p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chat-options {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
}

.chat-option {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    text-align: left;
}

.chat-option:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--orange);
}

.chat-footer {
    padding: 1rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 0.5rem;
}

.chat-footer input {
    flex: 1;
    padding: 0.8rem;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--white);
    outline: none;
}

.chat-footer button {
    background: var(--orange);
    border: none;
    color: var(--white);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    cursor: pointer;
}

.chat-trigger {
    position: fixed;
    bottom: 2rem;
    right: 110px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 997;
    box-shadow: 0 8px 25px var(--orange-glow);
    transition: var(--transition-smooth);
}

.chat-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px var(--orange-glow);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #FF0000;
    border-radius: 50%;
    color: white;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* ============================================
   SCROLL REVEAL
============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1200px) {
    .why-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .reviews-box {
        position: relative;
        top: 0;
    }
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
    }

    .finder-wrapper {
        padding: 0 1.5rem;
    }

    .part-finder {
        padding: 2rem;
    }

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

    .categories-grid,
    .brands-grid,
    .branches-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .chat-widget {
        width: calc(100% - 2rem);
        right: 1rem;
    }

    .whatsapp-float,
    .chat-trigger {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .chat-trigger {
        right: 90px;
    }
}

@media (max-width: 640px) {
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

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

    .newsletter-form {
        flex-direction: column;
    }

    .branch-actions {
        flex-direction: column;
    }

    .hero-stats-mini {
        flex-direction: column;
        gap: 1rem;
    }
}
