/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

/* ===== COLOR PALETTE ===== */
/* Primary blue: #1a3c6e (navy) */
/* Accent red: #c62828 */
/* White backgrounds, light gray sections */

/* ===== TOP BAR ===== */
.topbar {
    background: #1a3c6e;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

    .topbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

.topbar-left a {
    color: #fff;
    opacity: 0.85;
}

    .topbar-left a:hover {
        opacity: 1;
    }

.topbar-right {
    display: flex;
    gap: 18px;
}

    .topbar-right a {
        color: #fff;
        opacity: 0.85;
        font-size: 13px;
    }

        .topbar-right a:hover {
            opacity: 1;
        }

/* ===== HEADER ===== */
header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    height: 55px;
}

nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

    nav > a {
        color: #1a3c6e;
        font-weight: 600;
        font-size: 14px;
        padding: 8px 14px;
        border-radius: 4px;
        transition: background 0.2s, color 0.2s;
        position: relative;
    }

        nav > a:hover, nav > a.active {
            background: #1a3c6e;
            color: #fff;
        }

.nav-dropdown {
    position: relative;
}

    .nav-dropdown > a {
        display: flex;
        align-items: center;
        gap: 4px;
    }

        .nav-dropdown > a::after {
            content: '▾';
            font-size: 10px;
        }

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 6px;
    min-width: 180px;
    z-index: 100;
    overflow: hidden;
}

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

.dropdown-menu a {
    display: block;
    padding: 10px 18px;
    color: #1a3c6e;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
}

    .dropdown-menu a:hover {
        background: #eef2f8;
    }

