/* Header & Footer Styles */

/* Modern Header */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}
.main-header.scrolled {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/* Logo - Text Only */
.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.header-logo:hover {
    text-decoration: none;
}
.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
}
.logo-text .text-gradient {
    background: linear-gradient(90deg, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-text .text-white-part {
    color: #1e293b;
    transition: color 0.3s ease;
}
.main-header.scrolled .logo-text .text-white-part {
    color: #f1f5f9;
}

/* Desktop Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.nav-link-custom {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #64748b;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}
.nav-link-custom:hover {
    color: #1e293b;
    background: rgba(0,0,0,0.05);
}
.main-header.scrolled .nav-link-custom {
    color: #94a3b8;
}
.main-header.scrolled .nav-link-custom:hover {
    color: #f1f5f9;
    background: rgba(255,255,255,0.05);
}
.nav-link-custom.active {
    color: #10b981;
    background: rgba(16,185,129,0.1);
}
.nav-link-custom.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #06b6d4);
    border-radius: 2px;
}

/* CTA Button in Header */
.header-cta {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}
.header-cta:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16,185,129,0.4);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.mobile-toggle:hover {
    background: rgba(16,185,129,0.1);
    border-color: rgba(16,185,129,0.2);
}
.mobile-toggle svg {
    width: 24px;
    height: 24px;
    color: #1e293b;
    transition: color 0.3s ease;
}
.main-header.scrolled .mobile-toggle {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}
.main-header.scrolled .mobile-toggle:hover {
    background: rgba(16,185,129,0.2);
    border-color: rgba(16,185,129,0.3);
}
.main-header.scrolled .mobile-toggle svg {
    color: #f1f5f9;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.main-header.scrolled .mobile-nav {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #64748b;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #10b981;
    background: rgba(16,185,129,0.1);
}
.main-header.scrolled .mobile-nav-link {
    color: #94a3b8;
}
.main-header.scrolled .mobile-nav-link:hover,
.main-header.scrolled .mobile-nav-link.active {
    color: #10b981;
    background: rgba(16,185,129,0.1);
}
.mobile-nav-link i {
    font-size: 1.1rem;
    width: 24px;
    text-align: center;
}
.mobile-nav-cta {
    display: block;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 0.5rem;
}
.mobile-nav-cta:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .logo-text {
        font-size: 1.25rem;
    }
}

/* Simple Footer */
.main-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 0;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
    text-decoration: none;
}
.footer-logo .text-gradient {
    background: linear-gradient(90deg, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-logo .text-white-part {
    color: #f1f5f9;
}
.footer-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.footer-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #10b981;
}
.footer-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.social-link:hover {
    background: #10b981;
    border-color: #10b981;
    color: white;
    transform: translateY(-2px);
}
.footer-copyright {
    color: #475569;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        justify-content: center;
        gap: 1.25rem;
    }
    .footer-right {
        flex-direction: column;
        gap: 1rem;
    }
}

