/* ===========================
   1. ROOT & GENERAL STYLES
   =========================== */
:root {
    --primary-gold: #B8965A;
    --primary-dark: #1A1A1A;
    --bg-light: #FFFFFF;
    --bg-beige: #F9F7F4;
    --text-dark: #1A1A1A;
    --text-gray: #4A4A4A;
    --text-light: #7A7A7A;
    --section-spacing: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    padding: var(--section-spacing) 0;
}

/* ===========================
   2. SCROLLBAR STYLING
   =========================== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #F9F7F4;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-gold), #B8965A);
    border-radius: 10px;
    border: 3px solid #F9F7F4;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #B8965A, var(--primary-gold));
    border: 2px solid #F9F7F4;
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-gold) #F9F7F4;
}

/* ===========================
   3. SCROLL PROGRESS BAR
   =========================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), #B8965A);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ===========================
   4. NAVIGATION
   =========================== */
.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px;
    transition: all 0.3s ease;
}

.navbar.container {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.navbar {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: 14px 36px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    border: 1px solid transparent;
}

.navbar-container.scrolled .navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.navbar:hover {
    transform: scale(1.02);
}

.navbar-brand {
    font-size: 1.4rem;
    color: white !important;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.navbar-brand img {
    animation: logoPulse 3s ease-in-out infinite;
}

.navbar-container.scrolled .navbar-brand {
    color: var(--text-dark) !important;
}

.navbar-brand span {
    color: var(--primary-gold);
}

.nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 0.92rem;
    margin: 0 4px;
    padding: 10px 18px !important;
    transition: all 0.3s ease;
    border-radius: 10px;
    position: relative;
}

.navbar-container.scrolled .nav-link {
    color: var(--text-dark) !important;
}

.nav-link:hover {
    color: var(--primary-gold) !important;
    background-color: rgba(184, 150, 90, 0.08);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 11px 24px !important;
    background: linear-gradient(135deg, var(--primary-gold), #B8965A);
    border-radius: 10px;
    margin-left: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(184, 150, 90, 0.25);
}

.nav-phone:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(184, 150, 90, 0.3);
}

.nav-phone::after {
    display: none;
}

.nav-phone i {
    font-size: 1.1rem;
    animation: phoneRing 2s ease-in-out infinite;
}

/* Dropdown Styling */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(184, 150, 90, 0.15);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    padding: 12px 0;
    margin-top: 0;
    min-width: 240px;
    animation: dropdownFadeIn 0.3s ease;
    position: absolute;
    top: calc(100% + 8px);
    z-index: 1001;
}

.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
    z-index: 1000;
}

.dropdown-item {
    color: var(--text-dark);
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    margin: 0 8px;
}

.dropdown-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(184, 150, 90, 0.1);
    color: var(--primary-gold);
    transform: translateX(5px);
}

.dropdown-item:hover i {
    transform: scale(1.1);
}

.dropdown-item:active {
    background: rgba(184, 150, 90, 0.15);
}

.dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* ===========================
   5. BUTTONS & CTA
   =========================== */
.cta-button {
    background: linear-gradient(135deg, #E8D5B7, #D4C4A8);
    color: var(--text-dark);
    padding: 18px 45px;
    font-size: 1.1rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(184, 150, 90, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 150, 90, 0.3);
    background: linear-gradient(135deg, #D4C4A8, #C9B89A);
    color: var(--text-dark);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid #E8D5B7;
    box-shadow: 0 4px 15px rgba(184, 150, 90, 0.15);
    padding: 16px 43px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none!important;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.cta-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #E8D5B7, #D4C4A8);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.cta-secondary span,
.cta-secondary i {
    position: relative;
    z-index: 1;
}

.cta-secondary:hover::before {
    opacity: 1;
}

.cta-secondary:hover {
    color: white!important;
    border-color: #D4C4A8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 150, 90, 0.25);
}

.cta-secondary:hover i {
    transform: translateX(5px);
}

.call-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-gold), #B8965A);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(184, 150, 90, 0.3);
    z-index: 999;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-button:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 6px 30px rgba(184, 150, 90, 0.4);
    color: white;
}

/* ===========================
   6. FIXED CTA
   =========================== */
.fixed-cta {
    position: fixed !important;
    bottom: 30px !important;
    left: 30px !important;
    z-index: 9999 !important;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.fixed-cta.visible {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: all !important;
}

.fixed-cta-content {
    background: white;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(184, 150, 90, 0.2);
    position: relative;
}

.fixed-cta-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    background: white;
}

.fixed-cta-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fixed-cta-text {
    flex: 1;
}

.fixed-cta-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px 0;
}

.fixed-cta-text p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.fixed-cta-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-left: 8px;
}

.fixed-cta-close {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--text-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    z-index: 10;
}

.fixed-cta-close:hover {
    background: var(--primary-gold);
    transform: rotate(90deg);
}

.fixed-cta-link {
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.fixed-cta-link:hover {
    transform: translateY(-4px);
}

.fixed-cta-link:hover .fixed-cta-content {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
}

/* ===========================
   7. HERO SECTION
   =========================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-gold);
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(184, 150, 90, 0.3);
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.15;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--primary-gold);
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3.5rem;
    font-weight: 400;
    line-height: 1.8;
    max-width: 580px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.hero-features {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.hero-feature i {
    color: var(--primary-gold);
    font-size: 1.4rem;
}

.hero-image-container {
    display: none;
}

/* ===========================
   8. QUOTE REVEAL SECTION
   =========================== */
.quote-reveal-section {
    background: #FFFFFF;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--section-spacing) 20px;
    position: relative;
    overflow: hidden;
}

.quote-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.quote-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.1;
    filter: blur(1px);
}

.quote-reveal-text {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    max-width: 80vw;
    margin: 0 auto;
    color: #BABABA;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.quote-reveal-text .word {
    display: inline-block;
    margin: 0 0.25em;
    transition: color 0.6s ease;
    will-change: color;
}

.quote-reveal-text .word.active {
    color: #1A1A1A;
}

.quote-reveal-text .word.bold {
    font-weight: 900;
}

/* ===========================
   9. TRUST SECTION
   =========================== */
.trust-section {
    background: white;
    padding: 80px 0;
    border-top: 1px solid rgba(184, 150, 90, 0.15);
    border-bottom: 1px solid rgba(184, 150, 90, 0.15);
}

.trust-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
    transition: transform 0.3s ease;
    flex: 1;
    min-width: 180px;
}

.trust-item:hover {
    transform: translateY(-8px);
}

.trust-item i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 18px;
}

.trust-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ===========================
   10. SECTION TITLES
   =========================== */
.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.8rem;
    letter-spacing: -2px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 5rem;
    max-width: 720px;
    line-height: 1.7;
}

.text-center .section-title,
.text-center .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   11. CTA BOX
   =========================== */
.cta-box {
    background: linear-gradient(135deg, #F9F7F4 0%, #FFFFFF 100%);
    padding: 60px 60px;
    border-radius: 20px;
    text-align: center;
    margin-top: 6rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184, 150, 90, 0.15);
    transform: scale(0.95);
    opacity: 0.9;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.cta-box.cta-scaled {
    transform: scale(1);
    opacity: 1;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(184, 150, 90, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.cta-box-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-box-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-gold);
    box-shadow: 0 8px 24px rgba(184, 150, 90, 0.3);
}

.cta-box-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-box-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.cta-box h3 {
    color: var(--text-dark);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -0.5px;
}

.cta-box p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    position: relative;
}

.cta-box .cta-button {
    background: var(--primary-gold);
    color: white;
    position: relative;
    display: inline-flex;
}

.cta-box .cta-button:hover {
    background: #B8965A;
    color: white;
}

/* ===========================
   12. ABOUT SECTION
   =========================== */
.about-section {
    background: var(--bg-light);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 100%;
}

.about-image {
    flex: 0 0 33.333%;
    min-width: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    height: 600px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-text {
    flex: 0 0 calc(66.666% - 80px);
    min-width: 0;
}

.about-text h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.about-text p {
    font-size: 1.12rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.usps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 3rem;
}

.usp-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.usp-item i {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.usp-item div h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.usp-item div p {
    font-size: 0.98rem;
    color: var(--text-light);
    margin: 0;
}

/* ===========================
   13. PROCESS SECTION
   =========================== */
.process-section {
    background: var(--bg-beige);
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1628177142898-93e36e4e3a50?w=800&q=80') center/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.process-step {
    background: white;
    padding: 55px 38px 45px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--primary-gold), #B8965A);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(184, 150, 90, 0.3);
}

.process-step i {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 28px;
}

.process-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* ===========================
   14. SERVICES SECTION
   =========================== */
.services-section {
    background: var(--bg-light);
    position: relative;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35%;
    height: 60%;
    background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=600&q=80') center/cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
    border-radius: 0 200px 0 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--bg-beige);
    padding: 42px;
    border-radius: 16px;
    transition: all 0.4s ease;
}

