:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #d97706;
    --accent-hover: #b45309;
    --bg-light: #f8fafc;
    --text-dark: #334155;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Nav */
header {
    background-color: var(--primary);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.brand-icon {
    font-size: 1.8rem;
}

.brand-text h1 {
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--accent);
    line-height: 1;
}

.brand-text span {
    font-size: 0.8rem;
    color: #94a3b8;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu a {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

.call-btn {
    background-color: var(--accent);
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
}

.call-btn:hover {
    background-color: var(--accent-hover);
}

/* Utility Components */
.badge {
    background-color: rgba(217, 119, 6, 0.2);
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.btn {
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-outline {
    border: 2px solid #cbd5e1;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
}

.section {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
}

.bg-light {
    background-color: var(--bg-light);
}

.page-banner {
    background: var(--primary);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 50px 0 20px 0;
    border-top: 1px solid var(--primary-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--primary-light);
    color: #64748b;
    font-size: 0.9rem;
}

/* Mobile Toggle Button Style */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
}

/* Responsive Rules for Mobile */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block; /* Show hamburger button on mobile */
    }

    .nav-menu {
        display: none; /* Hide menu items by default on mobile */
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding-top: 15px;
        gap: 15px;
        border-top: 1px solid var(--primary-light);
        margin-top: 15px;
    }

    /* Active Class applied by JS */
    .nav-menu.active {
        display: flex !important; /* Forces menu to show when active */
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}