@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ─── CSS Custom Properties ─────────────────────────────────── */
:root {
    --red:        #cc0000;
    --red-dark:   #990000;
    --black:      #0a0a0a;
    --gold:       #f59e0b;
    --gray-light: #f5f5f5;
    --white:      #ffffff;
    --shadow-sm:  0 2px 10px rgba(0,0,0,0.07);
    --shadow-md:  0 8px 28px rgba(0,0,0,0.11);
    --shadow-lg:  0 18px 48px rgba(0,0,0,0.15);
    --radius:     10px;
    --radius-lg:  16px;
    --transition: 0.28s ease;
}

/* ─── Reset & Base ──────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.65;
    color: #333;
    background-color: #f5f5f5;
}

img { max-width: 100%; height: auto; display: block; }

/* ─── Container ─────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

p { margin-bottom: 1rem; }

a {
    color: var(--red);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--red-dark); }

ul { list-style-position: inside; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: var(--black);
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 44px;
    height: 3px;
    background: var(--red);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* ─── Scroll Fade-In Animation ──────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--red);
    color: var(--white);
    padding: 13px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--red-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204,0,0,0.30);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background-color: #1da851;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.btn-secondary {
    background-color: rgba(255,255,255,0.13);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.28);
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.22);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: none;
}

/* ─── Top Bar ────────────────────────────────────────────────── */
.top-bar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background-color: #111;
    color: #eee;
    font-size: 0.85rem;
    z-index: 1001;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 7px;
    padding-bottom: 7px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-bar a { color: #f5d0d0; font-weight: 500; }
.top-bar a:hover { color: var(--white); }

/* Language Switcher */
.lang-switcher { display: flex; align-items: center; gap: 8px; }

.lang-icon { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

.lang-group {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 3px;
    gap: 2px;
}

.lang-btn {
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.62);
    padding: 4px 10px;
    border-radius: 16px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.76rem;
    letter-spacing: 0.4px;
    transition: all 0.22s ease;
    text-align: center;
    line-height: 1.4;
    font-family: inherit;
}

.lang-btn.active {
    background-color: var(--red);
    color: var(--white);
    box-shadow: 0 1px 6px rgba(204,0,0,0.45);
}

.lang-btn:hover:not(.active) {
    background: rgba(255,255,255,0.13);
    color: var(--white);
}

/* ─── Header ────────────────────────────────────────────────── */
header {
    background-color: var(--black);
    padding: 14px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 14px rgba(0,0,0,0.30);
    transition: padding var(--transition), background var(--transition);
}

header.scrolled {
    background-color: rgba(10,10,10,0.97);
    padding: 10px 0;
    backdrop-filter: blur(8px);
}

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

.logo { color: var(--white); font-size: 26px; font-weight: 800; letter-spacing: -0.5px; }
.logo span { color: var(--red); }

.main-menu { display: flex; list-style: none; align-items: center; }

.main-menu li { margin-left: 28px; }

.main-menu a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.88rem;
    position: relative;
    padding: 5px 0;
    letter-spacing: 0.2px;
}

.main-menu a::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    background-color: var(--red);
    bottom: 0; left: 0;
    transition: width var(--transition);
}

.main-menu a:hover { color: var(--white); }
.main-menu a:hover::after { width: 100%; }

.hamburger { display: none; flex-direction: column; cursor: pointer; gap: 5px; }

.hamburger span {
    width: 24px; height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

/* ─── Hero Section ──────────────────────────────────────────── */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.62), rgba(0,0,0,0.50)), url("images/hero.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-top: 110px;
    position: relative;
    text-align: center;
    padding: 60px 24px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 740px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(204,0,0,0.80);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 20px;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(4px);
}

.hero-badge i { font-size: 0.68rem; color: var(--gold); }

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 1px 2px 12px rgba(0,0,0,0.5);
    letter-spacing: -0.025em;
    line-height: 1.15;
}

.hero-sub {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.8rem;
    letter-spacing: 0.4px;
    opacity: 0.95;
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.88;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.80);
    letter-spacing: 0.2px;
}

.hero-trust i {
    color: #4ade80;
    margin-right: 4px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ─── Stats Strip ────────────────────────────────────────────── */
.stats-strip { background: var(--black); }

.stats-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: background var(--transition);
}