.service-card:hover {
    background: white;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.service-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-card h4 i {
    color: var(--primary-gold);
    font-size: 1.7rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card li {
    padding: 14px 0;
    color: var(--text-gray);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 14px;
}

.service-card li i {
    color: var(--primary-gold);
    font-size: 1.15rem;
}

.extras-section {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.extras-section h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.extras-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.extra-tag {
    background: var(--bg-beige);
    padding: 16px 28px;
    border-radius: 12px;
    font-size: 0.98rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 1px solid transparent;
}

.extra-tag:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(184, 150, 90, 0.25);
    border-color: var(--primary-gold);
}

.extra-tag i {
    color: var(--primary-gold);
    font-size: 1.15rem;
}

.extra-tag:hover i {
    color: white;
}

/* ===========================
   15. SUSTAINABILITY SECTION
   =========================== */
.sustainability-section {
    background: var(--bg-beige);
}

.sustainability-content {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 100%;
}

.sustainability-text {
    flex: 0 0 calc(66.666% - 80px);
    min-width: 0;
}

.sustainability-image {
    flex: 0 0 33.333%;
    min-width: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    height: 600px;
	padding:0;
}

.sustainability-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sustainability-text h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.sustainability-text p {
    font-size: 1.12rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 2rem;
}

/* ===========================
   16. REVIEWS SECTION
   =========================== */
.reviews-section {
    background: var(--bg-light);
    position: relative;
}



.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.review-card {
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.review-stars {
    color: #FFB800;
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.review-text {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 32px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 18px;
}

.review-author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), #B8965A);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.review-author-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.review-author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===========================
   17. FAQ SECTION
   =========================== */
.faq-section {
    background: var(--bg-beige);
    position: relative;
}

.faq-section::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 0;
    width: 400px;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1610557892470-55d9e80c0bce?w=500&q=80') center/cover no-repeat;
    opacity: 0.04;
    border-radius: 0 50% 50% 0;
    pointer-events: none;
}

.faq-list {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: white;
    padding: 42px;
    border-radius: 16px;
    margin-bottom: 28px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.faq-question i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

.faq-answer {
    font-size: 1.08rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* ===========================
   18. CONTACT SECTION
   =========================== */
.contact-section {
    background: var(--bg-light);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 450px;
    height: 450px;
    background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=600&q=80') center/cover no-repeat;
    opacity: 0.05;
    border-radius: 50% 0 0 0;
    pointer-events: none;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    margin: 5rem 0;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.contact-item i {
    font-size: 3rem;
    color: var(--primary-gold);
}

.contact-item a {
    font-size: 1.3rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-gold);
}

.contact-item span {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===========================
   19. FOOTER
   =========================== */
.footer {
    background: #0F0F0F;
    color: white;
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
    margin: 60px 40px 40px;
    border-radius: 24px;
    transform: scale(0.95);
    transform-origin: center bottom;
    opacity: 0.9;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.footer.footer-scaled {
    transform: scale(1);
    opacity: 1;
}

.footer-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.footer-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.05;
    filter: blur(2px);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 70px;
    margin-bottom: 70px;
    position: relative;
    z-index: 1;
}

.footer-section h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: white;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 2.3;
    transition: color 0.3s ease;
    display: block;
    font-size: 1rem;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.footer-brand span {
    color: var(--primary-gold);
}

.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 28px;
}

.footer-social a {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-gold);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-quote {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===========================
   20. ANIMATIONS
   =========================== */
@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes phoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-8deg);
    }
    20%, 40% {
        transform: rotate(8deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.03);
        opacity: 0.95;
    }
}

@keyframes bubbleFloat {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translate(var(--tx), var(--ty)) scale(1.5);
        opacity: 0;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-item, .process-step, .service-card, .review-card, .faq-item, .usp-item, .extra-tag {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.trust-item.fade-in-visible,
.process-step.fade-in-visible,
.service-card.fade-in-visible,
.review-card.fade-in-visible,
.faq-item.fade-in-visible,
.usp-item.fade-in-visible,
.extra-tag.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-item:nth-child(1).fade-in-visible { transition-delay: 0.1s; }
.trust-item:nth-child(2).fade-in-visible { transition-delay: 0.2s; }
.trust-item:nth-child(3).fade-in-visible { transition-delay: 0.3s; }
.trust-item:nth-child(4).fade-in-visible { transition-delay: 0.4s; }
.trust-item:nth-child(5).fade-in-visible { transition-delay: 0.5s; }

.process-step:nth-child(1).fade-in-visible { transition-delay: 0.1s; }
.process-step:nth-child(2).fade-in-visible { transition-delay: 0.2s; }
.process-step:nth-child(3).fade-in-visible { transition-delay: 0.3s; }
.process-step:nth-child(4).fade-in-visible { transition-delay: 0.4s; }

.service-card:nth-child(1).fade-in-visible { transition-delay: 0.1s; }
.service-card:nth-child(2).fade-in-visible { transition-delay: 0.2s; }
.service-card:nth-child(3).fade-in-visible { transition-delay: 0.3s; }
.service-card:nth-child(4).fade-in-visible { transition-delay: 0.4s; }

.review-card:nth-child(1).fade-in-visible { transition-delay: 0.1s; }
.review-card:nth-child(2).fade-in-visible { transition-delay: 0.2s; }
.review-card:nth-child(3).fade-in-visible { transition-delay: 0.3s; }

.faq-item:nth-child(1).fade-in-visible { transition-delay: 0.1s; }
.faq-item:nth-child(2).fade-in-visible { transition-delay: 0.15s; }
.faq-item:nth-child(3).fade-in-visible { transition-delay: 0.2s; }
.faq-item:nth-child(4).fade-in-visible { transition-delay: 0.25s; }
.faq-item:nth-child(5).fade-in-visible { transition-delay: 0.3s; }

.usp-item:nth-child(1).fade-in-visible { transition-delay: 0.1s; }
.usp-item:nth-child(2).fade-in-visible { transition-delay: 0.2s; }
.usp-item:nth-child(3).fade-in-visible { transition-delay: 0.3s; }
.usp-item:nth-child(4).fade-in-visible { transition-delay: 0.4s; }

.extra-tag {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.extra-tag.fade-in-visible {
    opacity: 1;
    transform: scale(1);
}

.extra-tag:nth-child(1).fade-in-visible { transition-delay: 0.05s; }
.extra-tag:nth-child(2).fade-in-visible { transition-delay: 0.1s; }
.extra-tag:nth-child(3).fade-in-visible { transition-delay: 0.15s; }
.extra-tag:nth-child(4).fade-in-visible { transition-delay: 0.2s; }
.extra-tag:nth-child(5).fade-in-visible { transition-delay: 0.25s; }
.extra-tag:nth-child(6).fade-in-visible { transition-delay: 0.3s; }
.extra-tag:nth-child(7).fade-in-visible { transition-delay: 0.35s; }

.cursor-bubble {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 150, 90, 0.4), rgba(184, 150, 90, 0.1));
    pointer-events: none;
    z-index: 9999;
    animation: bubbleFloat 1.5s ease-out forwards;
    border: 1px solid rgba(184, 150, 90, 0.3);
}

/* ===========================
   21. RESPONSIVE
   =========================== */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.12);
    z-index: 998;
    display: none;
}

.sticky-cta .cta-button {
    width: 100%;
    text-align: center;
    justify-content: center;
}

@media (max-width: 1199px) {
    .hero-content {
        padding-right: 0;
    }
}

@media (max-width: 991px) {
    :root {
        --section-spacing: 90px;
    }

    .navbar {
        padding: 14px 30px;
        border-radius: 14px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .quote-reveal-text {
        font-size: 1.8rem;
    }

    .about-content,
    .sustainability-content {
        flex-direction: column;
        gap: 50px;
    }

    .about-image,
    .about-text,
    .sustainability-text,
    .sustainability-image {
        flex: 0 0 100%;
    }

    .about-image,
    .sustainability-image {
        height: 500px;
        width: 100%;
    }

    .about-text h2,
    .sustainability-text h2 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .usps-grid {
        grid-template-columns: 1fr;
    }

    .call-button {
        bottom: 110px;
    }

    .nav-phone {
        margin-left: 0;
        margin-top: 12px;
    }

    .navbar-container {
        padding: 15px 20px;
    }

    .navbar-container.scrolled {
        padding: 10px 20px;
    }

    .dropdown-menu {
        background: rgba(249, 247, 244, 0.95);
        border: none;
        box-shadow: none;
        margin-top: 8px;
        margin-bottom: 12px;
        animation: none;
        position: static;
    }

    .nav-item.dropdown::before {
        display: none;
    }

    .dropdown-item {
        padding: 10px 20px;
        margin: 0;
    }

    .dropdown-item:hover {
        transform: translateX(0);
        background: rgba(184, 150, 90, 0.12);
    }

    .navbar-nav {
        padding-top: 12px;
    }

    .nav-phone {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .navbar {
        transform: scale(0.98);
    }

    .navbar:hover {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    :root {
        --section-spacing: 70px;
    }

    .sticky-cta {
        display: block;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .hero-subtitle, .section-subtitle {
        font-size: 1.12rem;
    }

    .hero-section {
        padding: 120px 0 70px;
    }

    .quote-reveal-text {
        font-size: 1.3rem;
    }

    .about-image,
    .sustainability-image {
        height: 450px;
    }

    .about-text h2,
    .sustainability-text h2 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-button, .cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .trust-items {
        flex-wrap: wrap;
        gap: 32px;
    }

    .trust-item {
        flex: 0 0 calc(50% - 16px);
        min-width: auto;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .call-button {
        width: 60px;
        height: 60px;
        bottom: 100px;
        right: 20px;
    }

    .fixed-cta {
        left: 20px !important;
        bottom: 20px !important;
    }

    .fixed-cta-content {
        padding: 16px 20px;
    }

    .fixed-cta-icon {
        width: 42px;
        height: 42px;
    }

    .cta-box-content {
        flex-direction: column;
        gap: 30px;
    }

    .cta-box-text {
        text-align: center;
    }

    .cta-box-image {
        width: 100px;
        height: 100px;
    }

    .cta-box h3 {
        font-size: 1.8rem;
    }

    .cta-box p {
        font-size: 1rem;
    }

    .cta-box {
        padding: 40px 30px;
    }

    .footer {
        margin: 40px 20px 20px;
        border-radius: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .quote-reveal-text {
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu {
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }
}

/* ===========================
   BUBBLE TRANSITION EFFECT CSS
   Witte zeepbubbels over het hele scherm
   =========================== */

/* Bubble Transition Overlay */
.bubble-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    overflow: hidden;
    background: rgba(255, 255, 255, 0);
    transition: background 0.6s ease;
}

.bubble-transition-overlay.active {
    background: rgba(255, 255, 255, 0.95);
}

.transition-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0.9) 40%, 
        rgba(230, 240, 255, 0.6) 70%, 
        rgba(200, 220, 255, 0.3) 100%);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
    animation: bubbleFloat 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    box-shadow: 
        inset -10px -10px 20px rgba(255, 255, 255, 0.8),
        inset 10px 10px 20px rgba(200, 220, 255, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Glans effect op de bubbel */
.transition-bubble::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 70%);
    border-radius: 50%;
    filter: blur(8px);
}

/* Klein highlight */
.transition-bubble::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 25%;
    width: 15%;
    height: 15%;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    filter: blur(3px);
}

@keyframes bubbleFloat {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0) rotate(0deg);
    }
    10% {
        opacity: .8;
    }
    50% {
        opacity: 0.65;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, calc(-50% - 100vh)) scale(1.5) rotate(360deg);
    }
}

/* Verschillende bubble groottes en snelheden */
.transition-bubble.small {
    animation-duration: 2.5s;
}

.transition-bubble.medium {
    animation-duration: 2s;
}

.transition-bubble.large {
    animation-duration: 1.5s;
}

/* ===========================
   4. NAVIGATION - UPDATED
   =========================== */
.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: 10px 32px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 1200px;
    margin-left: auto!important;
    margin-right: auto!important;

    border: 1px solid transparent;
	

}

/* Glass Morphism Effect ONLY on Scroll */
.navbar-container.scrolled .navbar {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset,
        0 2px 12px rgba(184, 150, 90, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
}

/* Subtle gradient overlay for depth */
.navbar-container.scrolled .navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: 16px;
    pointer-events: none;
    z-index: -1;
}

/* Hover effect WITHOUT border before scroll */
.navbar:hover {
    transform: scale(1);
    padding: 14px 36px;
}

/* Hover effect WITH shadow only after scroll */
.navbar-container.scrolled .navbar:hover {
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
}

.navbar-brand {
    font-size: 1.4rem;
    color: white !important;
    transition: all 0.3s ease;
    font-weight: 700;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
}

