:root {
    --brand-gold: #FFBF00;
    --brand-red: #E63946;
    --brand-dark: #0F0F0F;
}

.bg-dark {
    background-color: var(--brand-dark);
}

.text-gold {
    color: var(--brand-gold);
}

.bg-gold {
    background-color: var(--brand-gold);
}

.bg-red {
    background-color: var(--brand-red);
}

.glass-nav {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-gradient {
    background: linear-gradient(rgba(15, 15, 15, 0.7), rgba(15, 15, 15, 0.9)),
        url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
}

.service-card {
    transition: all 0.3s ease;
    background: #1A1A1A;
    border: 1px solid #2A2A2A;
}

.service-card:hover {
    border-color: var(--brand-gold);
    transform: translateY(-5px);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 30px;
    /* Bridge the gap between button and menu */
    background: transparent;
}

/* Subpage Specific Styles */
.partner-hero {
    background: linear-gradient(rgba(15, 15, 15, 0.85), rgba(15, 15, 15, 0.95)), url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
}

.service-hero {
    background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.9)), url('https://images.unsplash.com/photo-1565108422319-35ed57303f8a?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
}

.transport-hero {
    background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.9)), url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
}

.scrap-hero {
    background: linear-gradient(rgba(15, 15, 15, 0.8), rgba(15, 15, 15, 0.9)), url('https://images.unsplash.com/photo-1596752765103-623e185e4933?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
}

.buy-hero {
    background: linear-gradient(rgba(15, 15, 15, 0.85), rgba(15, 15, 15, 0.95)), url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
}

input,
select,
textarea {
    background: #1A1A1A !important;
    border: 1px solid #2A2A2A !important;
    color: white !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--brand-gold) !important;
    outline: none;
}