:root {
    --brand-black: #050505;
    --brand-gold: #fdb813;
    --text-main: #ffffff;
    --text-dim: #a0a0a0;
    --card-bg: #111111;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--brand-black);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* --- PRELOADER --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease;
}

.loader-truck {
    width: 300px;
    position: relative;
}

.truckWrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.truckBody {
    width: 160px;
    animation: bounce 0.4s infinite;
    z-index: 2;
}

.trucksvg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

.truckTires {
    width: 160px;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    margin-top: -15px;
}

.tiresvg {
    width: 30px;
    animation: spin 0.4s linear infinite;
}

.lampPost {
    position: absolute;
    top: -50px;
    right: -100px;
    height: 120px;
    animation: drive 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

@keyframes bounce {
    50% { transform: translateY(-3px); }
}

@keyframes drive {
    0% { transform: translateX(200px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(-300px); opacity: 0; }
}

/* --- NAVIGATION --- */
header.main-header {
    height: 80px;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#main-logo {
    height: 50px; /* Fixed scaling issue */
    width: auto;
}

.desktop-nav {
    display: block;
}

.mobile-dropdown {
    display: none !important; /* Fixed duplicate menu issue */
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-gold);
}

/* --- HERO SECTION --- */
.hero {
    padding-top: 140px;
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(0,0,0,0.85), transparent), 
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2000') center/cover;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin: 20px 0;
}

.gold-text {
    color: var(--brand-gold);
}

.description {
    max-width: 600px;
    color: #fff;
    margin-bottom: 35px;
    font-size: 20px;
}

/* --- 3D GOLD BUTTONS --- */
.hero-btns {
    display: flex;
    gap: 10px;
}

.button {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    border-width: 0;
    padding: 0 8px 12px;
    min-width: 12em;
    box-sizing: border-box;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    cursor: pointer;
}

.button-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
    padding: 12px 20px;
    transform: translateY(0);
    text-align: center;
    color: #050505;
    transition: 0.2s;
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button:active .button-top {
    transform: translateY(6px);
}

.button-top::after {
    content: '';
    position: absolute;
    z-index: -1;
    border-radius: 4px;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#fdb813, #d49a10);
    box-shadow: inset 0 0 0px 1px rgba(255, 255, 255, .2), 0 1px 2px 1px rgba(255, 255, 255, .2);
}

.button-bottom {
    position: absolute;
    z-index: -1;
    bottom: 4px;
    left: 4px;
    border-radius: 8px;
    width: calc(100% - 8px);
    height: calc(100% - 10px);
    background-color: #a67c0d;
    transition: all 0.2s;
}

.button-base {
    position: absolute;
    z-index: -2;
    top: 4px;
    left: 0;
    border-radius: 12px;
    width: 100%;
    height: calc(100% - 4px);
    background-color: rgba(0, 0, 0, 0.2);
}

/* Sidebar Contact Bar */
.hero-contact-bar {
    transform: translateY(-45px);
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-left: 3px solid var(--brand-gold);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item .label {
    display: block;
    color: var(--brand-gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-item .value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

/* --- PARTNER CAROUSEL --- */
.partner-bar {
    padding: 80px 0;
    overflow: hidden;
    background: #080808;
    border-top: 1px solid #1a1a1a;
}

.partner-tag {
    text-align: center;
    color: var(--brand-gold);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

.logos-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollInfinite 30s linear infinite;
}

.partner-item {
    padding: 0 60px;
    flex-shrink: 0;
}

.partner-logo {
    height: 75px;
    width: auto;
}

.partner-cta {
    margin: 0 60px;
    background: #111;
    border: 1px dashed var(--brand-gold);
    padding: 12px 25px;
    text-decoration: none;
    color: var(--brand-gold);
    font-weight: 800;
    font-size: 0.75rem;
    border-radius: 4px;
    transition: 0.3s;
}

.partner-cta:hover {
    background: var(--brand-gold);
    color: #000;
}

@keyframes scrollInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- OPERATIONS (SIDE-BY-SIDE FIX) --- */
.ops-section {
    padding: 100px 0;
    background: #080808;
}

.ops-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ops-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.ops-image-wrapper img {
    width: 100%;
    display: block;
}

.ops-experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--brand-gold);
    color: #000;
    padding: 10px 20px;
    font-weight: 800;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.feature-icon {
    color: var(--brand-gold);
    font-size: 1.8rem;
    font-weight: bold;
}

/* --- LOCATIONS --- */
.loc-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.loc-card {
    background: var(--card-bg);
    padding: 35px;
    border-radius: 8px;
    border: 1px solid #1a1a1a;
    transition: 0.3s;
    text-align: center;
}

.loc-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-5px);
}

/* --- FOOTER --- */
footer.main-footer {
    padding: 80px 0 0;
    border-top: 1px solid #1a1a1a;
    background: var(--brand-black);
}

.footer-logo {
    height: 45px; /* Restricted height prevents overlapping */
    width: auto;
    margin-bottom: 25px;
    display: block;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

/* Quick Links & Contact Headers */
.footer-links h4, 
.footer-contact h4 {
    color: var(--brand-gold);
    margin-bottom: 25px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 800;
}

/* Quick Links List Fix */
.footer-links ul {
    list-style: none; /* Removes the blue bullets */
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--brand-gold);
    padding-left: 5px; /* Subtle slide effect on hover */
}

/* Contact Info */
.footer-contact address {
    font-style: normal;
    color: var(--text-dim);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Legal Bottom Bar */
.footer-legal {
    padding: 30px;
    border-top: 1px solid #1a1a1a;
    color: #444;
    font-size: 0.8rem;
    text-align: center;
}

/* --- RESPONSIVE LOGIC --- */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .mobile-dropdown {
        display: flex !important;
        font-weight: 800;
        color: var(--brand-black);
        background: var(--brand-gold);
        padding: 0 15px;
        border-radius: 6px;
        align-items: center;
        height: 2.5rem;
        position: relative;
        cursor: pointer;
        z-index: 2000;
    }

    .menu-container {
        background-color: #111;
        border: 1px solid var(--brand-gold);
        border-radius: 8px;
        position: absolute;
        width: 100%;
        left: 0;
        top: 120%;
        clip-path: inset(0% 0% 100% 0%);
        transition: 0.4s;
        display: flex;
        flex-direction: column;
    }

    .inp {
        display: none;
    }

    .inp:checked ~ .menu-container {
        clip-path: inset(0% 0% 0% 0%);
    }

    .menu-list {
        padding: 15px;
        text-decoration: none;
        color: #fff;
    }

    .bar {
        display: flex;
        height: 12px;
        width: 20px;
        flex-direction: column;
        gap: 4px;
        margin-left: 10px;
    }

    .bar-list {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--brand-black);
    }

    h1 { font-size: 2.5rem; }

    .hero-grid, .ops-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-btns {
        justify-content: center;
    }

    .button {
        width: 220px; /* Non-stretched width */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}