:root {
    --primary-red: #C1121F;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 76px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

/* Logo */
.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Nav links */
.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: #1C1C1E;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-links a:hover {
    color: var(--primary-red);
    background: rgba(18, 60, 105, 0.1);
}
.nav-links a.active {
    color: #fff !important;
    background: #123C69 !important;
    border-radius: 4px;
}

/* Apply Now button */
.nav-btn { background: var(--premium-gold);
    color: #fff;
    padding: 11px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
    flex-shrink: 0;
}
.nav-btn:hover {
    background: #b08d29;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(212, 175, 55,0.35);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #1C1C1E;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    border-left: 1px solid rgba(0,0,0,0.08);
    z-index: 1001;
    padding: 90px 30px 40px;
    transition: right 0.35s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 30px rgba(0,0,0,0.08);
}
.mobile-menu.active { right: 0; }
.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mobile-menu a {
    color: #1C1C1E;
    text-decoration: none;
    font-size: 21px;
    font-weight: 600;
    transition: color 0.2s ease;
}
.mobile-menu a:hover { color: var(--primary-red); }
.close-menu {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 26px;
    color: #1C1C1E;
    cursor: pointer;
    line-height: 1;
}

/* Navbar entrance animation */
@keyframes navSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.navbar { animation: navSlideDown 0.6s cubic-bezier(.4,0,.2,1) both; }

@media (max-width: 960px) {
    .nav-links { display: none; }
    .nav-btn { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: block; }
}
/* Hide Google Translate Top Banner and Tooltips */
.goog-te-banner-frame.skiptranslate, 
iframe.goog-te-banner-frame {
    display: none !important;
}
body {
    top: 0px !important;
    position: static !important;
}
#goog-gt-tt, .goog-te-balloon-frame {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Kill ALL blue active buttons globally */
.navbar .active, .nav-links .active, .mobile-menu .active, .navbar .active > a, .nav-links .active > a, .mobile-menu .active > a, .navbar li.active, .nav-links li.active, .mobile-menu li.active, .navbar li.active > a, .nav-links li.active > a, .mobile-menu li.active > a, .rs-header-two .rs-sticky-header.active { background-color: transparent !important; background: transparent !important; color: #123C69 !important; box-shadow: none !important; border-radius: 0 !important; }
