/* Solutions Hero Section */
.solutions-hero-section {
    position: relative;
    padding: 12rem 2rem 8rem;
    background-image: url('../images/portfolio-hero.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.solutions-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 45, 69, 0.7);
    z-index: 1;
}

.solutions-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.solutions-hero-content {
    max-width: 900px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.solutions-hero-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.solutions-hero-subtitle {
    font-size: 0.75rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.solutions-hero-subtitle::before {
    content: '';
    width: 20px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.7);
    display: block;
    flex-shrink: 0;
}

.solutions-hero-title {
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-white);
    margin: 0 0 2rem 0;
}

.solutions-hero-description {
    font-size: 1.1rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 0;
}

/* Solutions Section */
.solutions-section {
    padding: 6rem 2rem;
}

.solutions-section:nth-child(even) {
    background-color: var(--primary-teal);
}

.solutions-section:nth-child(odd) {
    background-color: var(--bg-card);
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
}

.solutions-header {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.solutions-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.solutions-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.solutions-section:nth-child(even) .solutions-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.solutions-section:nth-child(odd) .solutions-subtitle {
    color: var(--light-teal);
}

.solutions-subtitle::before {
    content: '';
    width: 20px;
    height: 1px;
    display: block;
    flex-shrink: 0;
}

.solutions-section:nth-child(even) .solutions-subtitle::before {
    background-color: rgba(255, 255, 255, 0.6);
}

.solutions-section:nth-child(odd) .solutions-subtitle::before {
    background-color: var(--text-gray);
}

.solutions-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
}

.solutions-section:nth-child(even) .solutions-title {
    color: var(--text-white);
}

.solutions-section:nth-child(odd) .solutions-title {
    color: var(--text-dark);
}

.solutions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.solutions-content.animate {
    opacity: 1;
    transform: translateY(0);
}

.solutions-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solutions-text p {
    font-size: 1rem;
    font-weight: 200;
    line-height: 1.8;
    margin: 0;
}

.solutions-section:nth-child(even) .solutions-text p {
    color: rgba(255, 255, 255, 0.9);
}

.solutions-section:nth-child(odd) .solutions-text p {
    color: var(--text-dark);
}

.solutions-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.solutions-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.solutions-feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.solutions-section:nth-child(even) .solutions-feature-icon {
    color: var(--accent-orange);
}

.solutions-section:nth-child(odd) .solutions-feature-icon {
    color: var(--accent-orange);
}

.solutions-feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

.solutions-feature-text {
    font-size: 0.95rem;
    font-weight: 200;
    line-height: 1.6;
}

.solutions-section:nth-child(even) .solutions-feature-text {
    color: rgba(255, 255, 255, 0.8);
}

.solutions-section:nth-child(odd) .solutions-feature-text {
    color: var(--text-dark);
}

.solutions-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.solutions-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.solutions-cta {
    margin-top: 3rem;
}

.solutions-cta-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solutions-section:nth-child(even) .solutions-cta-btn {
    background-color: var(--accent-orange);
    color: var(--text-white);
}

.solutions-section:nth-child(even) .solutions-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(198, 40, 50, 0.4);
}

.solutions-section:nth-child(odd) .solutions-cta-btn {
    background-color: var(--primary-teal);
    color: var(--text-white);
}

.solutions-section:nth-child(odd) .solutions-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(15, 45, 69, 0.4);
}

/* Responsive */
@media (max-width: 968px) {
    .solutions-hero-title {
        font-size: 2.5rem;
    }

    .solutions-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .solutions-image {
        order: -1;
        min-height: 300px;
    }

    .solutions-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .solutions-hero-section {
        padding: 10rem 1.5rem 4rem;
    }

    .solutions-hero-title {
        font-size: 2rem;
    }

    .solutions-section {
        padding: 4rem 1.5rem;
    }

    .solutions-title {
        font-size: 2rem;
    }
}
