
:root {
    --primary: #7F8266;
    --primary-dark: #AC6B53;
    --secondary: #D2A96A;
    --accent: #AC6B53;
    --dark: #1a1a1a;
    --dark-bg: #111;
    --light: #f5f0eb;
    --text: #555;
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--text);
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--dark);
}

a { text-decoration: none; transition: all 0.3s ease; }

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(187,113,84,0.35);
}

.btn-outline-custom {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
    padding: 12px 34px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.btn-outline-custom:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-2px);
}

.section-label {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* ========== NAVBAR ========== */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar-brand {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark) !important;
}
.navbar-brand span { color: var(--primary); }
.nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark) !important;
    padding: 8px 18px !important;
}
.nav-link:hover,
.nav-link.active { color: var(--primary) !important; }

/* Mobile toggler */
.navbar-toggler {
    border: 2px solid var(--dark);
    padding: 4px 8px;
    font-size: 1.2rem;
}
.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='%231a1a1a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile menu dropdown */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        border-radius: 12px;
        margin-top: 15px;
        padding: 20px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    }
    .navbar-nav {
        align-items: flex-start !important;
        gap: 0 !important;
    }
    .nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
    }
    .nav-item:last-child .nav-link,
    .nav-item:last-child {
        border-bottom: none;
    }
    .nav-item.ms-lg-3 {
        margin-top: 15px;
        margin-left: 0 !important;
    }
    /* Mobile dropdown styling */
    .navbar .dropdown-menu {
        border: none;
        box-shadow: none;
        background: #faf8f5;
        border-radius: 8px;
        padding: 8px 0;
        margin: 0 0 8px 0;
    }
    .navbar .dropdown-item {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* ========== NAVBAR DROPDOWNS ========== */
@media (min-width: 992px) {
    .navbar .dropdown-menu {
        border: none;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        padding: 12px 0;
        margin-top: 10px;
        min-width: 240px;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: all 0.25s ease;
        display: block;
    }
    .navbar .dropdown-menu.show,
    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .navbar .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 30px;
        width: 16px;
        height: 16px;
        background: #fff;
        transform: rotate(45deg);
        border-radius: 3px 0 0 0;
    }
    .navbar .dropdown-item {
        padding: 10px 24px;
        font-size: 0.88rem;
        color: #555;
        font-weight: 500;
        letter-spacing: 0.3px;
        transition: all 0.2s ease;
        border-radius: 0;
    }
    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus {
        background: #faf8f5;
        color: var(--primary);
        padding-left: 28px;
    }
    .navbar .dropdown-toggle::after {
        font-size: 0.65rem;
        vertical-align: 0.15em;
        margin-left: 6px;
        transition: transform 0.25s ease;
    }
    .navbar .dropdown:hover > .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #faf8f5 0%, #f0ebe4 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--dark);
}
.hero-text h1 .highlight {
    color: var(--accent);
    font-style: italic;
    position: relative;
    display: inline-block;
}
.hero-text h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 16px;
    background: rgba(172, 107, 83, 0.15);
    z-index: -1;
}
.hero-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.hero-image {
    position: relative;
}
.floating-images {
    position: relative;
    width: 100%;
    height: 500px;
}
.float-img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}
.float-img:hover { transform: translateY(-10px) scale(1.02); }
.float-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.float-1 {
    width: 210px;
    height: 100%;
    top: 40px;
    left: 0;
    z-index: 3;
    animation: float1 6s ease-in-out infinite;
}
.float-2 {
    width: 210px;
    height: 100%;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: float2 7s ease-in-out infinite;
}
.float-3 {
    width: 210px;
    height: 100%;
    top: 60px;
    right: 0;
    z-index: 1;
    animation: float3 8s ease-in-out infinite;
}
.floating-badge {
    position: absolute;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    bottom: 20px;
    right: 5px;
    width: 150px;
    height: 150px;
    background: white;
    padding: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    z-index: 4;
    animation: floatBadge 3s ease-in-out infinite;
}
.floating-badge h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    color: var(--accent);
    font-weight: 800;
    margin: 0;
}
.floating-badge p {
    color: #888;
    font-size: 0.78rem;
    margin: 0;
    line-height: 1.3;
}
@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
@keyframes float2 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-25px); }
}
@keyframes float3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@media (max-width: 991px) {
    .hero-content { grid-template-columns: 1fr; }
    .floating-images { height: 360px; }
    .float-1, .float-3 { width: 150px; }
    .float-2 { width: 150px; }
    .floating-badge { width: 110px; height: 110px; bottom: 10px; }
    .floating-badge h3 { font-size: 1.4rem; }
}
@media (max-width: 576px) {
    .hero-content { grid-template-columns: 1fr; }
    .floating-images { height: 280px; }
    .float-1, .float-2, .float-3 { width: 115px; }
    .section-title { font-size: 2rem; }
}

/* Prevent AOS horizontal overflow on mobile */
@media (max-width: 991px) {
    [data-aos="fade-left"],
    [data-aos="fade-right"] {
        opacity: 0;
        transition-property: opacity;
    }
    [data-aos="fade-left"].aos-animate,
    [data-aos="fade-right"].aos-animate {
        opacity: 1;
    }
}

