@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #f97316;
    --primary-dark: #ea580c;
    --secondary: #0f172a;
    --navy: #1e293b;
    --navy-light: #334155;
    --light: #ffffff;
    --gray: #64748b;
    --gray-light: #f1f5f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--light);
    color: var(--secondary);
}

/* ── NAVBAR ── */
.navbar {
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 800;
    color: white !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.2;
}
.navbar-brand .brand-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}
.navbar-brand .brand-text span { color: var(--primary); }

.nav-link {
    color: rgba(255,255,255,0.78) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: white !important;
    background: rgba(255,255,255,0.08);
}

.btn-call {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    color: white !important;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249,115,22,0.4);
    color: white !important;
}

.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 10px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── MOBILE ── */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(15, 23, 42, 0.98);
        padding: 20px;
        margin-top: 12px;
        border-radius: 14px;
        border: 1px solid rgba(255,255,255,0.08);
    }
    .navbar-nav { text-align: center; gap: 4px; }
    .nav-link { padding: 12px !important; }
    .btn-call { margin-top: 12px; width: 100%; justify-content: center; }
}

@media (max-width: 576px) {
    .navbar-brand { font-size: 1rem; }
    .navbar-brand .brand-icon { width: 34px; height: 34px; font-size: 0.95rem; }
}
