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

:root {
    --bg-color: #0A0B0D;
    --bg-color-light: #121418;
    --text-primary: #F3F2ED;
    --text-secondary: #9E9FA1;
    --accent: #FF5A1E;
    --glass-bg: rgba(10, 11, 13, 0.85);
    --glass-border: rgba(243, 242, 237, 0.1);
    --font-main: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

/* Navigation - Glassmorphism */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 60px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 3px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e54c15;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 90, 30, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--text-primary);
    color: var(--bg-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 5%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/hero_cinematic_tactical_1781522163882.png');
    background-size: cover;
    background-position: center 20%;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 11, 13, 0.95) 0%, rgba(10, 11, 13, 0.7) 50%, rgba(10, 11, 13, 0.3) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.hero-subtitle {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    display: block;
    font-size: 0.9rem;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
}

/* Sections */
section {
    padding: 8rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* About / Scale Section */
.about-section {
    background: var(--bg-color-light);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.features-list {
    margin-top: 3rem;
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    color: var(--accent);
    font-size: 1.5rem;
    line-height: 1;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Warehouse Image Styling */
.warehouse-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.warehouse-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.warehouse-image-container:hover img {
    transform: scale(1.02);
}

/* Origins / Flags Section */
.origins {
    background: var(--bg-color);
}
.origin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.09);
}
.origin {
    background: #0E1013;
    padding: 34px 30px 30px;
    position: relative;
    transition: background 0.25s, transform 0.25s ease;
    overflow: hidden;
}
.origin:hover {
    background: #15181C;
}
.origin .o-num {
    position: absolute;
    top: 26px;
    right: 28px;
    font-size: 12px;
    color: var(--text-secondary);
    letter-spacing: 0.1em;
}
.flag {
    width: 46px;
    height: 31px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    margin-bottom: 22px;
    border-radius: 2px;
    overflow: hidden;
    display: block;
}
.origin .o-code {
    font-size: 12px;
    letter-spacing: 0.24em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.origin h3 {
    margin-bottom: 18px;
    font-size: 1.5rem;
    line-height: 1.2;
}
.origin p {
    color: var(--text-secondary);
    font-size: 15.5px;
    line-height: 1.55;
}
.origin .o-foot {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.origin .o-foot .n {
    font-weight: 700;
    font-size: 30px;
    color: var(--text-primary);
}
.origin .o-foot .l {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
}
.origin-bar {
    margin-top: 1px;
    background: #1A1E23;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 30px;
    flex-wrap: wrap;
}

@media (max-width: 760px) {
    .origin-grid {
        grid-template-columns: 1fr;
    }
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h4 {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Dealer Application Form */
.partner-section {
    background: var(--bg-color);
    position: relative;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-color-light);
    padding: 4rem;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.dealer-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.dealer-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dealer-form input,
.dealer-form select,
.dealer-form textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 4px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.dealer-form input:focus,
.dealer-form select:focus,
.dealer-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
}

.dealer-form button[type="submit"] {
    grid-column: 1 / -1;
    margin-top: 1rem;
    width: 100%;
    font-size: 1.1rem;
    padding: 1.2rem;
}

/* Footer */
footer {
    background: #050506;
    padding: 6rem 5% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .about-section { grid-template-columns: 1fr; }
    .dealer-form { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .form-container { padding: 2rem; }
}

@media (max-width: 768px) {
    nav ul { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .hero-cta { flex-direction: column; }
    .footer-content { grid-template-columns: 1fr; }
}
