* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f0f0f;
    color: #0f0f0f;
    line-height: 1.6;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background:
        linear-gradient(rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.34)),
        url('images/header.jpeg') center center / cover no-repeat;
    color: #ffffff;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.project-main.video-project {
    height: 240px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.project-main.video-project video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.22);
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    backdrop-filter: blur(1px);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: #6EC1A5;
}

.nav a.active {
    color: #6EC1A5;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #6EC1A5;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url('images/photo-1580587771525-78b9dba3b914.jpg') no-repeat center center/cover;
    display: block;
    color: #ffffff;
    position: relative;
    padding: 9rem 0 3rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 300px;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-box h3 {
    color: #6EC1A5;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.stat-box p {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Content Overlay Styles */
.content-overlay {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 12rem);
    background: rgba(255, 255, 255, 0.34);
    display: flex;
    flex-direction: column;
    justify-content: flex;
    align-items: stretch;
    text-align: left;
    padding: 2rem 2rem 3rem;
    box-sizing: border-box;
    border-radius: 12px;pr
    overflow: hidden;
}

.content-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.content-overlay h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #6EC1A5;
}

.content-overlay p {
    font-size: 1.1rem;
    color: rgba(20, 24, 27, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 100%;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 1rem 0 2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
}

.about-feature-card {
    padding: 2rem 1.5rem;
    background:
        linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
        radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.06) 1px, transparent 0);
    background-size: auto, 8px 8px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.about-feature-card:last-child {
    border-right: none;
}

.about-feature-card h3 {
    color: #1a1d21;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.about-feature-card p {
    margin-bottom: 0;
    color: rgba(20, 24, 27, 0.88);
    font-size: 1.05rem;
    line-height: 1.45;
}

.about-content-panel {
    margin-top: 0.5rem;
    margin-left: auto;
    margin-right: auto;
    width: min(760px, 100%);
    background: rgba(255, 255, 255, 0.74);
    color: #1a1d21;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.about-content-panel h3 {
    color: #1a1d21;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.about-content-panel p {
    color: rgba(20, 24, 27, 0.92);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Content Box Styles */
.content-box {
    padding: 6rem 0;
    background-color: #ffffff;
    min-height: auto;
    display: block;
}

.content-box h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0f0f0f;
    position: relative;
    padding-bottom: 1rem;
}

.content-box h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #6EC1A5;
}

.content-box p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.services-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid #6EC1A5;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    color: #0f0f0f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-item p {
    color: #666;
    font-size: 1rem;
}

/* Project Slider */
.project-slider {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.project-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-main {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.project-main img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.project-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(15, 15, 15, 0.55);
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.project-arrow:hover {
    background: rgba(15, 15, 15, 0.7);
}

.project-arrow--prev {
    left: 12px;
}

.project-arrow--next {
    right: 12px;
}

@media (max-width: 768px) {
    .project-main img {
        transition: opacity 320ms ease, transform 320ms ease;
        opacity: 1;
        transform: translateX(0);
        will-change: opacity, transform;
    }

    .project-main img.is-changing {
        opacity: 0;
        transform: translateX(14px);
    }

    .project-arrow {
        width: 52px;
        height: 52px;
        font-size: 40px;
    }
}

.thumbnail-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding-top: 10px;
}

.project-dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
}

.project-dots button.active {
    width: 18px;
    background: #6EC1A5;
}

.page-projecten .project-slider {
    margin-top: 1.4rem;
}

.page-projecten .content-overlay > h2 {
    margin-bottom: 1.1rem;
}

.page-projecten .thumbnail-list {
    display: none;
}

.page-projecten .project-dots {
    display: flex;
}