/* ========== STATS ========== */
.stats-section {
    background: var(--dark);
    padding: 50px 0;
}
.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}
@media (max-width: 575px) {
    .stat-item:not(:last-child)::after { display: none; }
    .stat-number { font-size: 2.2rem; }
}
.stat-number {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}
.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}
.stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* ========== WAT WE DOEN ========== */
.services-atelier-section {
    padding: 100px 0;
    background: #fff9f2;
    position: relative;
    overflow: hidden;
}
.services-atelier-section::before {
    content: '';
    position: absolute;
    top: -110px;
    left: -90px;
    width: 230px;
    height: 230px;
    border-radius: 24px;
    border: 1px dashed rgba(127, 130, 102, 0.25);
    transform: rotate(18deg);
    pointer-events: none;
}
.services-atelier-section .container {
    position: relative;
    z-index: 1;
}
.services-intro-card {
    background: var(--accent);
    color: rgba(255,255,255,1);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 18px 34px rgba(20, 15, 10, 0.24);
}
.services-intro-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 6px 12px;
    margin-bottom: 16px;
}
.services-intro-card h3 {
    color: #fff;
    font-size: 1.45rem;
    line-height: 1.3;
    margin-bottom: 14px;
}
.services-intro-card p {
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 0.95rem;
}
.services-intro-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 0.9rem;
}
.services-intro-list li:last-child {
    margin-bottom: 0;
}
.services-intro-list i {
    color: (var(--secondary));
    margin-top: 2px;
}
.atelier-service-card {
    background: #fff;
    border: 1px solid #eadfce;
    border-radius: 18px;
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.atelier-service-card:hover {
    transform: translateY(-6px);
    border-color: #d7cab8;
    box-shadow: 0 14px 28px rgba(27, 22, 15, 0.1);
}
.atelier-service-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}
.atelier-service-number {
    font-family: var(--heading-font);
    font-size: 1.7rem;
    color: #c8b69e;
    line-height: 1;
}
.atelier-service-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #f5ede2;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eadcc8;
    font-size: 1rem;
}
.atelier-service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.atelier-service-card p {
    color: #756f67;
    line-height: 1.75;
    font-size: 0.93rem;
    margin-bottom: 14px;
}
.atelier-service-chip {
    display: inline-block;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: #f4efe7;
    border: 1px solid #e3d8c8;
    border-radius: 30px;
    padding: 5px 12px;
    font-weight: 600;
}
.atelier-service-card-wide {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 575px) {
    .services-atelier-section {
        padding: 70px 0;
    }
    .services-intro-card,
    .atelier-service-card {
        border-radius: 14px;
    }
}

/* ========== MISSIE + WAAROM ========== */
.anchor-offset {
    display: block;
    position: relative;
    top: -110px;
    visibility: hidden;
}
.about-vision-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
.about-vision-section::before,
.about-vision-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(127, 130, 102, 0.22);
    pointer-events: none;
}
.about-vision-section::before {
    width: 300px;
    height: 300px;
    top: -140px;
    right: -90px;
}
.about-vision-section::after {
    width: 220px;
    height: 220px;
    left: -80px;
    bottom: -110px;
}
.about-vision-section .container {
    position: relative;
    z-index: 1;
}
.about-vision-section .section-subtitle {
    max-width: 760px;
    margin-bottom: 45px;
}
.mission-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 3.5rem;
    align-items: start;
}
.mission-copy {
    padding-right: 24px;
    transition: opacity 0.18s ease;
}
.mission-copy--fade {
    opacity: 0;
}
.mission-points-hint {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
    opacity: 0.75;
}
.mission-copy p {
    color: #6f6a64;
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 16px;
}
.mission-copy .mission-lead {
    font-family: var(--heading-font);
    font-size: clamp(1.15rem, 2.1vw, 1.55rem);
    line-height: 1.45;
    color: var(--dark);
    margin-bottom: 18px;
}
.mission-note {
    margin-top: 26px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 440px;
    padding: 14px 16px;
    background: #f8f4ee;
    border: 1px solid #e6dccf;
    border-radius: 14px;
    color: #5f5a54;
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.7;
}
.mission-note i {
    color: var(--accent);
    font-size: 0.95rem;
    margin-top: 4px;
}
.mission-note p {
    margin: 0;
    font-family: var(--heading-font);
    font-style: italic;
}
.mission-points {
    border-top: 1px solid #d8cfc1;
}
.mission-point {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding: 24px 0;
    border-bottom: 1px solid #ded5c8;
    transition: transform 0.25s ease;
    cursor: pointer;
}
.mission-point:hover,
.mission-point.is-active {
    transform: translateX(6px);
}
.mission-point.is-active {
    background: rgba(156, 127, 96, 0.06);
    border-radius: 0 10px 10px 0;
    margin-left: -12px;
    padding-left: 12px;
}
.mission-point.is-active .mission-point-number {
    color: var(--accent);
}
.mission-point.is-active .mission-point-body h3 {
    color: var(--accent);
}
.mission-point-number {
    font-family: var(--heading-font);
    color: #b7a48b;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.1;
}
.mission-point-body h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.mission-point-body p {
    margin: 0;
    font-size: 0.95rem;
    color: #7a736c;
    line-height: 1.75;
}
.about-story-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5ddd1;
    padding: 34px;
}
.about-story-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    background: #f6f2eb;
    border: 1px solid #e6decf;
    border-radius: 30px;
    padding: 6px 14px;
    margin-bottom: 18px;
}
.about-story-card p {
    color: #6f6a64;
    line-height: 1.85;
    font-size: 0.98rem;
    margin-bottom: 16px;
}
.about-story-note {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f4ee;
    border-radius: 14px;
    border: 1px solid #ece2d5;
    padding: 14px 16px;
    color: #5f5a54;
    font-size: 0.9rem;
}
.about-story-note i {
    color: var(--accent);
    font-size: 1rem;
}
.about-pillar-card {
    background: #fffdfb;
    border: 1px solid #e7ddd1;
    border-radius: 18px;
    padding: 26px 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.about-pillar-card:hover {
    transform: translateY(-6px);
    border-color: #d7cab8;
    box-shadow: 0 14px 30px rgba(30, 24, 16, 0.1);
}
.pillar-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: #f4ede3;
    border: 1px solid #e5d7c5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}
.about-pillar-card:hover .pillar-icon {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.about-pillar-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.about-pillar-card p {
    font-size: 0.92rem;
    color: #7a736c;
    line-height: 1.7;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .mission-layout {
        grid-template-columns: 1fr;
        gap: 2.1rem;
    }
    .mission-copy {
        padding-right: 0;
    }
    .about-story-card {
        padding: 28px;
    }
}
@media (max-width: 575px) {
    .about-vision-section {
        padding: 70px 0;
    }
    .mission-point {
        grid-template-columns: 52px 1fr;
        gap: 14px;
        padding: 18px 0;
    }
    .mission-point-number {
        font-size: 1.15rem;
    }
    .about-story-card,
    .about-pillar-card {
        border-radius: 14px;
    }
}

/* ========== SERVICES ========== */
.services-section { padding: 100px 0; background: #fff; }
.service-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: transparent;
}
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 1.5rem;
    color: var(--accent);
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    background: var(--accent);
    color: #fff;
}
.service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.service-card p {
    font-size: 0.92rem;
    color: #888;
    line-height: 1.7;
}
.service-card .learn-more {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
    display: inline-block;
}
.service-card .learn-more:hover { letter-spacing: 1px; }

/* ========== PROJECTS ========== */
.projects-section { padding: 100px 0; background: #faf8f5; }
.filter-btn {
    border: none;
    background: none;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #777;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: #fff;
}
.project-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
    cursor: pointer;
}
.project-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}
.project-card:hover .project-overlay {
    transform: translateY(0);
    opacity: 1;
}
.project-overlay h5 { color: #fff; font-size: 1.1rem; margin-bottom: 4px; }
.project-overlay span { font-size: 0.85rem; opacity: 0.8; }

/* ========== VIRTUAL TOUR ========== */
.tour-section {
    padding: 100px 0;
    background: var(--dark-bg);
    color: #fff;
}
.tour-section h2 { color: #fff; }
.tour-preview {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.tour-preview img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}
.play-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}
.tour-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.8);
}
.tour-feature i { color: var(--secondary); }

/* ========== TESTIMONIALS ========== */
.testimonials-section { padding: 100px 0; background: #fff; }
.testimonial-card {
    background: #faf8f5;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    height: 100%;
}
.testimonial-card .quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
}
.testimonial-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    font-style: italic;
    margin-bottom: 25px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.testimonial-author img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author h6 { margin: 0; font-size: 1rem; }
.testimonial-author span { font-size: 0.85rem; color: #999; }

/* ========== FAQ ========== */
.faq-section { padding: 100px 0; background: #faf8f5; }
.accordion-item {
    border: none !important;
    background: #fff;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
}
.accordion-button {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    padding: 22px 28px;
    background: #fff;
}
.accordion-button:not(.collapsed) {
    color: var(--primary);
    background: #fff;
    box-shadow: none;
}
.accordion-button:focus { box-shadow: none; }
.accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    font-family: var(--body-font);
    width: auto;
    height: auto;
}
.accordion-button:not(.collapsed)::after { content: '−'; }
.accordion-body { padding: 0 28px 22px; color: #777; line-height: 1.8; }

/* ========== CONTACT ========== */
.contact-section { padding: 100px 0; background: #fff; }
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;
}
.contact-info-card .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}
.contact-info-card h6 { margin: 0 0 4px; font-size: 0.95rem; }
.contact-info-card p { margin: 0; color: #888; font-size: 0.9rem; }
.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(187,113,84,0.15);
}
.contact-form textarea { min-height: 130px; resize: none; }

/* ========== CTA ========== */
.cta-section {
    padding: 100px 0;
    background: #f5ede0;
    text-align: center;
    color: var(--dark);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(210,169,106,0.12);
    pointer-events: none;
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(127,130,102,0.10);
    pointer-events: none;
}
.cta-section h2 {
    color: var(--dark);
    font-size: 2.8rem;
    margin-bottom: 20px;
}
.cta-section p {
    color: #6b5e52;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}
@media (max-width: 575px) {
    .cta-section { padding: 60px 0; }
    .cta-section h2 { font-size: 1.8rem; }
}

/* ========== BLOG ========== */
.blog-section { padding: 100px 0; background: #faf8f5; }
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.blog-card-body { padding: 28px; }
.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.82rem;
    color: #999;
    margin-bottom: 12px;
}
.blog-tag {
    background: rgba(166,183,170,0.2);
    color: var(--accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 12px;
}
.blog-card h5 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card h5 a { color: var(--dark); }
.blog-card h5 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.9rem; color: #888; line-height: 1.7; }
.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}
.read-more:hover { color: var(--primary-dark); letter-spacing: 0.5px; }

/* ========== FOOTER ========== */
.footer {
    background: #faf8f5;
    color: #7a6e65;
    padding: 80px 0 30px;
    border-top: 1px solid #e0d5c8;
}
.footer h5 {
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.footer a {
    color: #7a6e65;
    font-size: 0.92rem;
    display: block;
    margin-bottom: 10px;
}
.footer a:hover { color: var(--accent); }
.footer-brand {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}
.footer-brand span { color: var(--accent); }
.footer p {
    color: #7a6e65;
}
.footer-social a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(172,107,83,0.10);
    border: 1px solid rgba(172,107,83,0.18);
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 0.85rem;
    color: var(--accent);
}
.footer-social a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.footer-bottom {
    border-top: 1px solid #d8cec4;
    padding-top: 25px;
    margin-top: 50px;
    text-align: center;
    font-size: 0.85rem;
    color: #a09488;
}

/* ========== PROJECT DETAIL PAGE (V2) ========== */

/* Breadcrumb */
.project-breadcrumb-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.85rem;
}
.project-breadcrumb-v2 a {
    color: #999;
    font-weight: 500;
}
.project-breadcrumb-v2 a:hover {
    color: var(--primary);
}
.project-breadcrumb-v2 span {
    color: #ccc;
}
.project-breadcrumb-v2 .current {
    color: var(--accent);
    font-weight: 600;
}

/* Hero stats (reuses realisaties pattern) */
.project-hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 28px;
}
.project-hero-stat {
    display: flex;
    flex-direction: column;
}
.project-hero-stat-num {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}
.project-hero-stat-label {
    font-size: 0.82rem;
    color: #999;
    margin-top: 2px;
}
.project-hero-stat-divider {
    width: 1px;
    height: 36px;
    background: #ddd;
}
@media (max-width: 575px) {
    .project-hero-stats {
        gap: 18px;
    }
    .project-hero-stat-num {
        font-size: 1.1rem;
    }
}

/* Slider V2 */
.project-slider-section-v2 {
    padding: 0 0 80px;
    background: #fff;
}
.project-slider-v2 {
    max-width: 900px;
    margin: 0 auto;
}
.project-slider-main-v2 {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5ddd1;
    box-shadow: 0 12px 36px rgba(30, 24, 16, 0.08);
}
.project-slider-main-v2 img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.slider-arrow-v2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    color: var(--dark);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.slider-prev-v2 { left: 16px; }
.slider-next-v2 { right: 16px; }
.slider-arrow-v2:hover {
    background: var(--accent);
    color: #fff;
}
.project-slider-thumbs-v2 {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    justify-content: center;
}
.thumb-v2 {
    width: 80px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
}
.thumb-v2.active,
.thumb-v2:hover {
    border-color: var(--accent);
    opacity: 1;
}
.thumb-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 575px) {
    .project-slider-main-v2 img {
        height: 280px;
    }
    .thumb-v2 {
        width: 60px;
        height: 44px;
    }
}

/* Project Detail V2 */
.project-detail-section-v2 {
    padding: 80px 0;
    background: #f3eee7;
}

/* Project details sidebar card */
.project-details-card {
    background: #fffdfb;
    border: 1px solid #e7ddd1;
    border-radius: 20px;
    padding: 30px 26px;
    position: sticky;
    top: 110px;
}
.project-details-card h3 {
    font-size: 1.2rem;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #ece2d5;
}
.project-details-card .about-feature-item {
    margin-bottom: 18px;
}
.project-details-card .about-feature-item:last-child {
    margin-bottom: 0;
}

/* Share section inside card */
.project-share-v2 {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid #ece2d5;
}
.project-share-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 14px;
}
.project-share-icons {
    display: flex;
    gap: 10px;
}
.project-share-icons a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #f4ede3;
    border: 1px solid #e5d7c5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.project-share-icons a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Quote card */
.project-quote-card {
    background: #fffdfb;
    border: 1px solid #e7ddd1;
    border-radius: 20px;
    padding: 34px;
    margin-top: 36px;
    position: relative;
}
.project-quote-icon {
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 12px;
}
.project-quote-card p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #6f6a64;
    font-style: italic;
    margin-bottom: 16px;
}
.project-quote-author {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

/* Gallery V2 */
.project-gallery-section-v2 {
    padding: 100px 0;
    background: #faf8f5;
}
.project-gallery-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 14px;
}
.gallery-item-v2 {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-item-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}
.gallery-item-v2 img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item-v2:hover img {
    transform: scale(1.08);
}
/* Hero item: first large image spanning 2 columns and 2 rows */
.gallery-hero-v2 {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-hero-v2 img {
    height: 100%;
    min-height: 574px;
}
/* Tall item: spans 2 rows */
.gallery-tall-v2 {
    grid-row: span 2;
}
.gallery-tall-v2 img {
    height: 100%;
    min-height: 574px;
}
/* Wide item: bottom panoramic */
.gallery-wide-v2 {
    grid-column: span 3;
}
.gallery-wide-v2 img {
    height: 300px;
}
/* Overlay with caption + expand icon */
.gallery-overlay-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px;
    background: linear-gradient(to top, rgba(26,26,26,0.55) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.gallery-item-v2:hover .gallery-overlay-v2 {
    opacity: 1;
}
.gallery-caption-v2 {
    color: #fff;
    font-family: var(--heading-font);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.gallery-expand-v2 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    transition: background 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}
.gallery-expand-v2:hover {
    background: rgba(255,255,255,0.35);
    transform: scale(1.1);
}
/* Tablet */
@media (max-width: 991px) {
    .project-gallery-section-v2 {
        padding: 80px 0;
    }
    .project-gallery-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .gallery-hero-v2 {
        grid-column: span 2;
        grid-row: span 1;
    }
    .gallery-hero-v2 img {
        min-height: auto;
        height: 280px;
    }
    .gallery-tall-v2 {
        grid-row: span 1;
    }
    .gallery-tall-v2 img {
        min-height: auto;
        height: 240px;
    }
    .gallery-item-v2 img {
        height: 240px;
    }
    .gallery-wide-v2 {
        grid-column: span 2;
    }
    .gallery-wide-v2 img {
        height: 240px;
    }
}
/* Mobile */
@media (max-width: 575px) {
    .project-gallery-section-v2 {
        padding: 60px 0;
    }
    .project-gallery-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .gallery-hero-v2 {
        grid-column: span 2;
    }
    .gallery-hero-v2 img {
        height: 220px;
    }
    .gallery-tall-v2 img {
        height: 200px;
    }
    .gallery-item-v2 {
        border-radius: 10px;
    }
    .gallery-item-v2 img {
        height: 180px;
    }
    .gallery-wide-v2 {
        grid-column: span 2;
    }
    .gallery-wide-v2 img {
        height: 180px;
    }
    /* Always show overlay on mobile (no hover) */
    .gallery-overlay-v2 {
        opacity: 1;
        padding: 14px 16px;
        background: linear-gradient(to top, rgba(26,26,26,0.5) 0%, transparent 100%);
    }
    .gallery-caption-v2 {
        font-size: 0.85rem;
    }
    .gallery-expand-v2 {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
}

/* Navigation V2 */
.project-nav-section-v2 {
    padding: 60px 0;
    background: #faf8f5;
    border-top: 1px solid #ece2d5;
}
.project-nav-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.project-nav-link-v2 {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
}
.project-nav-link-v2:hover {
    color: var(--accent);
}
.project-nav-arrow-v2 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5ddd1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.project-nav-link-v2:hover .project-nav-arrow-v2 {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.project-nav-label-v2 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    display: block;
}
.project-nav-title-v2 {
    font-family: var(--heading-font);
    font-size: 1.05rem;
    font-weight: 600;
    display: block;
}
.project-nav-grid-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.project-nav-grid-v2 i {
    font-size: 1.4rem;
}
.project-nav-grid-v2:hover {
    color: var(--accent);
}
.project-nav-link-v2.next .project-nav-info-v2 {
    text-align: right;
}
@media (max-width: 575px) {
    .project-nav-v2 {
        gap: 12px;
    }
    .project-nav-info-v2 {
        display: none;
    }
    .project-nav-grid-v2 span {
        display: none;
    }
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(187,113,84,0.4);
    transition: all 0.3s ease;
}
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top.show { display: flex; }

/* ========== OFFER BANNER ========== */
.offer-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    padding: 50px;
    color: #fff;
    text-align: center;
    margin-top: 40px;
}
@media (max-width: 575px) {
    .offer-banner { padding: 30px 20px; }
}
.offer-banner h4 { color: #fff; font-size: 1.5rem; margin-bottom: 12px; }
.offer-banner p { opacity: 0.9; margin-bottom: 25px; }
.offer-banner .btn {
    background: #fff;
    color: var(--primary);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
}
.offer-banner .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }

/* ========== BEFORE AND AFTER ========== */
.before-after-section { padding: 100px 0; background: #faf8f5; }
.ba-container { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.ba-container img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before { clip-path: inset(0 50% 0 0); }
.ba-after { clip-path: none; }
.ba-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; margin: 0; padding: 0; opacity: 0; cursor: ew-resize; z-index: 3; -webkit-appearance: none; appearance: none; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; z-index: 2; pointer-events: none; transform: translateX(-50%); }
.ba-handle::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; background: #fff; border-radius: 50%; box-shadow: 0 2px 10px rgba(0,0,0,0.25); }
.ba-handle::before { content: '\f0d9\00a0\00a0\f0da'; font-family: 'Font Awesome 5 Free'; font-weight: 900; font-size: 14px; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; color: #333; }
.ba-label { position: absolute; bottom: 16px; padding: 6px 14px; background: rgba(0,0,0,0.6); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; border-radius: 6px; z-index: 1; pointer-events: none; }
.ba-label-before { left: 16px; }
.ba-label-after { right: 16px; }
.ba-feature {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}
.ba-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.ba-feature:hover .ba-feature-icon {
    background: var(--accent);
    color: #fff;
}
.ba-feature h6 { margin: 0 0 4px; font-size: 1rem; }
.ba-feature p { margin: 0; color: #888; font-size: 0.92rem; line-height: 1.7; }

/* ========== PROCESS ========== */
.process-section { padding: 100px 0; background: #faf8f5; }
.process-timeline {
    position: relative;
    max-width: 820px;
    margin: 60px auto 0;
}
.process-timeline::before {
    content: '';
    position: absolute;
    left: 37px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary) 5%, var(--secondary) 95%, transparent);
}
.process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 36px;
    position: relative;
}
.process-num {
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(127, 130, 102, 0.15);
}
.process-step:hover .process-num {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 8px 25px rgba(127, 130, 102, 0.35);
}
.process-content {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 26px 30px;
    transition: all 0.3s ease;
    margin-top: 10px;
    border: 1px solid #eee;
}
.process-content:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: transparent;
}
.process-content h4 { margin-bottom: 10px; font-size: 1.15rem; }
.process-content p { color: #888; line-height: 1.7; margin: 0; font-size: 0.92rem; }
@media (max-width: 575px) {
    .process-num { flex: 0 0 56px; width: 56px; height: 56px; font-size: 1.05rem; }
    .process-timeline::before { left: 27px; }
    .process-step { gap: 18px; }
}

/* ========== PROJECT DETAIL PAGE ========== */

/* Hero */
.project-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    padding: 0 0 60px;
    overflow: hidden;
}
.project-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.project-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.15) 100%);
}
.project-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.project-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
}
.project-hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 550px;
}
.project-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.88rem;
}
.project-breadcrumb a {
    color: rgba(255,255,255,0.7);
}
.project-breadcrumb a:hover {
    color: #fff;
}
.project-breadcrumb span {
    color: rgba(255,255,255,0.4);
}
.project-breadcrumb .current {
    color: var(--secondary);
    font-weight: 500;
}

