/* 1. BRAND VARIABLES - Change here to change everywhere */
:root {
    --vhs-blue: #004a99;
    --vhs-dark: #002d5e;
    --vhs-orange: #f37021;
    --text-color: #333333;
    --bg-light: #f4f7f9;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* 2. CORE RESET */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h1, h2, h3, h4 { color: var(--vhs-blue); font-weight: 800; }

/* 3. GLOBAL HEADER STYLING */
.header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.menu-item a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    padding: 10px 15px;
    transition: var(--transition);
}

.menu-item a:hover, .menu-item.active a {
    color: var(--vhs-blue);
}

/* 4. DROPDOWN LOGIC */
.dropdown { position: relative; }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    border-top: 3px solid var(--vhs-orange);
}

.dropdown:hover .dropdown-content { display: block; }

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    display: block;
    border-bottom: 1px solid #eee;
}

.dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--vhs-orange) !important;
}

/* 5. CALL TO ACTION BUTTON (Get a Quote) */
.quote-btn {
    background: var(--vhs-orange) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 5px;
    margin-left: 20px;
    font-weight: 700;
}

.quote-btn:hover {
    background: var(--vhs-dark) !important;
    transform: translateY(-2px);
}

/* 6. GLOBAL FOOTER STYLING */
footer {
    background: #111;
    color: var(--white);
    padding: 60px 0 20px;
}

footer a { color: #bbb; text-decoration: none; transition: var(--transition); }
footer a:hover { color: var(--vhs-orange); }

.footer-heading {
    color: var(--vhs-orange);
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: block;
}

/* 7. UTILITY CLASSES */
.text-orange { color: var(--vhs-orange); }
.bg-blue { background-color: var(--vhs-blue); }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.d-flex { display: flex; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }