:root {
    --primary-red: #D60000;
    --dark-bg: #111111;
    --darker-bg: #0a0a0a;
    --silver: #E0E0E0;
    --text-light: #F5F5F5;
    --text-gray: #B0B0B0;
    --font-main: 'Outfit', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-main);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-red {
    color: var(--primary-red);
}

.section-padding {
    padding: 80px 0;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-main);
    letter-spacing: 2px;
}

.highlight {
    color: var(--primary-red);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-red);
}

.btn-nav {
    border: 1px solid var(--primary-red);
    padding: 8px 20px;
    border-radius: 4px;
}

.btn-nav:hover {
    background: var(--primary-red);
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?q=80&w=2832&auto=format&fit=crop') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: -80px;
    /* Offset navbar */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-red);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

/* Features */
.features {
    background: var(--darker-bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-red);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Product Highlight */
.product-highlight {
    background: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-gray);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.product-card:hover {
    border-color: var(--primary-red);
}

.placeholder-img {
    width: 100%;
    height: 200px;
    background: #333;
    margin-bottom: 20px;
    border-radius: 4px;
    background: linear-gradient(45deg, #222, #333);
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.product-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.link-arrow {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.9rem;
}

.center-btn {
    text-align: center;
}

.btn-outline {
    border: 2px solid var(--silver);
    padding: 12px 30px;
    color: var(--silver);
    font-weight: 600;
    text-transform: uppercase;
}

.btn-outline:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(214, 0, 0, 0.9), rgba(214, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1503376763036-066120622c74?q=80&w=2940&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-red);
    border-color: white;
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: white;
}

/* Footer */
footer {
    background: #050505;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--silver);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-gray);
}

.footer-col ul li a:hover {
    color: var(--primary-red);
}

.footer-col p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.footer-bottom {
    background: black;
    padding: 20px 0;
    text-align: center;
    color: #555;
    font-size: 0.8rem;
}

/* Mobile Responsive */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: white;
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        height: calc(100vh - 80px);
        background: var(--dark-bg);
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding-top: 40px;
        transition: 0.3s;
    }

    .nav-links.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-gray);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.product-card:hover {
    border-color: var(--primary-red);
}

.placeholder-img {
    width: 100%;
    height: 200px;
    background: #333;
    margin-bottom: 20px;
    border-radius: 4px;
    background: linear-gradient(45deg, #222, #333);
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.product-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.link-arrow {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.9rem;
}

.center-btn {
    text-align: center;
}

.btn-outline {
    border: 2px solid var(--silver);
    padding: 12px 30px;
    color: var(--silver);
    font-weight: 600;
    text-transform: uppercase;
}

.btn-outline:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(214, 0, 0, 0.9), rgba(214, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1503376763036-066120622c74?q=80&w=2940&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-red);
    border-color: white;
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: white;
}

/* Footer */
footer {
    background: #050505;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--silver);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-gray);
}

.footer-col ul li a:hover {
    color: var(--primary-red);
}

.footer-col p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.footer-bottom {
    background: black;
    padding: 20px 0;
    text-align: center;
    color: #555;
    font-size: 0.8rem;
}

/* Mobile Responsive */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;

}
}

/* Inner Pages */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?q=80&w=2864&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.bg-darker {
    background: #050505;
}

.text-center {
    text-align: center;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-50 {
    margin-top: 50px;
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid var(--primary-red);
}

.mv-card h3 {
    margin-bottom: 15px;
}

/* Products Page */
.category-title {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-bottom: 30px;
    color: var(--silver);
}

.product-list {
    display: grid;
    gap: 30px;
}

.product-item {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-img-wrapper {
    width: 300px;
    background: #222;
}

.product-img-wrapper .placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
}

.product-info {
    padding: 30px;
    flex: 1;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.badge {
    display: inline-block;
    background: rgba(214, 0, 0, 0.2);
    color: var(--primary-red);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.specs {
    font-family: monospace;
    color: var(--silver);
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    display: inline-block;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-small {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-red);
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--silver);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: white;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-red);
    outline: none;
}

.w-100 {
    width: 100%;
}

@media (max-width: 768px) {

    .about-grid,
    .mv-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .product-item {
        flex-direction: column;
    }

    .product-img-wrapper {
        width: 100%;
        height: 200px;
    }
}


.product-img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
}

.product-img-full {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    padding: 10px;
}