/* ========================================
   Solution Page - Aqua+ Style (Black/Red)
   Prefix: sol- to avoid conflicts
   Font approach: Barlow (brand font) with Aqua+ proportions
   ======================================== */

/* ========================================
   HERO - Full-bleed background image (Aqua+ style)
   ======================================== */
.sol-hero {
    position: relative;
    /* Foto begint onder de header; laag genoeg zodat bij openen ook het
       witte intro-blok (kop + tekst) direct in beeld staat */
    margin-top: 117px;
    min-height: max(420px, calc(100vh - 380px));
    min-height: max(420px, calc(100svh - 380px));
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 200px; /* titel ~200px boven de onderkant van de foto (aqua) */
    overflow: hidden;
}

.sol-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 45%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.sol-hero-content {
    position: relative;
    z-index: 2;
    width: 82%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
}

.sol-hero-label {
    font-family: 'pill-gothic-900mg', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 6px;
    letter-spacing: 0;
    text-transform: none;
}

.sol-hero-title {
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.0;
    letter-spacing: -0.5px;
    margin: 0;
    /* Hield als enige hero-type geen schaduw, waardoor de titel op lichte
       foto's wegviel. Zelfde aanpak als .hero-title en .pd-hero h1. */
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

/* ========================================
   CONTENT WRAP
   ======================================== */
.sol-content-wrap {
    background: transparent; /* wit komt per sectie, zodat de foto naast het intro-blok zichtbaar blijft */
    display: flow-root; /* voorkomt margin-collapse van .sol-intro's negatieve marge */
    position: relative;
    z-index: 2;
}


/* ========================================
   INTRO
   ======================================== */
.sol-intro {
    position: relative;
    z-index: 2;
    /* aqua: wit intro-blok overlapt de onderste 100px van de herofoto,
       links 9.6% ingesprongen; rechts blijft ~18% foto zichtbaar */
    margin: -100px 0 0 9.6%;
    width: 72%;
    padding: 24px 0 40px;
    background: var(--white);
}

.sol-intro-inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}

.sol-breadcrumb {
    font-size: 16px;
    color: #6b7275;
    margin-bottom: 20px;
    padding-top: 0;
    font-weight: 400;
}

.sol-breadcrumb a {
    color: #6b7275;
    text-decoration: underline;
}

.sol-breadcrumb a:hover {
    color: var(--accent);
}

.sol-breadcrumb span {
    margin: 0 6px;
    font-weight: 400;
}

.sol-intro-subtitle {
    font-size: clamp(32px, 3.5vw, 50px);
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 20px;
    line-height: 1.2;
}

.sol-intro-text {
    font-family: "pill-gothic-600mg", "open-sans", sans-serif; /* aqua */
    font-size: 26px;
    font-weight: 400;
    line-height: 1.5;
    color: #6b7275;
    margin-bottom: 30px;
}

.sol-scroll-link {
    color: var(--accent-dark, var(--accent));
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
}

.sol-scroll-link:hover {
    text-decoration: underline;
}

/* ========================================
   TEXT BLOCKS
   ======================================== */
.sol-text-section {
    position: relative;
    background: var(--white);
    padding: 20px 0 80px;
}

.sol-text-inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}

.sol-text-inner h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    color: var(--accent); /* aqua: koppen in merkkleur */
    margin-bottom: 20px;
    line-height: 1.14;
}

.sol-text-inner p {
    font-family: "pill-gothic-600mg", "open-sans", sans-serif; /* aqua */
    font-size: 22px;
    font-weight: 400;
    line-height: 1.75;
    color: #6b7275; /* aqua-grijs */
    margin-bottom: 20px;
}

.sol-text-inner ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.sol-text-inner ul li {
    padding: 14px 0 14px 28px;
    position: relative;
    font-family: "pill-gothic-600mg", "open-sans", sans-serif; /* aqua */
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    color: #6b7275;
    border-bottom: 1px solid #eee;
}

.sol-text-inner ul li:last-child {
    border-bottom: none;
}

.sol-text-inner ul li::before {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 20px;
}

.sol-text-inner ul li strong {
    color: var(--primary);
}

/* ========================================
   PHOTO SLIDER - Horizontal carousel (Aqua+ style)
   ======================================== */
.sol-gallery {
    position: relative;
    padding: 100px 0 80px;
    background: var(--white);
    overflow: visible;
}

/* Gray background block (left side, behind images) */
.sol-gallery::before {
    content: '';
    position: absolute;
    top: 35%;
    left: calc(50% - 720px);
    transform: translateY(-50%);
    width: 28%;
    height: 60%;
    background: #ece8e9;
    z-index: 0;
}

.sol-gallery-inner {
    position: relative;
    padding: 0;
}

