:root {
    --accent-teal: #1e7561;
    --accent-teal-glow: rgba(30, 117, 97, 0.4);
}
/* Clean Header */
        .home-header {
            background: rgba(255, 255, 255, 0.65); /* More transparent for glass */
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
            padding: 15px 0;
            position: sticky; top: 0; z-index: 1000;
        }
        
        .header-container {
            max-width: 1300px; margin: 0 auto; padding: 0 20px;
            display: flex; align-items: center; justify-content: space-between;
        }

        .logo-img { height: 40px; display: block; border-radius: 8px; mix-blend-mode: multiply; }

        .header-actions { display: flex; align-items: center; gap: 25px; }
        .header-link {
            color: #334155; text-decoration: none; font-weight: 500;
            font-size: 0.95rem; transition: all 0.2s; display: flex; align-items: center; gap: 8px;
            position: relative;
        }
        .header-link.nav-item::after {
            content: ''; position: absolute; bottom: -6px; left: 0; width: 0%; height: 2px;
            background: var(--accent-teal); transition: width 0.3s;
        }
        .header-link.nav-item:hover::after, .header-link.nav-item.active::after { width: 100%; }
        .header-link:hover, .header-link.nav-item.active { color: var(--accent-teal); }
        .header-link.btn-primary {
            background: var(--accent-teal); color: white; padding: 8px 20px;
            border-radius: 50px; box-shadow: 0 4px 12px var(--accent-teal-glow); border: 2px solid transparent;
        }
        .header-link.btn-primary:hover { background: #145c4c; transform: translateY(-1px); }

                        body { background-color: #f4f6f9; }
        
        /* Secondary Navbar */
        .secondary-nav {
            background: #ffffff;
            border-bottom: 1px solid #eaeef2;
        }
        .secondary-nav-container {
            max-width: 1300px; margin: 0 auto; padding: 0 20px;
            display: flex; align-items: stretch;
        }
        .all-categories-btn {
            display: flex; align-items: center; gap: 12px;
            padding: 15px 25px; background: #ffffff;
            border-right: 1px solid #eaeef2; border-left: 1px solid #eaeef2;
            font-weight: 700; color: #1e293b; cursor: pointer;
            line-height: 1.1; font-size: 0.95rem;
        }
        .all-categories-btn i { font-size: 1.2rem; color: #1e293b; }
        .sec-nav-links {
            display: flex; align-items: center; gap: 35px; padding: 0 35px; overflow-x: auto;
        }
        .sec-nav-links a {
            text-decoration: none; color: #475569; font-weight: 600; font-size: 0.95rem;
            white-space: nowrap; transition: color 0.2s;
        }
        .sec-nav-links a.highlight { color: #f43f5e; }
        .sec-nav-links a:hover { color: var(--accent-teal); }

        


/* Mobile Menu Overlay for Global Header */
.mobile-menu-toggle { display: none; background: rgba(30, 117, 97, 0.05); border: 1px solid rgba(30, 117, 97, 0.1); font-size: 1.2rem; color: var(--accent-teal); cursor: pointer; width: 42px; height: 42px; border-radius: 12px; align-items: center; justify-content: center; transition: all 0.3s; }
.mobile-menu-toggle:hover { background: rgba(30, 117, 97, 0.15); }
.mobile-menu-overlay { position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; background: white; z-index: 2000; box-shadow: 4px 0 20px rgba(0,0,0,0.1); transition: 0.3s ease-in-out; display: flex; flex-direction: column; overflow-y: auto; }
.mobile-menu-overlay.active { left: 0; }
.mobile-menu-header { padding: 20px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #e2e8f0; }
.mobile-menu-close { background: none; border: none; font-size: 1.5rem; color: #334155; cursor: pointer; }
.mobile-menu-links { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.mobile-menu-links a { color: #334155; text-decoration: none; font-weight: 500; font-size: 1.1rem; display: flex; align-items: center; gap: 15px; padding: 10px 0; border-bottom: 1px solid #f1f5f9; }
.mobile-menu-links a.active { color: var(--accent-teal); font-weight: 600; border-bottom: 2px solid var(--accent-teal); }
.mobile-menu-links a i { color: #1e7561; width: 20px; text-align: center; }
.mobile-highlight-btn { background: rgba(30, 117, 97, 0.1); color: #1e7561 !important; padding: 12px 15px !important; border-radius: 8px; border: none !important; margin-top: 10px; }
.mobile-primary-btn { background: #1e7561; color: white !important; padding: 12px 15px !important; border-radius: 8px; border: none !important; }
.mobile-primary-btn i { color: white !important; }

@media (max-width: 992px) {
    .header-actions { display: none !important; }
    .mobile-menu-toggle { display: flex !important; } 
}


/* Massive Directory Footer Global Styles */
.main-footer { background: #0b0f19; color: white; padding: 80px 5% 30px; margin-top: auto; border-top: 1px solid rgba(255,255,255,0.05); }
.m-footer-grid {
    max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px;
    padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.m-footer-brand { text-align: center; }
.m-footer-brand p { color: #cbd5e1; line-height: 1.7; margin: 0 0 25px 0; font-size: 1.05rem; font-weight: 300; letter-spacing: 0.3px; }
.m-socials { display: flex; gap: 15px; justify-content: center; }
.m-socials a {
    width: 44px; height: 44px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: #f8fafc; font-size: 1.15rem; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.m-socials a:hover { background: var(--accent-teal); color: white; transform: translateY(-5px); border-color: var(--accent-teal); box-shadow: 0 10px 25px rgba(30,117,97,0.5); }

/* App Download Buttons in Footer */
.m-app-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 25px; }
.m-app-btn {
    background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px; padding: 8px 10px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    color: white; text-decoration: none; transition: all 0.3s; width: 100%; box-sizing: border-box;
}
.m-app-btn:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); border-color: rgba(255, 255, 255, 0.2); color: white; }
.m-app-btn i { font-size: 1.8rem; }
.m-app-btn-text { display: flex; flex-direction: column; }
.m-app-btn-text small { font-size: 0.65rem; color: #94a3b8; line-height: 1; margin-bottom: 3px; }
.m-app-btn-text span { font-size: 0.95rem; font-weight: 600; line-height: 1; font-family: 'Outfit', sans-serif; }

.m-footer-widget h4 { font-size: 1.15rem; margin-bottom: 25px; color: white; letter-spacing: 0.5px; position: relative; padding-bottom: 10px; }
.m-footer-widget h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 30px; height: 2px; background: #1e7561; border-radius: 2px; }

.m-footer-links { display: flex; flex-direction: column; gap: 14px; }
.m-footer-links a { display: flex; align-items: center; gap: 10px; color: #94a3b8; text-decoration: none; font-size: 0.95rem; transition: all 0.3s ease; }
.m-footer-links a i { width: 16px; text-align: center; color: #1e7561; font-size: 0.95rem; transition: all 0.3s ease; }
.m-footer-links a:hover { color: white; transform: translateX(5px); }
.m-footer-links a:hover i { color: white; }

.m-footer-contact { display: flex; flex-direction: column; gap: 16px; }
.m-contact-item { display: flex; align-items: flex-start; gap: 12px; color: #94a3b8; font-size: 0.95rem; line-height: 1.5; text-align: left; }
.m-contact-item i { width: 16px; text-align: center; color: #1e7561; font-size: 0.95rem; margin-top: 3px; flex-shrink: 0; }

.newsletter-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); padding: 5px; border-radius: 10px; display: flex; margin-top: 15px; transition: all 0.3s ease; }
.newsletter-box:focus-within { border-color: #1e7561; box-shadow: 0 0 15px rgba(30,117,97,0.25); background: rgba(255,255,255,0.05); }
.newsletter-box input { flex: 1; background: transparent; border: none; padding: 10px 15px; color: white; outline: none; font-size: 0.9rem; }
.newsletter-box input::placeholder { color: #64748b; }
.newsletter-box button { background: #1e7561; color: white; border: none; padding: 10px 18px; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; }
.newsletter-box button:hover { background: #238971; transform: translateY(-1px); }

.m-footer-bottom { max-width: 1300px; margin: 0 auto; padding-top: 30px; text-align: center; color: #64748b; font-size: 0.9rem; }

@media (max-width: 992px) {
    .m-footer-grid { grid-template-columns: 1fr; gap: 40px; }
    body > .container, body > .static-content-container { margin-top: 80px; }
}