.header-phone a {
    background: #c62828;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

    .header-phone a:hover {
        background: #b71c1c;
    }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

    .hamburger span {
        width: 26px;
        height: 3px;
        background: #1a3c6e;
        border-radius: 2px;
        transition: 0.3s;
    }

/* ===== EXPERIENCE STRIP ===== */
.exp-strip {
    background: #1a3c6e;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: #1a3c6e;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
}

    .slide.active {
        opacity: 1;
    }

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.slide:nth-child(1) .slide-bg {
    background: linear-gradient(135deg, #1a3c6e 0%, #2a5298 50%, #1a3c6e 100%);
}

.slide:nth-child(2) .slide-bg {
    background: linear-gradient(135deg, #0d2137 0%, #1a3c6e 40%, #2a5298 100%);
}

.slide:nth-child(3) .slide-bg {
    background: linear-gradient(135deg, #2a5298 0%, #1a3c6e 60%, #0d2137 100%);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

    .slide-content h2 {
        font-family: 'Raleway', sans-serif;
        font-size: 42px;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 10px;
        text-shadow: 0 2px 8px rgba(0,0,0,0.4);
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 20px;
        opacity: 0.9;
        margin-bottom: 22px;
        font-weight: 600;
    }

    .slide-content .btn-hero {
        display: inline-block;
        background: #c62828;
        color: #fff;
        padding: 14px 34px;
        border-radius: 5px;
        font-weight: 700;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: background 0.2s;
        cursor: pointer;
        border: none;
    }

        .slide-content .btn-hero:hover {
            background: #b71c1c;
        }
/* Slider dots */
.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

    .slider-dots span {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255,255,255,0.4);
        cursor: pointer;
        transition: background 0.3s;
    }

        .slider-dots span.active {
            background: #fff;
        }

/* ===== INTRO SECTION ===== */
.intro {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

    .intro .container {
        max-width: 850px;
        margin: 0 auto;
    }

    .intro h2 {
        font-family: 'Raleway', sans-serif;
        color: #1a3c6e;
        font-size: 26px;
        text-transform: uppercase;
        margin-bottom: 18px;
        font-weight: 700;
    }

    .intro p {
        color: #555;
        font-size: 15.5px;
        line-height: 1.8;
    }

/* ===== FAQ SECTION ===== */
.faq-section {
    background: #f4f7fc;
    padding: 55px 20px;
}

    .faq-section .container {
        max-width: 900px;
        margin: 0 auto;
    }

.faq-item {
    border: 1px solid #dce5f0;
    border-radius: 6px;
    margin-bottom: 14px;
    background: #fff;
    overflow: hidden;
}

    .faq-item .faq-q {
        padding: 18px 22px;
        font-weight: 600;
        color: #1a3c6e;
        font-size: 15px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
    }

        .faq-item .faq-q::after {
            content: '+';
            font-size: 22px;
            color: #c62828;
            font-weight: 700;
            transition: transform 0.3s;
        }

    .faq-item.open .faq-q::after {
        content: '−';
    }

    .faq-item .faq-a {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding: 0 22px;
    }

    .faq-item.open .faq-a {
        max-height: 200px;
        padding-bottom: 18px;
    }

    .faq-item .faq-a p {
        color: #555;
        font-size: 14px;
        line-height: 1.7;
    }

/* ===== INTERACTIVE SECTION ===== */
.interactive-section {
    background: #fff;
    padding: 55px 20px;
    text-align: center;
}

    .interactive-section .container {
        max-width: 800px;
        margin: 0 auto;
    }

    .interactive-section p {
        color: #555;
        font-size: 15px;
        line-height: 1.8;
    }

/* ===== PRODUCTS GRID ===== */
.products {
    background: #f0f4f9;
    padding: 60px 20px;
}

    .products .container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .products h2 {
        font-family: 'Raleway', sans-serif;
        color: #1a3c6e;
        text-align: center;
        font-size: 28px;
        text-transform: uppercase;
        margin-bottom: 36px;
        font-weight: 700;
    }

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.14);
    }

    .product-card .card-img {
        height: 160px;
        background: #1a3c6e;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .product-card .card-img svg {
            width: 56px;
            height: 56px;
            opacity: 0.7;
        }

    .product-card .card-body {
        padding: 22px 16px 20px;
    }

        .product-card .card-body h4 {
            color: #1a3c6e;
            font-family: 'Raleway', sans-serif;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .product-card .card-body a {
            color: #c62828;
            font-weight: 700;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

            .product-card .card-body a:hover {
                color: #b71c1c;
            }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: #1a3c6e;
    color: #fff;
    padding: 52px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(26,60,110,0) 0%, rgba(42,82,152,0.4) 100%);
    }

    .cta-banner .container {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .cta-banner h2 {
        font-family: 'Raleway', sans-serif;
        font-size: 24px;
        font-weight: 700;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .cta-banner p {
        font-size: 16px;
        opacity: 0.85;
        margin-bottom: 18px;
    }

    .cta-banner .phone-big {
        font-size: 32px;
        font-weight: 700;
        color: #fff;
        display: inline-block;
    }

        .cta-banner .phone-big a {
            color: #fff;
        }

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: #fff;
    padding: 60px 20px;
}

    .testimonials .container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .testimonials h2 {
        font-family: 'Raleway', sans-serif;
        color: #1a3c6e;
        text-align: center;
        font-size: 28px;
        text-transform: uppercase;
        margin-bottom: 30px;
        font-weight: 700;
    }

.testimonials-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: #c62828 #eee;
}

    .testimonials-scroll::-webkit-scrollbar {
        height: 6px;
    }

    .testimonials-scroll::-webkit-scrollbar-track {
        background: #eee;
        border-radius: 3px;
    }

    .testimonials-scroll::-webkit-scrollbar-thumb {
        background: #c62828;
        border-radius: 3px;
    }

.testimonial-card {
    min-width: 320px;
    max-width: 320px;
    background: #f4f7fc;
    border-radius: 8px;
    padding: 28px 22px;
    border-left: 4px solid #c62828;
    flex-shrink: 0;
}

    .testimonial-card .quote {
        color: #555;
        font-size: 14px;
        line-height: 1.7;
        font-style: italic;
        margin-bottom: 14px;
    }

    .testimonial-card .author {
        color: #1a3c6e;
        font-weight: 700;
        font-size: 14px;
    }

/* ===== AREAS WE SERVICE ===== */
.areas {
    background: #1a3c6e;
    color: #fff;
    padding: 55px 20px;
}

    .areas .container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .areas h2 {
        font-family: 'Raleway', sans-serif;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 12px;
        text-transform: uppercase;
        text-align: center;
    }

    .areas .areas-desc {
        opacity: 0.85;
        font-size: 14.5px;
        margin-bottom: 28px;
        line-height: 1.7;
        text-align: center;
    }

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    text-align: center;
}

    .areas-grid a {
        color: #fff;
        font-size: 14px;
        padding: 10px 16px;
        background: rgba(255,255,255,0.1);
        border-radius: 5px;
        transition: background 0.2s;
        display: block;
    }

        .areas-grid a:hover {
            background: rgba(255,255,255,0.2);
        }

/* ===== INNER PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, #1a3c6e, #2a5298);
    color: #fff;
    padding: 58px 20px;
    text-align: center;
}

    .page-hero h1 {
        font-family: 'Raleway', sans-serif;
        font-size: 34px;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .page-hero p {
        opacity: 0.85;
        font-size: 16px;
    }

/* ===== CONTENT SECTIONS ===== */
.content-section {
    padding: 55px 20px;
}

    .content-section .container {
        max-width: 1100px;
        margin: 0 auto;
    }

    .content-section h2 {
        font-family: 'Raleway', sans-serif;
        color: #1a3c6e;
        font-size: 24px;
        text-transform: uppercase;
        margin-bottom: 18px;
        font-weight: 700;
    }

    .content-section h3 {
        color: #1a3c6e;
        font-size: 18px;
        margin: 24px 0 10px;
        font-weight: 700;
    }

    .content-section p {
        color: #555;
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 14px;
    }

    .content-section ul {
        margin: 10px 0 18px 0;
    }

        .content-section ul li {
            color: #555;
            font-size: 14.5px;
            padding: 5px 0 5px 22px;
            position: relative;
            line-height: 1.5;
        }

            .content-section ul li::before {
                content: '✓';
                position: absolute;
                left: 0;
                color: #c62828;
                font-weight: 700;
            }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.warranty-box {
    background: #f0f4f9;
    border-left: 4px solid #c62828;
    padding: 22px 24px;
    border-radius: 0 6px 6px 0;
    margin-top: 24px;
}

    .warranty-box p {
        font-weight: 600;
        color: #1a3c6e;
        margin: 0;
        font-size: 15px;
    }

.section-divider {
    border: none;
    border-top: 2px solid #e8edf4;
    margin: 40px 0;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: #1a3c6e;
    font-size: 14px;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #cdd8e8;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.2s;
    margin-bottom: 16px;
}

    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: #1a3c6e;
        outline: none;
    }

.contact-form textarea {
    height: 130px;
    resize: vertical;
}

.contact-form .submit-btn {
    background: #c62828;
    color: #fff;
    border: none;
    padding: 13px 32px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

    .contact-form .submit-btn:hover {
        background: #b71c1c;
    }

.contact-info-box {
    background: #1a3c6e;
    color: #fff;
    border-radius: 8px;
    padding: 34px 28px;
}

    .contact-info-box h3 {
        font-family: 'Raleway', sans-serif;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
        border-bottom: 2px solid rgba(255,255,255,0.2);
        padding-bottom: 12px;
    }

    .contact-info-box .info-item {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 16px;
    }

    .contact-info-box .info-icon {
        width: 36px;
        height: 36px;
        background: rgba(255,255,255,0.12);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        font-size: 15px;
    }

    .contact-info-box .info-text {
        font-size: 14px;
        opacity: 0.9;
        line-height: 1.5;
    }

        .contact-info-box .info-text a {
            color: #fff;
        }

/* ===== FOOTER ===== */
footer {
    background: #1a3c6e;
    color: #fff;
    padding: 50px 20px 24px;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
    color: #fff;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 8px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.75);
    font-size: 13.5px;
    transition: color 0.2s;
}

    .footer-col ul a:hover {
        color: #fff;
    }

.footer-col p {
    color: rgba(255,255,255,0.75);
    font-size: 13.5px;
    line-height: 1.7;
    margin-bottom: 6px;
}

.footer-col .hours-row {
    display: flex;
    justify-content: space-between;
}

.footer-bottom {
    max-width: 1100px;
    margin: 30px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,0.15);
    text-align: center;
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
}

    .footer-bottom a {
        color: rgba(255,255,255,0.7);
    }

/* ===== PAGE VISIBILITY ===== */
.page {
    display: none;
}

    .page.active {
        display: block;
    }

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: #1a3c6e;
    z-index: 1000;
    flex-direction: column;
    overflow-y: auto;
}

    .mobile-nav-overlay.open {
        display: flex;
    }

