/* Navigation Bar */
.navbar {
    background-color: var(--white);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo {
    background-color: var(--navy-blue);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.navbar-title {
    color: var(--navy-blue);
    font-size: 1.5rem;
    font-weight: 800;
}

.navbar-title span {
    color: var(--gold);
}

.navbar-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gold);
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--navy-blue);
}

/* Hero Section */
.hero-gradient {
    background: linear-gradient(135deg, var(--bg-light) 0%, #E2E8F0 100%);
    position: relative;
    overflow: hidden;
    padding: 6rem 5% 10rem 5%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    min-width: 320px;
    z-index: 2;
    padding-right: 2rem;
}

.hero-title {
    color: var(--navy-blue);
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.mockup-container {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-top: 3rem;
    animation: floatMockup 6s ease-in-out infinite;
}

@keyframes floatMockup {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Common Layouts */
.section-padding {
    padding: 5rem 5%;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Styles */
.footer {
    background-color: var(--sidebar-bg); /* #07101A */
    padding: 5rem 5% 2rem 5%;
    color: var(--white);
    margin-top: auto;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.footer-logo {
    background-color: var(--white);
    color: var(--navy-blue);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-title span {
    color: var(--gold);
}

.footer-description {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 50%;
    color: var(--white);
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    background: var(--gold);
}

.footer-heading {
    color: var(--white);
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.footer-link {
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    color: #4B5563;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #4B5563;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--gold);
}

/* Media Queries */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .mobile-menu-btn {
        display: block;
    }

    .navbar-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        gap: 1rem;
    }

    .navbar-links.active {
        display: flex;
    }

    .btn-outline-navy {
        width: 100%;
    }

    /* Typography */
    .hero-title {
        font-size: 3rem;
    }

    /* Layout adjustments */
    .hero-gradient {
        padding: 4rem 5% 6rem 5%;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .mockup-container {
        margin-top: 4rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
