
:root {
    /* Warm color palette */
    --bg: #fff8f0; /* light warm beige background */
    --text: #3b2f2f; /* soft dark brown for text */
    --muted: #7a5a4f; /* muted warm brown */
    --navy: #a65a2f; /* warm brown-orange for accents */
    --card: #ffffff; /* cards stay white but with warm shadows */
    --line: #f2e6df;
    --shadow: 0 16px 40px rgba(150, 110, 85, 0.15);
    --shadow-sm: 0 10px 25px rgba(150, 110, 85, 0.10);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;

    --wa: #ff7a45; /* warm orange for WhatsApp / CTA */
    --wa-hover: #ff6b2c;

    --btn-dark: rgba(255, 255, 255, 0.12);
    --btn-dark-hover: rgba(255, 255, 255, 0.22);

    --section-pad: clamp(56px, 7vw, 92px);
    --container-max: 1140px;
}


html, body {
    height: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
}

/* Navbar */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 245, 235, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(242, 230, 223, 0.8);
}

.nav-inner {
    height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand-mark {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-image: url('https://cdn.4b.is/techlabs.4bis.co/cdn/4bis-nl/public/uploads/2026-01/yzi6WmBNUVcjUulY.png');
    border-radius: 14px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    opacity: 0.85;
}

.nav-links a:hover {
    opacity: 1;
}

.btn-wa {
    background: var(--wa);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 11px 16px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 14px 30px rgba(255, 122, 69, 0.25);
}

.btn-wa:hover {
    background: var(--wa-hover);
}

/* HERO */
.hero {
    position: relative;
    min-height: 560px;
    background: linear-gradient(135deg, #ffecd1, #ffd2a6);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffecd1, #ffd2a6);
url("YOUR_HERO_IMAGE.jpg");
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    filter: saturate(1.05);
}

.hero-content {
    position: relative;
    padding: 88px 0 78px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #d97706;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.02em;
}

.dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #fff3e8;
    box-shadow: 0 14px 30px rgba(255, 122, 69, 0.25);
}

.hero h1 {
    margin-top: 16px;
    color: #3b2f2f;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.06;
    font-size: clamp(34px, 4.2vw, 52px);
    max-width: 620px;
}

.hero p {
    margin-top: 14px;
    color: #5a4238;
    max-width: 560px;
    font-size: 15px;
    line-height: 1.6;
}

.hero-actions {
    margin-top: 22px;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-hero-wa,
.btn-hero-beschikbaarheid {
    background: var(--wa);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 14px 30px rgba(255, 122, 69, 0.25);
}

.btn-hero-wa:hover {
    background: var(--wa-hover);
    color: #fff;
}

.btn-hero-ghost {
    background: var(--wa);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 800;
    font-size: 14px;
}

.btn-hero-ghost:hover {
    background: var(--wa-hover);
    color: #fff;
}

.hero-badges {
    margin-top: 18px;
    gap: 18px;
    color: #5a4238;
    font-size: 12px;
    font-weight: 700;
    flex-wrap: wrap;
}

.badge-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.badge-ic {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    background: rgba(255, 175, 120, 0.2);
    border: 1px solid rgba(255, 175, 120, 0.4);
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Sections */
.section {
    padding: var(--section-pad) 0;
    background: transparent;
}

.section-white {
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 34px;
}

.section-title .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d97706;
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 11px;
    text-transform: uppercase;
}

.section-title h2 {
    margin: 10px 0 0;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #3b2f2f;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.12;
}

.section-title p {
    margin: 10px auto 0;
    max-width: 640px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Benefit layout (image left, bullets right) */
.panel {
    border-radius: var(--radius-lg);
    background: #fffdf9;
    box-shadow: var(--shadow);
    border: 1px solid rgba(242, 230, 223, 0.8);
}

.panel-img {
    min-height: 290px;
    height: 100%;
    border-start-start-radius: 14px;
    border-end-start-radius: 14px;
    border-right-radius: 14px;

    background-color: #0b1326;
    background-image: url("https://cdn.4b.is/techlabs.4bis.co/cdn/4bis-nl/public/uploads/2026-01/7_bCZgHeAbibIJ5l.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 480px) {
    .panel-img {
        border-start-start-radius: 14px;
        border-start-end-radius: 14px;
        border-end-start-radius: 0;
    }
}

.panel-pad {
    padding: 26px;
}

.bullet {
    display: flex;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(230, 234, 242, 0.9);
    background: #fff;
    box-shadow: 0 10px 20px rgba(14, 25, 45, 0.05);
}

.bullet + .bullet {
    margin-top: 12px;
}

.bullet-ic {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #ffe9d6;
    border: 1px solid rgba(255, 175, 120, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.bullet-ic i {
    font-size: 18px;
    line-height: 1;
    color: #d97706;
}

.bullet h4 {
    margin: 1px 0 4px;
    font-size: 14px;
    font-weight: 900;
    color: #3b2f2f;
    letter-spacing: -0.01em;
}

.bullet p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
}

/* Replace your old .test-grid gap approach */
.test-grid { /* no gap here when using Bootstrap row */
}

/* Make Bootstrap dots look like your 7px circles */
.carousel-indicators {
    gap: 8px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background-color: #cbd5e1;
    opacity: 1;
    border: 0;
}

.carousel-indicators .active {
    background: #f59e0b;
}

/* Optional: remove sliding animation if you want "snap" cycling */
.carousel-item {
    transition: transform 600ms ease;
}


.t-card {
    border-radius: var(--radius-lg);
    background: #fffdf9;
    border: 1px solid rgba(242, 230, 223, 0.9);
    padding: 22px;
    height: 100%;
}

.stars {
    letter-spacing: 2px;
    color: #f59e0b;
    font-weight: 900;
    font-size: 12px;
}

.t-quote {
    margin-top: 10px;
    color: #334155;
    font-size: 14px;
    line-height: 1.7;
}

.t-name {
    margin-top: 14px;
    font-weight: 900;
    color: #0b1b3a;
    font-size: 13px;
}

.t-meta {
    margin-top: 2px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

/* Services */
.svc-card {
    border-radius: 18px;
    background: #fffdf9;
    border: 1px solid rgba(242, 230, 223, 0.9);
    box-shadow: var(--shadow-sm);
    padding: 18px;
    height: 100%;
}

.svc-ic {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #ffe9d6;
    border: 1px solid rgba(255, 175, 120, 0.3);

    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-ic i {
    font-size: 22px;
    line-height: 1;
    color: #d97706;
}

.svc-title {
    margin: 12px 0 6px;
    font-weight: 900;
    color: #3b2f2f;
    letter-spacing: -0.01em;
    font-size: 14px;
}

.svc-text {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.svc-media {
    border-radius: 18px;
    background-color: #fff3e8;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    aspect-ratio: 4 / 3;
}

@media (max-width: 480px) {
    .svc-media {
        border-radius: 18px;
        background-color: #fff3e8;
        background-repeat: no-repeat;
        background-position: center;
    }
}

/* Steps */
.steps-wrap {
    border-radius: var(--radius-lg);
    background: #fff3e8;
    border: 1px solid rgba(255, 175, 120, 0.2);
    padding: 34px 22px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 12px;
}

.step-badge {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #fff3e8;
    border: 1px solid rgba(255, 175, 120, 0.2);
    box-shadow: 0 10px 20px rgba(14, 25, 45, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #d97706;
    font-size: 12px;
    flex: 0 0 auto;
}

.step h4 {
    margin: 2px 0 4px;
    font-size: 14px;
    font-weight: 900;
    color: #3b2f2f;
}

.step p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

/* Bottom CTA */
.cta {
    background: #ff9c6e;
    color: #3b2f2f;
    padding: 64px 0;
}

.cta h3 {
    font-weight: 900;
    color: #3b2f2f;
    letter-spacing: -0.03em;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.12;
    margin: 0;
}

.cta p {
    color: #5a4238;
    margin: 10px 0 0;
    max-width: 520px;
    font-size: 14px;
    line-height: 1.7;
}

.cta-panel {
    padding: 18px;
}

.cta-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255, 175, 120, 0.2);
    background: #fff3e8;
}

.cta-item + .cta-item {
    margin-top: 10px;
}

.cta-ic {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-ic i {
    font-size: 18px;
    line-height: 1;
    padding-left: 2px;
    color: rgba(255, 255, 255, 0.92);
}


.cta-item h5 {
    margin: 2px 0 2px;
    font-weight: 900;
    font-size: 13px;
}

.cta-item div {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #a65a2f;
    color: #fff7f0;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: 600;
}

.btn-wa,
.btn-hero-wa {
    background-color: #25D366 !important;
    color: #fff !important;
    border-color: #25D366 !important;
}

.btn-wa:hover,
.btn-hero-wa:hover {
    background-color: #1ebe57 !important;
    border-color: #1ebe57 !important;
}


.btn-hero-beschikbaarheid {
    background-color: #2570d3 !important;
    color: #fff !important;
    border-color: #2542d3 !important;
}

.cta-item i.bi-whatsapp {
    all: unset;
    color: #d97706;
    font-size: 22px;
}

/* Small tweaks */
.muted {
    color: var(--muted);
}

.w-max-640 {
    max-width: 640px;
}

@media (max-width: 991.98px) {
    .nav-links {
        display: none !important;
    }

    .hero-content {
        padding: 72px 0 66px;
    }

    .panel-pad {
        padding: 20px;
    }

    .about-pad {
        padding: 22px;
    }
}

.slot-btn {
    background: #4caf50;
    color: #ffffff;
}

.slot-btn:hover {
    background: #4caf50;
}