.mobile-nav-close {
    text-align: right;
    padding: 18px 22px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

.mobile-nav-overlay a {
    color: #fff;
    font-size: 18px;
    padding: 14px 24px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .mobile-nav-overlay a:hover {
        background: rgba(255,255,255,0.08);
    }

.mobile-nav-overlay .mobile-sub a {
    padding-left: 44px;
    font-size: 15px;
    font-weight: 400;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    nav, .header-phone {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        height: 380px;
    }

    .slide-content h2 {
        font-size: 28px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        min-width: 280px;
        max-width: 280px;
    }
}

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

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 320px;
    }

    .slide-content h2 {
        font-size: 22px;
    }
}

/* ================================
   CONTACT FORM — POLISHED STYLE
   ================================ */

/* Layout container */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

/* Form wrapper */
#contactForm {
    background: #ffffff;
    padding: 28px 32px;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    border: 1px solid #e3e9f2;
}

/* Form rows */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}

.form-group {
    flex: 1;
}

/* Inputs */
#contactForm input,
#contactForm textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cdd8e8;
    border-radius: 6px;
    font-size: 15px;
    background: #fdfdfd;
    transition: border-color 0.25s, box-shadow 0.25s;
}

    #contactForm input:focus,
    #contactForm textarea:focus {
        border-color: #1a3c6e;
        box-shadow: 0 0 0 3px rgba(26,60,110,0.15);
        outline: none;
    }

