:root {
    --primary: #ff7a00;
    --primary-light: #ff9a3c;
    --secondary: #64748b;
    --accent: #ff7a00;
    --bg-dark: #0a0a0b;
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #334155;
    --glass: rgba(255, 255, 255, 0.9);
    --border: rgba(0, 0, 0, 0.1);
    --font-main: 'Outfit', sans-serif;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(255, 122, 0, 0.15);
}

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

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

.animate { animation: fadeInUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); color: var(--text-dark); background: var(--bg-light); line-height: 1.6; overflow-x: hidden; }

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* Top Bar */
.top-bar {
    background: #0a0a0b;
    color: #94a3b8;
    padding: 10px 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-contact { display: flex; gap: 2rem; align-items: center; }
.top-contact-item { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    transition: all 0.3s ease;
    color: #cbd5e1;
}
.top-contact-item:hover { color: var(--primary); }
.top-contact-item .icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 122, 0, 0.1);
    color: var(--primary);
    border-radius: 50%;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}
.top-contact-item:hover .icon-wrapper {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.4);
}

.top-social { display: flex; gap: 0.8rem; align-items: center; }
.social-text { font-size: 0.8rem; color: #64748b; margin-right: 5px; }
.top-social a { 
    display: flex; 
    align-items: center; 
    justify-content: center;
    width: 24px; 
    height: 24px; 
    background: #ffffff; 
    border-radius: 50%;
    color: #0c0a09;
    font-size: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.top-social a i {
    color: #0c0a09;
    transition: color 0.3s ease;
}
.top-social a:hover { 
    background: var(--primary); 
    color: white; 
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.4);
}
.top-social a:hover i {
    color: white !important;
}

/* Navigation */
nav {
    height: 90px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav.scrolled {
    height: 80px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.logo { 
    font-size: 2rem; 
    font-weight: 900; 
    color: #0f172a; 
    letter-spacing: -1px; 
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 4px;
}
.logo span { 
    color: transparent; 
    background: linear-gradient(135deg, #ff7a00, #ff9a3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #f59e0b;
    border-radius: 50%;
    margin-bottom: 8px;
    margin-left: 2px;
}

.logo-dot {
    display: inline-block;
    color: var(--primary);
    font-size: 1.8rem;
    margin-left: 15px;
    margin-right: 15px;
    vertical-align: middle;
}

nav .container { max-width: 1400px; width: 95%; }

.nav-links { display: flex; gap: 0.2rem; align-items: center; }
.nav-links a { 
    font-weight: 700; 
    font-size: 0.85rem; 
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}
.nav-links a:hover { 
    color: var(--primary);
}
.nav-links a.active {
    color: #0f172a;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3.5px;
    background-color: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}
.nav-links a.active::after {
    width: 35px;
}

/* Nav Button */
.btn-quote {
    background: #ffffff;
    color: #1e293b !important;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.65rem 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.btn-quote:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.btn-dealer {
    background: var(--primary);
    color: white !important;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    white-space: nowrap;
}
.btn-dealer:hover {
    transform: translateY(-2px);
    background: #e06c00;
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.4);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 800px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 11, 0.85) 0%, rgba(10, 10, 11, 0.4) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 11, 0.9) 0%, rgba(10, 10, 11, 0.5) 100%);
    z-index: 1;
}

/* Split Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 80px; /* space for stats bar */
}

.hero-left {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    border-left: 3px solid var(--primary);
    padding-left: 12px;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.05rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 580px;
    line-height: 1.7;
    margin-left: 0;
    margin-right: auto;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 2.5rem;
}

.btn-orange {
    background: var(--primary);
    color: white !important;
    border-radius: 8px;
    padding: 0.9rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-orange:hover {
    transform: translateY(-2px);
    background: #e06c00;
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.45);
}

.btn-white-outline {
    background: transparent;
    color: white !important;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 0.9rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-white-outline:hover {
    transform: translateY(-2px);
    background: white;
    color: #0f172a !important;
    border-color: white;
}

/* Feature row under hero actions */
.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 15px;
    width: 100%;
}
.hero-feature-item:last-child {
    border-right: none;
    padding-right: 0;
}

.hero-feature-item i {
    color: #ffffff;
    font-size: 1.8rem;
}

.hero-feature-item span {
    color: #cbd5e1;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Right Side: Interactive Cards */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.hero-card {
    display: flex;
    align-items: center;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    text-decoration: none !important;
    color: white !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 1.25rem;
    position: relative;
}

.hero-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.75);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hero-card-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.hero-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hero-card-content span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #cbd5e1;
    margin-bottom: 2px;
    font-weight: 700;
}

.hero-card-content h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.hero-card-content h4 span {
    color: var(--primary) !important;
    font-size: inherit;
    text-transform: inherit;
    letter-spacing: inherit;
    font-weight: inherit;
}

