/* Performance Optimized CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Critical performance optimizations */
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

/* GPU acceleration for animations */
.hero-video,
.expandable-nav,
.cta-button,
.social-link {
    transform: translateZ(0);
    will-change: transform;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.container {
    width: 100%;
    height: 30vh;
    background-color: #ffffff;
}

.header {
    width: 100%;
    margin: 0 auto;
    margin-top: 2%;
    padding-bottom: 1.5rem;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
}

.top-bar {
    width: 80%;
    margin: 0 auto;
    padding: 0.5rem 0;
    display: flex;
    justify-content: flex-end;
}

.language-login {
    display: flex;
    align-items: center;
    gap: 0;
    letter-spacing: 2px;
}

.lang-link, .login-link {
    color: #cccccc;
    font-size: 0.7rem;
    font-family: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.lang-link:hover, .login-link:hover {
    color: #999999;
}

.current-lang {
    color: #999999;
    font-weight: 600;
}

.separator {
    color: #cccccc;
    font-size: 0.7rem;
}

.main-header {
    width: 80%;
    margin: 0 auto;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.main-header img {
    height: 100%;
}

.main-header nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.main-header nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-header nav ul li {
    list-style: none;
}

.main-header nav ul li a {
    text-decoration: none;
    color: #000000;
    font-family: inherit;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.main-header nav ul li a:hover {
    color: #666666;
}

.main-header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #666666;
    transition: width 0.3s ease;
}

.main-header nav ul li a:hover::after {
    width: 100%;
}

.main-header nav ul li a:active {
    color: #000000;
}

/* Expandable nav styles */
.expandable-nav {
    position: relative;
    overflow: hidden;
    min-width: 200px;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.expandable-nav .nav-item {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.expanded-items {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 100%;
    white-space: nowrap;
    padding-right: 0;
    justify-content: flex-end;
}

.expanded-items .nav-item {
    display: inline-block;
    flex-shrink: 0;
}

/* CTA Button */
.cta-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: -1.5rem;
    padding-right: 10%;
}

.cta-button {
    background-color: #000000;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
}

.cta-button:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-light {
    background-color: #f0f0f0;
    color: #666666;
}

.cta-light:hover {
    background-color: #e0e0e0;
}

.cta-primary {
    background-color: rgb(144, 152, 149);
    color: #f0f0f0;
}

.cta-primary:hover {
    background-color: rgb(30, 50, 43);
    color: #ffffff;
}

.cta-light:hover {
    background-color: rgb(30, 50, 43);
    color: #ffffff;
}

/* Hero Section */
.hero {
    position: relative;
    width: 80%;
    height: 60vh;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video::-webkit-media-controls {
    display: none !important;
}

.hero-video::-webkit-media-controls-panel {
    display: none !important;
}

.hero-video::-webkit-media-controls-play-button {
    display: none !important;
}

.hero-video::-webkit-media-controls-start-playback-button {
    display: none !important;
}

.hero-video::-webkit-media-controls-overlay-play-button {
    display: none !important;
}

.hero-video::-webkit-media-controls-enclosure {
    display: none !important;
}

.hero-video::-webkit-media-controls-overlay {
    display: none !important;
}

/* Additional hiding for all browsers */
.hero-video {
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    z-index: 3;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
    text-stroke: 0.5px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    -webkit-text-stroke: 0.3px rgba(0, 0, 0, 0.2);
    text-stroke: 0.3px rgba(0, 0, 0, 0.2);
}

/* About & Why Section */
.about-why-section {
    padding: 6rem 0;
    background-color: #f8f8f8;
    margin-top: 2rem;
}

.about-why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-why-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.about-column {
    flex: 1;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgb(30, 50, 43);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: rgb(144, 152, 149);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-description {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.6;
    color: #888888;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-description:last-child {
    margin-bottom: 0;
}

.why-column {
    flex: 1;
}

.why-pallen-title {
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgb(30, 50, 43);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.why-pallen-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.why-pallen-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.5rem 0;
}

.checkmark {
    color: rgb(144, 152, 149);
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.why-pallen-text-item {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.6;
    color: #888888;
}

/* Featured Section */
.featured-section {
    width: 100%;
    padding: 4rem 0;
    background-color: #ffffff;
}

.featured-container {
    width: 90%;
    margin: 0 auto;
}

.featured-header {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.featured-title {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #000000;
    text-transform: uppercase;
    white-space: nowrap;
    margin-right: 2rem;
}

.featured-line {
    flex: 1;
    height: 1px;
    background-color: #e0e0e0;
}

.villa-content {
    display: flex;
    gap: 5%;
    align-items: flex-start;
}

.villa-image {
    flex: 0 0 60%;
    height: 500px;
}

.villa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.villa-text {
    flex: 0 0 35%;
    text-align: left;
    margin-top: 10px;
}

.villa-category {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.category-dot {
    color: rgb(30, 50, 43);
}

.villa-category strong {
    font-weight: 500;
}

.villa-title {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.villa-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.villa-description {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: #888888;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.villa-price {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #000000;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.villa-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
}

.feature-icon {
    width: 20px;
    height: 20px;
}

.bed-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 4v16'/%3E%3Cpath d='M2 8h18a2 2 0 0 1 2 2v10'/%3E%3Cpath d='M2 17h20'/%3E%3Cpath d='M6 8V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v4'/%3E%3C/svg%3E");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.bath-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6 6.5 3.5a1.5 1.5 0 0 0-1-.5C4.683 3 4 3.683 4 4.5V17a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5'/%3E%3Cline x1='10' y1='5' x2='8' y2='7'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cline x1='7' y1='19' x2='7' y2='21'/%3E%3Cline x1='17' y1='19' x2='17' y2='21'/%3E%3C/svg%3E");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.area-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Cpath d='M9 9h6v6H9z'/%3E%3C/svg%3E");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.house-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9,22 9,12 15,12 15,22'/%3E%3C/svg%3E");
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 400;
    color: #333333;
    letter-spacing: 0.3px;
}

.villa-cta {
    margin-top: 2rem;
}

.villa-cta-button {
    background-color: rgb(144, 152, 149);
    color: #f0f0f0;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
}

.villa-cta-button:hover {
    background-color: rgb(30, 50, 43);
    color: #ffffff;
}

/* Project Section - Omgekeerde layout */
.project-content {
    flex-direction: row;
}

.project-text {
    margin-top: 10px;
}

.project-image {
    flex: 0 0 60%;
    height: 500px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Ontdek ons volledig aanbod Section */
/* Selectie Section */
.selectie-section {
    width: 100%;
    padding: 4rem 0;
    background-color: #ffffff;
}

.selectie-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 2rem;
}

.selectie-header {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.selectie-title {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgb(30, 50, 43);
    margin: 0;
    margin-right: 2rem;
}

.selectie-line {
    flex: 1;
    height: 1px;
    background-color: rgb(144, 152, 149);
}

.selectie-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 5rem;
}

.selectie-item {
    background-color: transparent;
    border-radius: 0;
    overflow: hidden;
}

.selectie-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.selectie-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.selectie-content {
    padding: 1.5rem 0;
}

.selectie-category {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.selectie-category strong {
    font-weight: 500;
}

.category-dot {
    color: rgb(144, 152, 149);
}

.selectie-item-title {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: #888888;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    min-height: 3.2em;
    max-height: 3.2em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.selectie-price {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #000000;
    margin-top: 1rem;
    margin-bottom: 1.2rem;
}

.selectie-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.selectie-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid #e0e0e0;
}

.selectie-feature-icon {
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.selectie-feature-icon.bed-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 4v16'/%3E%3Cpath d='M2 8h18a2 2 0 0 1 2 2v10'/%3E%3Cpath d='M2 17h20'/%3E%3Cpath d='M6 8V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v4'/%3E%3C/svg%3E");
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.selectie-feature-icon.bath-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 6 6.5 3.5a1.5 1.5 0 0 0-1-.5C4.683 3 4 3.683 4 4.5V17a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2v-5'/%3E%3Cline x1='10' y1='5' x2='8' y2='7'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cline x1='7' y1='19' x2='7' y2='21'/%3E%3Cline x1='17' y1='19' x2='17' y2='21'/%3E%3C/svg%3E");
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.selectie-feature-icon.area-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Cpath d='M9 9h6v6H9z'/%3E%3C/svg%3E");
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.selectie-feature-icon.house-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m3 9 9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9,22 9,12 15,12 15,22'/%3E%3C/svg%3E");
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
}

.selectie-feature-text {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666666;
}

.selectie-cta-button {
    background-color: rgb(144, 152, 149);
    color: #f0f0f0;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
}

.selectie-cta-button:hover {
    background-color: rgb(30, 50, 43);
    color: #ffffff;
}

.aanbod-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
}

.aanbod-content {
    display: flex;
    gap: 5%;
    align-items: center;
    width: 100%;
    height: 100%;
}

.aanbod-text {
    flex: 0 0 50%;
    text-align: left;
    padding-left: 2rem;
}

.aanbod-text .hero-title {
    color: #333333;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.3);
    text-stroke: 0.5px rgba(255, 255, 255, 0.3);
    margin-bottom: 3rem;
}

.aanbod-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cta-row {
    display: flex;
        gap: 1rem;
    }
    
.cta-row .aanbod-cta-button {
    flex: 0 0 auto;
}

.aanbod-cta-button {
    background-color: rgb(144, 152, 149);
    color: #f0f0f0;
    padding: 1rem 2rem;
    text-decoration: none;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
}

.aanbod-cta-button:hover {
    background-color: rgb(30, 50, 43);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.aanbod-ctas > .aanbod-cta-button {
    width: fit-content;
}

.aanbod-image {
    flex: 0 0 50%;
    height: 100%;
}

.aanbod-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Onze diensten Section - Omgekeerde layout */
.diensten-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
        justify-content: center;
    width: 90%;
    margin: 4rem auto 0 auto;
}

.diensten-content {
    display: flex;
    gap: 5%;
    align-items: center;
    width: 100%;
    height: 100%;
}

.diensten-image {
    flex: 0 0 55%;
    height: 100%;
}

.diensten-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.diensten-text {
    flex: 0 0 40%;
    text-align: right;
    padding-right: 2rem;
}

.diensten-text .hero-title {
    color: #333333;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.3);
    text-stroke: 0.5px rgba(255, 255, 255, 0.3);
    margin-bottom: 2.5rem;
}

.diensten-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: flex-end;
}

/* Nieuwsbrief Section - Zelfde stijl als diensten */
.nieuwsbrief-section {
    background: rgb(30, 50, 43);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 4rem auto 0 auto;
    height: 70vh;
}

.nieuwsbrief-content {
    display: flex;
    gap: 5%;
    align-items: center;
    width: 100%;
    height: 100%;
}

.nieuwsbrief-text {
    flex: 0 0 50%;
    text-align: left;
    padding: 2rem;
    max-width: 480px;
}

.nieuwsbrief-text .hero-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.nieuwsbrief-description {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.nieuwsbrief-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid #666666;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background-color: transparent;
    color: #ffffff;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.form-group input:hover {
    border-bottom-color: rgb(144, 152, 149);
    transform: translateY(-1px);
}

.form-group input:focus {
    outline: none;
    border-bottom-color: rgb(144, 152, 149);
    transform: translateY(-1px);
}

.form-group input::placeholder {
    color: #999999;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
        gap: 0.5rem;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
    margin-left: -2rem;
    margin-right: -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.checkbox-group input[type="checkbox"] {
    margin: 0;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    appearance: none;
    border: 2px solid #666666;
    border-radius: 3px;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-group input[type="checkbox"]:checked {
    background-color: rgb(144, 152, 149);
    border-color: rgb(144, 152, 149);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-group input[type="checkbox"]:hover {
    border-color: rgb(144, 152, 149);
    transform: scale(1.05);
}

.checkbox-group label {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.3px;
    color: #e0e0e0;
    line-height: 1.4;
    cursor: pointer;
    flex: 1;
    width: 100%;
    display: block;
}

.submit-button {
    background-color: #f0f0f0;
    color: #666666;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
    height: auto;
}

.submit-button:hover {
    background-color: rgb(144, 152, 149);
    color: #f0f0f0;
}

.nieuwsbrief-image {
    flex: 0 0 50%;
    height: 100%;
}

/* Footer */
.footer {
    margin-top: 4rem;
    text-transform: uppercase;
}

.footer-container {
    max-width: 100%;
    margin: 0;
}

.footer-main {
    display: flex;
    min-height: 350px;
}

.footer-left {
    flex: 0 0 30%;
    background-color: rgb(30, 50, 43);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 3rem 4rem 3rem 2rem;
}

.footer-logo {
    text-align: right;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-right {
    flex: 0 0 70%;
    background-color: #f8f8f8;
    padding: 3rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 90%;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section h4 {
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: rgb(30, 50, 43);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 0.75rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
    color: #666666;
}

.footer-contact a {
    color: #666666;
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: rgb(30, 50, 43);
}

.footer-contact strong {
    color: rgb(30, 50, 43);
    font-weight: 400;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #666666;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: rgb(30, 50, 43);
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    color: rgb(30, 50, 43);
}

.social-link svg {
    width: 16px;
    height: 16px;
}

.newsletter-signup p {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
    color: #666666;
}

.footer-cta {
    display: inline-block;
    background-color: rgb(30, 50, 43);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background-color: rgb(144, 152, 149);
    color: #ffffff;
}


/* Responsive Footer */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
    }
    
    .footer-left {
        flex: none;
        min-height: 200px;
        justify-content: center;
    }
    
    .footer-right {
        flex: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Footer Disclaimer Text */
.footer-disclaimer-text {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.footer-disclaimer-text p {
    font-size: 0.6rem;
    line-height: 1.3;
    color: #cccccc;
    text-align: left;
}

.footer-disclaimer-text p:last-child {
    margin-bottom: 0;
}

.footer-disclaimer-text a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

.nieuwsbrief-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Demo Popup */
.demo-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.demo-popup-content {
    background-color: #f8f8f8;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
}

.demo-popup-content h3 {
    color: rgb(30, 50, 43);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-popup-content p {
    color: #666666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 300;
}

.demo-popup-content strong {
    color: rgb(30, 50, 43);
    font-weight: 500;
}

.demo-popup-button {
    background-color: #f0f0f0;
    color: #666666;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.demo-popup-button:hover {
    background-color: rgb(144, 152, 149);
    color: #f0f0f0;
}

/* Project header - omgekeerde layout */
.project-header {
    flex-direction: row-reverse;
}

.project-header .featured-title {
    margin-right: 0;
    margin-left: 2rem;
}