:root {
    --primary: #f3b75a;
    --secondary: #0b203a;
    --light-bg: #f8fafc;
}

body {
    background-color: var(--light-bg);
    color: var(--secondary);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    text-decoration: none;
}

/* ================= HEADER ================= */

.primary-btn {
    background: var(--primary);
    color: white;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1.3rem;
    border: none;
}

.primary-btn:hover {
    background: var(--secondary);
    color: white;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1.3rem;
    border: 1px solid var(--secondary);
}

.secondary-btn {
    background: var(--secondary);
    color: white;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1.3rem;
    border: none;
}

.secondary-btn:hover {
    background: var(--primary);
    color: white;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1.3rem;
    border: 1px solid var(--primary);
}

.secondary-outline-btn {
    background: transparent;
    color: var(--secondary);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1.3rem;
    border: 1px solid var(--secondary);
}
.secondary-outline-btn:hover {
    background: var(--secondary);
    color: white;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 1.3rem;
    border: 1px solid var(--secondary);
}

.main-header {
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    width: 14%;
}

.navbar-brand span {
    font-weight: 700;
    font-size: 1.05rem;
}

.brand-highlight {
    color: var(--primary);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4b5563 !important;
    padding: 0.5rem 0.8rem !important;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--secondary) !important;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
    font-size: 0.85rem;
}

.dropdown-item i {
    font-size: 0.9rem;
}

.btn-quote {
    border-radius: 999px;
    background: var(--secondary);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 0.45rem 1.3rem;
    font-weight: 600;
    border: none;
}

.btn-quote i {
    margin-right: 4px;
}

.btn-quote:hover {
    background: #111827;
    color: #ffffff;
}

.page-wrapper {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}


/* ================= FOOTER ================= */

.main-footer {
    background: #020617;
    color: #e5e7eb;
    padding-top: 2.5rem;
    margin-top: 2rem;
}

.footer-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    color: #f9fafb;
}

.footer-link {
    font-size: 0.85rem;
    color: #9ca3af;
    display: block;
    margin-bottom: 0.35rem;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-link a {
    font-size: 0.85rem;
    color: #9ca3af;
}

.footer-brand {
    font-weight: 700;
    font-size: 1.05rem;
}

.footer-social a {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e5e7eb;
    font-size: 0.85rem;
    margin-right: 6px;
}

.footer-social a:hover {
    background: var(--primary);
    color: #111827;
    border-color: var(--primary);
}

.footer-newsletter .input-group-text {
    background: #020617;
    border-color: #1f2937;
    color: #6b7280;
}

.footer-newsletter input {
    background: #020617;
    border-color: #1f2937;
    color: #f9fafb;
    font-size: 0.85rem;
}

.footer-newsletter input::placeholder {
    color: #6b7280;
}

.footer-newsletter .btn {
    font-size: 0.8rem;
    border-radius: 999px;
    background: var(--primary);
    border: none;
    color: #111827;
    font-weight: 600;
}

.footer-newsletter .btn:hover {
    background: #f6c977;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding: 0.7rem 0;
    font-size: 0.8rem;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .navbar-brand {
        width: 50%;
    }
}