/* ==================== Index Page Specific Styles ==================== */

/* Hero Section Enhancement */
.hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #FFFFFF;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 0.8s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    animation: fadeInUp 0.8s ease;
}

.hero-title {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 32px;
    margin-bottom: 15px;
    color: #FFD700;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Highlights Section */
.highlights {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-card {
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #D90000;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(217, 0, 0, 0.15);
}

.highlight-number {
    font-size: 48px;
    font-weight: bold;
    color: #D90000;
    margin-bottom: 15px;
}

.highlight-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000000;
}

.highlight-card p {
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
}

/* Business Preview Section */
.business-preview {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
    align-items: center;
}

.business-item {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.business-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.business-image img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.business-item:hover .business-image img {
    transform: scale(1.05);
}

.business-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #000000;
}

.business-info p {
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.learn-more {
    display: inline-block;
    color: #D90000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.learn-more:hover {
    color: #000000;
    transform: translateX(5px);
}

/* Network Preview Section */
.network-preview {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.network-image {
    margin: 40px 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.network-image img {
    width: 100%;
    height: auto;
    display: block;
}

.network-description {
    text-align: center;
    color: #666666;
    font-size: 16px;
    margin: 30px 0;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000, #0F0F0F);
    color: #FFFFFF;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 24px;
    }

    .hero-description {
        font-size: 16px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .business-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .highlight-card {
        padding: 30px 20px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}
