﻿:root {
    --bg-deep: rgb(62, 61, 60);
    --bg-mid: rgb(25, 50, 115);
    --blue-primary: rgb(38, 87, 164);
    --blue-light: rgb(38, 87, 164);
    --blue-muted: rgba(38, 87, 164, 0.55);
    --lime: rgb(199, 223, 36);
    --white: #ffffff;
    --white-60: rgba(255, 255, 255, 0.6);
    --white-40: rgba(255, 255, 255, 0.4);
    --nav-height: 90px;
}

.rs-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 2px solid rgba(38, 87, 164, 0.15);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.rs-navbar.is-scrolled {
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.rs-nav-logo {
    height: 120px;
    width: auto;
    display: block;
    filter: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.rs-nav-logo:hover {
    filter: none;
    transform: scale(1.04);
    opacity: 0.9;
}

.rs-nav-logo img {
    height: 100%;
    width: auto;
}

.rs-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.rs-nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(30, 30, 40, 0.75);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    position: relative;
    transition: color 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}

.rs-nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--blue-light);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.65, 0.05, 0, 1);
}

.rs-nav-link:hover {
    color: var(--blue-primary);
    background: rgba(38, 87, 164, 0.07);
}

.rs-nav-link:hover::after {
    width: 60%;
}

.rs-nav-link--active {
    color: var(--blue-primary);
    background: rgba(38, 87, 164, 0.08);
}

.rs-nav-link--active::after {
    width: 60%;
}

.rs-nav-cta {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    padding: 10px 26px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
    box-shadow: 0 4px 20px rgba(199, 223, 36, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.rs-nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transition: left 0.5s ease;
}

.rs-nav-cta:hover::before {
    left: 100%;
}

.rs-nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(199, 223, 36, 0.5), 0 0 40px rgba(199, 223, 36, 0.12);
}

.rs-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 110;
    position: relative;
    flex-shrink: 0;
}

.rs-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(30, 30, 40, 0.8);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.65, 0.05, 0, 1),
        opacity 0.25s ease,
        background 0.3s ease;
    transform-origin: center;
}

.rs-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.rs-hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.rs-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.rs-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.rs-drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.rs-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    width: min(320px, 85vw);
    background: rgba(15, 15, 15, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-left: 1px solid rgba(199, 223, 36, 0.15);
    display: flex;
    flex-direction: column;
    padding: calc(var(--nav-height) + 32px) 32px 40px;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.65, 0.05, 0, 1);
    box-shadow: -8px 0 48px rgba(0, 0, 0, 0.5);
}

.rs-drawer.is-open {
    transform: translateX(0);
}

.rs-drawer-link {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: var(--white-60);
    text-decoration: none;
    padding: 14px 16px;
    border-radius: 10px;
    border-left: 3px solid transparent;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.rs-drawer-link:hover,
.rs-drawer-link--active {
    color: var(--white);
    background: rgba(199, 223, 36, 0.1);
    border-left-color: var(--blue-light);
}

.rs-drawer-cta {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-light));
    text-align: center;
    margin-top: 16px;
    box-shadow: 0 4px 20px rgba(199, 223, 36, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rs-drawer-cta:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 28px rgba(199, 223, 36, 0.5);
}

@media (max-width: 900px) {
    .rs-nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .rs-navbar {
        padding: 0 5vw;
    }

    .rs-nav-cta {
        display: none;
    }

    .rs-hamburger {
        display: flex;
    }
}

.rs-float-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.rs-float-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.rs-float-wa--left {
    right: auto;
    left: 28px;
}

.rs-float-contact {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 0 16px;
    height: 54px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgb(38, 87, 164), rgb(25, 50, 115));
    color: #fff;
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px rgba(38, 87, 164, 0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.rs-float-contact svg {
    flex-shrink: 0;
    color: rgb(199, 223, 36);
}

.rs-float-contact:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 32px rgba(38, 87, 164, 0.65), 0 0 0 3px rgba(199, 223, 36, 0.25);
}