/* ============================================================
   Safe Badkamers — Complete Blue/White Theme
   Modern, clean, fris design
   ============================================================ */

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

/* ── CSS Custom Properties ── */
:root {
    --primary: #1B6B9E;
    --primary-dark: #145580;
    --primary-light: #2580B8;
    --secondary: #4EADD9;
    --secondary-light: #7CC4E5;
    --accent: #E8F4FD;
    --accent-soft: #F0F8FF;
    --cta: #FF6B35;
    --cta-hover: #E85A25;
    --cta-light: #FFF0EA;
    --text-dark: #1A1A2E;
    --text-body: #374151;
    --text-muted: #6B7280;
    --text-light: #FFFFFF;
    --bg-white: #FFFFFF;
    --bg-light: #F7FBFE;
    --bg-section: #F0F7FC;
    --bg-dark: #0F2A3D;
    --bg-card: #FFFFFF;
    --border: #E2EBF3;
    --border-light: #EDF2F7;
    --shadow-sm: 0 2px 8px rgba(27, 107, 158, 0.06);
    --shadow-md: 0 8px 24px rgba(27, 107, 158, 0.10);
    --shadow-lg: 0 20px 50px rgba(27, 107, 158, 0.12);
    --shadow-xl: 0 30px 70px rgba(27, 107, 158, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

/* ── Scroll Progress ── */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--cta));
    z-index: 10000;
    transition: width 0.1s linear;
}

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

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

/* ── Top Bar ── */
.top-bar {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar a:hover {
    color: var(--secondary-light);
}

.top-bar-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

.top-bar-social {
    display: flex;
    gap: 16px;
    align-items: center;
}

.top-bar-social span {
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .top-bar {
        display: none;
    }
}

/* ── Navigation ── */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

nav.scrolled {
    height: 64px;
    box-shadow: var(--shadow-md);
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--secondary);
}

.logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    padding: 8px 16px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.92rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: var(--accent);
}

/* Mega Menu */
.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 32px;
    min-width: 420px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.mega-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-col ul {
    list-style: none;
}

.mega-col ul li a {
    display: block;
    padding: 6px 0;
    color: var(--text-body);
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
}

.mega-col ul li a:hover {
    color: var(--primary);
    padding-left: 6px;
}

/* CTA Button (Nav) */
nav .cta-button {
    background: var(--cta);
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

nav .cta-button:hover {
    background: var(--cta-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    color: #fff;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    nav .cta-button {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
}

/* ── Mobile Navigation Drawer ── */
.mnav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.mnav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mnav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 310px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-white);
    z-index: 9999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mnav.open {
    right: 0;
}

.mnav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.mnav-logo .logo-text {
    font-size: 1.2rem;
}

.mnav-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

.mnav-body {
    padding: 16px 24px 40px;
}

.mnav-link {
    display: block;
    padding: 14px 0;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.mnav-link:hover {
    color: var(--primary);
}

.mnav-acc-btn {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    border-bottom: 1px solid var(--border-light);
    font-family: var(--font-body);
}

.mnav-acc-btn::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.mnav-acc-btn[aria-expanded="true"]::after {
    content: '-';
}

.mnav-acc-panel {
    padding: 8px 0 8px 16px;
}

.mnav-section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
    margin: 12px 0 8px;
}

.mnav-sublink {
    display: block;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.mnav-sublink:hover {
    color: var(--primary);
}

.mnav-cta {
    display: block;
    text-align: center;
    background: var(--cta);
    color: var(--text-light) !important;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 24px;
}

.mnav-cta:hover {
    background: var(--cta-hover);
    color: var(--text-light) !important;
}

/* ── Hero Section ── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-dark);
}

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

.hero-slider .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(15, 42, 61, 0.85) 0%,
        rgba(27, 107, 158, 0.65) 50%,
        rgba(78, 173, 217, 0.45) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    padding: 0 24px;
}

.hero-tagline {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.hero-content h1 span {
    color: var(--secondary-light);
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 32px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Buttons ── */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--cta);
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
    color: #fff;
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.cta-button.blue {
    background: var(--primary);
}

.cta-button.blue:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(27, 107, 158, 0.35);
}

/* ── Section Styling ── */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    background: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.2;
}

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

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

.section-title h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-title h2 span {
    color: var(--primary);
}

.underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* ── Trusted Bar ── */
.trusted-section {
    padding: 48px 5%;
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trusted-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.trusted-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.92rem;
}