.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.03); }

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
}

.stat-label {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.50);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 500;
    text-align: center;
}

/* ─── Services Section ──────────────────────────────────────── */
.services { padding: 5rem 0; background-color: var(--white); }

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 26px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-img { height: 200px; overflow: hidden; }

.service-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.service-card:hover .service-img img { transform: scale(1.07); }

.service-info { padding: 20px 22px 24px; }

.service-info h3 {
    color: var(--black);
    margin-bottom: 8px;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-info h3 i {
    color: var(--red);
    font-size: 1rem;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
}

.service-info p {
    color: #666;
    font-size: 0.88rem;
    margin-bottom: 0;
    line-height: 1.65;
}

/* ─── Why Us Section ─────────────────────────────────────────── */
.why-us { padding: 5rem 0; background-color: #fafafa; }

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

.why-card {
    background-color: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border-top: 4px solid var(--red);
    transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.why-card-icon {
    width: 66px; height: 66px;
    background: rgba(204,0,0,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-card i { font-size: 1.7rem; color: var(--red); }

.why-card h3 { margin-bottom: 12px; font-size: 1.05rem; }

.why-card p { color: #666; font-size: 0.88rem; margin-bottom: 0; }

/* ─── Trusted Brands ─────────────────────────────────────────── */
.trusted-brands { padding: 4.5rem 0; background-color: var(--white); }

.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 22px;
}

.brand-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #f8f8f8;
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    cursor: default;
}

.brand-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background-color: var(--white);
}

.brand-box img { max-height: 56px; object-fit: contain; }

.brand-box span {
    font-size: 0.76rem;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* ─── Reviews Section ────────────────────────────────────────── */
.reviews { padding: 5rem 0; background: linear-gradient(160deg, #f8f8f8 0%, #efefef 100%); }

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

.review-card {
    background-color: var(--white);
    padding: 26px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: -6px; right: 18px;
    font-size: 5rem;
    color: rgba(204,0,0,0.06);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.reviewer-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-transform: uppercase;
}

.reviewer-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.reviewer-info small { font-size: 0.76rem; color: #aaa; }

.review-stars {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.review-card p { margin-bottom: 0; color: #555; font-size: 0.88rem; line-height: 1.68; }

.review-message { margin-bottom: 28px; font-size: 0.95rem; color: #666; text-align: center; }

.review-footer { margin-top: 36px; text-align: center; }

/* ─── Banden Section ─────────────────────────────────────────── */
.banden { padding: 5rem 0; background-color: #f5f5f5; }

.banden-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.banden-text h3 { color: var(--black); margin-bottom: 18px; font-size: 1.45rem; }

.banden-text ul { margin-bottom: 24px; list-style-type: none; padding-left: 0; }

.banden-text li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    color: #555;
    font-size: 0.93rem;
}

.banden-text li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
}

.banden-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ─── Over Ons Section ───────────────────────────────────────── */
.over-ons { padding: 5rem 0; background-color: var(--white); }

.over-ons-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.over-ons-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

.over-ons-image img { width: 100%; height: 420px; object-fit: cover; }

.over-ons-text h3 { color: var(--black); margin-bottom: 18px; font-size: 1.35rem; }

.over-ons-text ul { margin-bottom: 20px; list-style-type: none; padding-left: 0; }

.over-ons-text li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    color: #555;
    font-size: 0.93rem;
}

.over-ons-text li::before {
    content: '';
    position: absolute;
    left: 0; top: 8px;
    width: 8px; height: 8px;
    background: var(--red);
    border-radius: 50%;
}

/* ─── Contact Section ────────────────────────────────────────── */
.contact { padding: 5rem 0; background-color: #f5f5f5; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.contact-info,
.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
}

.location-map { grid-column: span 2; margin-top: 10px; }

.location-map h3 { color: var(--black); margin-bottom: 16px; }

.location-map iframe {
    border-radius: var(--radius-lg);
    display: block;
    border: 1px solid rgba(0,0,0,0.06);
}

.contact-info h3,
.contact-form h3 {
    color: var(--black);
    margin-bottom: 22px;
    font-size: 1.15rem;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--red);
    display: inline-block;
}

.contact-details { list-style: none; margin-bottom: 28px; }

.contact-details li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.contact-details i {
    width: 38px; height: 38px;
    background: rgba(204,0,0,0.08);
    color: var(--red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-details a { color: #333; font-weight: 500; }
.contact-details a:hover { color: var(--red); }

.openingstijden {
    margin-top: 22px;
    background: #f8f8f8;
    border-radius: var(--radius);
    padding: 18px 20px;
}

.openingstijden h4 {
    margin-bottom: 12px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #999;
    font-weight: 600;
}

.openingstijden table { width: 100%; }

.openingstijden td { padding: 6px 0; font-size: 0.9rem; color: #555; }

.openingstijden td:first-child { font-weight: 600; color: var(--black); }

/* ─── Footer ─────────────────────────────────────────────────── */
footer { background-color: var(--black); color: var(--white); padding: 4rem 0 0; }

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo p {
    margin-top: 12px;
    opacity: 0.55;
    font-size: 0.88rem;
    line-height: 1.65;
    max-width: 280px;
}

.footer-social { display: flex; gap: 10px; margin-top: 20px; }

.footer-social a {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.60);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.40);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 11px; }

.footer-links a {
    color: rgba(255,255,255,0.62);
    font-size: 0.88rem;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 11px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.62);
}

.footer-contact i { color: var(--red); width: 16px; flex-shrink: 0; }

.footer-contact a { color: rgba(255,255,255,0.62); }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    text-align: center;
    padding: 18px 0;
    color: rgba(255,255,255,0.30);
    font-size: 0.80rem;
    letter-spacing: 0.3px;
}

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .brand-grid { grid-template-columns: repeat(2, 1fr); }

    .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(1),
    .stat-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
}

@media (max-width: 992px) {
    .top-bar .container { flex-direction: column; text-align: center; gap: 8px; }

    .banden-info,
    .over-ons-content,
    .why-grid,
    .review-grid,
    .contact-grid { grid-template-columns: 1fr; }

    .banden-image, .over-ons-image { order: -1; }
    .location-map { grid-column: span 1; }

    .footer-content { grid-template-columns: 1fr 1fr; }
    .footer-logo { grid-column: span 2; }

    .why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .main-menu {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background-color: var(--black);
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }

    .main-menu.active { display: flex; }
    .main-menu li { margin: 8px 0; }
    .hamburger { display: flex; }

    .hero {
        min-height: 60vh;
        background-attachment: scroll;
        padding: 50px 20px;
    }

    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 0.95rem; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .hero-trust { flex-direction: column; align-items: center; gap: 8px; }

    .why-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-content { grid-template-columns: 1fr; }
    .footer-logo { grid-column: span 1; }

    .section-title { font-size: 1.7rem; }

    .contact-info, .contact-form { padding: 24px 22px; }
}

@media (max-width: 576px) {
    .service-grid, .brand-grid, .review-grid { grid-template-columns: 1fr; }

    .stats-strip .container { grid-template-columns: repeat(2, 1fr); }

    .hero h1 { font-size: 1.7rem; }
    .hero p { font-size: 0.88rem; }
    .why-grid { grid-template-columns: 1fr; }
    .promo-grid { grid-template-columns: 1fr; }
    .promo-card.featured { transform: none; }

    .top-bar .container { gap: 6px; }
    .section-title { font-size: 1.5rem; }
}

/* ─── Hero: Call Button ─────────────────────────────────────── */
.btn-call-hero {
    background-color: var(--white);
    color: var(--black);
    font-size: 1rem;
    padding: 15px 30px;
    font-weight: 700;
}

.btn-call-hero:hover {
    background-color: #f0f0f0;
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.25);
}

/* ─── Reviews btn override (dark bg) ───────────────────────── */
.btn-reviews {
    background-color: var(--red);
    color: var(--white);
    border: none;
}

.btn-reviews:hover {
    background-color: var(--red-dark);
    color: var(--white);
}

/* ─── Urgency CTA Strip ─────────────────────────────────────── */
.urgency-cta-strip {
    background: var(--red);
    color: var(--white);
    padding: 28px 0;
    text-align: center;
}

.urgency-cta-strip p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.92);
    font-weight: 500;
}

.urgency-cta-strip strong { color: var(--white); }

.urgency-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--red);
    border: none;
}

.btn-white:hover {
    background: #f0f0f0;
    color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* ─── Section Subtitle ──────────────────────────────────────── */
.section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    margin-top: -2rem;
    margin-bottom: 2.5rem;
}

/* ─── Promoties Section ─────────────────────────────────────── */
.promoties {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0505 100%);
}

