/* Navigation Bar */
:root {
    --nav-height: 72px;
    --nav-font-size: 0.95rem;
    --container-max-width: 1480px;
    
    /* Colors */
    --primary: #10b981;
    --primary-hover: #059669;
    --primary-glow: rgba(16, 185, 129, 0.2);
    --accent-soft: rgba(16, 185, 129, 0.1);
    --text-main: #1f2937;
    --text-secondary: #4b5563;
    --bg-glass: rgba(255, 255, 255, 0.9);
    --radius-md: 12px;
}

.navbar {
    height: var(--nav-height);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
}

.navbar-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 1001;
}

.logo img {
    height: 34px;
    width: auto;
}

.logo span {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    gap: 4px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    padding: 8px 16px;
    height: 40px; 
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: var(--nav-font-size);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: var(--accent-soft);
}

.nav-btn {
    padding: 0 24px;
    height: 42px; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-weight: 600;
    font-size: var(--nav-font-size);
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    margin-left: 8px;
}

.nav-btn-primary { background: var(--primary); color: white !important; box-shadow: 0 4px 12px var(--primary-glow); }
.nav-btn-danger { background: #fee2e2; color: #dc2626 !important; }

/* Mobile & Tablet Toggle */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* --- TABLET & MOBILE BREAKPOINT (1200px) --- */
@media (max-width: 1200px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        background: white;
        flex-direction: column;
        padding: calc(var(--nav-height) + 20px) 0 30px 0;
        gap: 10px;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
        
        /* Hidden by default */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        justify-content: center;
        font-size: 1rem; /* Slightly larger for touch */
    }

    .nav-btn {
        margin-left: 0;
        margin-top: 10px;
        height: 48px; /* Larger tap target */
    }
}

/* Footer */
.footer {
    background: #022C22;
    color: #E2E8F0;
    padding: 80px 0 40px 0;
    margin-top: auto;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 34px;
    width: auto;
    display: block;
}

.footer-brand p {
    margin-top: 20px;
    color: #94A3B8;
    max-width: 320px;
    line-height: 1.6;
}

.footer-heading {
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 14px; }
.footer-links a {
    color: #CBD5E1;
    text-decoration: none;
    transition: 0.2s;
    font-size: 0.95rem;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

/* Social Section */
.social-box {
    background: rgba(255,255,255,0.03);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.05);
}

.social-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}
.social-item:last-child { margin-bottom: 0; }
.social-item i {
    width: 32px;
    height: 32px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.9rem;
}
.social-item:hover { color: var(--accent); }

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #64748B;
    margin-bottom: 8px;
}

.tagline {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: var(--font-heading);
}

/* --- MOBILE BREAKPOINT (922px) --- */
@media (max-width: 992px) {
    .footer-grid { 
        grid-template-columns: 1fr 1fr; 
    }
}