.trusted-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* ── Feature / USP Section ── */
.feature-section {
    padding: 100px 5%;
    background: var(--bg-section);
}

.interleaved-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.25;
}

.intro-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.image-content img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.process-content {
    grid-column: 1 / -1;
}

.benefits-card {
    background: var(--bg-white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 28px;
    border: 1px solid var(--border);
}

.benefits-card h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 18px;
    font-weight: 700;
}

.benefits-card ul {
    list-style: none;
}

.benefits-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: var(--text-body);
}

.benefits-card li i {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

@media (max-width: 900px) {
    .interleaved-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ── Services Cards ── */
.services-section {
    padding: 100px 0;
    background: var(--bg-white);
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

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

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

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

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

.service-card-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    width: 48px;
    height: 48px;
    background: var(--bg-white);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.service-card-badge i {
    color: var(--primary);
    font-size: 1.1rem;
}

.service-card-body {
    padding: 24px;
}

.service-card-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-card-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 14px;
}

.service-card-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.service-card:hover .service-card-link {
    gap: 10px;
}

/* Swiper diensten carousel */
.diensten-carousel { max-width: 1400px; margin: 0 auto; padding-left: 4%; padding-right: 4%; }
.dc-card { background: var(--bg-card); border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; transition: var(--transition); height: 100%; text-decoration: none; display: block; color: inherit; }
.dc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.dc-card-img { height: 180px; overflow: hidden; position: relative; }
.dc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dc-card:hover .dc-card-img img { transform: scale(1.1); }
.dc-card-badge { position: absolute; bottom: 12px; left: 12px; width: 44px; height: 44px; background: #fff; border: 2.5px solid var(--primary); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.dc-card-badge i { color: var(--primary); font-size: 1.1rem; }
.dc-card-body { padding: 22px; }
.dc-card-body h4 { font-size: 1.1rem; font-weight: 700; margin: 0 0 8px; color: var(--text-dark); }
.dc-card-body p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin: 0 0 14px; }
.dc-card-link { color: var(--primary); font-weight: 700; font-size: 0.88rem; transition: gap 0.3s; display: inline-flex; align-items: center; gap: 6px; }
.dc-card:hover .dc-card-link { gap: 10px; }

.diensten-carousel .swiper-button-prev,
.diensten-carousel .swiper-button-next {
    width: 44px; height: 44px; background: rgba(255,255,255,0.95); border-radius: 50%;
    box-shadow: var(--shadow-md); color: var(--primary);
}
.diensten-carousel .swiper-button-prev::after,
.diensten-carousel .swiper-button-next::after { font-size: 0.9rem; font-weight: 900; }
.diensten-carousel .swiper-button-prev:hover,
.diensten-carousel .swiper-button-next:hover { background: var(--primary); color: #fff; }
.diensten-pagination .swiper-pagination-bullet { width: 10px; height: 10px; background: var(--border); opacity: 1; }
.diensten-pagination .swiper-pagination-bullet-active { background: var(--primary); width: 28px; border-radius: 5px; }

@media (max-width: 768px) {
    .diensten-carousel .swiper-button-prev,
    .diensten-carousel .swiper-button-next { display: none; }
    .dc-card-img { height: 150px; }
}

/* ── Stats Section ── */
.stats-section {
    padding: 80px 24px;
    background: var(--bg-white);
}

.stats-bar {
    background: linear-gradient(135deg, var(--bg-dark), #163D55);
    border-radius: var(--radius-xl);
    padding: 56px 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary), var(--primary), transparent);
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #fff, var(--secondary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 8px;
}

@media (max-width: 900px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 40px 24px;
    }
}

@media (max-width: 520px) {
    .stat-number {
        font-size: 2.6rem;
    }
    .stat-label {
        font-size: 0.78rem;
    }
}

/* ── Portfolio Gallery ── */
.portfolio-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.portfolio-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 107, 158, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay .zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.5rem;
}

