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

:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #B8860B;
    --dark-gold: #8B6914;
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --gold-gradient: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
}

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

.btn-full {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin: 0;
}

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

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

.nav-menu a:hover {
    color: var(--primary-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.hero-image.active {
    opacity: 1;
}

.hero-image-1 {
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

.hero-image-2 {
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

.hero-image-3 {
    background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    color: var(--primary-gold);
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-gray);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-gold);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: var(--text-light);
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    color: var(--primary-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-cta {
    margin-top: auto;
}

.btn-outline {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.services-cta-section {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-gold);
}

.cta-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 3rem;
}

.about-subtitle {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.about-intro {
    margin-bottom: 3rem;
}

.highlight-text {
    color: var(--text-dark);
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
}

.highlight-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: 2rem;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.about-intro p:not(.highlight-text) {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-info h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.info-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.info-item div {
    flex: 1;
}

.info-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-item span {
    color: var(--text-light);
    font-size: 1rem;
}

.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 3rem 2rem 2rem;
    color: var(--white);
}

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

.overlay-content i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.overlay-content h4 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
}

.about-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gold-gradient);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    transform: rotate(5deg);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.badge-content i {
    font-size: 1.1rem;
}

/* Why Choose ECR Bouw Section */
.why-choose {
    padding: 100px 0;
    background: var(--light-gray);
}

.why-choose .section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.why-choose .section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 3rem;
}

.why-choose .section-header p {
    color: var(--text-light);
    font-size: 1.3rem;
}

.benefits-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.benefits-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-gold);
    transform: translateX(-50%);
    opacity: 0.3;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.benefit-item:nth-child(odd) {
    flex-direction: row;
}

.benefit-item:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 2rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.benefit-item:hover .benefit-icon {
    background: var(--primary-gold);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.benefit-content {
    flex: 1;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 0 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.benefit-item:nth-child(odd) .benefit-content {
    margin-left: 2rem;
    margin-right: 0;
}

.benefit-item:nth-child(even) .benefit-content {
    margin-right: 2rem;
    margin-left: 0;
}

.benefit-item:hover .benefit-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.appointment-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-gold);
}

.appointment-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.appointment-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.4rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.contact-btn:hover::before {
    opacity: 0.1;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-btn > * {
    position: relative;
    z-index: 2;
}

.phone-btn {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    background: var(--white);
}

.phone-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.whatsapp-btn {
    color: #075E54;
    border-color: #075E54;
    background: var(--white);
}

.whatsapp-btn:hover {
    background: #075E54;
    color: var(--white);
}

.email-btn {
    color: #2C3E50;
    border-color: #2C3E50;
    background: var(--white);
}

.email-btn:hover {
    background: #2C3E50;
    color: var(--white);
}

.contact-btn i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-btn:hover i {
    transform: scale(1.05);
}

.contact-btn span {
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Footer */
.footer {
    background: var(--black);
    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,
.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--light-gray);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--dark-gray);
    padding-top: 1rem;
    text-align: center;
    color: var(--text-light);
}

.made-by {
    font-size: 0.75rem;
    opacity: 0.5;
    font-weight: 300;
    color: var(--text-light);
}

