/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    --red: #c41020;
    --red-bright: #e8132a;
    --red-dark: #8a0b16;
    --red-glow: rgba(196, 16, 32, 0.35);
    --charcoal: #1a1a1a;
    --charcoal-light: #2a2a2a;
    --off-white: #f8f6f3;
    --warm-white: #fff9f5;
    --cream: #f0ebe4;
    --text-dark: #1a1a1a;
    --text-light: #f8f6f3;
    --text-muted: #8a8580;
    --gold: #c9a84c;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --section-pad: clamp(4rem, 8vw, 8rem);
    --container: min(1280px, 90vw);
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--off-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }

.container {
    width: var(--container);
    margin: 0 auto;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.stagger > * {
    transition-delay: calc(var(--i, 0) * 0.1s);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Subpages: dark nav background from the start */
.nav.nav-dark {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
    width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo {
    height: 42px;
    width: auto;
    transition: height 0.4s ease;
}

.nav.scrolled .nav-logo {
    height: 34px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red-bright);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--red) !important;
    color: white !important;
    padding: 0.4rem 1rem !important;
    font-size: 0.8rem !important;
    border-radius: 4px;
    font-weight: 600 !important;
    letter-spacing: 0.03em !important;
    transition: background 0.3s ease, transform 0.2s ease !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--red-bright) !important;
    transform: translateY(-1px);
}

/* Mobile menu */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    display: block;
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-dropdown-arrow {
    width: 12px;
    height: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: rgba(26, 26, 26, 0.95);
}

.nav-dropdown-menu a {
    display: block;
    background: rgba(26, 26, 26, 0.95);
    padding: 0.6rem 1.5rem;
    white-space: nowrap;
    font-size: 0.825rem !important;
    text-transform: none !important;
    letter-spacing: 0.01em !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-dropdown-menu a:nth-child(1) {
    border-radius: 6px 0 0 0;
}

.nav-dropdown-menu a:nth-child(2) {
    border-radius: 0 6px 0 0;
}

.nav-dropdown-menu a:nth-last-child(2) {
    border-radius: 0 0 0 6px;
}

.nav-dropdown-menu a:last-child {
    border-radius: 0 0 6px 0;
    border-bottom: none;
}

.nav-dropdown-menu a:hover {
    background: rgba(196, 16, 32, 0.9);
    color: white;
}

.nav-dropdown-menu a::after {
    display: none !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--charcoal);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(26,26,26,0.8);
}

.hero-shimmer {
    display: none;
}

@keyframes shimmer {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 10;
    width: var(--container);
    margin: 0 auto;
    padding: 8rem 0 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--red-bright);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.hero h1 .highlight {
    color: var(--red-bright);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,0.7);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--red);
    color: white;
    box-shadow: 0 4px 20px var(--red-glow);
}

.btn-primary:hover {
    background: var(--red-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--red-glow);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* Hero Stats Bar */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
    padding: 1.5rem 0;
    border-right: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.hero-stat:last-child {
    border-right: none;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    color: var(--red-bright);
    letter-spacing: 0.02em;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

/* ============================================
   DIAGONAL SECTION DIVIDER
   ============================================ */
.divider-diagonal {
    position: relative;
    height: 80px;
    overflow: hidden;
}

.divider-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5%;
    right: -5%;
    bottom: 0;
    background: inherit;
    transform: skewY(-2deg);
    transform-origin: top left;
}

/* ============================================
   DIENSTEN (SERVICES) SECTION
   ============================================ */
.diensten {
    background: var(--off-white);
    padding: var(--section-pad) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--red);
    opacity: 0.5;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--charcoal);
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 2.25rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.04);
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    opacity: 0.85;
}

.service-icon-svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    color: var(--red);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.service-card .norm {
    display: inline-block;
    background: rgba(196,16,32,0.08);
    color: var(--red);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.service-card:hover .card-link {
    gap: 0.7rem;
}

.service-card .card-link svg {
    width: 14px;
    height: 14px;
}

/* ============================================
   WAAROM / WHY SECTION
   ============================================ */
.waarom {
    background: var(--charcoal);
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.waarom::before {
    display: none;
}

.waarom .section-title {
    color: white;
}

.waarom .section-subtitle {
    color: rgba(255,255,255,0.5);
}

.waarom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.waarom-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.waarom-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

.waarom-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.3);
    border-radius: 8px;
}