.navbar-brand img {
    animation: logoPulse 3s ease-in-out infinite;
}

.navbar-container.scrolled .navbar-brand {
    color: var(--text-dark) !important;
}

.navbar-brand span {
    color: var(--primary-gold);
}

.nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 0.92rem;
    margin: 0 4px;
    padding: 10px 18px !important;
    transition: all 0.3s ease;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.navbar-container.scrolled .nav-link {
    color: var(--text-dark) !important;
}

.nav-link:hover {
    color: var(--primary-gold) !important;
    background-color: rgba(184, 150, 90, 0.1);
    backdrop-filter: blur(10px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 11px 24px !important;
    background: linear-gradient(135deg, var(--primary-gold), #B8965A);
    border-radius: 10px;
    margin-left: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(184, 150, 90, 0.25);
    position: relative;
    z-index: 1;
}

.nav-phone:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(184, 150, 90, 0.35);
}

.nav-phone::after {
    display: none;
}

.nav-phone i {
    font-size: 1.1rem;
    animation: phoneRing 2s ease-in-out infinite;
}

/* Dropdown Styling with Glass Effect */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    padding: 12px 0;
    margin-top: 0;
    min-width: 240px;
    animation: dropdownFadeIn 0.3s ease;
    position: absolute;
    top: calc(100% + 8px);
    z-index: 1001;
}

.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
    z-index: 1000;
}

.dropdown-item {
    color: var(--text-dark);
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    margin: 0 8px;
    backdrop-filter: blur(0px);
}

.dropdown-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(184, 150, 90, 0);
    color: var(--primary-gold);
    transform: translateX(5px);
    backdrop-filter: blur(10px);
}

.dropdown-item:hover i {
    transform: scale(1.1);
}

.dropdown-item:active {
    background: rgba(184, 150, 90, 0.18);
}

.dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Mobile Navbar Toggle - White before scroll, Dark after scroll */
.navbar-toggler {
    border: 2px solid white;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

/* Dark toggle after scroll */
.navbar-container.scrolled .navbar-toggler {
    border-color: var(--text-dark);
}

.navbar-container.scrolled .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.2);
}

.navbar-container.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 26, 26, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===========================
   MOBILE RESPONSIVE
   =========================== */