.portfolio-overlay .caption {
    color: #fff;
    font-size: 0.82rem;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.portfolio-filter-btn {
    padding: 8px 20px;
    border: 2px solid var(--primary);
    border-radius: 25px;
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
    font-size: 0.85rem;
    font-family: var(--font-body);
    transition: var(--transition);
    font-weight: 500;
}

.portfolio-filter-btn.active,
.portfolio-filter-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* ── Reviews Section ── */
.reviews-section {
    padding: 100px 5%;
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '\201C';
    position: absolute;
    top: -30px;
    left: -20px;
    font-size: 20rem;
    color: var(--accent);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.review-stars {
    color: #FFB400;
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.review-text {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
    flex: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.review-name {
    font-weight: 700;
    color: var(--text-dark);
}

.review-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ── FAQ Section ── */
.faq-section {
    padding: 100px 5%;
    background: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question .faq-icon {
    font-size: 1.2rem;
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ── CTA Section ── */
.cta-section {
    padding: 80px 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 14px;
    font-weight: 700;
}

.cta-section p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}

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

.cta-section .cta-button {
    background: var(--cta);
}

.cta-section .cta-button:hover {
    background: var(--cta-hover);
}

.cta-section .cta-button.secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

/* ── Page Header (Inner pages) ── */
.page-header {
    min-height: 55vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 140px 5% 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 42, 61, 0.88) 0%,
        rgba(27, 107, 158, 0.72) 100%
    );
    z-index: 1;
}

.page-header .header-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    text-align: center;
}

.page-header .header-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin: 0 0 14px 0;
    font-weight: 800;
    line-height: 1.15;
}

.page-header .header-content p {
    font-size: 1.12rem;
    margin: 0 auto 24px;
    opacity: 0.92;
    max-width: 600px;
}

/* ── Service Detail Pages ── */
.service-intro {
    padding: 100px 5%;
    background: var(--bg-white);
}

.service-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.service-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.service-text p {
    color: var(--text-body);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.service-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    transition: var(--transition);
}

.service-features .feature:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.service-features .feature i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.service-details {
    padding: 100px 5%;
    background: var(--bg-section);
}

.service-details h2 {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2rem;
    margin: 0 0 40px 0;
    color: var(--text-dark);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.approach-step:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.approach-step h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.approach-step p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .service-content {
        grid-template-columns: 1fr;
    }
    .service-features {
        grid-template-columns: 1fr;
    }
}

/* ── Contact Section ── */
.contact-section {
    padding: 100px 5%;
    background: var(--bg-section);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-info,
.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.contact-info h2,
.contact-form h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 0 0 24px 0;
}

.contact-items {
    display: grid;
    gap: 14px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--primary);
}