.waarom-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.waarom-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.waarom-feature:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(196,16,32,0.3);
}

.waarom-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: white;
    letter-spacing: 0.02em;
}

.waarom-feature h4 {
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.waarom-feature p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ============================================
   ALERT BANNER
   ============================================ */
.alert-banner {
    background: var(--red);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.alert-banner::before {
    display: none;
}

.alert-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.alert-banner h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: white;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

.alert-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   PRODUCTEN (PRODUCTS) SECTION
   ============================================ */
.producten {
    background: var(--warm-white);
    padding: var(--section-pad) 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--red);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 3px;
    z-index: 2;
}

.product-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #f5f5f5;
    position: relative;
}

.product-image img {
    max-height: 220px;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: 1.75rem;
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.35rem;
}

.product-type {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price span {
    font-size: 0.85rem;
    color: var(--red);
    font-weight: 600;
}

.product-price .btn-small {
    font-size: 0.8rem;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    background: var(--charcoal);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-price .btn-small:hover {
    background: var(--red);
}

/* ============================================
   SERVICE / ONDERHOUD SECTION
   ============================================ */
.service-section {
    background: var(--off-white);
    padding: var(--section-pad) 0;
}

.service-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-step {
    text-align: center;
    position: relative;
}

.service-step::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -1rem;
    width: calc(100% - 70px);
    height: 2px;
    background: var(--red);
    opacity: 0.3;
    transform: translateX(50%);
}

.service-step:last-child::after {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--red);
    position: relative;
    z-index: 2;
}

.service-step h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

.service-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--charcoal);
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    display: none;
}

.contact .section-title { color: white; }
.contact .section-subtitle { color: rgba(255,255,255,0.5); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1rem;
    color: white;
    letter-spacing: 0.02em;
}

.contact-item h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--red-bright);
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 380px;
    background: var(--charcoal-light);
    position: relative;
    border: 1px solid rgba(255,255,255,0.06);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.6) contrast(1.1);
    transition: filter 0.5s ease;
}

.contact-map:hover iframe {
    filter: grayscale(0) contrast(1);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-call {
    background: rgba(255,255,255,0.08);
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-call:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
}

/* ============================================
   REGION OVERVIEW PAGE
   ============================================ */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.region-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text-dark);
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(196, 16, 32, 0.15);
    border-color: var(--red-bright);
}

.region-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.region-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    color: var(--text-dark);
}

.region-card-header svg {
    width: 24px;
    height: 24px;
    color: var(--red-bright);
    transition: transform 0.3s ease;
}

.region-card:hover .region-card-header svg {
    transform: translateX(4px);
}

.region-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.usp-item {
    text-align: center;
}

.usp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--red), var(--red-bright));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
    font-weight: bold;
}

.usp-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.usp-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #111;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer p {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

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

.footer-divider {
    color: rgba(255,255,255,0.15);
    user-select: none;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: float-bounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    color: white;
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.whatsapp-float:hover {
    animation: none;
    transform: scale(1.1);
}

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

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

    .service-step::after {
        display: none;
    }

    .waarom-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .waarom-image img {
        height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26,26,26,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-family: var(--font-display);
        letter-spacing: 0.05em;
    }

    .nav-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        padding-top: 0.5rem;
        opacity: 1;
        visibility: visible;
        display: none;
        grid-template-columns: 1fr 1fr;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: grid;
    }

    .nav-dropdown-menu a {
        font-size: 1rem !important;
        text-align: center;
        background: transparent;
        padding: 0.4rem 1rem;
        border-bottom: none;
        color: rgba(255,255,255,0.7);
        border-radius: 0 !important;
    }

    .nav-dropdown-menu::before {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-stat:nth-child(2) {
        border-right: none;
    }

    .hero-stat:nth-child(1),
    .hero-stat:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .service-steps {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .footer-divider {
        display: none;
    }

    .footer p {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .whatsapp-float {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 54px;
        height: 54px;
    }

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

    .region-card {
        padding: 1.5rem;
    }

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

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--charcoal);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--red);
    border-color: var(--red);
}

.scroll-top svg {
    width: 18px;
    height: 18px;
    color: white;
}