/* Slider */
.project-slider-section {
    padding: 60px 0 0;
    background: #fff;
}
.project-slider-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}
.project-slider-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}
.project-slider-thumbs {
    display: flex;
    gap: 12px;
}
.project-slider-thumbs .thumb {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}
.project-slider-thumbs .thumb.active {
    opacity: 1;
    border-color: var(--primary);
}
.project-slider-thumbs .thumb:hover {
    opacity: 0.85;
}
.project-slider-thumbs .thumb img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;
}

/* Detail section */
.project-detail-section {
    padding: 80px 0;
    background: #fff;
}
.project-info-card {
    background: #faf8f5;
    border-radius: 16px;
    padding: 36px;
    position: sticky;
    top: 100px;
}
.project-info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--primary);
}
.project-meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.project-meta-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #e8e4df;
}
.project-meta-list li:last-child {
    border-bottom: none;
}
.meta-label {
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--dark);
}
.meta-value {
    color: #777;
    font-size: 0.92rem;
    text-align: right;
}
.share-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.project-share {
    display: flex;
    gap: 10px;
}
.project-share a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.project-share a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* About */
.project-about h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
}
.project-about p {
    font-size: 1rem;
    line-height: 1.9;
    color: #666;
    margin-bottom: 18px;
}

/* Testimonial */
.project-testimonial {
    background: #faf8f5;
    border-radius: 16px;
    padding: 36px;
    margin-top: 40px;
    border-left: 4px solid var(--primary);
}
.project-testimonial .quote-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.4;
    margin-bottom: 12px;
}
.project-testimonial p {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}
.testimonial-credit .credit-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--dark);
}

/* Gallery Grid */
.project-gallery-section {
    padding: 80px 0;
    background: #faf8f5;
}
.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item.gallery-wide {
    grid-column: span 2;
}
.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-zoom i {
    color: #fff;
    font-size: 1.5rem;
}
.gallery-item:hover .gallery-zoom {
    opacity: 1;
}

/* ========== GALLERY MODAL ========== */
#galleryModal .modal-body {
    background: rgba(17,17,17,0.97);
    overflow: hidden;
}
.gallery-modal-header {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 20px 28px;
}
.gallery-modal-counter {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: var(--body-font);
}
.gallery-modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
}
#modalGalleryImg {
    max-height: 88vh;
    max-width: 90vw;
    object-fit: contain;
    border-radius: 6px;
    animation: galleryFadeIn 0.35s ease;
}
@keyframes galleryFadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}
.gallery-modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.gallery-modal-prev { left: 20px; }
.gallery-modal-next { right: 20px; }
.gallery-modal-arrow:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-50%) scale(1.08);
}
.gallery-modal-arrow:active {
    transform: translateY(-50%) scale(0.95);
}
.gallery-modal-swipe-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    animation: hintPulse 2s ease infinite;
}
@keyframes hintPulse {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 0.8; }
}
@media (max-width: 575px) {
    .gallery-modal-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }
    .gallery-modal-prev { left: 10px; }
    .gallery-modal-next { right: 10px; }
    #modalGalleryImg {
        max-width: 96vw;
        border-radius: 4px;
    }
    .gallery-modal-header {
        padding: 14px 18px;
    }
}