.contact-item i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item h3 {
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

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

/* ── Form Styles ── */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 107, 158, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-success {
    background: #DCFCE7;
    border: 1px solid #BBF7D0;
    color: #166534;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 18px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ── Blog Cards ── */
.blog-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.blog-card-img {
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 28px;
}

.blog-card-date {
    font-size: 0.82rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-card-body h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.35;
}

.blog-card-body p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 14px;
}

.blog-read-more {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ── Breadcrumbs ── */
.breadcrumbs {
    padding: 14px 5%;
    background: var(--accent);
    font-size: 0.85rem;
}

.breadcrumbs a {
    color: var(--primary);
}

.breadcrumbs span {
    color: var(--text-muted);
}

/* ── Before / After (from widget CSS) ── */
.ba-section { padding: 100px 0; background: var(--bg-section); }
.ba-section .section-header { text-align: center; margin-bottom: 60px; }
.ba-section .section-tag {
    display: inline-block; text-transform: uppercase; letter-spacing: 3px;
    font-size: 0.75rem; color: var(--primary); margin-bottom: 12px;
    font-weight: 600; background: var(--accent); padding: 6px 16px; border-radius: 50px;
}
.ba-section h2 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3rem); color: var(--text-dark); margin-bottom: 16px; }
.ba-section .section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.ba-projects { display: flex; flex-direction: column; gap: 80px; }
.ba-project-title { font-family: var(--font-heading); font-size: 1.8rem; color: var(--text-dark); text-align: center; margin-bottom: 8px; }
.ba-project-desc { text-align: center; color: var(--text-muted); margin-bottom: 30px; }
.ba-slider { max-width: 800px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.ba-slider-container { position: relative; width: 100%; aspect-ratio: 4/3; cursor: col-resize; user-select: none; }
.ba-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.ba-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-image-before { clip-path: inset(0 50% 0 0); z-index: 2; }
.ba-label { position: absolute; bottom: 20px; padding: 6px 18px; background: rgba(0,0,0,0.6); color: #fff; border-radius: 20px; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; backdrop-filter: blur(8px); }
.ba-label-before { left: 20px; }
.ba-label-after { right: 20px; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: translateX(-50%); pointer-events: none; }
.ba-handle-line { width: 3px; flex: 1; background: #fff; box-shadow: 0 0 8px rgba(0,0,0,0.3); }
.ba-handle-circle { width: 44px; height: 44px; border-radius: 50%; background: var(--primary); border: 3px solid #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(0,0,0,0.3); pointer-events: auto; cursor: col-resize; }
.ba-stats { display: flex; justify-content: center; gap: 40px; margin-top: 30px; padding: 20px; background: rgba(255,255,255,0.7); border-radius: var(--radius-md); max-width: 500px; margin-left: auto; margin-right: auto; }
.ba-stat { text-align: center; }
.ba-stat strong { display: block; font-size: 1.5rem; color: var(--primary); }
.ba-stat span { font-size: 0.8rem; color: var(--text-muted); }
.ba-gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; max-width: 800px; margin: 20px auto 0; padding: 0 10px; }
.ba-thumb { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; transition: var(--transition); }
.ba-thumb:hover { transform: scale(1.05); box-shadow: var(--shadow-md); }
.ba-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ba-cta { text-align: center; margin-top: 60px; }

@media (max-width: 768px) {
    .ba-section { padding: 60px 0; }
    .ba-gallery { grid-template-columns: repeat(3, 1fr); }
    .ba-stats { gap: 20px; }
}

/* ── Portfolio section from widget ── */
.pg-section { padding: 100px 0; background: var(--bg-white); }
.pg-section .section-tag { display: inline-block; text-transform: uppercase; letter-spacing: 3px; font-size: 0.75rem; color: var(--primary); margin-bottom: 12px; font-weight: 600; background: var(--accent); padding: 6px 16px; border-radius: 50px; }
.pg-section .section-header { text-align: center; margin-bottom: 40px; }
.pg-section h2 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3rem); color: var(--text-dark); margin-bottom: 16px; }
.pg-section .section-header p { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.pg-filters { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.pg-filter { padding: 8px 20px; border: 2px solid var(--primary); border-radius: 25px; background: transparent; color: var(--text-dark); cursor: pointer; font-size: 0.85rem; transition: var(--transition); font-family: var(--font-body); }
.pg-filter.active, .pg-filter:hover { background: var(--primary); color: #fff; }
.pg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; max-width: 1200px; margin: 0 auto; }
.pg-item { border-radius: var(--radius-md); overflow: hidden; position: relative; }
.pg-item.hidden { display: none; }
.pg-link { display: block; position: relative; aspect-ratio: 4/3; }
.pg-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.pg-link:hover img { transform: scale(1.05); }
.pg-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,107,158,0.7) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; opacity: 0; transition: opacity 0.3s; }
.pg-link:hover .pg-overlay { opacity: 1; }
.pg-zoom { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: #fff; font-size: 1.5rem; }
.pg-caption { color: #fff; font-size: 0.8rem; margin: 0; }
.pg-cta { text-align: center; margin-top: 50px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.pg-lightbox { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.95); display: flex; align-items: center; justify-content: center; }
.pg-lightbox[hidden] { display: none; }
.pg-lb-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #fff; font-size: 2.5rem; cursor: pointer; z-index: 10; }
.pg-lb-prev, .pg-lb-next { position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none; color: #fff; font-size: 3rem; cursor: pointer; z-index: 10; padding: 20px; }
.pg-lb-prev { left: 10px; }
.pg-lb-next { right: 10px; }
.pg-lb-content { max-width: 90vw; max-height: 85vh; text-align: center; }
.pg-lb-content img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 8px; }
.pg-lb-caption { color: rgba(255,255,255,0.8); margin-top: 12px; font-size: 0.9rem; }

@media (max-width: 768px) {
    .pg-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .pg-section { padding: 60px 0; }
}

/* ── Footer ── */
.site-footer {
    background: var(--bg-dark);
    color: #E2E8F0;
    padding: 72px 0 0;
    margin-top: 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 48px;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 18px;
    text-decoration: none;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.footer-logo-text span {
    color: var(--secondary);
}

.footer-desc {
    color: #94A3B8;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-rating-badge {
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 1rem;
}

.footer-stars {
    color: #FFB400;
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
}

.footer-rating-text {
    color: #94A3B8;
    font-size: 0.82rem;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
    color: #fff;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links ul a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition);
}

.footer-links ul a:hover {
    color: var(--secondary-light);
    padding-left: 4px;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(27, 107, 158, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.footer-contact-icon i {
    color: var(--secondary);
    font-size: 1rem;
}

a.footer-contact-item:hover .footer-contact-icon {
    background: var(--primary);
}

a.footer-contact-item:hover .footer-contact-icon i {
    color: #fff;
}

.footer-contact-item strong {
    display: block;
    color: #fff;
    font-size: 0.88rem;
    margin-bottom: 2px;
}

.footer-contact-item span {
    display: block;
    color: #94A3B8;
    font-size: 0.88rem;
}

.footer-bottom {
    margin-top: 48px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.footer-copyright {
    color: #64748B;
    font-size: 0.82rem;
}

.footer-sep {
    margin: 0 8px;
    color: #334155;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #64748B;
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #CBD5E1;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
    font-size: 1rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ── Cookie Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--primary);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-inner h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cookie-inner p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-accept {
    padding: 10px 24px;
    background: var(--cta);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.92rem;
    transition: var(--transition);
}

.cookie-accept:hover {
    background: var(--cta-hover);
}

.cookie-decline {
    padding: 10px 24px;
    background: #E2E8F0;
    color: var(--text-muted);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    cursor: pointer;
    font-size: 0.92rem;
    transition: var(--transition);
}

.cookie-decline:hover {
    background: #CBD5E1;
}

/* ── Reveal Animation ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Main Content ── */
.main-content {
    padding: 70px 0 40px;
    background: var(--bg-white);
}

/* ── Offerte Form Specific ── */
.offerte-section {
    padding: 80px 5%;
    background: var(--bg-white);
}

.offerte-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.offerte-card h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.offerte-card .subtitle {
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* ── Collectie Grid ── */
.collectie-section {
    padding: 80px 5%;
    background: var(--bg-white);
}

.collectie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.collectie-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

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

.collectie-card-img {
    height: 240px;
    overflow: hidden;
}

.collectie-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.collectie-card:hover .collectie-card-img img {
    transform: scale(1.05);
}

.collectie-card-body {
    padding: 24px;
}

.collectie-card-body h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

/* ── Blog Article ── */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.blog-article h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.blog-article .blog-meta {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 28px;
}

.blog-article .blog-hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.blog-article h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-dark);
    margin: 36px 0 14px;
}

.blog-article h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin: 28px 0 10px;
}

.blog-article p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.blog-article ul,
.blog-article ol {
    margin: 0 0 18px 24px;
    line-height: 1.8;
}

.blog-article blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--accent);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--text-body);
    font-style: italic;
}

/* ── Over Ons (About) specifics ── */
.about-section {
    padding: 80px 5%;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.about-text p {
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ── Values Grid ── */
.values-section {
    padding: 80px 5%;
    background: var(--bg-section);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

.value-card h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

/* ── Utility ── */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 2rem; }

/* ── Responsive Utilities ── */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
    }
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .cta-section h2 {
        font-size: 1.6rem;
    }
    .page-header {
        min-height: 45vh;
        padding: 120px 5% 60px;
    }
    .page-header .header-content h1 {
        font-size: 2rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }
    .cta-button {
        padding: 12px 24px;
        font-size: 0.88rem;
    }
    .footer-grid {
        gap: 28px;
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 28px 16px;
    }
}

/* ============================================================
   NEW WIREFRAME WIDGETS
   ============================================================ */

/* ── Hero USP Badges ── */
.hero-usp-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 28px;
    justify-content: center;
}

.hero-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge i {
    color: var(--secondary-light);
    font-size: 0.9rem;
}

/* ── Trust Blok (under hero) ── */
.trust-blok {
    background: var(--bg-dark);
    padding: 20px 5%;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.trust-stars {
    display: flex;
    gap: 2px;
}

.trust-stars i {
    color: #FBBF24;
    font-size: 0.85rem;
}

/* ── Problem → Solution ── */
.problem-solution-section {
    padding: 80px 5%;
    background: var(--bg-white);
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.ps-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.ps-problem .ps-icon {
    color: #DC2626;
}

.ps-solution .ps-icon {
    color: #16A34A;
}

.ps-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.ps-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.ps-image-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 20px;
}

.ps-image-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.ps-label {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.ps-label-bad {
    background: #FEE2E2;
    color: #DC2626;
}

.ps-label-good {
    background: #DCFCE7;
    color: #16A34A;
}

.ps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ps-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-body);
}

.ps-problem .ps-list i {
    color: #DC2626;
}

.ps-solution .ps-list i {
    color: #16A34A;
}

/* ── Pricing Block ── */
.pricing-section {
    padding: 80px 5%;
    background: var(--bg-section);
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 2px solid var(--primary);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 40px 32px;
    text-align: center;
}

.pricing-header h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin: 8px 0 20px;
}