@media (max-width: 991px) {
    :root {
        --section-spacing: 90px;
    }

    .navbar {
        padding: 14px 30px;
        border-radius: 14px;
        transform: scale(0.98);
    }

    .navbar:hover {
        transform: scale(1);
    }

    /* Mobile - Brand and Links WHITE before scroll */
    .navbar-brand {
        color: white !important;
    }

    .nav-link {
        color: white !important;
    }

    /* Mobile - Brand and Links DARK after scroll */
    .navbar-container.scrolled .navbar-brand {
        color: var(--text-dark) !important;
    }

    .navbar-container.scrolled .nav-link {
        color: var(--text-dark) !important;
    }

    /* Mobile - Navbar stays transparent */
    .navbar-container.scrolled .navbar {
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        border: 1px solid transparent;
    }

    .navbar-container.scrolled .navbar::before {
        display: none;
    }

    /* Mobile Dropdown/Collapse - ALWAYS has glassmorphism background */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-radius: 14px;
        padding: 20px;
        margin-top: 16px;
        box-shadow: 
            0 8px 32px rgba(0, 0, 0, 0.12),
            0 0 0 1px rgba(255, 255, 255, 0.5) inset;
        border: 1px solid rgba(255, 255, 255, 0.8);
    }

    /* Links in mobile menu are ALWAYS dark */
    .navbar-collapse .nav-link {
        color: var(--text-dark) !important;
    }

    .navbar-collapse .navbar-brand {
        color: var(--text-dark) !important;
    }

    /* Mobile Dropdown within collapse - Glass Effect */
    .navbar-collapse .dropdown-menu {
        background: rgba(249, 247, 244, 0.9);
        backdrop-filter: blur(15px) saturate(180%);
        -webkit-backdrop-filter: blur(15px) saturate(180%);
        border: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.08),
            0 0 0 1px rgba(255, 255, 255, 0.4) inset;
        margin-top: 8px;
        margin-bottom: 12px;
        animation: none;
        position: static;
    }

    .nav-item.dropdown::before {
        display: none;
    }

    .dropdown-item {
        padding: 10px 20px;
        margin: 0;
        color: var(--text-dark);
    }

    .dropdown-item:hover {
        transform: translateX(0);
        background: rgba(184, 150, 90, 0.15);
        backdrop-filter: blur(15px);
    }

    .navbar-nav {
        padding-top: 0;
    }

    .nav-phone {
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 12px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .quote-reveal-text {
        font-size: 1.8rem;
    }

    .about-content,
    .sustainability-content {
        flex-direction: column;
        gap: 50px;
    }

    .about-image,
    .about-text,
    .sustainability-text,
    .sustainability-image {
        flex: 0 0 100%;
    }

    .about-image,
    .sustainability-image {
        height: 500px;
        width: 100%;
    }

    .about-text h2,
    .sustainability-text h2 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .usps-grid {
        grid-template-columns: 1fr;
    }

    .call-button {
        bottom: 110px;
    }

    .navbar-container {
        padding: 15px 20px;
    }

    .navbar-container.scrolled {
        padding: 10px 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================
   STRIX CLEANING - MOBILE RESPONSIVE FIX
   Plaats dit ONDERAAN je CSS bestanden
   =========================== */

/* ===========================
   ALGEMENE MOBILE FIXES
   =========================== */
@media (max-width: 768px) {
    /* Voorkom horizontale scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        position: relative;
    }

    * {
        max-width: 100%;
    }

    /* Container padding */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Section spacing */
    :root {
        --section-spacing: 60px;
    }

    section, .subpage-section {
        padding: 60px 0 !important;
    }

    /* Typography */
    .hero-title {
        font-size: 2rem !important;
        letter-spacing: -1px !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
    }

    .section-title {
        font-size: 1.8rem !important;
        letter-spacing: -1px !important;
        margin-bottom: 1.2rem !important;
    }

    .section-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    /* Hero Section */
    .hero-section {
        min-height: 70vh !important;
        padding: 120px 0 60px !important;
    }

    .hero-content {
        padding-right: 0 !important;
    }

    .hero-badge {
        font-size: 0.85rem !important;
        padding: 10px 20px !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        margin-bottom: 2rem !important;
    }

    .hero-features {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: flex-start !important;
    }

    .hero-feature {
        font-size: 0.95rem !important;
    }

    /* Subpage Hero */
    .subpage-hero {
        min-height: 35vh !important;
        padding: 120px 0 50px !important;
    }

    .subpage-hero-title {
        font-size: 1.8rem !important;
        letter-spacing: -1px !important;
    }

    .subpage-hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    .subpage-breadcrumb {
        font-size: 0.85rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* Buttons */
    .cta-button,
    .cta-secondary {
        width: 100% !important;
        justify-content: center !important;
        padding: 16px 30px !important;
        font-size: 1rem !important;
        text-align: center !important;
    }

    .hero-buttons .cta-button,
    .hero-buttons .cta-secondary {
        width: 100% !important;
    }

    /* Trust Section */
    .trust-section {
        padding: 50px 0 !important;
    }

    .trust-items {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }

    .trust-item {
        min-width: auto !important;
    }

    .trust-item i {
        font-size: 2.5rem !important;
        margin-bottom: 12px !important;
    }

    .trust-item h4 {
        font-size: 0.95rem !important;
        margin-bottom: 5px !important;
    }

    .trust-item p {
        font-size: 0.85rem !important;
    }

    /* Quote Reveal Section */
    .quote-reveal-section {
        min-height: 50vh !important;
        padding: 60px 20px !important;
    }

    .quote-reveal-text {
        font-size: 1.2rem !important;
        max-width: 90vw !important;
        line-height: 1.5 !important;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .service-card {
        padding: 30px 25px !important;
    }

    .service-card h4 {
        font-size: 1.2rem !important;
    }

    .service-card li {
        font-size: 0.95rem !important;
        padding: 10px 0 !important;
    }

    /* Services Main Grid */
    .services-main-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        margin-top: 2.5rem !important;
    }

    .service-main-card {
        max-width: 100% !important;
    }

    .service-main-image {
        height: 220px !important;
    }

    .service-main-content {
        padding: 25px 20px !important;
    }

    .service-main-content h3 {
        font-size: 1.3rem !important;
        margin-bottom: 12px !important;
    }

    .service-main-content > p {
        font-size: 0.95rem !important;
        margin-bottom: 15px !important;
    }

    .service-main-list li {
        font-size: 0.9rem !important;
        padding: 6px 0 !important;
    }

    .service-main-footer {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: flex-start !important;
        padding-top: 15px !important;
    }

    /* Service Included Grid */
    .services-included-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .service-included-item {
        padding: 25px 20px !important;
    }

    .service-included-icon {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 15px !important;
    }

    .service-included-icon i {
        font-size: 1.8rem !important;
    }

    .service-included-item h4 {
        font-size: 1rem !important;
        margin-bottom: 6px !important;
    }

    .service-included-item p {
        font-size: 0.9rem !important;
    }

    /* Service Highlight Card */
    .service-highlight-card {
        padding: 25px 20px !important;
        margin: 2rem 0 !important;
    }

    .service-highlight-badge {
        position: static !important;
        margin: 0 auto 15px !important;
        font-size: 0.8rem !important;
        padding: 6px 16px !important;
    }

    .service-highlight-content {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .service-highlight-icon {
        width: 60px !important;
        height: 60px !important;
        margin: 0 auto !important;
    }

    .service-highlight-icon i {
        font-size: 2rem !important;
    }

    .service-highlight-text {
        text-align: center !important;
    }

    .service-highlight-text h3 {
        font-size: 1.4rem !important;
        margin-bottom: 8px !important;
    }

    .service-highlight-text p {
        font-size: 0.95rem !important;
        margin-bottom: 12px !important;
    }

    .service-highlight-features {
        justify-content: center !important;
        gap: 10px !important;
    }

    .service-highlight-features span {
        font-size: 0.85rem !important;
    }

    .service-highlight-cta {
        margin: 0 auto !important;
    }

    .service-highlight-price {
        font-size: 2.2rem !important;
        margin-bottom: 12px !important;
    }

    /* Extras Section */
    .extras-section {
        padding: 35px 25px !important;
        margin-top: 2.5rem !important;
    }

    .extras-section h4 {
        font-size: 1.2rem !important;
        margin-bottom: 20px !important;
    }

    .extras-grid {
        gap: 12px !important;
    }

    .extra-tag {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
        width: 100% !important;
        justify-content: center !important;
    }

    /* Process Steps */
    .process-steps {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    .process-step {
        padding: 45px 25px 35px !important;
    }

    .step-number {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.4rem !important;
        top: -25px !important;
    }

    .process-step i {
        font-size: 3rem !important;
        margin-bottom: 20px !important;
    }

    .process-step h3 {
        font-size: 1.25rem !important;
    }

    .process-step p {
        font-size: 0.95rem !important;
    }

    /* How Step Cards */
    .how-step-card {
        padding: 45px 25px 35px !important;
    }

    .how-step-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.5rem !important;
        top: -20px !important;
    }

    .how-step-icon {
        width: 70px !important;
        height: 70px !important;
        margin: 0.5rem auto 1.2rem !important;
    }

    .how-step-icon i {
        font-size: 2.2rem !important;
    }

    .how-step-card h3 {
        font-size: 1.25rem !important;
        margin-bottom: 0.8rem !important;
    }

    .how-step-card p {
        font-size: 0.95rem !important;
        margin-bottom: 1.2rem !important;
    }

    .how-step-list {
        max-width: 100% !important;
    }

    .how-step-item {
        margin-bottom: 0.6rem !important;
    }

    .how-step-item span {
        font-size: 0.9rem !important;
    }

    /* Reviews Section */
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .review-card {
        padding: 35px 25px !important;
    }

    .review-stars {
        font-size: 1.1rem !important;
        margin-bottom: 18px !important;
    }

    .review-text {
        font-size: 1rem !important;
        margin-bottom: 25px !important;
    }

    .review-author-avatar {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }

    .review-author-info strong {
        font-size: 1rem !important;
    }

    .review-author-info span {
        font-size: 0.85rem !important;
    }

    /* FAQ Section */
    .faq-item {
        padding: 30px 25px !important;
        margin-bottom: 20px !important;
    }

    .faq-question {
        font-size: 1.15rem !important;
        margin-bottom: 12px !important;
        gap: 10px !important;
    }

    .faq-question i {
        font-size: 1.3rem !important;
    }

    .faq-answer {
        font-size: 0.95rem !important;
    }

    /* Contact Section */
    .contact-info {
        flex-direction: column !important;
        gap: 35px !important;
        margin: 3rem 0 !important;
    }

    .contact-item {
        width: 100% !important;
    }

    .contact-item i {
        font-size: 2.5rem !important;
    }

    .contact-item a {
        font-size: 1.15rem !important;
    }

    /* CTA Box */
    .cta-box {
        padding: 35px 25px !important;
        margin-top: 3rem !important;
    }

    .cta-box-content {
        flex-direction: column !important;
        gap: 25px !important;
    }

    .cta-box-image {
        width: 90px !important;
        height: 90px !important;
        margin: 0 auto !important;
    }

    .cta-box-text {
        text-align: center !important;
    }

    .cta-box h3 {
        font-size: 1.6rem !important;
        margin-bottom: 0.8rem !important;
    }

    .cta-box p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* Price Card */
    .price-card {
        padding: 40px 25px !important;
        margin: 2.5rem 0 !important;
    }

    .price-badge {
        font-size: 0.85rem !important;
        padding: 8px 18px !important;
        margin-bottom: 20px !important;
    }

    .price-amount {
        font-size: 3.5rem !important;
        margin-bottom: 0.8rem !important;
    }

    .price-amount .currency {
        font-size: 2.2rem !important;
    }

    .price-description {
        font-size: 1.05rem !important;
        margin-bottom: 2rem !important;
    }

    .price-includes {
        max-width: 100% !important;
        margin-bottom: 2rem !important;
    }

    .price-includes h4 {
        font-size: 1.1rem !important;
        margin-bottom: 15px !important;
    }

    .price-includes li {
        font-size: 0.95rem !important;
        padding: 10px 0 !important;
    }

    /* Price Hero */
    .price-hero {
        padding: 40px 25px !important;
        margin: 2.5rem 0 3rem !important;
    }

    .price-hero-badge {
        font-size: 0.85rem !important;
        padding: 8px 18px !important;
        margin-bottom: 18px !important;
    }

    .price-hero-amount {
        font-size: 4rem !important;
        margin-bottom: 0.8rem !important;
    }

    .price-hero-description {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    /* Image Text Block */
    .image-text-block {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        margin: 2.5rem 0 !important;
    }

    .image-text-block.reverse {
        direction: ltr !important;
    }

    .image-text-block-image {
        height: 280px !important;
    }

    .image-text-block-content h3 {
        font-size: 1.6rem !important;
        margin-bottom: 1.2rem !important;
    }

    .image-text-block-content p {
        font-size: 1rem !important;
        margin-bottom: 1.2rem !important;
    }

    .image-text-block-content ul {
        margin: 1.5rem 0 !important;
    }

    .image-text-block-content li {
        padding: 8px 0 !important;
        font-size: 0.95rem !important;
    }

    /* Image Grid */
    .image-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin: 2rem 0 !important;
    }

    .image-grid.two-col,
    .image-grid.three-col {
        grid-template-columns: 1fr !important;
    }

    .image-grid-item {
        height: 220px !important;
    }

    .image-grid-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Info Box */
    .info-box {
        padding: 30px 20px !important;
        margin: 2rem 0 !important;
        border-left-width: 4px !important;
    }

    .info-box-header {
        gap: 12px !important;
        margin-bottom: 15px !important;
    }

    .info-box-icon {
        width: 45px !important;
        height: 45px !important;
    }

    .info-box-icon i {
        font-size: 1.3rem !important;
    }

    .info-box h4 {
        font-size: 1.15rem !important;
    }

    .info-box p {
        font-size: 0.95rem !important;
    }

    /* Feature Cards */
    .feature-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        margin-top: 2.5rem !important;
    }

    .feature-card {
        padding: 35px 25px !important;
    }

    .feature-card-icon {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 20px !important;
    }

    .feature-card-icon i {
        font-size: 2rem !important;
    }

    .feature-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 12px !important;
    }

    .feature-card p {
        font-size: 0.95rem !important;
    }

    /* USPs Grid */
    .usps-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .usp-item {
        gap: 15px !important;
    }

    .usp-item i {
        font-size: 1.8rem !important;
    }

    .usp-item h4 {
        font-size: 1.05rem !important;
        margin-bottom: 6px !important;
    }

    .usp-item p {
        font-size: 0.9rem !important;
    }

    /* About/Sustainability Content */
    .about-content,
    .sustainability-content {
        flex-direction: column !important;
        gap: 35px !important;
    }

    .about-image,
    .about-text,
    .sustainability-text,
    .sustainability-image {
        flex: 0 0 100% !important;
        width: 100% !important;
    }

    .about-image,
    .sustainability-image {
        height: 300px !important;
    }

    .about-text h2,
    .sustainability-text h2 {
        font-size: 1.8rem !important;
        margin-bottom: 1.5rem !important;
    }

    .about-text p,
    .sustainability-text p {
        font-size: 1rem !important;
        margin-bottom: 1.2rem !important;
    }

    /* Timeline */
    .timeline {
        margin: 2.5rem 0 !important;
    }

    .timeline::before {
        left: 25px !important;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding-left: 60px !important;
        margin-bottom: 45px !important;
    }

    .timeline-number {
        left: 25px !important;
        transform: none !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
    }

    .timeline-content {
        margin: 0 !important;
        padding: 25px 20px !important;
        text-align: left !important;
    }

    .timeline-item:nth-child(even) .timeline-content {
        text-align: left !important;
    }

    .timeline-content h3 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }

    .timeline-content p {
        font-size: 0.95rem !important;
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px !important;
        margin: 40px 20px 20px !important;
        border-radius: 16px !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        margin-bottom: 40px !important;
    }

    .footer-section h4 {
        font-size: 1.2rem !important;
        margin-bottom: 18px !important;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.95rem !important;
        line-height: 2 !important;
    }

    .footer-brand {
        font-size: 1.6rem !important;
        margin-bottom: 15px !important;
    }

    .footer-social {
        gap: 15px !important;
        margin-top: 20px !important;
        justify-content: center !important;
    }

    .footer-social a {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.2rem !important;
    }

    .footer-bottom {
        padding-top: 30px !important;
    }

    .footer-quote {
        font-size: 1.1rem !important;
        margin-bottom: 20px !important;
    }

    .footer-bottom p {
        font-size: 0.9rem !important;
    }

    /* Fixed Elements */
    .fixed-cta {
        left: 15px !important;
        bottom: 15px !important;
    }

    .fixed-cta-content {
        padding: 15px 18px !important;
        gap: 12px !important;
    }

    .fixed-cta-icon {
        width: 42px !important;
        height: 42px !important;
    }

    .fixed-cta-text h4 {
        font-size: 0.9rem !important;
        margin-bottom: 3px !important;
    }

    .fixed-cta-text p {
        font-size: 0.8rem !important;
    }

    .fixed-cta-price {
        font-size: 1.2rem !important;
        margin-left: 5px !important;
    }

    .fixed-cta-close {
        width: 22px !important;
        height: 22px !important;
        font-size: 0.65rem !important;
    }

    .call-button {
        width: 55px !important;
        height: 55px !important;
        bottom: 90px !important;
        right: 15px !important;
        font-size: 1.4rem !important;
        border-radius: 14px !important;
    }

    /* Sticky CTA */
    .sticky-cta {
        display: block !important;
        padding: 15px !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1) !important;
    }

    .sticky-cta .cta-button {
        width: 100% !important;
        padding: 14px 25px !important;
        font-size: 0.95rem !important;
    }

    /* Navbar Mobile */
    .navbar-container {
        padding: 12px 15px !important;
    }

    .navbar {
        padding: 12px 20px !important;
        border-radius: 12px !important;
    }

    .navbar-brand {
        font-size: 1.2rem !important;
    }

    .navbar-brand img {
        width: 40px !important;
    }

    .navbar-toggler {
        padding: 6px 10px !important;
        border-width: 2px !important;
    }

    .navbar-toggler-icon {
        width: 22px !important;
        height: 22px !important;
    }

    .navbar-collapse {
        padding: 18px !important;
        margin-top: 12px !important;
        border-radius: 12px !important;
    }

    .nav-link {
        font-size: 0.95rem !important;
        padding: 10px 15px !important;
        margin: 0 !important;
    }

    .nav-phone {
        width: 100% !important;
        justify-content: center !important;
        margin: 10px 0 0 0 !important;
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }

    .dropdown-menu {
        padding: 10px 0 !important;
        margin-top: 8px !important;
        margin-bottom: 10px !important;
    }

    .dropdown-item {
        padding: 10px 18px !important;
        font-size: 0.9rem !important;
    }

    .dropdown-item i {
        font-size: 1.1rem !important;
    }

    /* Scroll Progress */
    .scroll-progress {
        height: 2px !important;
    }

    /* Comparison Table */
    .comparison-table {
        overflow-x: auto !important;
        margin: 2.5rem -20px !important;
    }

    .comparison-table table {
        min-width: 600px !important;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 12px !important;
        font-size: 0.9rem !important;
    }

    .comparison-table th {
        font-size: 1rem !important;
    }

    /* Content Image */
    .content-image {
        margin: 2rem 0 !important;
        border-radius: 12px !important;
    }

    .content-image.small,
    .content-image.medium {
        max-width: 100% !important;
    }
}

