/* ═══════════════════════════════════════════════════════
   BLOM DUURZAAM ADVIES — Premium One-Page Website
   Design System & Styles
   ═══════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
    /* Colors — Custom Orange Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #f7f9fc;
    --bg-tertiary: #eff2f6;
    --bg-card: #ffffff;
    --bg-card-hover: #fcfcfd;
    --bg-glass: rgba(255, 255, 255, 0.9);

    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;

    --accent-start: #c2410c;
    /* Orange 700 */
    --accent-mid: #f97316;
    /* Orange 500 */
    --accent-end: #fb923c;
    /* Orange 400 */
    --accent-alt: #fdba74;
    /* Orange 300 */

    --gradient-primary: linear-gradient(135deg, var(--accent-start), var(--accent-mid));
    --gradient-text: linear-gradient(135deg, #c2410c, #f97316, #fb923c);
    --gradient-glow: linear-gradient(135deg, rgba(194, 65, 12, 0.4), rgba(249, 115, 22, 0.4));

    --border-subtle: rgba(15, 23, 42, 0.1);
    --border-accent: rgba(249, 115, 22, 0.3);

    /* Spacing */
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-max: 1200px;
    --container-padding: clamp(1.5rem, 4vw, 3rem);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(13, 148, 136, 0.15);

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-start) var(--bg-primary);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(13, 148, 136, 0.4);
    color: #fff;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-start);
    border-radius: 3px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-end);
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 100px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .section-desc {
    margin: 0 auto;
}

.inline-link {
    color: var(--accent-end);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}

.inline-link:hover {
    color: var(--accent-mid);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ── Navigation ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled .nav-logo {
    font-size: 1.3rem;
}

.logo-icon {
    color: var(--accent-mid);
    display: flex;
    align-items: center;
    animation: pulse-glow 3s ease-in-out infinite;
}

.logo-svg {
    width: 250px;
    height: auto;
    max-height: 80px;
    color: var(--accent-start);
    transition: all 0.4s var(--ease-out);
}

.navbar.scrolled .logo-svg {
    width: 170px;
}

.logo-accent {
    color: var(--accent-end);
    font-weight: 600;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 4px rgba(20, 184, 166, 0.3));
    }

    50% {
        opacity: 0.8;
        filter: drop-shadow(0 0 12px rgba(20, 184, 166, 0.6));
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: width 0.3s var(--ease-out);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

/* ── Hero Section ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 0 2rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(247, 249, 252, 0.65) 0%, rgba(200, 215, 230, 0.55) 100%);
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -50px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(40px, 30px) scale(1.02);
    }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 820px;
    padding: 0 var(--container-padding);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--accent-end);
    margin-bottom: 2rem;
    animation: fadeInDown 1s var(--ease-out) 0.2s both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    box-shadow: 0 0 8px rgba(52, 211, 153, 0.5);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s var(--ease-out) 0.4s both;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInDown 1s var(--ease-out) 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInDown 1s var(--ease-out) 0.8s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    animation: fadeInUp 1s var(--ease-out) 1s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-mid);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.stat-divider::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    animation: scrollDown 2s ease-in-out infinite;
}


@keyframes scrollDown {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* ── Animations ── */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── About Section ── */
.about {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.value {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 148, 136, 0.1);
    border-radius: var(--radius-sm);
    color: var(--accent-end);
    font-size: 0.85rem;
}

.value h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.value p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-card {
    padding: 1.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.5s var(--ease-out);
}

.about-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.about-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    color: var(--accent-end);
}

.about-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.footer-address {
    color: var(--text-secondary);
    margin-top: 0.5rem;
    display: block;
}

.legal-link {
    color: var(--text-secondary);
    transition: color 0.3s;
    font-size: 0.9rem;
    text-decoration: none;
}

.legal-link:hover {
    color: var(--accent-end);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Services / Werkwijze Section ── */
.services {
    padding: var(--section-padding) 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.5s var(--ease-out);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    color: var(--accent-end);
    transition: all 0.4s var(--ease-out);
}

.service-card:hover .service-icon {
    background: rgba(13, 148, 136, 0.2);
    border-color: rgba(13, 148, 136, 0.3);
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    transition: color 0.4s;
}

.service-card:hover .service-number {
    color: rgba(63, 105, 170, 0.08);
}

/* ── Pricing / Tarieven Section ── */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    position: relative;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    transition: all 0.5s var(--ease-out);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    /* Subtiel */
    z-index: 0;
    transition: all 0.6s var(--ease-out);
    filter: saturate(0.8) brightness(1.2);
}

.pricing-card:hover .pricing-card-bg {
    opacity: 0.2;
    transform: scale(1.1);
    filter: saturate(1) brightness(1.1);
}