.promoties .section-title {
    color: var(--white);
}

.promoties .section-title::after {
    background: var(--gold);
}

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

.promo-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    color: var(--white);
    position: relative;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.promo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.18);
    box-shadow: var(--shadow-lg);
}

.promo-card.featured {
    border-color: var(--gold);
    background: rgba(245,158,11,0.07);
    transform: scale(1.03);
}

.promo-card.featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.promo-badge-label {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 12px;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.promo-card.featured .promo-badge-label {
    background: var(--gold);
    color: var(--black);
}

.promo-icon {
    font-size: 2.6rem;
    color: var(--red);
    margin-bottom: 18px;
    line-height: 1;
}

.promo-card.featured .promo-icon { color: var(--gold); }

.promo-card h3 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: var(--white);
    line-height: 1.3;
}

.promo-card p {
    color: rgba(255,255,255,0.60);
    font-size: 0.88rem;
    margin-bottom: 24px;
    line-height: 1.65;
}

/* ─── Why Us: Extra Cards + CTA ─────────────────────────────── */
.why-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* ─── SEO Artikel Secties ───────────────────────────────────── */
.seo-artikel { padding: 5rem 0; }

.seo-garage { background: #f0f4f8; }

.seo-vervangen { background: var(--white); }

.seo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}