/* ===========================
   EXTRA KLEINE SCHERMEN (<576px)
   =========================== */
@media (max-width: 576px) {
    /* Typography */
    .hero-title {
        font-size: 1.75rem !important;
    }

    .section-title {
        font-size: 1.6rem !important;
    }

    .subpage-hero-title {
        font-size: 1.6rem !important;
    }

    .quote-reveal-text {
        font-size: 1.1rem !important;
    }

    /* Buttons */
    .cta-button,
    .cta-secondary {
        padding: 14px 25px !important;
        font-size: 0.95rem !important;
    }

    /* Trust Items - Stack completely */
    .trust-items {
        grid-template-columns: 1fr !important;
    }

    /* Cards */
    .service-main-content,
    .review-card,
    .faq-item,
    .process-step,
    .how-step-card,
    .feature-card {
        padding: 25px 18px !important;
    }

    /* Price */
    .price-hero-amount {
        font-size: 3.5rem !important;
    }

    .price-amount {
        font-size: 3rem !important;
    }

    .price-amount .currency {
        font-size: 2rem !important;
    }

    /* Footer */
    .footer {
        padding: 50px 0 25px !important;
        margin: 30px 15px 15px !important;
    }

    .footer-brand {
        font-size: 1.4rem !important;
    }

    .footer-social a {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.1rem !important;
    }

    /* Images */
    .image-grid-item,
    .about-image,
    .sustainability-image,
    .image-text-block-image {
        height: 240px !important;
    }

    /* CTA Box */
    .cta-box {
        padding: 30px 20px !important;
    }

    .cta-box h3 {
        font-size: 1.4rem !important;
    }

    /* Info Box */
    .info-box {
        padding: 25px 18px !important;
    }

    /* Navbar */
    .navbar-brand img {
        width: 35px !important;
    }

    .navbar-brand {
        font-size: 1.1rem !important;
    }
}

/* ===========================
   OFFERTE PAGINA SPECIFIEKE FIXES
   =========================== */

/* Size & Dirt Level Buttons - Algemeen */
.size-btn,
.dirt-btn,
.freq-btn {
    padding: 0.75rem 0.5rem !important;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 70px !important;
    word-break: keep-all !important;
    white-space: normal !important;
    line-height: 1.3 !important;
}

.dirt-btn i,
.freq-btn i {
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-size: 1.5rem !important;
}

/* Mobile Fixes voor Offerte Pagina */
@media (max-width: 768px) {
    /* Wizard Header */
    .wizard-header h1 {
        font-size: 1.5rem !important;
    }

    .wizard-header p {
        font-size: 0.9rem !important;
    }

    /* Step Indicators */
    .step-indicator {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }

    .step-line {
        margin: 0 0.3rem !important;
    }

    /* Wizard Content */
    .wizard-content {
        padding: 1.5rem !important;
        min-height: 400px !important;
    }

    /* Service Options */
    .strix-service-option {
        padding: 2rem 1.5rem !important;
        min-height: 280px !important;
    }

    .strix-service-option i {
        font-size: 3rem !important;
        margin-bottom: 1.2rem !important;
    }

    .strix-service-option h3 {
        font-size: 1.2rem !important;
    }

    .strix-service-option p {
        font-size: 0.9rem !important;
    }

    .strix-service-badge {
        font-size: 0.85rem !important;
        padding: 0.2rem 0.6rem !important;
        top: -10px !important;
        right: 15px !important;
    }

    /* Room Counters */
    .room-counter {
        padding: 1.2rem !important;
    }

    .room-counter h3 {
        font-size: 1rem !important;
    }

    .counter-btn {
        width: 35px !important;
        height: 35px !important;
        font-size: 1.3rem !important;
    }

    .counter-value {
        font-size: 1.5rem !important;
        min-width: 35px !important;
    }

    /* Room Details */
    .room-detail-card {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .room-detail-card h3 {
        font-size: 1.2rem !important;
        margin-bottom: 1.2rem !important;
    }

    /* Size Buttons - 2 kolommen op mobiel */
    .room-detail-card .row.g-2 {
        gap: 0.5rem !important;
    }

    .room-detail-card .row.g-2 > [class*="col-"] {
        flex: 0 0 calc(50% - 0.25rem) !important;
        max-width: calc(50% - 0.25rem) !important;
        padding: 0 !important;
    }

    .size-btn {
        padding: 0.6rem 0.3rem !important;
        font-size: 0.85rem !important;
        min-height: 60px !important;
    }

    /* Dirt Level Buttons - 3 kolommen blijven */
    .dirt-btn {
        padding: 0.6rem 0.3rem !important;
        font-size: 0.85rem !important;
        min-height: 75px !important;
    }

    .dirt-btn i {
        font-size: 1.3rem !important;
        margin-bottom: 0.4rem !important;
    }

    /* Frequency Buttons */
    .freq-btn {
        padding: 1.5rem 1rem !important;
        min-height: 90px !important;
    }

    .freq-btn i {
        font-size: 2rem !important;
    }

    .freq-btn h3 {
        font-size: 1.1rem !important;
        margin: 0 !important;
    }

    /* Contact Fields */
    #preferredDate,
    .wizard-content input[type="text"],
    .wizard-content input[type="email"],
    .wizard-content input[type="tel"],
    .wizard-content textarea {
        font-size: 16px !important; /* Voorkomt zoom op iOS */
    }

    /* Extra Services */
    .extra-service {
        padding: 0.8rem !important;
        gap: 0.6rem !important;
    }

    .extra-service i {
        font-size: 1.3rem !important;
    }

    .extra-service span {
        font-size: 0.9rem !important;
    }

    /* Summary */
    .summary-box {
        padding: 1.2rem !important;
        margin-top: 1.5rem !important;
    }

    .summary-box h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.8rem !important;
    }

    .summary-box p,
    .summary-box div {
        font-size: 0.9rem !important;
    }

    /* Navigation Buttons */
    .wizard-navigation {
        padding: 1.5rem !important;
        gap: 0.8rem !important;
        flex-direction: column !important;
    }

    #prevBtn,
    #nextBtn,
    #submitBtn {
        width: 100% !important;
        padding: 14px 25px !important;
        font-size: 1rem !important;
        margin: 0 !important;
    }

    /* Info Alert */
    .info-alert,
    #proefInfo {
        padding: 1.2rem !important;
        margin-top: 1.5rem !important;
    }

    .info-alert h4,
    #proefInfo h4 {
        font-size: 1rem !important;
        margin-bottom: 0.4rem !important;
    }

    .info-alert p,
    #proefInfo p {
        font-size: 0.9rem !important;
        margin-bottom: 0.4rem !important;
    }

    .info-alert ul,
    #proefInfo ul {
        font-size: 0.85rem !important;
        padding-left: 1.2rem !important;
    }

    /* Total Rooms Summary */
    #totalRooms p {
        font-size: 1rem !important;
    }

    #totalCount {
        font-size: 1.2rem !important;
    }
}

/* Extra kleine schermen */
@media (max-width: 576px) {
    .wizard-content {
        padding: 1rem !important;
    }

    .strix-service-option {
        padding: 1.5rem 1rem !important;
        min-height: 260px !important;
    }

    .strix-service-option i {
        font-size: 2.5rem !important;
    }

    .room-counter {
        padding: 1rem !important;
    }

    .room-detail-card {
        padding: 1.2rem !important;
    }

    /* Dirt buttons - kleinere tekst op zeer kleine schermen */
    .dirt-btn {
        font-size: 0.8rem !important;
        min-height: 70px !important;
        padding: 0.5rem 0.2rem !important;
    }

    .size-btn {
        font-size: 0.8rem !important;
        min-height: 55px !important;
        padding: 0.5rem 0.2rem !important;
    }
}

/* ===========================
   LANDSCAPE MODE MOBIEL
   =========================== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh !important;
    }

    .subpage-hero {
        min-height: 50vh !important;
    }

    .quote-reveal-section {
        min-height: 70vh !important;
    }
}

/* ===========================
   TABLET AANPASSINGEN
   =========================== */
@media (min-width: 769px) and (max-width: 991px) {
    .services-main-grid {
        grid-template-columns: 1fr !important;
    }

    .trust-items {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .services-included-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .image-grid.three-col {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}-e 

/* ===========================
   SUBPAGES CSS
   =========================== */
/* ===========================
   UNIVERSELE SUBPAGINA STYLING
   Voor gebruik op alle subpagina's
   =========================== */

/* ===========================
   1. HERO SUBPAGE
   =========================== */
.subpage-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
}

.subpage-hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.subpage-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.subpage-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.subpage-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.subpage-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.subpage-breadcrumb a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.subpage-breadcrumb a:hover {
    color: #B8965A;
}

.subpage-breadcrumb i {
    font-size: 0.7rem;
}

.subpage-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(184, 150, 90, 0.15);
    color: var(--primary-gold);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
    border: 1px solid rgba(184, 150, 90, 0.3);
    backdrop-filter: blur(10px);
}

.subpage-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.2rem;
    line-height: 1.15;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.subpage-hero-title .highlight {
    color: var(--primary-gold);
}

.subpage-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subpage-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   2. CONTENT SECTIONS
   =========================== */
.subpage-section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.subpage-section.bg-light {
    background: var(--bg-light);
}

.subpage-section.bg-beige {
    background: var(--bg-beige);
}

.subpage-section.bg-dark {
    background: #1A1A1A;
    color: white;
}

.subpage-section.bg-dark .section-title,
.subpage-section.bg-dark .section-subtitle,
.subpage-section.bg-dark h3,
.subpage-section.bg-dark h4,
.subpage-section.bg-dark p {
    color: white;
}

/* Content Wrapper */
.subpage-content {
    max-width: 900px;
    margin: 0 auto;
}

.subpage-content.wide {
    max-width: 1200px;
}

/* ===========================
   3. FEATURE CARDS
   =========================== */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), #B8965A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 8px 24px rgba(184, 150, 90, 0.3);
}

.feature-card-icon i {
    font-size: 2.2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* ===========================
   4. PRICE CARD
   =========================== */
.price-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9F7F4 100%);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    text-align: center;
    border: 2px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 150, 90, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gold);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.price-amount {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.price-amount .currency {
    font-size: 3rem;
    vertical-align: super;
}

.price-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.price-includes {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
}

.price-includes h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.price-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(184, 150, 90, 0.15);
}

.price-includes li:last-child {
    border-bottom: none;
}

.price-includes li i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* New Clean Price Hero */
.price-hero {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9F7F4 100%);
    border-radius: 24px;
    margin: 4rem 0 5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.price-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gold);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.price-hero-amount {
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.price-hero-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Included Grid */
.services-included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 0;
}