.pricing-card-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.pricing-popular {
    border-color: var(--accent-start);
    background: rgba(13, 148, 136, 0.04);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 0 var(--radius-xl) 0 var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header h3 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
}

.pricing-size {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-price {
    padding: 1.5rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
}

.price-prefix {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-right: 0.35rem;
}

.price-currency {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-end);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pricing-features li svg {
    color: var(--accent-end);
    flex-shrink: 0;
}

/* ── Testimonials / Reviews Section ── */
.testimonials {
    padding: var(--section-padding) 0;
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    transition: all 0.5s var(--ease-out);
}

.testimonial-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    height: 105px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    cursor: help; /* Cursor geeft aan dat er tooltip hulp is */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── Testimonial Carousel / Slider ── */
.testimonial-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.testimonial-slider-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll-left-reviews 35s linear infinite;
}

.testimonial-slider-track:hover {
    animation-play-state: paused;
}

.testimonial-slider-track .testimonial-card {
    width: 380px;
    flex-shrink: 0;
}

@keyframes scroll-left-reviews {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 0.75rem)); /* Halve breedte van de track (inclusief halve gap offset) */
    }
}

@media (max-width: 768px) {
    .testimonial-slider-track .testimonial-card {
        width: 300px;
    }
    @keyframes scroll-left-reviews {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 0.75rem));
        }
    }
}

/* ── FAQ Section ── */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-tertiary);
    position: relative;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s var(--ease-out);
}

.faq-item:hover,
.faq-item.active {
    border-color: var(--border-accent);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.08);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-mid);
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon .line-h,
.faq-icon .line-v {
    position: absolute;
    background-color: var(--accent-mid);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out);
}

.faq-icon .line-h {
    width: 16px;
    height: 2px;
}

.faq-icon .line-v {
    width: 2px;
    height: 16px;
}

.faq-item.active .faq-icon .line-v {
    transform: rotate(90deg);
}

.faq-item.active .faq-icon .line-h {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: var(--accent-start);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer .faq-list {
    margin: -0.5rem 1.5rem 1.5rem 3rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    list-style: disc;
}

.faq-answer .faq-list li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.faq-answer .faq-list li strong {
    color: var(--text-primary);
}

/* ── Contact Section ── */
.contact {
    padding: var(--section-padding) 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.3s;
}

a.contact-item:hover {
    color: var(--accent-end);
}

.contact-item svg {
    color: var(--accent-end);
    flex-shrink: 0;
}

.contact-kvk {
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

.contact-kvk p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── Contact Form ── */
.contact-form-wrapper {
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-out);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-start);
    box-shadow: 0 0 0 3px rgba(63, 105, 170, 0.15);
    background: #ffffff;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235f7875' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn-primary {
    margin-top: 0.5rem;
    padding: 1rem;
    font-size: 1rem;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}

.form-disclaimer a {
    color: var(--text-secondary);
    text-decoration: underline;
    transition: color 0.3s;
}

.form-disclaimer a:hover {
    color: var(--accent-end);
}

/* ── Footer ── */
.footer {
    background: var(--bg-secondary);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.75rem;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.footer-col a,
.footer-address {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--accent-end);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ── Scroll To Top ── */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-out);
    box-shadow: 0 4px 20px rgba(63, 105, 170, 0.3);
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(63, 105, 170, 0.5);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--border-subtle);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        padding: 0 1rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .logo-svg {
        width: 180px;
    }

    .navbar.scrolled .logo-svg {
        width: 150px;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .nav-logo {
        font-size: 1.05rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.75rem;
    }

    .contact-form-wrapper {
        padding: 1.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .scroll-top-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 42px;
        height: 42px;
    }
}

/* ══════════════════════════════════════════════════════════
   BOEKING POPUP MODAL
   ══════════════════════════════════════════════════════════ */

/* ── Overlay ── */
.boeking-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: overlayIn 0.25s var(--ease-out) both;
}

.boeking-overlay.actief {
    display: flex;
}

@keyframes overlayIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ── Modal venster ── */
.boeking-modal {
    position: relative;
    display: flex;
    background: #fff;
    border-radius: var(--radius-xl);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22);
    max-width: 860px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    animation: modalIn 0.35s var(--ease-spring) both;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ── Sluit knop ── */
