/* --- OPLOSSINGEN SPECIFIC STYLES --- */

/* 1. Solution Hero Section */
.solution-hero {
    position: relative;
    height: 60vh;
    /* Not full screen, but large */
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--text-dark);
    color: white;
    overflow: hidden;
}

.solution-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    /* Darken image */
    z-index: 1;
}

.solution-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.solution-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.solution-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

/* 2. Intro Section (Text + Image) */
.intro-section {
    padding: 100px 0;
    background-color: var(--background-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 3. Features / Types Grid */
.features-section {
    padding: 100px 0;
    background-color: var(--background-offwhite);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--background-white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--background-offwhite);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 4. Specs / Details Section */
.specs-section {
    padding: 100px 0;
    background-color: var(--text-dark);
    color: white;
}

.specs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-item {
    text-align: center;
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 20px;
}

.spec-item:last-child {
    border-right: none;
}

.spec-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.spec-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 992px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-image {
        order: -1;
        /* Image on top on mobile */
    }

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

@media (max-width: 768px) {
    .solution-hero h1 {
        font-size: 2.5rem;
    }

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

    .specs-container {
        flex-direction: column;
        gap: 40px;
    }

    .spec-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 40px;
        width: 100%;
    }

    .spec-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}
/* ... (Keep your existing styles for led/narrowcasting above this) ... */

/* =========================================
   SOLUTIONS OVERVIEW PAGE (Main Index)
   ========================================= */

.solutions-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 60px;
}

.solution-overview-card {
    background-color: var(--background-white);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    height: 100%;
}

.solution-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.sol-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--background-offwhite);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: background-color 0.3s, color 0.3s;
}

.sol-icon-wrapper i {
    width: 28px;
    height: 28px;
    color: var(--text-dark);
}

.solution-overview-card:hover .sol-icon-wrapper {
    background-color: var(--primary-blue);
}

.solution-overview-card:hover .sol-icon-wrapper i {
    color: white;
}

.solution-overview-card h3 {
    font-size: 1.4rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.solution-overview-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    /* Pushes button down */
}

.btn-text {
    color: var(--primary-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.solution-overview-card:hover .btn-text {
    gap: 12px;
}

/* Highlight Card Style (Maatwerk) */
.highlight-card {
    background-color: var(--text-dark);
    border-color: var(--text-dark);
}

.highlight-card h3,
.highlight-card p {
    color: white;
}

.highlight-card .sol-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
}

.highlight-card .sol-icon-wrapper i {
    color: white;
}

.highlight-card .btn-text {
    color: white;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .solutions-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .solutions-overview-grid {
        grid-template-columns: 1fr;
    }
}