.made-by a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.made-by a:hover {
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px !important;
    }
    
    /* Ensure proper viewport handling */
    .page-hero .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 0.5rem !important;
    }
    
    /* Fix any potential overflow issues */
    .services-nav,
    .service-detail-content,
    .features-grid,
    .benefits-list {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Force mobile layout */
    .services-nav {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .features-grid,
    .benefits-list {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .service-card,
    .appointment-card {
        padding: 1.5rem;
    }

    .services,
    .about,
    .gallery,
    .contact {
        padding: 60px 0;
    }
    
    /* Extra mobile optimizations for services page */
    .page-hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .page-hero .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-hero .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-stats .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.7rem;
    }
    
    /* ===== DIENSTEN PAGINA - EXTRA KLEINE MOBIEL (480px) ===== */
    
    /* Hero Section - Extra Small Mobile */
    .page-hero {
        height: 50vh !important;
        min-height: 350px !important;
    }
    
    .page-hero .hero-content {
        max-width: 98%;
        padding: 0 0.5rem;
    }
    
    .page-hero .hero-content h1 {
        font-size: 1.8rem !important;
        margin-bottom: 0.5rem;
        line-height: 1.1;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .page-hero .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .hero-stats {
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .hero-stats .stat {
        min-width: 80px;
        padding: 0.8rem 0.3rem;
        border-radius: 8px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.2rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.6px;
    }
    
    /* Services Overview - Extra Small Mobile */
    .services-overview {
        padding: 2rem 0 !important;
    }
    
    .services-overview .section-header h2 {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem;
    }
    
    .services-overview .section-header p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }
    
    .services-intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
        border-radius: 12px;
    }
    
    .services-intro p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Services Navigation - Extra Small Mobile */
    .services-nav {
        gap: 1rem;
    }
    
    .service-nav-item {
        padding: 1.2rem 0.8rem !important;
        min-height: 130px !important;
        border-radius: 12px !important;
    }
    
    .nav-icon {
        width: 50px !important;
        height: 50px !important;
        margin-bottom: 0.8rem !important;
    }
    
    .nav-icon i {
        font-size: 1.3rem !important;
    }
    
    .nav-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }
    
    .nav-content p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }
    
    .service-preview {
        margin-top: 0.5rem;
    }
    
    .service-preview span {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
    }
    
    /* Service Details - Extra Small Mobile */
    .service-detail {
        padding: 2rem 0 !important;
    }
    
    .service-detail-content {
        gap: 2rem;
    }
    
    .service-header {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .service-icon-large {
        width: 60px !important;
        height: 60px !important;
    }
    
    .service-icon-large i {
        font-size: 1.8rem;
    }
    
    .service-header h2 {
        font-size: 1.7rem !important;
        margin-bottom: 0.3rem;
        line-height: 1.2;
    }
    
    .service-tagline {
        font-size: 1rem;
    }
    
    .service-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .service-features-detailed h3,
    .service-benefits h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        padding-left: 1.5rem;
    }
    
    .service-features-detailed h3::before,
    .service-benefits h3::before {
        width: 4px;
        height: 1.5rem;
        top: 0.3rem;
    }
    
    .features-grid,
    .benefits-list {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .feature-item,
    .benefit-item {
        padding: 1rem;
        gap: 0.8rem;
        border-radius: 10px;
    }
    
    .feature-item i,
    .benefit-item i {
        font-size: 1rem;
    }
    
    .feature-item span,
    .benefit-item span {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Service Images - Extra Small Mobile */
    .service-image {
        height: 240px !important;
        border-radius: 12px !important;
    }
    
    .service-image .image-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .service-image .overlay-content i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .service-image .overlay-content h4 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }
    
    .service-image .overlay-content p {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    /* CTA Section - Extra Small Mobile */
    .services-cta {
        padding: 2rem 0 !important;
    }
    
    .services-cta .cta-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .services-cta .cta-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .cta-buttons {
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        max-width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .service-header h2 {
        font-size: 1.8rem;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-large i {
        font-size: 1.5rem;
    }
    
    .service-image {
        height: 250px;
    }
    
    .cta-buttons .btn {
        max-width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.service-card,
.about-content,
.gallery-item,
.contact-content {
    animation: fadeInUp 0.6s ease-out;
}

/* Over Ons Page Styles */
.company-story {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.company-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.story-header {
    text-align: center;
    margin-bottom: 4rem;
}

.story-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 3rem;
}

.story-subtitle {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.story-intro {
    margin-bottom: 3rem;
}

.story-intro .highlight-text {
    color: var(--text-dark);
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    padding-left: 2rem;
}

.story-intro .highlight-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: 2rem;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.story-intro p:not(.highlight-text) {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.company-values {
    margin-top: 3rem;
}

.company-values h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: var(--text-dark);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.value-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.story-visual {
    position: relative;
}

.story-image-container {
    position: relative;
}

.story-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--primary-gold);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.badge-content i {
    font-size: 1.2rem;
}

/* Sustainability Section */
.sustainability {
    padding: 120px 0;
    background: var(--light-gray);
    position: relative;
}

.sustainability-header {
    text-align: center;
    margin-bottom: 4rem;
}

.sustainability-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 3rem;
}

.sustainability-subtitle {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
}

.sustainability-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.sustainability-intro .highlight-text {
    color: var(--text-dark);
    font-size: 1.4rem;
    line-height: 1.7;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

.sustainability-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), #f4d03f, var(--primary-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #f4d03f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, var(--text-dark) 0%, #34495e 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon i {
    font-size: 2.2rem;
    color: var(--white);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-gold);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.feature-card:hover p {
    color: var(--text-dark);
}

/* Quality Assurance Section */
.quality-assurance {
    padding: 120px 0;
    background: var(--white);
}

.quality-header {
    text-align: center;
    margin-bottom: 4rem;
}

.quality-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 3rem;
}

.quality-subtitle {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.quality-process h3 {
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-size: 1.8rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.quality-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Team & Expertise Section */
.team-expertise {
    padding: 120px 0;
    background: var(--light-gray);
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 3rem;
}

.team-subtitle {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.expertise-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-item:hover::before {
    opacity: 1;
}

.expertise-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-top-width: 6px;
}

.expertise-icon {
    width: 65px;
    height: 65px;
    background: var(--primary-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.expertise-item:hover .expertise-icon {
    transform: scale(1.1) rotate(-5deg);
    background: var(--text-dark);
}

.expertise-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.expertise-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.expertise-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Services Page Hero - Same as main page */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.hero .hero-image.active {
    opacity: 1;
}

.hero .hero-image-1 {
    background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

.hero .hero-image-2 {
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

.hero .hero-image-3 {
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
}

.hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

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

.hero .hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero .hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero .hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 180px;
}

.hero .btn-primary {
    background: var(--primary-gold);
    color: var(--white);
    border: 2px solid var(--primary-gold);
}

.hero .btn-primary:hover {
    background: transparent;
    color: var(--primary-gold);
}

.hero .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.hero .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 3;
    cursor: pointer;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-stats .stat {
    text-align: center;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hero-stats .stat:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.hero-stats .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-stats .stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.services-overview {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.services-overview .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-overview .section-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.services-overview .section-header p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    border-left: 4px solid var(--primary-gold);
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.services-showcase {
    margin-top: 4rem;
}

.service-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-highlight.reverse {
    direction: rtl;
}

.service-highlight.reverse .service-highlight-content {
    direction: ltr;
}

.service-highlight-content {
    padding: 3rem;
}

.service-highlight-icon {
    width: 100px;
    height: 100px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-highlight:hover .service-highlight-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-highlight-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-highlight h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.service-highlight p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-highlight-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-highlight-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), rgba(0, 0, 0, 0.1));
}

.services-quick-links {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 20px;
}

.services-quick-links h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: var(--shadow);
}

.quick-link:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.quick-link i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.quick-link:hover i {
    transform: scale(1.1);
}

.quick-link span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.service-detail {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.service-detail:nth-child(even) {
    background: var(--light-gray);
}

.service-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.service-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.service-icon-large i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-header h2 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-tagline {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

.service-intro {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.service-features-detailed h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.service-features-detailed h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: 2rem;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--light-gray);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-light);
    font-size: 1rem;
}

.service-benefits h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.service-benefits h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: 2rem;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--light-gray);
    transform: translateX(5px);
}

.benefit-item i {
    color: var(--primary-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--text-light);
    font-size: 1rem;
}

.service-detail-image {
    position: relative;
}

.service-image {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.service-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 3rem 2rem 2rem;
    color: var(--white);
}

.service-image .overlay-content {
    text-align: center;
}

.service-image .overlay-content i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.service-image .overlay-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-image .overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.service-detail-reverse .service-detail-content {
    grid-template-columns: 1fr 1fr;
}

.services-cta {
    padding: 100px 0;
    background: var(--dark-gray);
    color: var(--white);
    text-align: center;
    position: relative;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.services-cta .cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.services-cta .cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
}

.cta-buttons .btn-primary {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cta-buttons .btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--dark-gray);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Active navigation state */
.nav-menu a.active {
    color: var(--primary-gold);
}

/* Responsive adjustments for services page */
@media (max-width: 768px) {
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail-reverse .service-detail-content {
        flex-direction: column;
    }
    
    .services-nav {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .service-nav-item {
        padding: 1.5rem 1rem;
    }
    
    .service-nav-item i {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .service-detail {
        padding: 60px 0;
    }
    
    .services-cta {
        padding: 60px 0;
    }
    
    /* Why Choose section responsive */
    .benefits-timeline::before {
        display: none;
    }
    
    .benefit-item {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .benefit-item:nth-child(even) {
        flex-direction: column !important;
    }
    
    .benefit-content {
        margin: 1rem 0 0 0 !important;
        padding: 1.5rem;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .why-choose .section-header h2 {
        font-size: 2.2rem;
    }
    
    /* About section responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-header h2 {
        font-size: 2.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        height: 350px;
    }
    
    .about-badge {
        top: -15px;
        right: -15px;
        padding: 0.8rem 1.2rem;
        transform: rotate(3deg);
    }
    
    .badge-content {
        font-size: 0.8rem;
    }
    
    /* ===== DIENSTEN PAGINA MOBIEL - COMPLETE OVERHAUL ===== */
    
    /* Hero Section - Mobile First */
    .page-hero {
        height: 60vh !important;
        min-height: 400px !important;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding-top: 100px !important; /* Add extra padding for mobile navbar */
    }
    
    .page-hero .hero-background {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center !important;
        filter: brightness(0.7);
    }
    
    .page-hero .hero-content {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 95%;
        padding: 0 1rem;
        text-align: center;
    }
    
    .hero .hero-text h1 {
        font-size: 2.5rem !important;
        margin-bottom: 0.8rem;
        line-height: 1.1;
    }
    
    .hero .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        color: var(--primary-gold);
        font-weight: 600;
    }
    
    .hero .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
        color: var(--white);
    }

    .hero .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .hero .btn {
        min-width: 200px !important;
        padding: 0.8rem 1.5rem !important;
    }

    /* Mobile Over Ons Page */
    .story-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .story-header h2 {
        font-size: 2.2rem !important;
    }

    .story-subtitle {
        font-size: 1.1rem !important;
    }

    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .value-item {
        padding: 1.5rem !important;
    }

    .sustainability-features {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-top: 2rem !important;
    }

    .feature-card {
        padding: 2.5rem 2rem !important;
    }

    .feature-icon {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 1.5rem !important;
    }

    .feature-icon i {
        font-size: 2rem !important;
    }

    .feature-card h3 {
        font-size: 1.3rem !important;
    }

    .feature-card p {
        font-size: 1rem !important;
    }

    .quality-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .process-steps {
        gap: 1.5rem !important;
    }

    .step {
        gap: 1rem !important;
    }

    .step-number {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }

    .quality-stats {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .expertise-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .expertise-item {
        padding: 2rem 1.5rem !important;
    }

    /* Mobile Contact Buttons */
    .contact-buttons {
        gap: 0.8rem !important;
    }

    .contact-btn {
        padding: 1.2rem 1.8rem !important;
        border-radius: 6px !important;
    }

    .contact-btn span {
        font-size: 0.95rem !important;
    }

    .contact-btn i {
        font-size: 1.1rem !important;
    }
    
    .hero-stats {
        display: flex;
        justify-content: space-around;
        gap: 1rem;
        margin-top: 1.5rem;
        flex-wrap: wrap;
        background: rgba(0, 0, 0, 0.7) !important;
        padding: 1.5rem !important;
        border-radius: 15px !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(212, 175, 55, 0.3) !important;
    }
    
    .hero-stats .stat {
        text-align: center;
        flex: 1;
        min-width: 90px;
        padding: 0.8rem 0.5rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .hero-stats .stat:hover {
        background: rgba(212, 175, 55, 0.1) !important;
        transform: translateY(-3px) !important;
    }
    
    .hero-stats .stat-number {
        display: block;
        font-size: 2.2rem;
        font-weight: 700;
        color: var(--primary-gold);
        margin-bottom: 0.3rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .hero-stats .stat-label {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        color: var(--white);
        font-weight: 600;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }
    
    /* Services Overview Section */
    .services-overview {
        padding: 3rem 0 !important;
        background: var(--white);
    }
    
    .services-overview .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .services-overview .section-header h2 {
        font-size: 2.2rem !important;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }
    
    .services-overview .section-header p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        color: var(--text-light);
        max-width: 100%;
        line-height: 1.6;
    }
    
    .services-intro {
        max-width: 100%;
        margin: 0 auto 3rem;
        padding: 2rem;
        background: linear-gradient(135deg, var(--light-gray), #f8f9fa);
        border-radius: 15px;
        border-left: 5px solid var(--primary-gold);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }
    
    .services-intro p {
        font-size: 1.1rem;
        color: var(--text-light);
        line-height: 1.7;
        margin: 0;
        font-weight: 400;
    }
    
    /* Services Showcase */
    .service-highlight {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        margin-bottom: 3rem !important;
    }
    
    .service-highlight.reverse {
        direction: ltr !important;
    }
    
    .service-highlight-content {
        padding: 2rem !important;
        order: 2;
    }
    
    .service-highlight-image {
        height: 250px !important;
        order: 1;
    }
    
    .service-highlight-icon {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 1.5rem !important;
    }
    
    .service-highlight-icon i {
        font-size: 2rem !important;
    }
    
    .service-highlight h3 {
        font-size: 1.8rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .service-highlight p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .services-quick-links {
        margin-top: 2rem !important;
        padding: 2rem !important;
    }
    
    .services-quick-links h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        max-width: 100% !important;
    }
    
    .quick-link {
        padding: 1.5rem !important;
    }
    
    .quick-link i {
        font-size: 2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .quick-link span {
        font-size: 1rem !important;
    }
    
    /* Service Detail Sections */
    .service-detail {
        padding: 3rem 0 !important;
        background: var(--white);
    }
    
    .service-detail:nth-child(even) {
        background: var(--light-gray);
    }
    
    .service-detail-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: start;
    }
    
    .service-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .service-icon-large {
        width: 70px !important;
        height: 70px !important;
        background: var(--gold-gradient);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
        transition: all 0.3s ease;
    }
    
    .service-icon-large:hover {
        transform: scale(1.1) rotate(5deg);
    }
    
    .service-icon-large i {
        font-size: 2.2rem;
        color: var(--white);
    }
    
    .service-header h2 {
        font-size: 2rem !important;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
        line-height: 1.2;
    }
    
    .service-tagline {
        color: var(--primary-gold);
        font-size: 1.2rem;
        font-weight: 500;
        margin: 0;
    }
    
    .service-intro {
        font-size: 1.3rem;
        color: var(--text-light);
        margin-bottom: 2.5rem;
        line-height: 1.7;
        text-align: center;
    }
    
    .service-features-detailed h3,
    .service-benefits h3 {
        font-size: 1.6rem;
        color: var(--text-dark);
        margin-bottom: 2rem;
        position: relative;
        padding-left: 2rem;
        text-align: center;
    }
    
    .service-features-detailed h3::before,
    .service-benefits h3::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.5rem;
        width: 5px;
        height: 2rem;
        background: var(--gold-gradient);
        border-radius: 3px;
    }
    
    .features-grid,
    .benefits-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .feature-item,
    .benefit-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.2rem;
        background: var(--white);
        border-radius: 12px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        border-left: 4px solid transparent;
    }
    
    .feature-item:hover,
    .benefit-item:hover {
        background: var(--light-gray);
        transform: translateX(8px);
        border-left-color: var(--primary-gold);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }
    
    .feature-item i,
    .benefit-item i {
        color: var(--primary-gold);
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .feature-item span,
    .benefit-item span {
        color: var(--text-light);
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Service Images */
    .service-detail-image {
        position: relative;
    }
    
    .service-image {
        width: 100%;
        height: 280px !important;
        background-size: cover;
        background-position: center;
        border-radius: 15px !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    
    .service-image:hover {
        transform: scale(1.02);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }
    
    .service-image .image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
        padding: 3rem 2rem 2rem;
        color: var(--white);
    }
    
    .service-image .overlay-content {
        text-align: center;
    }
    
    .service-image .overlay-content i {
        font-size: 2.5rem;
        color: var(--primary-gold);
        margin-bottom: 1rem;
    }
    
    .service-image .overlay-content h4 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    
    .service-image .overlay-content p {
        font-size: 1rem;
        opacity: 0.9;
        margin: 0;
        line-height: 1.4;
    }
    
    /* CTA Section */
    .services-cta {
        padding: 3rem 0 !important;
        background: var(--dark-gray);
        color: var(--white);
        text-align: center;
        position: relative;
    }
    
    .services-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    }
    
    .services-cta .cta-content h2 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
        font-family: 'Playfair Display', serif;
        line-height: 1.2;
    }
    
    .services-cta .cta-content p {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
        opacity: 0.9;
        max-width: 100%;
        line-height: 1.6;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }
    
    .cta-buttons .btn-primary {
        background: var(--gold-gradient);
        color: var(--white);
        box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    }
    
    .cta-buttons .btn-primary:hover {
        background: var(--gold-dark);
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    }
    
    .cta-buttons .btn-secondary {
        background: transparent;
        color: var(--white);
        border: 2px solid var(--white);
    }
    
    .cta-buttons .btn-secondary:hover {
        background: var(--white);
        color: var(--dark-gray);
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    }
} 