.boeking-sluit {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 100;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(15, 23, 42, 0.07);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.boeking-sluit:hover {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

/* ── Linker infopaneel ── */
.boeking-info {
    width: 240px;
    flex-shrink: 0;
    padding: 36px 28px;
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.boeking-logo-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
}

.boeking-logo-wrapper svg {
    height: 60px;
    width: auto;
}

.boeking-bedrijf {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.boeking-duur {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    padding: 6px 14px;
    width: fit-content;
}

.boeking-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 10px 12px;
    background: rgba(249, 115, 22, 0.06);
    border-left: 3px solid var(--accent-mid);
    border-radius: 0 6px 6px 0;
}

.boeking-note-extra {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 10px 12px;
    background: rgba(249, 115, 22, 0.03);
    border-left: 3px solid var(--accent-end);
    border-radius: 0 6px 6px 0;
}

.boeking-samenvatting {
    background: #fff;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    padding: 14px;
}

.boeking-samenvatting-datum {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.boeking-samenvatting-tijd {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-start);
}

/* ── Rechter stappenpaneel ── */
.boeking-stappen {
    flex: 1;
    overflow-y: auto;
    padding: 64px 32px 32px;
    min-height: 500px;
}

.boeking-stap {
    animation: stapIn 0.25s var(--ease-out) both;
}

@keyframes stapIn {
    from {
        opacity: 0;
        transform: translateX(12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── Terug knop ── */
.boeking-terug {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: none;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-bottom: 20px;
    font-family: var(--font-body);
    transition: color 0.2s;
}

.boeking-terug:hover {
    color: var(--accent-start);
}

.stap-titel {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-subtle);
}

/* ── Kalender ── */
.boeking-kalender-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 8px;
}

.kal-maand-jaar {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    flex: 1;
    text-align: center;
}

.kal-nav-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-subtle);
    background: #fff;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.kal-nav-btn:hover:not(:disabled) {
    border-color: var(--accent-mid);
    color: var(--accent-start);
}

.kal-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.kal-vandaag {
    padding: 6px 14px;
    border: 1px solid var(--border-subtle);
    background: #fff;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.kal-vandaag:hover {
    border-color: var(--accent-mid);
    color: var(--accent-start);
}

.kal-dagnamen {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 8px;
}

.kal-dagnamen span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 0;
}

.kal-dagnamen .kal-weekend {
    color: #cbd5e1;
}

.kal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.kal-dag {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    background: none;
    font-family: var(--font-body);
    color: var(--text-primary);
}

.kal-dag.leeg {
    cursor: default;
}

.kal-dag.beschikbaar {
    color: var(--accent-start);
    border-color: var(--border-accent);
}

.kal-dag.beschikbaar:hover {
    background: var(--accent-start);
    border-color: var(--accent-start);
    color: #fff;
    transform: scale(1.05);
}

.kal-dag.vandaag-dag {
    background: rgba(249, 115, 22, 0.1);
}

.kal-dag.geselecteerd {
    background: var(--gradient-primary) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(194, 65, 12, 0.35);
}

.kal-dag.niet-beschikbaar {
    background: #f1f5f9;
    color: #cbd5e1;
    cursor: not-allowed;
    border-color: transparent;
}

.kal-dag.ander-maand {
    color: #e2e8f0;
    cursor: default;
}

/* ── Tijdsloten ── */
.tijdsloten-lijst {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 4px;
}

.tijdslot-btn {
    width: 100%;
    padding: 13px 20px;
    border: 2px solid var(--border-subtle);
    background: #fff;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
    text-align: center;
}

.tijdslot-btn:hover {
    border-color: var(--accent-mid);
    color: var(--accent-start);
    background: rgba(249, 115, 22, 0.04);
    transform: translateX(4px);
}

.tijdslot-btn:disabled,
.tijdslot-btn.bezet {
    background: #f1f5f9;
    color: #94a3b8;
    border-color: #e2e8f0;
    cursor: not-allowed;
    transform: none !important;
    font-weight: 500;
}

.tijdslot-btn.bezet:hover {
    border-color: #e2e8f0;
    color: #94a3b8;
    background: #f1f5f9;
    transform: none;
}