.pricing-header .section-tag {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pricing-from {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.pricing-incl {
    font-size: 0.9rem;
    opacity: 0.85;
}

.pricing-body {
    padding: 32px;
}

.pricing-body h4 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.pricing-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--text-body);
}

.pricing-list i {
    color: #16A34A;
    flex-shrink: 0;
}

.pricing-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.pricing-cta .cta-button {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

.pricing-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
}

/* ── Werkwijze ── */
.werkwijze-section {
    padding: 80px 5%;
    background: var(--bg-white);
}

.werkwijze-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.werkwijze-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.werkwijze-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.werkwijze-step {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.werkwijze-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin: 16px 0 12px;
}

.werkwijze-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.werkwijze-card ul {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.werkwijze-card li {
    font-size: 0.92rem;
    color: var(--text-body);
    padding-left: 20px;
    position: relative;
}

.werkwijze-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.8rem;
}

/* ── Garantie ── */
.garantie-section {
    padding: 80px 5%;
    background: var(--bg-section);
}

.garantie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.garantie-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.garantie-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.garantie-icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.garantie-years {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--primary);
    margin-bottom: 8px;
}

.garantie-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.garantie-card p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ── Voordelen ── */
.voordelen-section {
    padding: 80px 5%;
    background: var(--bg-white);
}