/* Nav buttons - on the photos, vertically centered */
.sol-gallery-nav {
    position: absolute;
    top: 50%;
    right: calc(10% + 20px);
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sol-gallery-btn {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sol-gallery-btn:hover {
    background: var(--accent-dark, #b30000);
}

.sol-gallery-btn.prev {
    background: var(--accent);
    opacity: 0.7;
}

.sol-gallery-btn.prev:hover {
    opacity: 1;
}

.sol-gallery-track {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 100px 0 24px;
}

.sol-gallery-track::-webkit-scrollbar {
    display: none;
}

.sol-gallery-slide {
    flex-shrink: 0;
    width: 536px; /* aqua: 536x481 */
    max-width: 536px;
    aspect-ratio: 580 / 520;
    overflow: hidden;
    position: relative;
    background: #f4f4f4;
}

.sol-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.sol-gallery-slide:hover img {
    transform: scale(1.05);
}

.sol-gallery-slide .slide-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e4e5 0%, #d0cbcc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #999;
    font-weight: 500;
}

/* Plus decoration (top-left of gray block, like Aqua+) */
.sol-gallery-plus {
    position: absolute;
    top: 60px;
    left: calc(50% - 730px);
    width: 120px;
    height: 120px;
    pointer-events: none;
    z-index: 2;
}

.sol-gallery-plus::before,
.sol-gallery-plus::after {
    content: '';
    position: absolute;
    background: var(--accent);
}

.sol-gallery-plus::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    transform: translateY(-50%);
}

.sol-gallery-plus::after {
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
}

.sol-gallery-dots {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding-top: 30px;
}

.sol-gallery-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.sol-gallery-dots .dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}

/* ========================================
   TABS SECTION - Dark bg with tab buttons
   ======================================== */
.sol-tabs {
    background: var(--bg-dark);
    padding: 80px 0;
}

.sol-tabs-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.sol-tabs-header {
    display: flex;
    gap: 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.sol-tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 700;
    padding: 16px 28px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.sol-tab-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.sol-tab-btn.active {
    color: var(--white);
}

.sol-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}

.sol-tab-panel {
    display: none;
}

.sol-tab-panel.active {
    display: block;
}

.sol-tab-panel h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.13;
}

.sol-tab-panel p {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

/* ========================================
   RELATED SOLUTIONS
   ======================================== */
.sol-related {
    position: relative;
    background: var(--white);
    padding: 80px 0;
}

.sol-related-inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}

.sol-related-inner h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.14;
}

.sol-related-inner p {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.75;
    color: #403e3f;
    margin-bottom: 30px;
}

/* Links in lopende tekst: zelfde behandeling in tekstsecties als in
   'Andere diensten'. Zonder dit worden ze browser-blauw. */
.sol-related-inner a,
.sol-text-inner p a,
.sol-text-inner li a {
    color: var(--accent);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sol-text-inner p a:hover,
.sol-text-inner li a:hover {
    color: var(--accent-dark);
}

/* de CTA-knop is geen tekstlink */
.sol-text-inner p a.sol-cta-knop {
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
}

.sol-related-inner a:hover {
    color: var(--accent-dark);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.sol-faq {
    position: relative;
    background: var(--white);
    padding: 80px 0;
}

.sol-faq-inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}

.sol-faq-inner h2 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 40px;
    line-height: 1.14;
}

.sol-faq-list {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.sol-faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.sol-faq-question {
    width: 100%;
    padding: 22px 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
    transition: color 0.3s ease;
    font-family: inherit;
    gap: 20px;
    line-height: 1.1;
}

.sol-faq-question:hover {
    color: var(--accent);
}

.sol-faq-icon {
    font-size: 24px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 24px;
    text-align: center;
}

.sol-faq-item.active .sol-faq-icon {
    transform: rotate(45deg);
}

.sol-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.sol-faq-item.active .sol-faq-answer {
    max-height: 500px;
    padding-bottom: 22px;
}

.sol-faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #403e3f;
    margin: 0;
}

.sol-faq-show-all {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    background: none;
    border: 2px solid rgba(0, 0, 0, 0.3);
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.sol-faq-show-all:hover {
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.05);
}

/* ========================================
   CONTACT FORM
   ======================================== */
.sol-contact {
    position: relative;
    background: var(--white);
    padding: 80px 0;
}

.sol-contact-inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}

.sol-contact-inner h3 {
    font-size: clamp(26px, 2.5vw, 34px);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.33;
}

.sol-contact-inner > p {
    font-size: 22px;
    font-weight: 400;
    color: #6b7275;
    margin-bottom: 36px;
    line-height: 1.5;
}

.sol-form .sol-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.sol-form .sol-form-group {
    display: flex;
    flex-direction: column;
}

.sol-form .sol-form-group.full-width {
    grid-column: 1 / -1;
}

.sol-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.sol-form input,
.sol-form select,
.sol-form textarea {
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.sol-form input:focus,
.sol-form select:focus,
.sol-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.sol-form textarea {
    resize: vertical;
    min-height: 120px;
}

.sol-submit-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent);
    color: var(--white);
    border: 2px solid var(--accent);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: inherit;
}