/* Navigation */
.project-nav-section {
    padding: 50px 0;
    background: #fff;
    border-top: 1px solid #eee;
}
.project-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.project-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--dark);
    transition: all 0.3s ease;
}
.project-nav-link:hover {
    color: var(--primary);
}
.project-nav-link .nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.project-nav-link:hover .nav-arrow {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}
.nav-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}
.nav-title {
    display: block;
    font-family: var(--heading-font);
    font-size: 1.1rem;
    font-weight: 600;
}
.project-nav-link.next .nav-info {
    text-align: right;
}
.project-nav-grid {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.project-nav-grid:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ========== ABOUT PAGE ========== */

/* Hero */
.about-hero-section { background: #faf8f5; padding: 100px 0 80px; }
.about-hero-h1 {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}
.about-hero-h1 .highlight { color: var(--primary); }
.about-hero-intro {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Photo wrappers & placeholders */
.about-photo-wrapper { position: relative; }
.about-photo-placeholder {
    border-radius: 16px;
    overflow: hidden;
    background: #e8e2db;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.about-photo-placeholder--portrait {
    border-radius: 20px;
    aspect-ratio: 4/5;
    box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}
.about-photo-placeholder--square { aspect-ratio: 1/1; }
.about-photo-placeholder--square-alt { aspect-ratio: 1/1; background: #d8d0c5; }
.about-photo-placeholder--wide { aspect-ratio: 16/7; background: #ede7df; }
.about-photo-placeholder--landscape {
    border-radius: 20px;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 60px rgba(0,0,0,0.10);
}
.about-placeholder-inner { text-align: center; color: #a89e92; }
.about-placeholder-inner i { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.about-placeholder-inner--md i { font-size: 3rem; margin-bottom: 0.75rem; }
.about-placeholder-inner--lg i { font-size: 4rem; margin-bottom: 1rem; }
.about-placeholder-inner span { font-size: 0.8rem; letter-spacing: 1px; text-transform: uppercase; }

/* Floating quote card */
.about-quote-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.10);
    max-width: 220px;
}
.about-quote-card p {
    font-family: var(--heading-font);
    font-size: 0.95rem;
    color: var(--dark);
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

/* Sections */
.about-verhaal-section,
.about-duurzaamheid-section { background: #fff; padding: 100px 0; }
.section-header-mb { margin-bottom: 60px; }

/* Floating accent tag */
.about-accent-tag {
    position: absolute;
    top: 24px;
    right: -16px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    padding: 14px 20px;
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-style: italic;
    max-width: 180px;
    box-shadow: 0 8px 25px rgba(127,130,102,0.3);
    line-height: 1.5;
}

/* Section title size modifier */
.section-title--sm { font-size: clamp(1.6rem, 3vw, 2.4rem); }

/* Body text */
.about-body-text { color: var(--text); line-height: 1.8; }

/* Feature list */
.about-feature-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.about-feature-item { display: flex; align-items: flex-start; gap: 14px; }
.about-feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(127,130,102,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
    font-size: 0.85rem;
}
.about-feature-title { color: var(--dark); font-size: 0.95rem; font-weight: 600; display: block; }
.about-feature-desc { margin: 2px 0 0; color: #888; font-size: 0.9rem; }

/* Project detail responsive */
@media (max-width: 991px) {
    .project-hero { min-height: 40vh; }
    .project-slider-main img { height: 350px; }
    .project-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.gallery-wide { grid-column: span 2; }
}
@media (max-width: 575px) {
    .project-hero { min-height: 35vh; padding-bottom: 40px; }
    .project-slider-main img { height: 250px; }
    .project-slider-thumbs .thumb img { height: 60px; }
    .project-gallery-grid { grid-template-columns: 1fr; }
    .gallery-item.gallery-wide { grid-column: span 1; }
    .gallery-item img { height: 220px; }
    .project-nav-link .nav-info { display: none; }
    .project-info-card { position: static; }
}

/* ========== DUURZAAMHEID PAGE ========== */

/* Hero */
.duurzaamheid-hero-section {
    background: linear-gradient(135deg, #faf8f5 0%, #f0ebe4 100%);
    padding: 120px 0 80px;
}
.duurzaamheid-hero-h1 {
    font-family: var(--heading-font);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    line-height: 1.25;
    margin-bottom: 1.5rem;
}
.duurzaamheid-hero-h1 .highlight { color: var(--primary); }
.duurzaamheid-hero-tag {
    position: absolute;
    top: 24px;
    right: -16px;
    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    padding: 14px 20px;
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-style: italic;
    max-width: 180px;
    box-shadow: 0 8px 25px rgba(127,130,102,0.3);
    line-height: 1.5;
}
@media (max-width: 767px) {
    .duurzaamheid-hero-tag { display: none; }
}

/* Waarom section */
.duurzaamheid-waarom-section {
    background: #fff;
    padding: 100px 0;
}

/* Voordelen section */
.duurzaamheid-voordelen-section {
    background: #f3eee7;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.voordeel-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5ddd1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.voordeel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(30,24,16,0.1);
}
.voordeel-card--featured {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(127,130,102,0.18);
}
.voordeel-card-header {
    padding: 28px 28px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.voordeel-card-header--esthetisch { background: #f5f0e8; }
.voordeel-card-header--ecologisch { background: #9ea68a; }
.voordeel-card-header--financieel { background: #f0ebe2; }
.voordeel-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.1rem;
    border: 1px solid rgba(0,0,0,0.06);
}
.voordeel-card-header--ecologisch .voordeel-card-icon {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}
.voordeel-card-badge {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(255,255,255,0.7);
    border-radius: 30px;
    padding: 6px 14px;
}
.voordeel-card-header--ecologisch .voordeel-card-badge {
    color: #fff;
    background: rgba(255,255,255,0.2);
}
.voordeel-card-body {
    padding: 24px 28px 30px;
}
.voordeel-card-body h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.voordeel-card-body p {
    font-size: 0.93rem;
    color: #777;
    line-height: 1.75;
    margin-bottom: 18px;
}
.voordeel-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.voordeel-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #666;
    padding: 7px 0;
    border-bottom: 1px solid #f0ece6;
}
.voordeel-list li:last-child { border-bottom: none; }
.voordeel-list i {
    color: var(--primary);
    font-size: 0.72rem;
    flex-shrink: 0;
}

/* Aanpak section */
.duurzaamheid-aanpak-section {
    background: #fff;
    padding: 100px 0;
}
.process-timeline--inline {
    max-width: 100%;
    margin-top: 0;
}

/* Voorbeelden section */
.duurzaamheid-voorbeelden-section {
    background: #faf8f5;
    padding: 100px 0;
}
.voorbeeld-category-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
}
.voorbeeld-category-label i { font-size: 0.8rem; }
.voorbeeld-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ece7df;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.voorbeeld-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.voorbeeld-photo {
    border-radius: 0;
    aspect-ratio: 4/3;
    background: #e8e2db;
}
.voorbeeld-photo--tall { aspect-ratio: 3/4; }
.voorbeeld-photo--wide { aspect-ratio: 16/7; }
.voorbeeld-card-caption {
    padding: 14px 18px;
}
.voorbeeld-card-caption strong {
    display: block;
    font-size: 0.92rem;
    color: var(--dark);
    margin-bottom: 2px;
}
.voorbeeld-card-caption span {
    font-size: 0.82rem;
    color: #999;
}

/* Responsive adjustments for duurzaamheid page */
@media (max-width: 991px) {
    .duurzaamheid-hero-section,
    .duurzaamheid-waarom-section,
    .duurzaamheid-voordelen-section,
    .duurzaamheid-aanpak-section,
    .duurzaamheid-voorbeelden-section { padding: 70px 0; }
}
@media (max-width: 575px) {
    .duurzaamheid-hero-section { padding: 100px 0 60px; }
    .voordeel-card { border-radius: 14px; }
    .voorbeeld-card { border-radius: 10px; }
    .voorbeeld-photo--wide { aspect-ratio: 4/3; }
}

/* ========== REALISATIES PAGE ========== */

/* Hero stats */
.realisaties-hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.realisaties-hero-stat { text-align: center; }
.realisaties-hero-stat-num {
    display: block;
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.1;
}
.realisaties-hero-stat-label {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    display: block;
}
.realisaties-hero-stat-divider {
    width: 1px;
    height: 40px;
    background: #ddd;
}
@media (max-width: 575px) {
    .realisaties-hero-stats { gap: 16px; }
    .realisaties-hero-stat-num { font-size: 1.5rem; }
    .realisaties-hero-stat-divider { height: 30px; }
}

/* Overview section */
.realisaties-overview-section {
    background: #fff;
    padding: 100px 0;
}

/* Card link */
.realisatie-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Card */
.realisatie-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    border: 1px solid #ece7df;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.realisatie-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(30,24,16,0.12);
}

/* Card placeholder image */
.realisatie-card-img {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}
.realisatie-card:hover .realisatie-card-img {
    transform: scale(1.04);
}

/* Card overlay */
.realisatie-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}
.realisatie-card:hover .realisatie-card-overlay {
    transform: translateY(0);
    opacity: 1;
}
.realisatie-card-overlay h5 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 6px;
}

/* Card category badge */
.realisatie-card-category {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.18);
    border-radius: 30px;
    padding: 4px 12px;
    margin-bottom: 8px;
}

/* Card tag */
.realisatie-card-tag {
    display: inline-block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
}

/* Responsive adjustments for realisaties page */
@media (max-width: 991px) {
    .realisaties-overview-section { padding: 70px 0; }
}
@media (max-width: 575px) {
    .realisatie-card { border-radius: 14px; }
    .realisatie-card-overlay { padding: 18px; }
    .realisatie-card-overlay h5 { font-size: 1rem; }
}

/* ========== VASTGOEDSTYLING PAGE ========== */

/* Intro section */
.vgs-intro-section {
    background: #fff;
    padding: 100px 0;
}
.vgs-intro-header {
    max-width: 760px;
    margin: 0 auto 60px;
}
.vgs-intro-quote {
    position: relative;
    margin: 0 auto 28px;
    padding: 0;
    border: none;
    background: none;
}
.vgs-intro-quote-icon {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.4;
    display: block;
}
.vgs-intro-quote-icon--left {
    margin-bottom: 12px;
}
.vgs-intro-quote-icon--right {
    margin-top: 12px;
    text-align: right;
}
.vgs-intro-quote p {
    font-family: var(--heading-font);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
    font-style: italic;
    margin: 0;
}
.vgs-intro-lead {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 0;
}
.vgs-intro-card {
    background: #faf8f5;
    border: 1px solid #ede7df;
    border-radius: 16px;
    padding: 40px 32px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.vgs-intro-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(127,130,102,0.12);
    border-color: var(--primary);
}
.vgs-intro-card--featured {
    background: var(--primary);
    border-color: transparent;
}
.vgs-intro-card--featured:hover {
    border-color: transparent;
}
.vgs-intro-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(127,130,102,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    transition: background 0.3s ease, color 0.3s ease;
}
.vgs-intro-card:hover .vgs-intro-card-icon {
    background: var(--primary);
    color: #fff;
}
.vgs-intro-card--featured .vgs-intro-card-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.vgs-intro-card--featured:hover .vgs-intro-card-icon {
    background: rgba(255,255,255,0.3);
    color: #fff;
}
.vgs-intro-card-title {
    font-size: 1.2rem;
    margin-bottom: 14px;
    color: var(--dark);
}
.vgs-intro-card--featured .vgs-intro-card-title {
    color: #fff;
}
.vgs-intro-card-desc {
    color: #888;
    font-size: 0.93rem;
    line-height: 1.75;
    margin: 0;
}
.vgs-intro-card--featured .vgs-intro-card-desc {
    color: rgba(255,255,255,0.85);
}

/* Meerwaarde section */
.vgs-meerwaarde-section {
    background: #f3eee7;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Process section */
.vgs-process-section {
    background: #fff;
    padding: 100px 0;
}

/* Realisaties section */
.vgs-realisaties-section {
    background: #f3eee7;
    padding: 100px 0;
}

/* Prijs section */
.vgs-prijs-section {
    background: #fff;
    padding: 100px 0;
}
.vgs-prijs-card {
    background: #fffdfb;
    border: 2px solid var(--primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(127,130,102,0.15);
}
.vgs-prijs-card-header {
    background: #9ea68a;
    padding: 30px 28px;
    color: #fff;
}
.vgs-prijs-card-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255,255,255,0.2);
    border-radius: 30px;
    padding: 6px 14px;
    margin-bottom: 14px;
}
.vgs-prijs-card-header h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 6px;
}
.vgs-prijs-card-header p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin: 0;
}
.vgs-prijs-card-body {
    padding: 28px;
}

/* Responsive adjustments for vastgoedstyling page */
@media (max-width: 991px) {
    .vgs-intro-section,
    .vgs-meerwaarde-section,
    .vgs-process-section,
    .vgs-realisaties-section,
    .vgs-prijs-section { padding: 70px 0; }
}
@media (max-width: 575px) {
    .vgs-prijs-card { border-radius: 14px; }
}

/* ========== VAKANTIEWONING PAGE ========== */

/* Intro section */
.vkw-intro-section {
    background: #fff;
    padding: 100px 0;
}

/* Voordelen section */
.vkw-voordelen-section {
    background: #f3eee7;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Process section */
.vkw-process-section {
    background: #fff;
    padding: 100px 0;
}

/* Realisaties section */
.vkw-realisaties-section {
    background: #faf8f5;
    padding: 100px 0;
}

/* Prijs section */
.vkw-prijs-section {
    background: #fff;
    padding: 100px 0;
}

/* Responsive adjustments for vakantiewoning page */
@media (max-width: 991px) {
    .vkw-intro-section,
    .vkw-voordelen-section,
    .vkw-process-section,
    .vkw-realisaties-section,
    .vkw-prijs-section { padding: 70px 0; }
}

/* ========== INTERIEURADVIES PAGE ========== */

/* Hero */
.ia-hero-section {
    position: relative;
    padding: 120px 0 90px;
    background:
        radial-gradient(circle at 88% 12%, rgba(172,107,83,0.18) 0%, rgba(172,107,83,0) 38%),
        radial-gradient(circle at 8% 90%, rgba(127,130,102,0.18) 0%, rgba(127,130,102,0) 42%),
        linear-gradient(145deg, #f8f4ee 0%, #efe7dc 55%, #f7f1e9 100%);
    overflow: hidden;
}
.ia-hero-shell {
    position: relative;
    background: rgba(255,255,255,0.68);
    border: 1px solid rgba(229,221,209,0.75);
    border-radius: 34px;
    padding: 56px 50px 48px;
    box-shadow: 0 24px 60px rgba(34, 27, 19, 0.09);
    backdrop-filter: blur(3px);
}
.ia-hero-shell::before {
    content: '';
    position: absolute;
    inset: 16px;
    border-radius: 24px;
    border: 1px dashed rgba(127,130,102,0.24);
    pointer-events: none;
}
.ia-hero-copy {
    max-width: 560px;
    position: relative;
    z-index: 1;
}
.ia-hero-section .section-label {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border-radius: 40px;
    background: rgba(172,107,83,0.12);
    border: 1px solid rgba(172,107,83,0.2);
    letter-spacing: 2px;
    margin-bottom: 16px;
}
.ia-hero-section .about-hero-h1 {
    font-size: clamp(2.2rem, 4.7vw, 3.8rem);
    line-height: 1.12;
    margin-bottom: 1.4rem;
}
.ia-hero-section .about-hero-h1 .highlight {
    color: var(--accent);
    font-style: italic;
    position: relative;
    display: inline-block;
}
.ia-hero-section .about-hero-h1 .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    height: 14px;
    background: rgba(172,107,83,0.18);
    z-index: -1;
}
.ia-hero-section .about-hero-intro {
    margin-bottom: 2rem;
    max-width: 530px;
    color: #645f57;
    line-height: 1.85;
}
.ia-hero-section .btn-outline-custom {
    background: rgba(255,255,255,0.6);
    border-color: rgba(26,26,26,0.52);
}
.ia-hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.ia-hero-photo {
    width: min(430px, 100%);
    aspect-ratio: 4 / 5;
    border-radius: 26px;
    border: 1px solid #e6dbcf;
    background: linear-gradient(155deg, #ece5dc 0%, #d9cec0 100%);
    box-shadow: 0 28px 65px rgba(29, 23, 17, 0.18);
    position: relative;
    z-index: 3;
}
.ia-hero-photo .about-placeholder-inner {
    color: #8f7d69;
}
.ia-hero-photo .about-placeholder-inner span {
    font-size: 0.74rem;
}
.ia-hero-shape {
    position: absolute;
    border-radius: 22px;
    border: 1px solid #decebb;
    background: rgba(255,255,255,0.46);
    box-shadow: 0 18px 30px rgba(42, 32, 22, 0.08);
    z-index: 1;
}
.ia-hero-shape-one {
    width: 148px;
    height: 148px;
    top: 22px;
    left: 2px;
    transform: rotate(-11deg);
}
.ia-hero-shape-two {
    width: 94px;
    height: 214px;
    right: 14px;
    top: 94px;
    transform: rotate(8deg);
}
.ia-hero-quote {
    left: -24px;
    bottom: -24px;
    max-width: 260px;
    border: 1px solid #ebdfd2;
    z-index: 4;
}
.ia-hero-quote p {
    font-size: 0.96rem;
}
@media (max-width: 991px) {
    .ia-hero-section {
        padding: 105px 0 70px;
    }
    .ia-hero-shell {
        padding: 42px 30px 36px;
    }
    .ia-hero-shell::before {
        inset: 12px;
    }
    .ia-hero-copy {
        max-width: 100%;
    }
    .ia-hero-visual {
        min-height: 470px;
        margin-top: 8px;
    }
    .ia-hero-photo {
        max-width: 360px;
    }
    .ia-hero-quote {
        left: 10px;
        bottom: -16px;
    }
}
@media (max-width: 575px) {
    .ia-hero-section {
        padding: 95px 0 55px;
    }
    .ia-hero-shell {
        padding: 28px 20px 26px;
        border-radius: 26px;
    }
    .ia-hero-shell::before {
        inset: 9px;
        border-radius: 18px;
    }
    .ia-hero-section .section-label {
        letter-spacing: 1.5px;
        font-size: 0.72rem;
    }
    .ia-hero-section .about-hero-h1 {
        font-size: clamp(1.9rem, 9vw, 2.5rem);
    }
    .ia-hero-section .about-hero-intro {
        font-size: 1rem;
        margin-bottom: 1.6rem;
    }
    .ia-hero-visual {
        min-height: 360px;
    }
    .ia-hero-photo {
        max-width: 290px;
        border-radius: 20px;
    }
    .ia-hero-shape-one {
        width: 112px;
        height: 112px;
        top: 8px;
        left: 0;
    }
    .ia-hero-shape-two {
        width: 78px;
        height: 170px;
        right: 4px;
        top: 58px;
    }
    .ia-hero-quote {
        position: static;
        margin-top: 16px;
        max-width: none;
        padding: 14px 16px;
    }
    .ia-hero-section .hero-cta {
        gap: 0.75rem;
    }
    .ia-hero-section .hero-cta .btn {
        width: 100%;
        text-align: center;
    }
}

/* Intro section */
.ia-intro-section {
    background: #fff;
    padding: 100px 0;
}

/* Mogelijkheden section */
.ia-mogelijkheden-section {
    background: #f3eee7;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Process section */
.ia-process-section {
    background: #fff;
    padding: 100px 0;
}

/* Sfeer section */
.ia-sfeer-section {
    background: #faf8f5;
    padding: 100px 0;
}

/* Prijs section */
.ia-prijs-section {
    background: #fff;
    padding: 100px 0;
}

/* Responsive adjustments for interieuradvies page */
@media (max-width: 991px) {
    .ia-intro-section,
    .ia-mogelijkheden-section,
    .ia-process-section,
    .ia-sfeer-section,
    .ia-prijs-section { padding: 70px 0; }
}