/* Local Font Faces - Performance Optimized */
@font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/cormorant-garamond.woff2') format('woff2');
    font-weight: 400 600;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('fonts/raleway.woff2') format('woff2');
    font-weight: 300 600;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2C5530;
    --secondary-color: #F8F9FA;
    --text-dark: #2D2D2D;
    --text-light: #6C757D;
    --accent-color: #28A745;
    --white: #FFFFFF;
    --border-color: #E9ECEF;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Raleway', sans-serif;
    
    /* Subtle color palette */
    --sage-green: #F0F4F1;
    --warm-cream: #FDF8F3;
    --soft-blue: #F4F7FB;
    --lavender-mist: #F8F6FB;
    --mint-whisper: #F2F9F6;
    --pearl-white: #FEFEFE;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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



/* Hero Section with Video Background */
.hero-gif {
    position: relative;
    min-height: 100vh;
    background-image: url('/Assets/hero-fallback.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Desktop GIF Background */
.hero-gif-desktop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
}

.hero-gif-desktop .hero-gif-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Background for Mobile */
.hero-video-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: none;
}

/* Video Background for Modern Browsers */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 10;
}

/* Hero Logos - Top Left */
.hero-logos {
    position: absolute;
    top: 80px;
    left: 80px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.hero-logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.hero-logo:first-child {
    /* Made in BXL logo - square with rounded corners */
    border-radius: 6px;
}

.hero-logo:last-child {
    /* Artisanat logo - circle */
    border-radius: 50%;
}

.main-heading {
    font-size: 72px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.25em;
    font-family: var(--font-heading);
}

.sub-heading {
    font-size: 20px;
    color: #fff;
    opacity: 0.9;
    line-height: 1.67em;
}

/* Language Selector - Top Right */
.language-selector {
    position: absolute;
    top: 80px;
    right: 80px;
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 8px;
    z-index: 10;
}

.lang-flag {
    font-size: 24px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.2s ease;
    padding: 8px 12px;
    border-radius: 8px;
    background: transparent;
}

.lang-flag:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.lang-flag.active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

/* Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.cta-button:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* About Section */
.about {
    padding: 40px 0;
    background: var(--warm-cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.8);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    contain: layout;
    min-height: 700px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.35em;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-text a {
    color: var(--text-dark);
    text-decoration: underline;
}

.about-text a:hover {
    color: var(--accent-color);
}

.founders-info {
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 10px;
    margin-top: 2rem;
}

.founders-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.founders-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 286 / 93;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin: 0 auto 2rem auto;
    display: block;
    object-fit: cover;
}

.about-image {
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    contain: layout;
    max-width: 520px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 520px;
    object-fit: contain;
    border-radius: 20px;
    margin: 0;
    display: block;
}

/* GreenBizz Partner Section */
.greenbizz-section {
    padding: 80px 0;
    background: var(--sage-green);
}

.greenbizz-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    contain: layout;
    min-height: 400px;
}

.greenbizz-info {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.greenbizz-logo {
    width: 150px;
    height: auto;
    margin: 0 auto 2rem auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: block;
}

.greenbizz-info h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.greenbizz-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 500px;
    margin: 0 auto;
}

.greenbizz-image {
    position: relative;
}

.interior-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: block;
    aspect-ratio: 4 / 3;
}

/* CityFab1 Section */
.cityfab-section {
    padding: 60px 0;
    background: var(--soft-cream);
    text-align: center;
    contain: layout;
}

.cityfab-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cityfab-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