.page-projecten .project-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.thumbnail {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

.thumbnail.active {
    box-shadow: 0 0 0 3px #6EC1A5;
}

.project-content {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.project-text {
    display: none;
    animation: fadeIn 0.5s ease;
}

.project-text.is-legacy {
    display: none !important;
}

.project-text.active {
    display: block;
}

.project-text h3 {
    color: #0f0f0f;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-text p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Logo Grid */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.logo-item {
    background: #f8f9fa;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f0f0f;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.logo-item:hover {
    border-color: #6EC1A5;
    transform: translateY(-5px);
    background: #e8f4f1;
}

.partners-text {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 2rem;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.contact-item h3 {
    color: #0f0f0f;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 1rem;
}

.contact-item strong {
    color: #0f0f0f;
}

.cta-button {
    text-align: center;
    margin-top: 3rem;
}

.cta-button button {
    background-color: #6EC1A5;
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button button:hover {
    background-color: #5aa88f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 193, 165, 0.3);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.service-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid #6EC1A5;
}

.service-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-item h3 {
    color: #0f0f0f;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-item p {
    color: #666;
    font-size: 1rem;
}

/* Project Slider */
.project-slider {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 3rem;
}

.project-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thumbnail {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

.thumbnail.active {
    box-shadow: 0 0 0 3px #6EC1A5;
}

.project-content {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.project-text {
    display: none;
    animation: fadeIn 0.5s ease;
}

.project-text.active {
    display: block;
}

.project-text h3 {
    color: #0f0f0f;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-text p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Logo Grid */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.logo-item {
    background: #f8f9fa;
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0f0f0f;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.logo-item:hover {
    border-color: #6EC1A5;
    transform: translateY(-5px);
    background: #e8f4f1;
}

.partners-text {
    text-align: center;
    font-style: italic;
    color: #666;
    margin-top: 2rem;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.contact-item h3 {
    color: #0f0f0f;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 1rem;
}

.contact-item strong {
    color: #0f0f0f;
}

.cta-button {
    text-align: center;
    margin-top: 3rem;
}

.cta-button button {
    background-color: #6EC1A5;
    color: #ffffff;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button button:hover {
    background-color: #5aa88f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 193, 165, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease;
}

/* Footer Styles */
.footer {
    background-color: #0f0f0f;
    color: #ffffff;
    text-align: center;
    padding: 2rem 0;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
}

/* Theme Refresh: Mark Steenbrink-style header/menu and layout */
.header {
    background:
        linear-gradient(rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.34)),
        url('images/header.jpeg') center center / cover no-repeat;
    padding: 0.8rem 0 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

.header .container {
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    gap: 0.7rem;
    padding-bottom: 1.15rem;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.28);
        color: #ffffff;
        border-radius: 10px;
        width: 44px;
        height: 44px;
        font-size: 26px;
        line-height: 1;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
        padding-bottom: 0;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.96);
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
        transform: translateY(-8px);
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.25s ease, opacity 0.18s ease, transform 0.18s ease;
        z-index: 2000;
    }

    .nav.active {
        max-height: min(420px, calc(100vh - 72px));
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0.35rem 0;
        background: transparent;
        border: none;
    }

    .nav li {
        border-bottom: 1px solid #eee;
    }

    .nav li:last-child {
        border-bottom: none;
    }

    .nav a {
        display: block;
        padding: 0.9rem 1.1rem;
        color: #1a1d21;
        text-align: left;
        width: 100%;
    }
}
/* default hide toggle */
.menu-toggle {
    display: none;
    appearance: none;
    border: 0;
    padding: 0;
}

.logo {
    justify-content: flex-start;
    background: transparent;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
}

.logo img {
    height: 64px;
}

.nav {
    width: auto;
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: -1.25rem;
    z-index: 2;
}

.nav ul {
    gap: 0;
    justify-content: stretch;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.nav li {
    flex: 1;
    min-width: 0;
    border-right: 1px solid rgba(0, 0, 0, 0.15);
}

.nav li:last-child {
    border-right: none;
}

.nav a {
    display: block;
    width: 100%;
    text-align: center;
    color: #1a1d21;
    text-transform: lowercase;
    font-size: clamp(0.82rem, 1.15vw, 1.02rem);
    line-height: 1.2;
    font-weight: 500;
    padding: 0.5rem 0.35rem;
}

.nav a:hover,
.nav a.active {
    color: #0e9be5;
}

.nav a.active::after {
    display: none;
}

.hero {
    padding: 10.5rem 0 2.5rem;
    background-position: center top;
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 34%;
    background: linear-gradient(to bottom, rgba(122, 198, 233, 0.08), rgba(165, 223, 248, 0.35));
    pointer-events: none;
}

.content-overlay {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
}

.content-overlay h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #0ea5ed;
    text-transform: none;
    letter-spacing: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.32);
}

.content-overlay h2::after {
    display: none;
}

.service-item,
.project-content,
.logo-item,
.contact-item {
    background: rgba(255, 255, 255, 0.9);
    border-left: none;
    border: 1px solid rgba(255, 255, 255, 0.32);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.about-feature-grid {
    margin-top: 1.6rem;
}

.about-quote {
    margin: 0.25rem 0 1rem;
    text-align: center;
    color: #ffffff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.content-overlay h2.about-quote {
    color: #ffffff;
}

.about-quote .accent {
    color: #0ea5ed;
}

.about-feature-card h3 {
    text-transform: lowercase;
}

.footer {
    background:
        radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.08) 1px, transparent 0),
        linear-gradient(90deg, rgba(28, 30, 33, 0.98), rgba(15, 15, 15, 0.98));
    background-size: 7px 7px, auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-box {
        width: 100%;
        max-width: 300px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .project-slider {
        grid-template-columns: 1fr;
    }

    .page-projecten .project-list {
        gap: 2.25rem;
    }

    .project-main img {
        margin-top: 0;
        height: 220px;
    }

    .thumbnail-list {
        display: none;
    }

    .project-dots {
        display: flex;
    }
    
    .logo-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 9rem 0 2rem;
    }

    .content-overlay {
        min-height: auto;
        padding: 1.5rem 1rem 2rem;
        border-radius: 0;
    }

    .header {
        padding: 0.65rem 0 0.75rem;
    }

    .header .container {
        gap: 0.75rem;
    }

    .logo img {
        height: 50px;
    }

    .about-feature-grid {
        grid-template-columns: 1fr;
        margin-top: 0.5rem;
    }

    .about-feature-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding: 1.4rem 1rem;
    }

    .about-feature-card:last-child {
        border-bottom: none;
    }

    .about-feature-card h3 {
        font-size: 1.6rem;
    }

    .about-content-panel {
        margin-top: 1rem;
        padding: 1.2rem;
    }

    .about-content-panel h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .content-box h2 {
        font-size: 2rem;
    }
    
    .logo-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile menu: final overrides (must be after base nav/menu rules) */
@media (max-width: 768px) {
    .menu-toggle {
        display: none !important;
    }

    .header {
        background: transparent;
        padding: 0;
    }

    .header::before {
        content: '';
        display: block;
        height: 84px;
        width: 100%;
        background:
            linear-gradient(rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.34)),
            url('images/header.jpeg') center center / cover no-repeat;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.32);
    }

    .header .container {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding-bottom: 0;
    }

    .header .logo {
        display: none;
    }

    /* Menu shown directly (no dropdown) below the header image */
    .header .nav {
        position: static;
        width: 100vw;
        left: auto;
        right: auto;
        bottom: auto;
        max-height: none;
        overflow: visible;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding: 0.85rem 1rem;
        background: rgba(15, 15, 15, 0.92);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: none;
        transition: none;
    }

    .header .nav ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.65rem 1.8rem;
        padding: 0;
        background: transparent;
        border: none;
    }

    .header .nav li {
        border: none;
        flex: 0 0 auto;
    }

    .header .nav a {
        display: inline-block;
        padding: 0.25rem 0;
        width: auto;
        text-align: center;
        color: #ffffff;
        font-weight: 400;
        position: relative;
    }

    /* Extra breathing room below the fixed header/menu */
    .hero {
        padding-top: 10.5rem;
    }

    .header .nav a:hover,
    .header .nav a.active {
        color: #6EC1A5;
    }

    .header .nav a.active::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        bottom: -8px;
        height: 2px;
        background-color: #6EC1A5;
    }
}

/* wrapper split */
/* make both columns equal height */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch; /* important */
}

/* LEFT: center form vertically */
.contact-form {
    display: flex;
    align-items: center;   /* vertical center */
    justify-content: center;
}

/* keep form width clean */
.contact-form form {
    width: 100%;
    max-width: 500px;
}
/* FORM */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: none;
}

.contact-form button {
    padding: 12px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* CONTACT BOX GRID (THIS is what you asked) */
/* RIGHT SIDE → SINGLE COLUMN (1x3) */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* keep box styling clean */
.contact-item {
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 999;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    transition: 0.2s;
}

.form-message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
}

.form-message.success {
    background: #e6f9ec;
    color: #1a7f37;
}

.form-message.error {
    background: #fdecea;
    color: #b42318;
}
