/* Main CSS - Import all stylesheets */

/* Core foundation */
@import url('variables.css');
@import url('reset.css');
@import url('base.css');

/* Layout & utilities */
@import url('layout.css');

/* Components */
@import url('components.css');

/* Animations */
@import url('animations.css');

/* Responsive */
@import url('responsive.css');

/* Header component styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1035;
    transition: all var(--transition-base);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.header.transparent {
    background: transparent;
    backdrop-filter: none;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    height: 80px;
}

.logo {
    flex-shrink: 0;
    z-index: 1041;
    display: flex;
    align-items: center;
}

nav.nav-desktop {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    overflow: visible;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1050;
    flex-shrink: 0;
    margin-left: auto;
    transition: all var(--transition-base);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--light);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Desktop: Hide mobile menu by default */
.nav-mobile-list {
    display: none !important;
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }

    /* Hide desktop navigation on mobile */
    nav.nav-desktop {
        display: none !important;
    }

    /* Hide desktop "Get Started" button on mobile */
    .header .hide-mobile {
        display: none !important;
    }

    /* Mobile menu - slide in from right */
    .nav-mobile-list {
        position: fixed !important;
        top: 80px !important;
        right: -280px !important;
        width: 280px !important;
        height: auto;
        max-height: calc(100vh - 80px) !important;
        background: var(--dark-lighter) !important;
        flex-direction: column !important;
        padding: 2rem !important;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.8) !important;
        z-index: 1040 !important;
        display: flex !important;
        overflow-y: auto !important;
        list-style: none !important;
    }

    /* When menu is active */
    .nav-mobile-list.active {
        right: 0 !important;
    }

    .nav-mobile-list .nav-link {
        font-size: 1.125rem;
        padding: 1rem 0;
        color: var(--light);
    }

    .nav-mobile-list .nav-link::after {
        display: none;
    }
}

/* Footer styles */
.footer {
    background: var(--dark-lighter);
    padding: var(--space-3xl) 0 var(--space-lg);
    margin-top: var(--space-3xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

/* Responsive footer - Tablet (768px to 991px) */
@media (max-width: 991px) {
    .footer {
        padding: var(--space-2xl) 0 var(--space-lg);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

/* Responsive footer - Mobile (below 768px) */
@media (max-width: 767px) {
    .footer {
        padding: var(--space-xl) 0 var(--space-lg);
        margin-top: var(--space-2xl);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4 {
        margin-top: var(--space-md);
    }

    .footer-links {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        padding-top: var(--space-md);
        margin-top: var(--space-lg);
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: var(--space-md);
    }
}

.footer-column h4 {
    margin-bottom: var(--space-md);
    color: var(--light);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--light-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-card);
    border-radius: var(--radius-full);
    color: var(--light);
    transition: all var(--transition-base);
}

.social-icon:hover {
    background: var(--gradient);
    transform: translateY(-4px);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--dark-card);
    text-align: center;
    color: var(--light-muted);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-sm);
}

.footer-legal a {
    color: var(--light-muted);
    transition: color var(--transition-fast);
}

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

/* Hero section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    margin-top: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
}

/*.hero-title {
    margin-bottom: var(--space-md);
}*/
.hero-title {
    color: #ffffff;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
    max-width: 900px;
}

/* Accent highlight inside hero title */
.hero-accent {
    color: #FF9F43; /* premium brand orange */
}


.hero-description {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -250px;
    right: -250px;
}

.cta-section h2 {
    color: var(--light);
    margin-bottom: var(--space-md);
}

.cta-section p {
    color: var(--light);
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

/* Newsletter */
.newsletter {
    background: var(--dark-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    background: var(--dark-lighter);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    color: var(--light);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
}

@media (max-width: 767px) {
    .newsletter-form {
        flex-direction: column;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }
}