.service-included-item {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 150, 90, 0.1);
}

.service-included-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.service-included-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(184, 150, 90, 0.1), rgba(184, 150, 90, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-included-item:hover .service-included-icon {
    background: linear-gradient(135deg, var(--primary-gold), #B8965A);
    transform: scale(1.1);
}

.service-included-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
    transition: color 0.3s ease;
}

.service-included-item:hover .service-included-icon i {
    color: white;
}

.service-included-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-included-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* ===========================
   5. INFO BOXES
   =========================== */
.info-box {
    background: white;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    margin: 3rem 0;
    border-left: 5px solid var(--primary-gold);
}

.info-box.warning {
    background: #FFF9E6;
    border-left-color: #FFB800;
}

.info-box.success {
    background: #E8F5E9;
    border-left-color: #4CAF50;
}

.info-box.info {
    background: #E3F2FD;
    border-left-color: #2196F3;
}

.info-box-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.info-box-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-box.warning .info-box-icon {
    background: #FFB800;
}

.info-box.success .info-box-icon {
    background: #4CAF50;
}

.info-box.info .info-box-icon {
    background: #2196F3;
}

.info-box-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.info-box p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* ===========================
   6. TIMELINE / STEPS
   =========================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-gold), #B8965A);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    margin: 0 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), #B8965A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 24px rgba(184, 150, 90, 0.4);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* ===========================
   7. COMPARISON TABLE
   =========================== */
.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    margin: 4rem 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-gold), #B8965A);
}

.comparison-table th {
    padding: 25px 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-align: left;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.05rem;
    color: var(--text-gray);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(184, 150, 90, 0.05);
}

.comparison-table .check {
    color: #4CAF50;
    font-size: 1.3rem;
}

.comparison-table .cross {
    color: #F44336;
    font-size: 1.3rem;
}

/* ===========================
   8. CONTENT IMAGES
   =========================== */
.content-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-image.small {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.content-image.medium {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.image-grid-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.image-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.image-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.image-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.image-text-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 4rem 0;
}

.image-text-block.reverse {
    direction: rtl;
}

.image-text-block.reverse > * {
    direction: ltr;
}

.image-text-block-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.image-text-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-text-block-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.image-text-block-content p {
    font-size: 1.08rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.image-text-block-content ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.image-text-block-content li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--text-gray);
}

.image-text-block-content li i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ===========================
   9. RESPONSIVE
   =========================== */
@media (max-width: 991px) {
    .subpage-hero-title {
        font-size: 2.6rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 70px;
    }

    .timeline-number {
        left: 30px;
        transform: none;
    }

    .timeline-content {
        margin: 0;
        text-align: left !important;
    }

    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }

    .image-text-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-text-block.reverse {
        direction: ltr;
    }

    .image-grid.two-col,
    .image-grid.three-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .subpage-hero {
        min-height: 40vh;
        padding: 140px 0 70px;
    }

    .subpage-hero-title {
        font-size: 2.2rem;
    }

    .subpage-hero-subtitle {
        font-size: 1.05rem;
    }

    .price-amount {
        font-size: 4rem;
    }

    .price-amount .currency {
        font-size: 2.5rem;
    }

    .price-card {
        padding: 40px 30px;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
    }

    .info-box {
        padding: 30px 25px;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .subpage-hero-title {
        font-size: 2rem;
    }

    .price-amount {
        font-size: 3.5rem;
    }
}

/* ===========================
   UNIVERSELE SUBPAGINA STYLING
   Voor gebruik op alle subpagina's
   =========================== */

/* ===========================
   1. HERO SUBPAGE
   =========================== */
.subpage-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
}

.subpage-hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.subpage-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.subpage-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.subpage-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.subpage-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.subpage-breadcrumb a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.subpage-breadcrumb a:hover {
    color: #B8965A;
}

.subpage-breadcrumb i {
    font-size: 0.7rem;
}

.subpage-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(184, 150, 90, 0.15);
    color: var(--primary-gold);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
    border: 1px solid rgba(184, 150, 90, 0.3);
    backdrop-filter: blur(10px);
}

.subpage-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.2rem;
    line-height: 1.15;
    letter-spacing: -2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.subpage-hero-title .highlight {
    color: var(--primary-gold);
}

.subpage-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.subpage-hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   2. CONTENT SECTIONS
   =========================== */
.subpage-section {
    padding: var(--section-spacing) 0;
    position: relative;
}

.subpage-section.bg-light {
    background: var(--bg-light);
}

.subpage-section.bg-beige {
    background: var(--bg-beige);
}

.subpage-section.bg-dark {
    background: #1A1A1A;
    color: white;
}

.subpage-section.bg-dark .section-title,
.subpage-section.bg-dark .section-subtitle,
.subpage-section.bg-dark h3,
.subpage-section.bg-dark h4,
.subpage-section.bg-dark p {
    color: white;
}

/* Content Wrapper */
.subpage-content {
    max-width: 900px;
    margin: 0 auto;
}

.subpage-content.wide {
    max-width: 1200px;
}

/* ===========================
   3. FEATURE CARDS
   =========================== */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 4rem;
}

.feature-card {
    background: white;
    padding: 45px 35px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), #B8965A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    box-shadow: 0 8px 24px rgba(184, 150, 90, 0.3);
}

.feature-card-icon i {
    font-size: 2.2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* ===========================
   4. PRICE CARD
   =========================== */
.price-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F9F7F4 100%);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    text-align: center;
    border: 2px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
    margin: 4rem 0;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 150, 90, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gold);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.price-amount {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.price-amount .currency {
    font-size: 3rem;
    vertical-align: super;
}

.price-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.price-includes {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
}

.price-includes h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.price-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-includes li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(184, 150, 90, 0.15);
}

.price-includes li:last-child {
    border-bottom: none;
}

.price-includes li i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* New Clean Price Hero */
.price-hero {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F9F7F4 100%);
    border-radius: 24px;
    margin: 4rem 0 5rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.price-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-gold);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.price-hero-amount {
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.price-hero-description {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Included Grid */
.services-included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 0;
}

.service-included-item {
    text-align: center;
    padding: 35px 25px;
    background: white;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 150, 90, 0.1);
}

.service-included-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-gold);
}

.service-included-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(184, 150, 90, 0.1), rgba(184, 150, 90, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-included-item:hover .service-included-icon {
    background: linear-gradient(135deg, var(--primary-gold), #B8965A);
    transform: scale(1.1);
}

.service-included-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
    transition: color 0.3s ease;
}

.service-included-item:hover .service-included-icon i {
    color: white;
}

.service-included-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-included-item p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.6;
}

/* ===========================
   5. INFO BOXES
   =========================== */
.info-box {
    background: white;
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    margin: 3rem 0;
    border-left: 5px solid var(--primary-gold);
}

.info-box.warning {
    background: #FFF9E6;
    border-left-color: #FFB800;
}

.info-box.success {
    background: #E8F5E9;
    border-left-color: #4CAF50;
}

.info-box.info {
    background: #E3F2FD;
    border-left-color: #2196F3;
}

.info-box-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.info-box-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-box.warning .info-box-icon {
    background: #FFB800;
}

.info-box.success .info-box-icon {
    background: #4CAF50;
}

.info-box.info .info-box-icon {
    background: #2196F3;
}

.info-box-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.info-box p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* ===========================
   6. TIMELINE / STEPS
   =========================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-gold), #B8965A);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    margin: 0 30px;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), #B8965A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 8px 24px rgba(184, 150, 90, 0.4);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

/* ===========================
   7. COMPARISON TABLE
   =========================== */
.comparison-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    margin: 4rem 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, var(--primary-gold), #B8965A);
}

.comparison-table th {
    padding: 25px 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-align: left;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.05rem;
    color: var(--text-gray);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: rgba(184, 150, 90, 0.05);
}

.comparison-table .check {
    color: #4CAF50;
    font-size: 1.3rem;
}

.comparison-table .cross {
    color: #F44336;
    font-size: 1.3rem;
}

/* ===========================
   8. CONTENT IMAGES
   =========================== */
.content-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

.content-image.small {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.content-image.medium {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.image-grid-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.image-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.image-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
}

.image-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.image-text-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 4rem 0;
}

.image-text-block.reverse {
    direction: rtl;
}

.image-text-block.reverse > * {
    direction: ltr;
}

.image-text-block-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.image-text-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-text-block-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.image-text-block-content p {
    font-size: 1.08rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.image-text-block-content ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.image-text-block-content li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1.05rem;
    color: var(--text-gray);
}

.image-text-block-content li i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ===========================
   9. RESPONSIVE
   =========================== */
/* ===========================
   9. RESPONSIVE
   =========================== */

/* Service Highlight Card (Proefschoonmaak) */
.service-highlight-card {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(184, 150, 90, 0.2);
}

.service-highlight-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gold);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-highlight-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 30px;
    align-items: center;
}

.service-highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), #B8965A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-highlight-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-highlight-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-highlight-text p {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-highlight-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.service-highlight-features span {
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-highlight-features i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.service-highlight-cta {
    text-align: center;
    flex-shrink: 0;
}

.service-highlight-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

/* Services Main Grid */
.services-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 4rem;
}

.service-main-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.service-main-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-main-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.service-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-main-card:hover .service-main-image img {
    transform: scale(1.05);
}

.service-main-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-main-overlay i {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.service-main-content {
    padding: 35px;
}

.service-main-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-main-content > p {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-main-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-main-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 1rem;
    color: var(--text-gray);
}

.service-main-list i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-main-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-main-tag {
    background: rgba(184, 150, 90, 0.1);
    color: var(--primary-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 991px) {
    .subpage-hero-title {
        font-size: 2.6rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 70px;
    }

    .timeline-number {
        left: 30px;
        transform: none;
    }

    .timeline-content {
        margin: 0;
        text-align: left !important;
    }

    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
    }

    .image-text-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .image-text-block.reverse {
        direction: ltr;
    }

    .image-grid.two-col,
    .image-grid.three-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .subpage-hero {
        min-height: 40vh;
        padding: 140px 0 70px;
    }

    .subpage-hero-title {
        font-size: 2.2rem;
    }

    .subpage-hero-subtitle {
        font-size: 1.05rem;
    }

    .price-amount {
        font-size: 4rem;
    }

    .price-amount .currency {
        font-size: 2.5rem;
    }

    .price-card {
        padding: 40px 30px;
    }

    .price-hero {
        padding: 40px 25px;
    }

    .price-hero-amount {
        font-size: 4.5rem;
    }

    .services-included-grid {
        grid-template-columns: 1fr;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
    }

    .info-box {
        padding: 30px 25px;
    }

    .comparison-table {
        overflow-x: auto;
    }

    .image-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .subpage-hero-title {
        font-size: 2rem;
    }

    .price-amount {
        font-size: 3.5rem;
    }
}

/* ===========================
   RESPONSIVE FIXES
   Voor strix.css en subpages.css
   =========================== */

/* ===========================
   1. ALGEMENE FIXES VOOR STRIX.CSS
   =========================== */

/* Voeg toe aan het begin van strix.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}


/* ===========================
   2. SERVICE CARDS FIXES VOOR SUBPAGES.CSS
   =========================== */

/* Vervang de bestaande .services-main-grid regel */
.services-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 450px), 1fr));
    gap: 40px;
    margin-top: 4rem;
}

