/* Solutions Page Styles - Light Theme */

/* Page Hero */
.page-hero {
    position: relative;
    padding: 180px 0 100px;
    background: var(--bg-page);
    overflow: hidden;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Specific Hero Backgrounds */
.hero-bg-cloud {
    background-image: linear-gradient(to bottom, rgba(10, 22, 40, 0.75), rgba(10, 22, 40, 0.9)), url('../../images/cloud.png');
}

.hero-bg-security {
    background-image: linear-gradient(to bottom, rgba(10, 22, 40, 0.75), rgba(10, 22, 40, 0.9)), url('../../images/security.png');
}

.hero-bg-app {
    background-image: linear-gradient(to bottom, rgba(10, 22, 40, 0.75), rgba(10, 22, 40, 0.9)), url('../../images/application-platform.png');
}

.hero-bg-data {
    background-image: linear-gradient(to bottom, rgba(10, 22, 40, 0.75), rgba(10, 22, 40, 0.9)), url('../../images/data-ai.png');
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-label {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 8px 20px;
    background: rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 2px;
    margin-bottom: 32px;
    font-weight: 600;
    border-left: 3px solid var(--primary);
    color: var(--primary-light);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -1px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.page-hero h1 span:last-child {
    display: block;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
}

/* Revealed State for Hero */
.hero-label.revealed,
.page-hero h1.revealed,
.hero-subtitle.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Solutions Content Section */
.solutions-page {
    background: var(--bg-surface);
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin: 0 auto 80px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.section-header.revealed {
    opacity: 1;
    transform: translateY(0);
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--primary);
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-title);
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Services Grid */
.services-grid,
.cyber-grid,
.architecture-stack {
    display: grid;
    gap: 30px;
}

.cyber-grid {
    grid-template-columns: repeat(3, 1fr);
}

.services-grid {
    grid-template-columns: repeat(3, 1fr);
}

.architecture-stack {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.cyber-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Service Card */
.service-card,
.cyber-card,
.arch-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    border-radius: 4px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card.revealed,
.cyber-card.revealed,
.arch-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover,
.cyber-card:hover,
.arch-card:hover {
    background: rgba(59, 130, 246, 0.03);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-icon,
.cyber-icon,
.arch-left {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.service-icon-svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card:hover .service-icon,
.cyber-card:hover .service-icon,
.arch-card:hover .arch-left {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.service-title,
.value-title {
    color: var(--text-title);
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-description,
.value-description {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 20px;
}

.service-features li {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-features li::before {
    content: '\f00c'; /* FontAwesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-size: 0.8rem;
}

/* Architecture Specifics */
.architecture {
    padding: 100px 0;
    background: #f0f4f8;
}

.arch-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
}

.arch-right {
    flex: 1;
}

.arch-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 16px 0;
}

.arch-stats span {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.arch-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.arch-tags span {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-body);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Process Section */
.process-section {
    background: #f0f4f8;
    padding: 100px 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.process-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 40px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.process-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.process-card:hover {
    background: rgba(59, 130, 246, 0.03);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.process-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.process-card h3 {
    color: var(--text-title);
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.process-card p {
    color: var(--text-body);
    font-size: 1.1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}


/* Responsive */
@media (max-width: 1024px) {
    .arch-card {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 20px 70px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-background {
        background:
            linear-gradient(to bottom, rgba(10, 22, 40, 0.75), rgba(10, 22, 40, 0.9)),
            url('../../images/banner-mobile.png') center center / cover no-repeat;
    }

    .solutions-page {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .architecture {
        padding: 60px 20px;
    }

    .process-section {
        padding: 60px 20px;
    }

    .service-card,
    .cyber-card {
        padding: 28px 20px;
        text-align: center;
    }

    .arch-card {
        padding: 28px 20px;
        flex-direction: column;
        align-items: center;
        text-align: left;
    }

    .arch-left {
        margin: 0 auto 8px;
    }

    .service-icon,
    .cyber-icon {
        margin: 0 auto 24px;
    }

    .service-features {
        text-align: left;
    }

    .process-card {
        padding: 28px 20px;
    }
}