/* ============================================
   VERHUUR SECTION
   ============================================ */
.verhuur-banner {
    background: var(--charcoal);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.verhuur-banner::after {
    content: '';
    position: absolute;
    right: -10%;
    top: -50%;
    width: 400px;
    height: 400px;
    display: none;
}

.verhuur-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.verhuur-text h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: white;
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
}

.verhuur-text p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    max-width: 500px;
}

.verhuur-items {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.verhuur-item {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verhuur-item svg {
    width: 16px;
    height: 16px;
    color: var(--red-bright);
}

@media (max-width: 768px) {
    .verhuur-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .verhuur-items {
        justify-content: center;
    }
}

/* ============================================
   PAGE HERO (for subpages - smaller than homepage)
   ============================================ */
.page-hero {
    background: var(--charcoal);
    padding: 10rem 0 4rem;
    position: relative;
}

.page-hero .section-title {
    color: white;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.page-hero .section-subtitle {
    color: rgba(255,255,255,0.6);
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.breadcrumbs a {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--red-bright);
}

.breadcrumbs span {
    color: rgba(255,255,255,0.3);
}

.breadcrumbs .current {
    color: white;
    font-weight: 500;
}

/* ============================================
   CONTENT PAGES
   ============================================ */
.page-content {
    padding: var(--section-pad) 0;
    background: var(--off-white);
}

.page-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--charcoal);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    margin-top: 2.5rem;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
    margin-top: 2rem;
}

.page-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1rem;
    max-width: 800px;
}

.page-content ul, .page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style: disc;
}

.page-content li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.page-content ol {
    list-style: decimal;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.04);
    margin-bottom: 1.5rem;
}

.sidebar-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.sidebar-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.sidebar-card a {
    color: var(--red);
    font-weight: 600;
    font-size: 0.9rem;
}

.sidebar-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.sidebar-card .btn-primary {
    color: white;
}

/* NEN norm badge large */
.norm-badge {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-right: 0.5rem;
    white-space: nowrap;
}

/* ============================================
   BREADCRUMBS (subpage style)
   ============================================ */
.breadcrumbs {
    background: var(--charcoal);
    padding: 6rem 0 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    color: rgba(255,255,255,0.25);
}

.breadcrumb-list a {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--red-bright);
}