.tijdslot-laad,
.tijdslot-leeg {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.tijdslot-laad::before {
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    border: 3px solid var(--border-subtle);
    border-top-color: var(--accent-mid);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto 12px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ── Formulier stap 3 ── */
.boeking-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-rij {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-groep {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.form-groep label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.verplicht {
    color: var(--accent-mid);
}

.form-groep input,
.form-groep select {
    padding: 10px 14px;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text-primary);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

.form-groep input:focus,
.form-groep select:focus {
    outline: none;
    border-color: var(--accent-mid);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.boeking-verstuur {
    margin-top: 8px;
}

.boeking-fout {
    background: #fee2e2;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

/* ── Bevestiging stap 4 ── */
.boeking-bevestigd {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 16px;
    gap: 16px;
}

.bevestigd-vinkje {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
    animation: vinkjeIn 0.5s var(--ease-spring) both;
}

@keyframes vinkjeIn {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.boeking-bevestigd h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-primary);
}

.bevestigd-detail {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
    width: 100%;
    max-width: 360px;
}

.bevestigd-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 320px;
}

/* ══════════════════════════════════════════════════════
   QUICK TOOLS BAR — Premium Glassmorphism
   ══════════════════════════════════════════════════════ */
.quick-tools {
    position: relative;
    padding: 1.25rem 0;
    background: rgba(247, 249, 252, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    z-index: 10;
    margin-top: -1px; /* Overlap border hero */
}

.quick-tools .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1.5rem, 5vw, 4rem);
    flex-wrap: wrap;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s var(--ease-out);
}

.tool-item:hover {
    transform: translateY(-1px);
}

.tool-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
}

.tool-item .btn-secondary {
    background: #fff;
    border: 1px solid var(--border-accent);
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    color: var(--accent-start);
    /* Permanente oranje gloed */
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.15), 0 0 0 1px rgba(249, 115, 22, 0.1);
    position: relative;
    overflow: hidden;
}

/* Shimmer effect animatie */
.tool-item .btn-secondary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    transform: rotate(30deg);
    transition: none;
    pointer-events: none;
}

.tool-item .btn-secondary:hover::after {
    left: 130%;
    transition: all 0.6s var(--ease-out);
}

.tool-item .btn-secondary:hover {
    border-color: var(--accent-mid);
    color: var(--accent-mid);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.25);
    transform: translateY(-3px) scale(1.02);
}

.tool-item .btn-secondary svg {
    transition: transform 0.4s var(--ease-spring);
}

.tool-item .btn-secondary:hover svg {
    transform: scale(1.2) rotate(-10deg);
}

.tool-divider {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, transparent, var(--border-subtle), transparent);
}

/* ── Lookup & Calc Popups (Shared Styles) ── */
.lookup-overlay,
.calc-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9500;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lookup-overlay.actief,
.calc-overlay.actief {
    display: flex;
}

.lookup-modal,
.calc-modal {
    background: #fff;
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 650px; /* Slightly wider for the header */
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalIn 0.3s var(--ease-out);
    scrollbar-width: thin;
    scrollbar-color: var(--accent-start) transparent;
}

.lookup-modal::-webkit-scrollbar,
.calc-modal::-webkit-scrollbar {
    width: 6px;
}

.lookup-modal::-webkit-scrollbar-thumb,
.calc-modal::-webkit-scrollbar-thumb {
    background-color: var(--accent-start);
    border-radius: 20px;
}

.lookup-modal h2,
.calc-modal h2 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* ── Premium Calculator Multi-step Styles ── */
.calc-view {
    animation: fadeIn 0.3s var(--ease-out);
}

.calculator-header {
    text-align: center;
    margin-bottom: 25px;
}

.tagline {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-mid);
    margin-bottom: 8px;
    font-weight: 700;
}

.calc-modal .main-title {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.usp-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.usp-item {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-secondary);
    padding: 6px 14px;
    border-radius: 100px;
}

.checkmark {
    color: #10b981;
    font-weight: bold;
}

.info-banner {
    display: flex;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
    background-color: #f0f9ff;
    border: 1px solid #bae6fd;
    padding: 18px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
}

.info-banner p {
    font-size: 0.9rem;
    color: #0369a1;
    line-height: 1.5;
    margin-bottom: 0;
}

.calc-modal .modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.calc-modal .modal-header h2 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.calc-modal .modal-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Premium Form Elements */
.calc-modal .form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.calc-modal .form-group input,
.calc-modal .form-group select {
    padding: 12px 16px;
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    background-position: right 14px center;
}

.calc-modal .form-group input:focus,
.calc-modal .form-group select:focus {
    border-color: var(--accent-mid);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

/* Result Area Enhancement */
.calc-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 900;
    min-width: 120px;
    height: 120px;
    border-radius: 50%;
    color: #fff;
    margin: 20px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.2);
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Lookup Results ── */
.lookup-res-card {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--border-subtle);
}

@media (max-width: 768px) {
    .quick-tools .container {
        gap: 1.5rem;
        flex-direction: column;
    }

    .tool-divider {
        display: none;
    }

    .lookup-modal,
    .calc-modal {
        padding: 1.5rem;
    }
}

/* ── Responsive popup ── */
@media (max-width: 680px) {
    .boeking-modal {
        flex-direction: column;
        max-height: 95vh;
        border-radius: var(--radius-lg);
    }

    .boeking-info {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
        padding: 20px 20px 16px;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .boeking-note {
        display: none;
    }

    .boeking-logo {
        display: none;
    }

    .boeking-stappen {
        padding: 64px 20px 20px;
        min-height: 0;
    }

    .form-rij {
        grid-template-columns: 1fr;
        gap: 0;
    }
}