.seo-content--reverse .seo-text { order: 2; }
.seo-content--reverse .seo-visual { order: 1; }

.seo-text h2 {
    font-size: 1.85rem;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.25;
}

.seo-text h3 {
    font-size: 1.05rem;
    color: var(--black);
    margin: 20px 0 12px;
    font-weight: 700;
}

.seo-text p {
    color: #555;
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.seo-list {
    list-style: none;
    padding: 0;
    margin-bottom: 26px;
}

.seo-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 11px;
    color: #444;
    font-size: 0.93rem;
    line-height: 1.5;
}

.seo-list li i.fa-check {
    color: #16a34a;
    flex-shrink: 0;
    margin-top: 3px;
}

.seo-list li i.fa-exclamation-triangle {
    color: var(--red);
    flex-shrink: 0;
    margin-top: 3px;
}

.seo-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.seo-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* ─── Floating WhatsApp Button ──────────────────────────────── */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 24px;
    width: 62px;
    height: 62px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 4px 22px rgba(37,211,102,0.45);
    z-index: 990;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 30px rgba(37,211,102,0.60);
    color: var(--white);
}

/* ─── Mobile Sticky CTA Bar ─────────────────────────────────── */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
    z-index: 995;
    box-shadow: 0 -3px 16px rgba(0,0,0,0.20);
}

.mobile-cta-call,
.mobile-cta-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    text-decoration: none;
    transition: filter var(--transition);
}

.mobile-cta-call { background: var(--red); }
.mobile-cta-call:hover { filter: brightness(1.1); color: var(--white); }

.mobile-cta-whatsapp { background: #25d366; }
.mobile-cta-whatsapp:hover { filter: brightness(1.1); color: var(--white); }

@media (max-width: 768px) {
    .mobile-cta { display: flex; }
    .floating-whatsapp { bottom: 80px; right: 16px; width: 54px; height: 54px; font-size: 1.6rem; }
    body { padding-bottom: 58px; }

    .seo-content,
    .seo-content--reverse { grid-template-columns: 1fr; }
    .seo-content--reverse .seo-text { order: 0; }
    .seo-content--reverse .seo-visual { order: 0; }
    .seo-text h2 { font-size: 1.5rem; }
    .seo-visual img { height: 260px; }

    .promo-grid { grid-template-columns: 1fr; }
    .promo-card.featured { transform: none; }

    .urgency-cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 992px) {
    .seo-content { grid-template-columns: 1fr; }
    .seo-content--reverse .seo-text { order: 0; }
    .seo-content--reverse .seo-visual { order: 0; }
    .promo-grid { grid-template-columns: 1fr; }
    .promo-card.featured { transform: none; }
}