/* ===========================
   3. MOBIELE RESPONSIVE @768px VOOR SUBPAGES.CSS
   =========================== */

/* Voeg toe aan de @media (max-width: 768px) sectie in subpages.css */
@media (max-width: 768px) {
    /* Services Grid - Mobiel */
    .services-main-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-main-card {
        max-width: 100%;
    }

    .service-main-image {
        height: 250px;
    }

    .service-main-content {
        padding: 30px 25px;
    }

    .service-main-content h3 {
        font-size: 1.4rem;
    }

    /* Service Highlight Card - Mobiel */
    .service-highlight-card {
        padding: 30px 25px;
    }

    .service-highlight-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-highlight-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .service-highlight-icon i {
        font-size: 2rem;
    }

    .service-highlight-text {
        text-align: center;
    }

    .service-highlight-text h3 {
        font-size: 1.5rem;
    }

    .service-highlight-features {
        justify-content: center;
    }

    .service-highlight-cta {
        margin: 0 auto;
    }

    .service-highlight-price {
        font-size: 2.5rem;
    }

    .service-highlight-badge {
        position: static;
        margin: 0 auto 20px;
    }

    /* Containers - Mobiel */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Images - Mobiel */
    .image-grid {
        gap: 20px;
    }

    .image-grid-item img {
        width: 100%;
        height: auto;
    }
}

/* ===========================
   4. EXTRA KLEINE SCHERMEN @576px
   =========================== */

@media (max-width: 576px) {
    .service-main-content {
        padding: 25px 20px;
    }

    .service-main-content h3 {
        font-size: 1.3rem;
    }

    .service-main-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .service-highlight-card {
        padding: 25px 20px;
    }

    .service-highlight-text h3 {
        font-size: 1.3rem;
    }

    .service-highlight-price {
        font-size: 2rem;
    }
}


/* ===========================
   FINAL FIXES
   =========================== */

/* Navbar mobile fix */
@media (max-width: 991px) {
    .navbar-container {
        top: 10px !important;
    }
    
    .navbar-container.scrolled {
        top: 10px !important;
    }
}
-e 

/* ===========================
   RESPONSIVE CSS
   =========================== */
/* ===========================
   STRIX CLEANING - MOBILE RESPONSIVE FIXES
   Voeg dit toe ONDER strix.css en subpages.css
   =========================== */

/* ===========================
   1. CRITICAL FIXES
   =========================== */

/* CRITICAL: Safe area insets voor mobiele browsers */
/* Voorkomt dat navbar achter statusbalk/notch verdwijnt */
:root {
    --safe-area-top: env(safe-area-inset-top, 0px);
    --safe-area-bottom: env(safe-area-inset-bottom, 0px);
    --safe-area-left: env(safe-area-inset-left, 0px);
    --safe-area-right: env(safe-area-inset-right, 0px);
}

/* Fix: Section Spacing te groot op mobiel */
@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }
}

@media (max-width: 576px) {
    :root {
        --section-spacing: 40px;
    }
}

/* Fix: Navbar scaling en padding op mobiel */
@media (max-width: 991px) {
    .navbar {
        transform: scale(1) !important;
        padding: 10px 20px !important;
        margin: 0 15px;
    }
    
    .navbar:hover {
        transform: scale(1) !important;
        padding: 10px 20px !important;
    }
    
    .navbar-container {
        /* Safe area inset voor mobiele browsers (iOS notch, statusbar, etc.) */
        padding-top: max(15px, env(safe-area-inset-top));
        padding-bottom: 15px;
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 8px 16px !important;
        margin: 0 10px;
    }
}

/* Fix: Dropdown menu positioning op mobiel */
@media (max-width: 991px) {
    .dropdown-menu {
        position: static !important;
        box-shadow: none;
        border: none;
        padding: 8px 0;
        margin: 0;
        background: transparent;
        backdrop-filter: none;
    }
    
    .navbar-container.scrolled .dropdown-menu {
        background: transparent;
    }
    
    .nav-item.dropdown::before {
        display: none;
    }
    
    .dropdown-item {
        border-radius: 8px;
        margin: 4px 8px;
        background: rgba(184, 150, 90, 0.05);
    }
}

/* Fix: Nav phone button op mobiel */
@media (max-width: 991px) {
    .nav-phone {
        margin-left: 0 !important;
        margin-top: 12px;
        width: calc(100% - 16px);
        justify-content: center;
        margin-left: 8px !important;
        margin-right: 8px;
    }
}

/* Fix: Scrollbar width op mobiel */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 6px;
    }
    
    ::-webkit-scrollbar-thumb {
        border: 2px solid #F9F7F4;
    }
}

/* Fix: Container padding consistent */
@media (max-width: 768px) {
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* ===========================
   2. GRID FIXES - PREVENT HORIZONTAL SCROLL
   =========================== */

/* CRITICAL: Fix services main grid overflow */
.services-main-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr)) !important;
}

@media (max-width: 768px) {
    .services-main-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
}

/* Fix: Feature cards grid */
.feature-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)) !important;
}

@media (max-width: 768px) {
    .feature-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
}

/* Fix: Services included grid */
.services-included-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)) !important;
}

@media (max-width: 768px) {
    .services-included-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
}

/* Fix: Image grids gaps */
@media (max-width: 768px) {
    .image-grid {
        gap: 15px;
    }
    
    .image-grid.two-col,
    .image-grid.three-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .image-grid {
        gap: 10px;
    }
}

/* ===========================
   3. TYPOGRAPHY FIXES
   =========================== */

/* Fix: Subpage hero title te groot */
@media (max-width: 768px) {
    .subpage-hero-title {
        font-size: 2rem;
        letter-spacing: -1.5px;
    }
}

@media (max-width: 576px) {
    .subpage-hero-title {
        font-size: 1.75rem;
        letter-spacing: -1px;
    }
}

