/* 
 * Home Page Specific Styles
 * Only styles unique to index.html
 */

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    margin-top: 90px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(10, 20, 40, 0.8) 0%, rgba(30, 58, 95, 0.6) 100%),
        url('../images/network in blue.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

/* Services Section */
.services {
    background: var(--secondary-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

/* Results Section */
.results {
    background: var(--primary-blue);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.result-item {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--light-blue);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.result-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--light-blue);
    display: block;
}

.result-text {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    background: var(--secondary-blue);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Page Sections */
.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

.page-header {
    text-align: center;
    padding: 5rem 0;
    background: var(--gradient-primary);
    margin-top: 90px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(10, 20, 40, 0.8) 0%, rgba(30, 58, 95, 0.7) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><rect fill="%23001122" width="1000" height="1000"/></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    z-index: 1;
}

#document-platform .page-header::before {
    background: 
        linear-gradient(135deg, rgba(10, 20, 40, 0.8) 0%, rgba(30, 58, 95, 0.7) 100%),
        url('../images/documents-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
}

#intelligence-studio .page-header::before {
    background: 
        linear-gradient(135deg, rgba(10, 20, 40, 0.8) 0%, rgba(30, 58, 95, 0.7) 100%),
        url('../images/custom-ai-solutions-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
}

#strategy-session .page-header::before {
    background: 
        linear-gradient(135deg, rgba(10, 20, 40, 0.8) 0%, rgba(30, 58, 95, 0.7) 100%),
        url('../images/strategy-session-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.9;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-gray);
}

.content-section {
    padding: 3rem 0;
}

.content-section:nth-child(even) {
    background: var(--secondary-blue);
}

/* Feature Showcase */
.feature-showcase {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin: 3rem 0;
}

.feature-showcase.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1.5;
    max-width: 1000px;
    min-width: 500px;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-gray);
}

.feature-content {
    flex: 1;
    padding: 2rem;
    max-width: 400px;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.feature-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Leadership Profile */
.leadership-profile {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        margin-top: 80px;
        min-height: 60vh;
        padding: 2rem 0;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

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

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header {
        margin-top: 80px;
        padding: 4rem 0;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .feature-showcase,
    .feature-showcase.reverse {
        flex-direction: column;
        gap: 2rem;
    }
    
    .feature-content {
        padding: 1rem;
    }
    
    .feature-content h3 {
        font-size: 1.5rem;
    }

    .feature-image {
        min-width: auto;
    }

    .leadership-profile {
        flex-direction: column !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }

    .leadership-profile .feature-list {
        text-align: left !important;
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

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