/* Home Page Specific Styles */

body {
    background: #181818;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 10rem 2rem 6rem;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1591488320449-011701bb6704?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.4rem;
    color: #aaa;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    color: #777;
    font-size: 1.1rem;
    margin: 2rem auto;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

/* Features Section */
.features {
    background: linear-gradient(rgba(29, 29, 29, 0.93), rgba(0, 0, 0, 2)), url('https://images.unsplash.com/photo-1591488320449-011701bb6704?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 6rem 2rem;
    margin: 6rem 0;
    position: relative;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.feature-item {
    padding: 2rem;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #888;
}

/* Services Section */
.services {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 2rem 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* About Section */
.about {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 4rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.about-text p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    background: linear-gradient(rgba(42, 42, 42, 0.6), rgba(26, 26, 26, 0.8)), url('https://images.unsplash.com/photo-1597092430872-09a3f4338c60?q=80&w=1744&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: #777;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Contact Section */
.contact {
    max-width: 900px;
    margin: 6rem auto;
    padding: 2rem 3rem;
}

.contact-container {
    background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(13, 13, 13, 0.9)), url('https://images.unsplash.com/photo-1551640179-9e39f8055291?q=80&w=1822&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contact-container h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.contact-subtitle {
    color: #888;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-item a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 1024px) {
    .about {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .about-image {
        padding: 3rem;
    }

    .stats {
        gap: 1.5rem;
    }

    h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .hero {
        padding: 6rem 1.5rem 3rem;
        background-attachment: scroll;
    }

    .hero-description {
        font-size: 1rem;
    }

    .features {
        background-attachment: scroll;
        padding: 4rem 1.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .services, .contact {
        padding: 2rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-container {
        padding: 3rem 2rem;
    }

    .contact-container h3 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .hero {
        padding: 5rem 1rem 2rem;
    }

    .hero-badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .cta-buttons {
        margin-top: 2rem;
    }

    .features {
        padding: 3rem 1rem;
        margin: 3rem 0;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .services {
        margin: 3rem auto;
        padding: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact {
        margin: 3rem auto;
    }

    .contact-container {
        padding: 2rem 1.5rem;
    }

    .contact-container h3 {
        font-size: 1.8rem;
    }

    .contact-subtitle {
        font-size: 1rem;
    }

    .about {
        margin: 3rem auto;
        padding: 2rem 1rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-image {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}