.breadcrumb-list li:last-child span {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* ============================================
   PAGE HERO (service detail pages)
   ============================================ */
.page-hero {
    background: var(--charcoal);
    padding: 2rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(26,26,26,0.88);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.page-hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   SERVICE DETAIL LAYOUT
   ============================================ */
.service-detail {
    padding: var(--section-pad) 0;
    background: var(--off-white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

.service-detail-main {
    min-width: 0;
}

.service-detail-sidebar {
    position: sticky;
    top: 90px;
}

/* Content blocks */
.content-block {
    margin-bottom: 2.5rem;
}

.content-block h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--charcoal);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.content-block h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.content-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* Check list */
.check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 2px;
    transform: rotate(45deg);
}

/* Timeline grid */
.timeline-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.timeline-item {
    background: white;
    border-radius: 8px;
    padding: 1.75rem;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.timeline-marker {
    display: inline-block;
    background: var(--red);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.timeline-item h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   SIDEBAR COMPONENTS
   ============================================ */
.sidebar-cta {
    background: var(--charcoal);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.sidebar-cta h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: white;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

.sidebar-cta p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-bottom: 0.75rem;
    text-align: center;
}

.btn-full:last-child {
    margin-bottom: 0;
}

.btn-outline-dark {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.2);
    padding: 0.85rem 1.75rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-outline-dark:hover {
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

.sidebar-info {
    background: white;
    border-radius: 8px;
    padding: 1.75rem;
    border: 1px solid rgba(0,0,0,0.04);
    margin-bottom: 1.5rem;
}

.sidebar-info h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    display: flex;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-services {
    background: white;
    border-radius: 8px;
    padding: 1.75rem;
    border: 1px solid rgba(0,0,0,0.04);
}

.sidebar-services h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
}

.sidebar-nav li {
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.sidebar-nav li:last-child {
    border-bottom: none;
}

.sidebar-nav a {
    display: block;
    padding: 0.7rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.sidebar-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.sidebar-nav a:hover {
    color: var(--red);
}

.sidebar-nav a:hover::before {
    opacity: 1;
}

/* FAQ Section */
.faq-section {
    margin-top: 3rem;
}

.faq-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--charcoal);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.faq-item {
    background: white;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-body);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    background: none;
    border: none;
    text-align: left;
    color: var(--charcoal);
    gap: 1rem;
}

.faq-question:hover {
    background: rgba(0,0,0,0.02);
}

.faq-question span {
    flex: 1;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--red);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

/* Keep backward compat with ::after approach */
.faq-question:not(:has(svg))::after {
    content: '+';
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--red);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question:not(:has(svg))::after {
    transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* CTA Banner (reusable) */
.cta-banner {
    background: var(--red);
    padding: 4rem 0;
    text-align: center;
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
}

.cta-banner p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-banner .btn {
    background: white;
    color: var(--red);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.cta-banner .btn:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta-banner .btn-outline {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.4);
}

.cta-banner .btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Services list page */
.services-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Region page specific */
.region-hero {
    background: var(--charcoal);
    padding: 10rem 0 4rem;
}

.region-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.region-stat {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
}

.region-stat .value {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--red);
}

.region-stat .label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Knowledge base */
.kb-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.kb-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.kb-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.kb-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.kb-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.kb-card .read-more {
    color: var(--red);
    font-weight: 600;
    font-size: 0.85rem;
}

/* ============================================
   FEATURES LIST (service detail pages)
   ============================================ */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-color: rgba(196,16,32,0.15);
}

.feature-icon-small {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(196,16,32,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-small svg {
    width: 20px;
    height: 20px;
    color: var(--red);
}

.feature-item h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--charcoal);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   NORM CARDS GRID (projectering page)
   ============================================ */
.norm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.norm-card {
    background: white;
    border-radius: 8px;
    padding: 1.75rem;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.norm-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-color: rgba(196,16,32,0.15);
}

.norm-card .norm-badge {
    background: rgba(196,16,32,0.08);
    color: var(--red);
    margin-bottom: 0.75rem;
}

.norm-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.norm-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ============================================
   FAQ LIST (service detail pages)
   ============================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* ============================================
   CTA BUTTONS ROW
   ============================================ */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-banner h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: white;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

/* ============================================
   WHATSAPP SIDEBAR BUTTON
   ============================================ */
.btn-whatsapp-sidebar {
    background: #25d366;
    color: white;
}

.btn-whatsapp-sidebar:hover {
    background: #22c55e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* ============================================
   SIDEBAR SERVICES & INFO (extended)
   ============================================ */
.sidebar-services h4,
.sidebar-info h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.sidebar-services ul {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sidebar-services ul li a {
    display: block;
    padding: 0.55rem 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.sidebar-services ul li a:hover {
    background: rgba(196,16,32,0.04);
    color: var(--red);
    border-color: rgba(196,16,32,0.1);
}

.sidebar-info ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.sidebar-info ul li {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.sidebar-info ul li strong {
    font-size: 0.75rem;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.sidebar-info ul li span,
.sidebar-info ul li a {
    font-size: 0.875rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.sidebar-info ul li .norm-badge {
    color: white;
}

.sidebar-info ul li a:hover {
    color: var(--red);
}

/* Breadcrumb active state */
.breadcrumb-list li.active {
    color: rgba(255,255,255,0.8);
}

/* Service detail content area */
.service-detail-content {
    min-width: 0;
}

.service-detail-content .section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.1;
}

/* Page hero container z-index */
.page-hero .container {
    position: relative;
    z-index: 10;
}

/* Responsive additions */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    .content-sidebar {
        position: static;
    }
    .services-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .region-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    .service-detail-sidebar {
        position: static;
    }
    .timeline-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .services-list-grid {
        grid-template-columns: 1fr;
    }
    .kb-grid {
        grid-template-columns: 1fr;
    }
    .region-stats {
        grid-template-columns: 1fr;
    }
    .page-hero {
        padding: 2rem 0 3rem;
    }
    .breadcrumbs {
        padding: 5rem 0 0;
    }
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    .norm-grid {
        grid-template-columns: 1fr;
    }
    .feature-item {
        flex-direction: column;
        gap: 1rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}