.hero-card-content p {
    font-size: 0.8rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.hero-card-arrow {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hero-card:hover .hero-card-arrow {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

/* Bottom Stats Bar Overlay */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 10;
    padding: 1.5rem 0;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
}

.hero-stat-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-box:last-child {
    border-right: none;
}

.hero-stat-box i {
    color: var(--primary);
    font-size: 2rem;
    flex-shrink: 0;
}

.hero-stat-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.hero-stat-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
}

.hero-stat-text p {
    font-size: 0.8rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 3px 0 0 0;
    font-weight: 600;
}

.btn-main {
    padding: 1.2rem 3.5rem;
    background: var(--primary);
    color: #ffffff !important;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.15);
    display: inline-block;
    transition: 0.3s;
    border: 2px solid var(--primary);
    text-align: center;
}

.btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.6);
    filter: brightness(1.1);
}

/* Section Styling */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* Product Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
    border: 1px solid var(--border);
}
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.card-img { height: 280px; overflow: hidden; position: relative; }
.card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 64, 175, 0.4), transparent);
    opacity: 0;
    transition: 0.4s;
}
.card:hover .card-img::after { opacity: 1; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.6s; }
.card:hover .card-img img { transform: scale(1.1); }
.card-body { padding: 2rem; }
.card-body h3 { margin-bottom: 0.75rem; font-size: 1.4rem; font-weight: 700; color: var(--bg-dark); }
.card-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* FAQ Section */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: 0.3s;
}
.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}
.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: none;
}
.faq-item.active .faq-answer { display: block; }
.faq-item.active { box-shadow: var(--shadow); border-color: var(--primary-light); }

/* Decorative Elements */
.bg-shape {
    position: absolute;
    z-index: -1;
    filter: blur(80px);
    opacity: 0.05;
}
.shape-1 { width: 300px; height: 300px; background: var(--primary); top: 10%; left: -5%; border-radius: 50%; animation: float 10s infinite; }
.shape-2 { width: 400px; height: 400px; background: var(--accent); bottom: 10%; right: -5%; border-radius: 50%; animation: float 15s infinite reverse; }

/* Video Button */
.video-btn {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    margin: 2rem auto;
    position: relative;
    box-shadow: 0 0 0 0 rgba(255,255,255,0.5);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 50px;
}
.process-item {
    text-align: center;
    position: relative;
}
.process-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
    z-index: 2;
}
.process-item h4 { margin-bottom: 10px; font-weight: 700; }
.process-item p { font-size: 0.9rem; color: var(--text-muted); }

/* Counter Section */
.stats-section {
    background: var(--primary);
    color: white;
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}
.stat-item h2 { font-size: 3rem; font-weight: 900; margin-bottom: 5px; color: #ffffff; }
.stat-item p { color: #ffffff; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; font-weight: 700; }

/* References Slider Mock */
.logos-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.5;
    filter: grayscale(1);
    gap: 3rem;
    overflow: hidden;
    padding: 20px 0;
}
.logos-slider img { height: 40px; }

/* Footer Improvements */
footer .logo span { color: var(--primary-light); }
footer h3 { font-size: 1.2rem; font-weight: 700; color: white; }
footer a:hover { color: var(--primary-light); padding-left: 5px; }

.d-block-mobile { display: none; }

@media (max-width: 992px) {
    .top-bar { display: none; }
    .nav-links { 
        display: none; 
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .btn-quote, .btn-dealer { display: none; }
    .d-block-mobile { display: block; color: var(--accent); font-weight: 700; padding: 0.5rem 0; border-top: 1px solid #e2e8f0; margin-top: 0.5rem; }
    .mobile-toggle { display: block !important; font-size: 1.5rem; cursor: pointer; color: var(--primary); }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 100px;
        padding-bottom: 120px;
    }
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 40px 0;
    }
    .hero-stats-bar {
        position: relative;
        margin-top: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .hero-stat-box {
        border-right: none;
        justify-content: flex-start;
        padding-left: 20px;
    }
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .hero-feature-item {
        border-right: none;
        padding-right: 0;
    }
    .logo-dot {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .hero-stat-box {
        padding-left: 10px;
    }
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .hero-left h1 {
        font-size: 2.2rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-orange, .btn-white-outline {
        justify-content: center;
    }
}

/* Subpage Hero Banner height reduction */
.hero.sub-hero {
    height: 30vh !important;
    min-height: 220px !important;
}
.hero.sub-hero h1 {
    font-size: 2.2rem !important;
}
.hero.sub-hero p {
    font-size: 0.95rem !important;
}
@media (max-width: 768px) {
    .hero.sub-hero {
        height: 25vh !important;
        min-height: 180px !important;
    }
    .hero.sub-hero h1 {
        font-size: 1.8rem !important;
    }
}
