/* =============================================
   Index — Hero, Diensten, Accordion, Remote,
   Info Bar
   ============================================= */

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 720px;
    margin-top: -4.5rem;
    padding-top: 4.5rem;
    background-image: url(../img/shop-front-small.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 21, 38, 0.75) 55%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 7rem 0;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-actions a {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.25rem;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s, border-color 0.2s;
    display: inline-flex;
    align-items: center;
}

.btn-primary {
    background: #FFB61B;
    color: #1a1a2e;
}

.btn-primary:hover {
    background: #e6a314;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
    animation: heroFadeUp 0.7s ease both;
    animation-delay: 0.05s;
}

.hero-content p {
    animation: heroFadeUp 0.7s ease both;
    animation-delay: 0.22s;
}

.hero-actions {
    animation: heroFadeUp 0.7s ease both;
    animation-delay: 0.4s;
}

/* ---------- Diensten Section ---------- */
.diensten {
    padding: 5rem 0 6rem;
    background: #f7f8fc;
}

/* ---------- Services Accordion ---------- */
.diensten-accordion-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.accordion-list {
    border: 1.5px solid #eeeff5;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.acc-item {
    border-bottom: 1px solid #eeeff5;
}

.acc-item:last-child {
    border-bottom: none;
}

.acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: none;
    border: none;
    padding: 1.1rem 1.3rem;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s;
}

.acc-trigger:hover,
.acc-item.is-open .acc-trigger {
    background: #fffbf0;
}

.acc-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #fff8e6;
    color: #FFB61B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    border: 1.5px solid #ffe9a0;
}

.acc-icon--img {
    padding: 0.3rem;
}

.acc-icon--img img {
    height: 18px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.acc-title {
    flex: 1;
    font-size: 0.97rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

.acc-chevron {
    color: #c0c0d0;
    font-size: 0.8rem;
    transition: transform 0.3s ease, color 0.2s;
    flex-shrink: 0;
}

.acc-item.is-open .acc-chevron {
    transform: rotate(180deg);
    color: #FFB61B;
}

.acc-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    padding: 0 1.3rem;
}

.acc-body p {
    font-size: 0.93rem;
    color: #5a5a7a;
    line-height: 1.75;
    padding: 0.75rem 0 1.2rem;
    border-top: 1px solid #f3f3f7;
    margin: 0;
}

.acc-item.is-open .acc-body {
    max-height: 999px;
}

.accordion-photo {
    position: sticky;
    top: 6rem;
}

.accordion-photo img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: opacity 0.18s ease;
}

.accordion-photo img.is-changing {
    opacity: 0.25;
}

/* ---------- Remote / TeamViewer Section ---------- */
.remote {
    background: #0D1626;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.remote::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(145, 189, 255, 0.28) 0%, transparent 70%);
    pointer-events: none;
}

.remote-header {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 3rem;
}

.remote-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 182, 27, 0.15);
    color: #FFB61B;
    border: 1px solid rgba(255, 182, 27, 0.4);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.85rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}

.remote-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.85rem;
    line-height: 1.25;
}

.remote-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.7;
}

.remote-body {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.remote-call-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #FFB61B;
    color: #1a1a2e;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 8px 32px rgba(255, 182, 27, 0.25);
}

.remote-call-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 182, 27, 0.4);
}

.remote-call-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.remote-call-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    margin-bottom: 0.2rem;
}

.remote-call-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.remote-call-sub {
    display: block;
    font-size: 0.82rem;
    margin-top: 0.3rem;
    opacity: 0.65;
}

.remote-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.remote-divider::before,
.remote-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.remote-dl-label {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: center;
}

.remote-dl-label strong {
    color: rgba(255, 255, 255, 0.85);
}

.remote-dl-alt {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.remote-dl-alt a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.remote-dl-alt a:hover {
    color: #fff;
}

.remote-dl-alt i {
    font-size: 0.8rem;
}

.remote-dl-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.remote-downloads {
    display: flex;
    flex-direction: column;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    max-width: 100%;
}

.download-btn i {
    font-size: 2rem;
    flex-shrink: 0;
}

.download-btn strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.download-btn small {
    opacity: 0.65;
    font-size: 0.8rem;
}

.download-btn.windows,
.download-btn.mac {
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.download-btn.windows:hover,
.download-btn.mac:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* ---------- Info Bar ---------- */
.info-bar {
    background: #f7f8fc;
    padding: 3.5rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item > i {
    font-size: 1.5rem;
    color: #FFB61B;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.info-item h2 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.info-item p {
    font-size: 0.92rem;
    color: #5a5a7a;
    line-height: 1.6;
}

.info-item a {
    color: #8a6000;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 6px;
    margin: 0 -6px;
}

.info-item a:hover {
    text-decoration: underline;
}

/* =============================================
   Responsive — Index Page
   ============================================= */

@media (max-width: 1024px) {
    .remote-dl-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Hero */
    .hero {
        margin-top: -3.75rem;
        padding-top: 3.75rem;
        padding-bottom: 1rem;
        min-height: auto;
    }

    .hero-overlay {
        background: linear-gradient(160deg, rgba(30, 22, 10, 0.88) 0%, rgba(30, 22, 10, 0.65) 100%);
    }

    .hero-content {
        padding: 4.5rem 0 4rem;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.7rem;
        margin-bottom: 1.1rem;
        padding-top: 1rem;
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.75rem;
        color: rgba(255, 255, 255, 0.85);
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content p br {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        margin-bottom: 2rem;
    }

    .hero-actions a {
        text-align: center;
        justify-content: center;
        padding: 0.7rem 1.25rem;
        font-size: 0.9rem;
        width: 80%;
    }

    /* Diensten */
    .diensten {
        padding: 3rem 0;
    }

    .diensten-accordion-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .accordion-photo {
        position: static;
        order: -1;
    }

    .accordion-photo img {
        aspect-ratio: 16 / 9;
    }

    /* Remote */
    .remote {
        display: block;
        padding: 3rem 0;
    }

    .remote-header p,
    .remote-divider,
    .remote-downloads {
        display: none;
    }

    .remote-call-number {
        font-size: 1.6rem;
    }

    .remote-call-cta {
        padding: 1.5rem;
    }

    /* Info bar */
    .info-bar {
        padding: 2.5rem 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-item {
        padding-bottom: 1.25rem;
        border-bottom: 1px solid #e2e4ea;
        align-items: center;
        text-align: center;
    }

    .info-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 400px) {
    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-actions a {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
    }

    .download-btn {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }

    .download-btn i {
        font-size: 2rem;
    }

    .download-btn strong {
        font-size: 1rem;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
}
