/* ============================================
   NEW NAVBBAR STYLES - MEGATOOLS BRANDING
   Style inspired by provided image
   ============================================ */

.new-navbar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #0f0f0f;
    /* Pitch dark background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 75px;
    display: flex;
    align-items: center;
    padding: 0 50px;
    font-family: 'Inter', sans-serif;
}

.nav-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO SECTION - RESTORED MEGATOOLS BRANDING */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FD6646 0%, #ff8a6a 100%);
    border-radius: 10px;
    font-size: 1.3rem;
    color: white;
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif;
    box-shadow: 0 4px 12px rgba(253, 102, 70, 0.3);
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.brand-name .accent {
    background: linear-gradient(135deg, #FD6646 0%, #ff8a6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* MENU SECTION */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-item a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item a:hover {
    color: #FD6646;
}

.nav-item a .caret {
    font-size: 0.6rem;
    opacity: 0.5;
    margin-top: 2px;
}

/* CTA BUTTON */
.nav-cta {
    background: #FD6646;
    color: white;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(253, 102, 70, 0.15);
    white-space: nowrap;
}

.nav-cta:hover {
    background: #ff7d61;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(253, 102, 70, 0.25);
}

/* MOBILE RESPONSIVE */
@media (max-width: 1100px) {
    .nav-menu {
        display: none;
    }

    .new-navbar {
        padding: 0 24px;
    }
}

@media (max-width: 600px) {
    .brand-name {
        display: none;
    }
}

/* ───────── NEW FOOTER STYLES ───────── */
.new-footer {
    background: rgba(15, 15, 15, 0.7);
    /* Transluscent background */
    backdrop-filter: blur(15px);
    /* Glassmorphism effect */
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 0 30px;
    /* Reduced padding */
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    /* Reduced margin */
}

.footer-col h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    /* Reduced gap under heading */
}

.footer-col-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    margin-bottom: 20px;
}

.footer-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info-list li {
    margin-bottom: 10px;
    /* Compact info list */
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
}

.footer-info-list a {
    color: #FD6646;
    text-decoration: none;
    font-weight: 600;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 8px;
    /* Compact links list */
}

.footer-links-list a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links-list a:hover {
    color: white;
    padding-left: 5px;
}

/* CTA & Socials */
.footer-cta-btn {
    display: inline-block;
    background: #FD6646;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 18px;
    /* More compact CTA */
    transition: 0.3s;
}

.footer-cta-btn:hover {
    background: #ff7d61;
    transform: translateY(-2px);
}

.footer-social-btns {
    display: flex;
    gap: 15px;
}

.footer-social-btns a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer-social-btns a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-color: white;
}

/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #777;
}

@media (max-width: 1000px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        padding: 0 24px;
    }
}