.sol-submit-btn:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Ultra-wide (2K+) */
@media (min-width: 1920px) {
    .sol-hero {
        min-height: 55vh;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .sol-hero {
        margin-top: 70px;
        min-height: 45vh;
        padding-bottom: 36px;
    }

    .sol-intro {
        margin: 0;
        width: auto;
    }

    .sol-hero-content {
        margin: 0;
        padding: 0 24px;
    }

    .sol-hero-title {
        font-size: clamp(34px, 6vw, 46px);
    }

    .sol-hero-label {
        font-size: 20px;
    }

    .sol-intro {
        padding: 0 0 60px;
    }

    .sol-intro-inner,
    .sol-text-inner,
    .sol-tabs-inner,
    .sol-related-inner,
    .sol-faq-inner,
    .sol-contact-inner {
        margin: 0;
        max-width: 100%;
        padding: 0 24px;
    }

    .sol-intro-subtitle {
        font-size: clamp(26px, 4vw, 36px);
    }

    .sol-intro-text {
        font-size: 20px;
    }

    .sol-text-inner h2 {
        font-size: clamp(24px, 4vw, 32px);
    }

    .sol-text-inner p,
    .sol-text-inner ul li {
        font-size: 18px;
    }

    .sol-tab-panel p {
        font-size: 18px;
    }

    .sol-related-inner h2,
    .sol-faq-inner h2 {
        font-size: clamp(24px, 4vw, 32px);
    }

    .sol-related-inner p {
        font-size: 18px;
    }

    .sol-contact-inner > p {
        font-size: 18px;
    }

    .sol-text-section {
        padding: 60px 0;
    }

    .sol-gallery {
        padding: 60px 0;
    }

    .sol-gallery::before {
        width: 50%;
        height: 400px;
        top: 30px;
    }

    .sol-gallery-nav {
        right: 10px;
    }

    .sol-gallery-track {
        margin-left: 24px;
        padding-right: 80px;
        gap: 20px;
    }

    .sol-gallery-slide {
        width: 45%;
        min-width: 260px;
    }

    .sol-gallery-plus {
        display: none;
    }

    .sol-tabs {
        padding: 60px 0;
    }

    .sol-tab-btn {
        font-size: 16px;
        padding: 14px 20px;
    }

    .sol-related,
    .sol-faq,
    .sol-contact {
        padding: 60px 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .sol-hero {
        min-height: 40vh;
        padding-bottom: 28px;
    }

    .sol-hero-content {
        margin: 0;
        padding: 0 20px;
    }

    .sol-hero-label {
        font-size: 18px;
    }

    .sol-hero-title {
        font-size: clamp(30px, 8vw, 40px);
    }

    .sol-intro {
        padding: 0 0 50px;
    }

    .sol-intro-inner,
    .sol-text-inner,
    .sol-tabs-inner,
    .sol-related-inner,
    .sol-faq-inner,
    .sol-contact-inner {
        margin: 0;
        padding: 0 20px;
    }

    .sol-intro-subtitle {
        font-size: 24px; /* aqua mobiel */
    }

    .sol-intro-text {
        font-size: 18px;
    }

    .sol-text-section {
        padding: 50px 0;
    }

    .sol-text-inner h2,
    .sol-related-inner h2,
    .sol-faq-inner h2 {
        font-size: 28px; /* aqua mobiel */
    }

    .sol-text-inner p,
    .sol-text-inner ul li,
    .sol-related-inner p,
    .sol-tab-panel p,
    .sol-contact-inner > p {
        font-size: 18px; /* aqua mobiel */
    }

    .sol-gallery {
        padding: 40px 0 60px;
    }

    .sol-gallery::before {
        display: none;
    }

    .sol-gallery-nav {
        position: static;
        flex-direction: row;
        gap: 0;
        margin-left: 20px;
        margin-bottom: 16px;
    }

    .sol-gallery-track {
        margin-left: 20px;
        padding-right: 60px;
        gap: 16px;
    }

    .sol-gallery-slide {
        width: 75vw;
        max-width: 340px;
    }

    .sol-gallery-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .sol-tabs {
        padding: 50px 0;
    }

    .sol-tabs-header {
        flex-wrap: wrap;
        gap: 0;
    }

    .sol-tab-btn {
        font-size: 15px;
        padding: 12px 16px;
    }

    .sol-tab-panel h3 {
        font-size: 22px;
    }

    .sol-faq-question {
        font-size: 17px;
    }

    .sol-contact-inner h3 {
        font-size: 24px;
    }

    .sol-form .sol-form-row {
        grid-template-columns: 1fr;
    }

    .sol-related,
    .sol-faq,
    .sol-contact {
        padding: 50px 0;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .sol-hero {
        min-height: 35vh;
        padding-bottom: 20px;
    }

    .sol-hero-content {
        margin: 0;
        padding: 0 16px;
    }

    .sol-hero-label {
        font-size: 16px;
    }

    .sol-hero-title {
        font-size: clamp(26px, 8vw, 34px);
    }

    .sol-gallery-slide {
        width: 80vw;
        max-width: 300px;
    }

    .sol-tab-btn {
        font-size: 14px;
        padding: 10px 12px;
    }
}

/* CTA-knop in tekstblokken (uit Site.docx: [Knop: ...]) */
.sol-cta-knop {
    display: inline-block;
    background: var(--accent);
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 4px;
    margin-top: 8px;
    transition: background 0.3s ease;
}

.sol-cta-knop:hover { background: var(--accent-dark, #b8030d); }