.cityfab-link {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cityfab-link:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.cityfab-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Services Section */
.services {
    padding: 80px 0 40px 0;
    background: var(--soft-blue);
    text-align: center;
    contain: layout;
}

.services h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.services-image {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-image img {
    width: 100%;
    max-width: 800px;
    height: 520px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    margin: 0 auto;
}

.services-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.services-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.services-box p:last-child {
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Portfolio */
.portfolio {
    padding: 80px 0;
    background: var(--secondary-color);
}

.portfolio h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.portfolio-item-content {
    padding: 1.5rem;
}

.portfolio-item h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Gallery Grid */
.gallery-area {
    padding: 40px 0;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-image {
    width: 100%;
    height: 288px;
    object-fit: cover;
    border-radius: 10px;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.pricing h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.pricing-info {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.price-highlight {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-weight: 600;
}

/* Contact */
.contact {
    padding: 40px 0 80px 0;
    background: var(--mint-whisper);
    contain: layout;
}

.contact h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container {
    width: 100%;
}

.contact-form-container h2 {
    margin-bottom: 2rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-section h2 {
    margin-bottom: 2rem;
}

.map-container h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.address-info {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.address-info p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.address-info strong {
    color: var(--primary-color);
}

.map-container iframe {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}



.google-business-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.google-business-btn {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.google-business-btn:hover {
    background: #1e3a21;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
    color: white;
    text-decoration: none;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: #f9fafb;
    color: var(--text-dark);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-info h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 5px;
}

.contact-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.brands-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.brand-image {
    width: 115px;
    height: 115px;
    border-radius: 10px;
    object-fit: contain;
}

.brand-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.brand-btn:hover {
    transform: translateY(-2px);
}

.brand-link {
    display: inline-block;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-decoration: none;
    color: var(--text-dark);
}

.brand-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.accelerator-area {
    margin-top: 40px;
}

.accelerator-image {
    height: 60px;
    margin-bottom: 20px;
}

.cohort-heading {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.contact-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.location-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

/* Coming Soon Placeholder */
.partner-card.coming-soon {
    opacity: 0.6;
    cursor: default;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
}

.partner-card.coming-soon:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.coming-soon-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 80px;
}

.coming-soon-text {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer */
.footer-area {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
    text-align: center;
}

/* Fast3DPrint.eu card styles */
.partner-card.fast3d {
    background: #000 !important;
    border-color: #000 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.partner-card.fast3d:hover {
    background: #111 !important;
    border-color: #FFD700 !important;
}

.fast3d-bolt {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #FFD700;
}

.partner-card.fast3d .partner-name {
    color: #fff !important;
    font-weight: 600;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-text {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

footer {
    background: #333;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        min-height: auto;
        justify-items: center;
        padding: 2.5rem 2rem;
    }

    .about-text {
        text-align: left;
    }

    .about-image {
        display: contents;
    }

    .about-image img {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    nav {
        justify-content: center;
    }





    .hero h1, .main-heading {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content,
    .contact-content,
    .greenbizz-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
    }

    .about-content {
        text-align: center;
        justify-items: center;
        padding: 2rem 1.5rem;
    }

    .about-text {
        text-align: left;
    }

    .contact h2 {
        text-align: center;
        font-size: 2rem;
    }

    .contact-info-section {
        flex-direction: column;
    }

    .google-business-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .google-business-btn {
        text-align: center;
    }
    
    .about-image {
        display: contents;
    }

    .about-image img {
        max-width: 360px;
        width: 100%;
        margin: 0 auto;
        border-radius: 15px;
        box-shadow: none;
    }
    
    /* Mobile-specific image optimizations for performance */
    .interior-image {
        max-width: 300px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .cityfab-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cityfab-logo {
        max-width: 280px;
    }

    .about-image img[alt*="3D printed objects"] {
        max-width: 100%;
    }
    
    .founders-photo {
        max-width: 280px;
        height: auto;
    }
    
    .gallery-image {
        max-width: 250px;
        height: auto;
    }
    
    .hero-logo {
        width: 70px;
        height: 70px;
    }
    
    .greenbizz-logo {
        max-width: 90px;
        height: auto;
    }

    .container {
        padding: 0 15px;
    }

    .brands-grid {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .hero-logos {
        top: 60px;
        left: 60px;
        gap: 10px;
    }
    
    .hero-logo {
        width: 80px;
        height: 80px;
    }

    /* Optimize hero background for mobile */
    .hero-gif {
        background-size: cover;
        background-position: center;
    }

    /* Show video on mobile, hide GIF */
    .hero-gif-desktop {
        display: none !important;
    }

    .hero-video-mobile {
        display: block !important;
    }

    /* Mobile Language Selector - Further Right */
    .language-selector {
        top: 60px;
        right: 30px; /* Further from edge */
        padding: 8px;
        border-radius: 10px;
    }

    .lang-flag {
        font-size: 22px;
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2rem;
    }
    
    .sub-heading {
        font-size: 1rem;
    }
}

html {
    scroll-behavior: smooth;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Work Examples Section */
.work-examples-section {
    padding: 80px 0;
    background: var(--lavender-mist);
    text-align: center;
    contain: layout;
}

.work-examples-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.gallery-area {
    display: flex;
    justify-content: center;
    width: 100%;
}

.image-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 800px;
}

.gallery-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
    height: auto;
    flex: 1;
    min-width: 300px;
    display: block;
    contain: layout;
}

.gallery-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Partners & Innovation Ecosystem Section */
.prestige-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pearl-white) 0%, var(--sage-green) 100%);
    text-align: center;
    contain: layout;
}

.prestige-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 600;
}

.partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--primary-color);
    width: 180px;
    height: 140px;
    filter: grayscale(20%);
    border: 2px solid transparent;
    contain: layout;
    will-change: transform;
}

.partner-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    filter: grayscale(0%);
    border-color: #27AE60;
}

.partner-card img {
    width: 100%;
    max-width: 120px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    display: block;
    aspect-ratio: 2 / 1;
}

/* KBC StartIt logo with rounded corners and slightly bigger size */
.partner-card img[alt="KBC StartIt"] {
    max-width: 130px;
    height: 65px;
    border-radius: 15px;
}

.partner-card:hover img {
    transform: scale(1.1);
}

.partner-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-medium);
    text-align: center;
    line-height: 1.3;
}

.partner-text-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: center;
    line-height: 1.2;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .partners-row {
        gap: 25px;
    }
    
    .partner-card {
        width: 160px;
        height: 130px;
    }
}

@media (max-width: 900px) {
    .partners-row {
        gap: 20px;
    }
    
    .partner-card {
        width: 150px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .prestige-section {
        padding: 60px 0;
    }

    .prestige-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .partners-row {
        gap: 20px;
        margin-bottom: 30px;
    }

    .partner-card {
        width: 140px;
        height: 120px;
        padding: 20px 15px;
    }

    .partner-card img,
    .partner-text-logo {
        max-width: 80px;
        height: auto;
        min-height: 40px;
    }
    
    .partner-text-logo {
        max-width: 88px; /* 10% wider than 80px for mobile */
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .prestige-section h2 {
        font-size: 1.8rem;
    }

    .partners-row {
        flex-direction: column;
        align-items: center;
    }

    .partner-card {
        width: 200px;
        height: 120px;
        padding: 20px 15px;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    padding: 20px;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text h4 {
    margin: 0 0 8px 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background: #1e3a24;
    transform: translateY(-1px);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
}

.cookie-btn.reject:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.cookie-btn.settings {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cookie-btn.settings:hover {
    background: var(--primary-color);
    color: white;
}

/* Cookie Modal Styles */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cookie-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.cookie-modal-header {
    padding: 25px 25px 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.cookie-modal-header h3 {
    margin: 0;
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.4rem;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.cookie-modal-body {
    padding: 0 25px;
}

.cookie-category {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-category-header h4 {
    margin: 0;
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-size: 1.1rem;
}

.cookie-category p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Toggle Switch Styles */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-toggle input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.cookie-toggle input:disabled + .toggle-slider {
    background-color: var(--primary-color);
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 20px 25px 25px 25px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    border-top: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .cookie-btn {
        flex: 0 1 auto;
        min-width: 140px;
        max-width: 180px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: normal;
        font-size: 0.8rem;
        padding: 12px 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .cookie-modal-content {
        margin: 10px;
        max-height: 90vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
} 

/* 3D Printing Brussels landing page utilities */
.header-section {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.logo-text {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color);
}

.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.text-center {
    text-align: center;
}

.font-bold {
    font-weight: 700;
}

.text-5xl {
    font-size: 3.5rem;
    line-height: 1.2;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.text-4xl {
    font-size: 2.5rem;
    line-height: 1.3;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.text-2xl {
    font-size: 1.75rem;
    line-height: 1.4;
    color: var(--text-dark);
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
}

.text-lg {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.max-w-3xl {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.max-w-4xl {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.space-x-4 {
    display: flex;
    gap: 1rem;
}

.space-y-4,
.space-y-6 {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding-left: 0;
}

.space-y-4 {
    gap: 1rem;
}

.space-y-6 {
    gap: 1.5rem;
}

.bg-gray-50 {
    background: #f8f9fa;
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.items-center {
    align-items: center;
}

.md\:grid-cols-3 {
    grid-template-columns: 1fr;
}

.md\:grid-cols-2 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.service-card h3 {
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.text-blue-600 {
    color: #2563eb;
}

.text-blue-600:hover {
    color: #1d4ed8;
}

.secondary-button {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.footer-section {
    background: var(--primary-color);
    color: var(--white);
}

.footer-section p {
    margin: 0;
}

@media (max-width: 768px) {
    .text-5xl {
        font-size: 2.5rem;
    }

    .text-4xl {
        font-size: 2rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.95rem;
    }
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 10000;
    max-width: 400px;
}

.toast-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-success {
    background: #28A745;
}

.toast-error {
    background: #DC3545;
}

.toast-warning {
    background: #FFC107;
    color: #333;
}

.toast-info {
    background: #17A2B8;
}

@media (max-width: 768px) {
    .toast-notification {
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }
}
