/* ========== TOPBAR ========== */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar a { color: var(--green-light); text-decoration: none; }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; }
.topbar-left i, .topbar-right i { margin-right: 6px; font-size: 0.75rem; }

/* ========== NAVBAR ========== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 0;
}
.navbar.shadow { box-shadow: 0 1px 20px rgba(0,0,0,0.06); }
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo img { height: 46px; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-links a:hover {
    background: var(--off-white);
    color: var(--blue);
}
.nav-cta-wrap { display: flex; align-items: center; gap: 10px; }
.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 14px;
    border-radius: 10px;
    transition: all 0.2s;
}
.nav-phone:hover { background: var(--off-white); }
.nav-phone i { color: var(--green); }
.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
}
.nav-btn:hover { background: var(--blue-deep); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(11,95,165,0.25); }

.mobile-toggle {
    display: none;
    background: none;
    border: 2px solid var(--border);
    border-radius: 8px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text);
}