.voordelen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.voordeel-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.voordeel-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.voordeel-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.voordeel-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.voordeel-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* ── Lead Form ── */
.lead-form-section {
    padding: 80px 5%;
    background: var(--bg-section);
}

.lead-form-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.lead-form-info .section-tag {
    display: inline-block;
    margin-bottom: 12px;
}

.lead-form-info h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.lead-form-info p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.lead-form-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lf-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-body);
    font-weight: 500;
}

.lf-trust-item i {
    color: #16A34A;
}

.lead-form {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.lf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.lf-field {
    margin-bottom: 16px;
}

.lf-row .lf-field {
    margin-bottom: 0;
}

.lf-field label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.lf-field input,
.lf-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-light);
    outline: none;
    transition: border-color 0.2s;
}

.lf-field input:focus,
.lf-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(27, 107, 158, 0.1);
}

.lf-submit {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
}

.lf-result {
    margin-top: 16px;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lf-success {
    background: #DCFCE7;
    color: #166534;
    border: 1px solid #BBF7D0;
}

.lf-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* ── Extra CTA ── */
.extra-cta-section {
    padding: 80px 5%;
    background: var(--bg-white);
}

.extra-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.extra-cta-card {
    display: block;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.extra-cta-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    transform: translateY(-6px);
    color: inherit;
}

.extra-cta-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}

.extra-cta-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.extra-cta-card p {
    font-size: 0.92rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 16px;
}

.extra-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cta);
    font-weight: 600;
    font-size: 0.95rem;
}

.extra-cta-card:hover .extra-cta-link {
    color: var(--cta-hover);
}

/* ── Nav Right (phone + CTA) ── */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
}

.nav-phone:hover {
    color: var(--primary-dark);
}

/* ── Responsive: new widgets ── */
@media (max-width: 768px) {
    .ps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .pricing-list {
        grid-template-columns: 1fr;
    }
    .werkwijze-grid,
    .garantie-grid,
    .voordelen-grid,
    .extra-cta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .lead-form-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .lf-row {
        grid-template-columns: 1fr;
    }
    .trust-items {
        gap: 16px;
    }
    .trust-item {
        font-size: 0.82rem;
    }
    .hero-usp-badges {
        gap: 8px;
    }
    .hero-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    .nav-phone {
        display: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .werkwijze-grid,
    .garantie-grid,
    .voordelen-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Print ── */
@media print {
    nav, .top-bar, .back-to-top, .cookie-banner, .cta-section, .sb-chat-btn, .sb-chat-panel {
        display: none !important;
    }
    body {
        color: #000;
        background: #fff;
    }
}