/* Textarea */
#contactForm textarea {
    height: 140px;
    resize: vertical;
}

/* Turnstile spacing */
.cf-turnstile {
    margin: 18px 0 10px;
}

/* Submit button */
#contactForm .btn-primary {
    background: #c62828;
    color: #fff;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.25s, transform 0.15s;
}

    #contactForm .btn-primary:hover {
        background: #b71c1c;
        transform: translateY(-2px);
    }

/* Success message */
#successMessage {
    background: #e8f5e9;
    border-left: 4px solid #43a047;
    padding: 20px 24px;
    border-radius: 6px;
    margin-top: 20px;
}

/* Contact info box */
.contact-info-box {
    background: #1a3c6e;
    color: #fff;
    border-radius: 10px;
    padding: 34px 28px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}

    .contact-info-box h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 20px;
        text-transform: uppercase;
        border-bottom: 2px solid rgba(255,255,255,0.2);
        padding-bottom: 12px;
    }

    .contact-info-box .info-item {
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 18px;
    }

    .contact-info-box .info-icon {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.12);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
    }

    .contact-info-box .info-text {
        font-size: 14.5px;
        opacity: 0.95;
        line-height: 1.6;
    }

        .contact-info-box .info-text a {
            color: #fff;
            font-weight: 600;
        }

/* Mobile */
@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    #contactForm {
        padding: 24px;
    }
}



/* ============================
   FIX NAVIGATION DROPDOWN
   ============================ */

/* Prevent form styles from affecting nav */
nav a,
.dropdown-menu a {
    all: unset;
    display: block;
    padding: 10px 18px;
    color: #1a3c6e;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

    nav a:hover,
    .dropdown-menu a:hover {
        background: #eef2f8;
        color: #1a3c6e;
    }

/* Restore main nav link styling */
nav > a {
    all: unset;
    color: #1a3c6e;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    display: inline-block;
}

/* Restore dropdown arrow */
.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

    .nav-dropdown > a::after {
        content: '▾';
        font-size: 10px;
    }

/* Restore dropdown menu box */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 6px;
    min-width: 180px;
    z-index: 100;
    overflow: hidden;
}

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