/* Fix: Price hero amounts te groot */
@media (max-width: 768px) {
    .price-hero-amount {
        font-size: 4rem;
    }
    
    .price-amount {
        font-size: 3.5rem;
    }
    
    .price-amount .currency {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .price-hero-amount {
        font-size: 3rem;
    }
    
    .price-amount {
        font-size: 2.8rem;
    }
    
    .price-amount .currency {
        font-size: 1.8rem;
    }
}

/* Fix: Section titles responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem !important;
    }
    
    .section-subtitle {
        font-size: 1rem !important;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem !important;
    }
}

/* ===========================
   4. BUTTON & CTA FIXES
   =========================== */

@media (max-width: 768px) {
    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .cta-secondary {
        padding: 13px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .cta-button,
    .cta-secondary {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .subpage-hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .subpage-hero-cta .cta-button,
    .subpage-hero-cta .cta-secondary {
        width: 100%;
    }
}

/* ===========================
   5. CARD & CONTENT FIXES
   =========================== */

@media (max-width: 768px) {
    .feature-card {
        padding: 35px 25px;
    }
    
    .service-main-card {
        max-width: 100%;
    }
    
    .service-main-image {
        height: 250px;
    }
    
    .service-main-content {
        padding: 30px 25px;
    }
    
    .service-main-content h3 {
        font-size: 1.4rem;
    }
    
    .price-card {
        padding: 40px 25px;
    }
    
    .price-hero {
        padding: 40px 20px;
        margin: 3rem 0 4rem;
    }
}

@media (max-width: 576px) {
    .feature-card {
        padding: 30px 20px;
    }
    
    .service-main-content {
        padding: 25px 20px;
    }
    
    .service-main-content h3 {
        font-size: 1.3rem;
    }
    
    .service-main-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .price-card {
        padding: 35px 20px;
    }
}

/* ===========================
   6. FOOTER FIXES
   =========================== */

@media (max-width: 768px) {
    .footer {
        margin: 40px 15px 15px;
        border-radius: 16px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 576px) {
    .footer {
        margin: 30px 10px 10px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .footer-legal a {
        padding: 8px 0;
    }
    
    .footer-legal .separator {
        display: none;
    }
}

/* ===========================
   7. HOVER STATES - TOUCH DEVICES
   =========================== */

/* Alleen hover effecten op devices die hover supporten */
@media (hover: none) {
    .navbar:hover {
        transform: scale(1) !important;
        padding: 10px 20px !important;
    }
    
    .cta-button:hover,
    .cta-secondary:hover {
        transform: none;
    }
    
    .feature-card:hover {
        transform: none;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    }
    
    .service-main-card:hover {
        transform: none;
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    }
}

/* ===========================
   8. WIZARD/OFFERTE ADDITIONAL FIXES
   =========================== */

@media (max-width: 576px) {
    .wizard-container {
        margin: 20px 10px !important;
        border-radius: 12px !important;
    }
    
    .wizard-header h1 {
        font-size: 1.4rem !important;
    }
    
    .wizard-content {
        padding: 1rem !important;
    }
}

/* ===========================
   9. LANDSCAPE ORIENTATION
   =========================== */

@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh !important;
        padding: 80px 0 40px;
    }
    
    .subpage-hero {
        min-height: 60vh !important;
        padding: 120px 0 60px;
    }
    
    .navbar-container {
        padding: 10px 0;
    }
}

/* ===========================
   10. SUBPAGE HERO FIXES
   =========================== */

@media (max-width: 768px) {
    .subpage-hero {
        min-height: 40vh;
        padding: 130px 0 60px;
    }
    
    .subpage-hero-badge {
        padding: 10px 20px;
        font-size: 0.85rem;
        margin-bottom: 24px;
    }
    
    .subpage-breadcrumb {
        font-size: 0.85rem;
        margin-bottom: 24px;
    }
}

@media (max-width: 576px) {
    .subpage-hero {
        min-height: 35vh;
        padding: 120px 0 50px;
    }
}

/* ===========================
   11. INFO BOXES & ALERTS
   =========================== */

@media (max-width: 768px) {
    .info-box {
        padding: 25px 20px;
    }
    
    .info-alert,
    #proefInfo {
        padding: 20px 18px;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .info-box {
        padding: 20px 15px;
    }
}

/* ===========================
   12. TIMELINE FIXES (if exists)
   =========================== */

@media (max-width: 991px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 70px;
    }
    
    .timeline-number {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        margin: 0;
        text-align: left !important;
    }
}

/* ===========================
   13. ACCESSIBILITY - FOCUS STATES
   =========================== */

@media (max-width: 768px) {
    /* Zorg voor voldoende tap targets (minimaal 44x44px) */
    .nav-link,
    .dropdown-item,
    button,
    a.cta-button,
    a.cta-secondary {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* ===========================
   14. PREVENT ZOOM ON INPUT FOCUS (iOS)
   =========================== */

/* Zorgt ervoor dat iOS niet inzoomt bij input focus */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="search"],
    input[type="url"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* ===========================
   15. SAFE AREA INSETS (iPhone X+)
   =========================== */

@supports (padding: max(0px)) {
    .navbar-container,
    .footer {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
    
    .footer {
        padding-bottom: max(20px, env(safe-area-inset-bottom));
    }
}

/* ===========================
   16. PERFORMANCE - REDUCE ANIMATIONS ON MOBILE
   =========================== */

@media (max-width: 768px) {
    /* Verminder complexe animaties op mobiel voor betere performance */
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.2s !important;
    }
}

/* Als gebruiker reduced motion prefereert */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===========================
   17. IMAGE OPTIMIZATION
   =========================== */

@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
    
    .service-main-image img,
    .feature-card img,
    .image-grid-item img {
        object-fit: cover;
        width: 100%;
    }
}

/* ===========================
   18. VIDEO RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .hero-video,
    .subpage-hero-video,
    .footer-video {
        object-fit: cover;
        min-height: 100%;
        min-width: 100%;
    }
}

/* ===========================
   END OF MOBILE FIXES
   Laatste update: 24 oktober 2025
   =========================== */
   /* ===========================
   NAVBAR MOBILE FIXES - UPDATED V2
   - Volledig transparant VOOR scrollen
   - Glassmorphism alleen NA scrollen
   - Smallere margins (geen breedte issues)
   =========================== */

/* ===========================
   DESKTOP & TABLET (> 991px)
   Behoud originele gedrag
   =========================== */
@media (min-width: 992px) {
    .navbar-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 20px;
		width: 100%;
        transition: all 0.3s ease;
		  margin: 0 auto;	
    }

    .navbar {
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;

        border-radius: 16px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        max-width: 1200px;
        margin: 0 auto;	width: 100%;
        border: 1px solid transparent;
        
    }

    .navbar-container.scrolled .navbar {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .navbar:hover {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        padding: 14px 36px;
    }
}

/* ===========================
   MOBILE & SMALL TABLET (≤ 991px)
   Volledig transparant voor scrollen
   =========================== */
@media (max-width: 991px) {
    .navbar-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 10px 0;
        transition: padding 0.3s ease;
    }
	
	.fixed-cta-link {
		display: none;
	}

    /* Navbar - VOOR scrollen (VOLLEDIG TRANSPARANT) */
    .navbar {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        padding: 12px 20px !important;
        border-radius: 0;
        transition: all 0.3s ease;
        max-width: 100%;
        margin: 0;
        border: none !important;
        transform: none !important;
    }

    /* Navbar - NA scrollen (GLASSMORPHISM) */
    .navbar-container.scrolled .navbar {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(20px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid rgba(184, 150, 90, 0.15) !important;
        border-radius: 12px;
        margin: 0 10px;
    }

    /* Disable hover effect op mobiel */
    .navbar:hover {
        transform: none !important;
        padding: 12px 20px !important;
        box-shadow: none !important;
    }

    .navbar-container.scrolled .navbar:hover {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    }

    /* Navbar brand - tekstkleur aanpassen */
    .navbar-brand {
        color: white !important;
        font-size: 1.2rem !important;
    }

    .navbar-container.scrolled .navbar-brand {
        color: var(--text-dark) !important;
    }

    /* Nav links - tekstkleur aanpassen */
    .nav-link {
        color: white !important;
        padding: 10px 16px !important;
    }

    .navbar-container.scrolled .nav-link {
        color: var(--text-dark) !important;
    }

    /* Navbar toggler (hamburger menu) */
    .navbar-toggler {
        border: none;
        padding: 8px 12px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .navbar-container.scrolled .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 26, 26, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* Navbar collapse (uitgeklapt menu) */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        margin: 12px -20px -12px;
        padding: 16px 20px;
        border-radius: 0 0 12px 12px;
        border-top: 1px solid rgba(184, 150, 90, 0.15);
        margin-top: 12px;
    }

    /* Nav items in collapsed menu */
    .navbar-collapse .nav-link {
        color: var(--text-dark) !important;
        padding: 12px 16px !important;
        border-radius: 8px;
        margin: 4px 0;
        transition: all 0.3s ease;
    }

    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link:active {
        background: rgba(184, 150, 90, 0.1);
        color: var(--primary-gold) !important;
    }

    /* Dropdown in collapsed menu */
    .navbar-collapse .dropdown-menu {
        position: static !important;
        box-shadow: none;
        border: none;
        padding: 8px 0 8px 20px;
        margin: 0;
        background: transparent;
        backdrop-filter: none;
    }

    .navbar-collapse .dropdown-item {
        border-radius: 8px;
        margin: 4px 0;
        padding: 10px 16px;
        background: rgba(184, 150, 90, 0.05);
        color: var(--text-dark);
        font-size: 0.9rem;
    }

    .navbar-collapse .dropdown-item:hover {
        background: rgba(184, 150, 90, 0.15);
        color: var(--primary-gold);
        transform: translateX(5px);
    }

    .navbar-collapse .nav-item.dropdown::before {
        display: none;
    }

    /* Phone button in collapsed menu */
    .navbar-collapse .nav-phone {
        margin-left: 0 !important;
        margin-top: 12px;
        width: 100%;
        justify-content: center;
    }
}

/* ===========================
   EXTRA SMALL DEVICES (≤ 576px)
   =========================== */
@media (max-width: 576px) {
    .navbar-container {
        padding-top: max(8px, env(safe-area-inset-top));
        padding-bottom: 8px;
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .navbar {
        padding: 10px 15px !important;
    }

    .navbar-container.scrolled .navbar {
        margin: 0 8px;
    }

    .navbar-brand {
        font-size: 1.1rem !important;
    }

    .navbar-brand img {
        width: 40px !important;
        height: auto;
    }

    .navbar-toggler {
        padding: 6px 10px;
        font-size: 1rem;
    }
}

/* ===========================
   LANDSCAPE MODE MOBILE
   =========================== */
@media (max-width: 991px) and (orientation: landscape) {
    .navbar-container {
        padding-top: max(6px, env(safe-area-inset-top));
        padding-bottom: 6px;
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .navbar {
        padding: 8px 16px !important;
    }

    .navbar-brand {
        font-size: 1rem !important;
    }

    .navbar-brand img {
        width: 35px !important;
    }

    .navbar-collapse {
        max-height: 60vh;
        overflow-y: auto;
    }
}

/* ===========================
   SAFARI/iOS SPECIFIC FIXES
   =========================== */
@supports (-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px)) {
    @media (max-width: 991px) {
        .navbar-container.scrolled .navbar {
            -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
        }
        
        .navbar-collapse {
            -webkit-backdrop-filter: blur(20px);
        }
    }
}

/* Fallback voor browsers zonder backdrop-filter support */
@supports not ((-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px))) {
    @media (max-width: 991px) {
        .navbar-container.scrolled .navbar {
            background: rgba(255, 255, 255, 0.98) !important;
        }
    }
}

/* ===========================
   SMOOTH TRANSITIONS
   =========================== */
@media (max-width: 991px) {
    .navbar,
    .navbar-brand,
    .nav-link,
    .navbar-toggler,
    .navbar-toggler-icon {
        transition: all 0.3s ease;
    }
}

/* ===========================
   ACCESSIBILITY - FOCUS STATES
   =========================== */
@media (max-width: 991px) {
    .nav-link:focus,
    .dropdown-item:focus,
    .navbar-toggler:focus {
        outline: 2px solid var(--primary-gold);
        outline-offset: 2px;
    }
    
    /* Tap target size (minimaal 44x44px) */
    .nav-link,
    .dropdown-item,
    .navbar-toggler {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

/* ===========================
   LOGO ANIMATION
   =========================== */
@media (max-width: 991px) {
    .navbar-brand img {
        animation: none!important;
    }
}

/* ===========================
   EXTRA: GLASSMORPHISM DETAILS
   Enhanced glassy effect na scrollen
   =========================== */
@media (max-width: 991px) {
    .navbar-container.scrolled .navbar {
        /* Meerdere box-shadows voor extra depth */
        box-shadow: 
            0 4px 20px rgba(0, 0, 0, 0.1),
            0 0 0 1px rgba(184, 150, 90, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    }
}

/* ===========================
   CONTAINER PADDING FIX
   Zorg dat container binnen navbar goed zit
   =========================== */
@media (max-width: 991px) {
    .navbar .container {
        padding-left: 0;
        padding-right: 0;
    }
}

/* ===========================
   END NAVBAR MOBILE FIXES V2
   =========================== */
   
   /* ===========================
   NAVBAR DROPDOWN FIX
   Voeg dit toe aan het einde van je CSS
   =========================== */

@media (max-width: 991px) {
    
    /* VOOR SCROLLEN: Dropdown HEEFT achtergrond (navbar is transparant) */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-top: 1px solid rgba(184, 150, 90, 0.15) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
        margin: 12px -20px -12px;
        padding: 16px 20px;
        margin-top: 12px;
        border-radius: 0 0 12px 12px;
    }
    
    /* NA SCROLLEN: Dropdown GEEN achtergrond (navbar heeft glassmorphism) */
    .navbar-container.scrolled .navbar-collapse {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-top: 1px solid rgba(184, 150, 90, 0.08) !important;
        box-shadow: none !important;
        border-radius: 0;
    }
    
    /* Dropdown items styling aanpassen op basis van state */
    
    /* VOOR SCROLLEN: Donkere tekst (witte achtergrond) */
    .navbar-collapse .nav-link {
        color: var(--text-dark) !important;
    }
    
    .navbar-collapse .dropdown-item {
        color: var(--text-dark) !important;
    }
    
    /* NA SCROLLEN: Ook donkere tekst (navbar is wit met glassmorphism) */
    .navbar-container.scrolled .navbar-collapse .nav-link {
        color: var(--text-dark) !important;
    }
    
    .navbar-container.scrolled .navbar-collapse .dropdown-item {
        color: var(--text-dark) !important;
    }
}

 @media (max-width: 991px) {
    .navbar-container {
        top: 6px !important;
    }
}

@media (max-width: 991px) {
    .navbar-container.scrolled {
        top: 6px !important;
    }
}


/* ===========================
   NAVBAR FIXES - FINAL
   =========================== */
.navbar:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .navbar:hover {
        transform: none !important;
    }
    
    .navbar-container.scrolled {
        top: 10px !important;
    }
}
@media (max-width: 991px) {
    .navbar-container {
        top: 10px !important;
    }
    
    .navbar-container.scrolled {
        top: 10px !important;
    }
}

.cta-secondary:hover {
    color: var(--text-dark) !important;
}