/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #333333;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* SASHAX Logo */
.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #8b5cf6;
}

.cta-button {
    background: #8b5cf6;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    background: #7c3aed;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    text-align: center;
    padding: 80px 0;
}

.hero-content {
    max-width: 600px;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.hero-logo-image {
    height: 500px;
    width: auto;
    object-fit: contain;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-cta {
    background: #8b5cf6;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-cta:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.hero-subtitle {
    font-size: 0.9rem;
    color: #888888;
    font-weight: 400;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: #000000;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-content {
    max-width: 800px;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    font-weight: 400;
}

/* Apps Section */
.apps {
    padding: 4rem 0;
    background: #000000;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.app-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.app-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-2px);
}

.featured-app {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a3a 100%);
}

.app-icon {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
    text-align: center;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.feature-tag {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.app-status {
    text-align: center;
    font-weight: 600;
    padding: 0.5rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.app-status.available {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.app-status.coming-soon {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

.coming-soon-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    border-style: dashed;
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.05);
}

.coming-soon-content {
    text-align: center;
}

.coming-soon-icon {
    font-size: 3rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.coming-soon-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8b5cf6;
    letter-spacing: 1px;
}

.card-placeholder {
    width: 100%;
    height: 150px;
    background: #333333;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.portfolio-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.portfolio-card p {
    color: #888888;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Innovation Labs Section */
.labs {
    padding: 4rem 0;
    background: #000000;
}

.labs-content {
    max-width: 800px;
}

.labs-card {
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.labs-icon {
    font-size: 1.5rem;
    color: #8b5cf6;
    margin-top: 0.25rem;
}

.labs-card p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: #000000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #333333;
    border-radius: 8px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b5cf6;
}

.contact-button {
    background: #8b5cf6;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.contact-button:hover {
    background: #7c3aed;
    transform: translateY(-1px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.company-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.social-link:hover {
    color: #8b5cf6;
}

.social-link i {
    width: 20px;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #000000;
    padding: 2rem 0;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer p {
    color: #888888;
    font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .cta-button {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }
}
