:root {
    --primary-color: #006666; /* Dieper Petrol voor betere leesbaarheid */
    --secondary-color: #05161a; /* Donker Petrol/Zwart voor Hero & Footer */
    --accent-color: #82b440; /* Helder groen voor Actie-knoppen */
    --background-light: #ffffff; /* Fris Wit voor basis */
    --text-dark: #1a252f;
    --text-light: #ffffff;
    --gray-bg: #f0f4f4; /* Lichte petrol/grijze achtergrond voor afwisseling */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Screen reader only - for SEO tags */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Top Bar */
.top-bar {
    background-color: #f8fbff;
    color: #333;
    padding: 6px 0; /* Minder hoog */
    font-size: 13px;
    border-bottom: 1px solid #eee;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 30px; /* Meer ruimte tussen items */
}

.top-bar-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-text i {
    color: var(--primary-color);
    font-size: 14px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    gap: 10px;
}

.lang-switcher a {
    text-decoration: none;
    color: #666;
    font-weight: 700;
    transition: color 0.3s;
}

.lang-switcher a:hover, .lang-switcher a.active {
    color: var(--primary-color);
}

.social-icons a {
    color: #666;
    font-size: 14px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* Header */
header {
    background-color: var(--text-light);
    padding: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12); /* Verhoogde schaduw voor meer diepte */
    position: sticky;
    top: 0;
    z-index: 1000;
    margin: 10px auto; /* Centreert de header */
    max-width: 1100px; /* Maakt de header minder breed */
    border-radius: 10px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 20px;
}

#main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

#main-nav ul li {
    margin: 0 15px;
}

#main-nav ul li a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-nav-quote {
    background-color: #82b440;
    color: #fff !important;
    padding: 25px 30px;
    border-radius: 0 10px 10px 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.btn-nav-quote:hover {
    background-color: #71a036;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: #ffffff;
    text-align: center;
    /* Hero over de volledige breedte met behoud van marges en ronde hoeken */
    margin: 20px; 
    border-radius: 20px;
    min-height: 70vh !important;
    display: flex;
    align-items: center;
    background-repeat: no-repeat;
    image-rendering: -webkit-optimize-contrast; 
    image-rendering: crisp-edges;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Tablet optimalisatie */
@media (max-width: 1024px) {
    .hero {
        min-height: 50vh !important;
        margin: 10px;
    }
}

/* Mobiel optimalisatie */
@media (max-width: 768px) {
    .hero {
        min-height: 177.78vw !important; 
        height: 177.78vw !important;
        padding: 40px 15px;
        margin: 10px;
        border-radius: 15px;
        background-image: none !important;
    }
}

.home-hero, .product-hero, .about-hero {
    min-height: 70vh !important;
    background-size: cover !important;
    background-position: center !important;
}

.hero h1, 
.hero p, 
.hero p.lead, 
.hero .lead, 
.hero span, 
.hero div,
.hero {
    color: #ffffff !important;
    text-shadow: 3px 3px 15px rgba(0,0,0,1), 0px 0px 10px rgba(0,0,0,1);
    font-weight: 700;
}

.hero-btns a {
    text-shadow: none !important; /* Verwijder schaduw van de tekst in knoppen */
}

.home-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('/assets/images/foto1.webp');
}

.product-hero, .about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('/assets/images/foto2.webp');
    min-height: 70vh !important;
}

@media (max-width: 768px) {
    /* Hero sectie instellingen voor mobiel */
    .hero {
        /* 
           Om de foto volledig en onvervormd te laten zien na 90 graden draaien:
           De originele breedte (16) wordt de nieuwe hoogte.
           De originele hoogte (9) wordt de nieuwe breedte.
           Hoogte moet dus 177.78% van de breedte zijn voor de volledige foto.
        */
        min-height: 177.78vw !important; 
        height: 177.78vw !important; /* Dwing deze hoogte af voor de foto */
        padding: 40px 15px;
        margin: 10px;
        border-radius: 15px;
        position: relative;
        overflow: hidden;
        background-image: none !important;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }

    /* De foto zelf draaien in een aparte laag */
    .hero::before {
        content: '';
        position: absolute;
        /* Bevestig de afmetingen exact voor de rotatie-puzzel */
        width: 177.78vw; 
        height: 100vw;   
        top: 50%;
        left: 50%;
        background-size: 100% 100%; /* Dwing de foto om de volledige laag te vullen */
        background-position: center;
        background-repeat: no-repeat;
        image-rendering: -webkit-optimize-contrast; /* Verbetert scherpte in some browsers */
        /* Draai de afbeelding exact 90 graden */
        transform: translate(-50%, -50%) rotate(90deg);
        transform-origin: center;
        z-index: -1;
        filter: contrast(1.1) saturate(1.1); /* Behoud de scherpte instellingen */
        /* Voeg een heel lichte donkere laag toe voor mobiel */
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), inherit;
    }

    /* Specifieke gedraaide foto's voor elke sectie */
    .home-hero::before {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('/assets/images/foto1.webp');
    }

    .product-hero::before, .about-hero::before {
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('/assets/images/foto2.webp');
    }

    .hero h1, .hero p, .hero p.lead {
        color: #ffffff !important; /* Dwing witte kleur af */
        text-shadow: 3px 3px 15px rgba(0,0,0,1), 0px 0px 10px rgba(0,0,0,1); /* Extra dikke schaduw voor maximale leesbaarheid */
        font-weight: 700; /* Maak de tekst iets dikker voor betere zichtbaarheid */
    }
}

.hero h1 {
    font-size: 54px; /* Iets kleiner voor betere verhouding */
    margin: 0 auto 20px;
    line-height: 1.2;
    max-width: 900px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero p.lead {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap; /* Toestaan dat ze naast elkaar staan op grotere mobiele schermen */
    flex-direction: column; 
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.hero-btns a {
    width: auto;
    min-width: 280px;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s;
    text-align: center;
    white-space: nowrap; /* Forceert tekst op 1 regel */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-btns a:hover {
    transform: translateY(-2px);
}

/* Mobile responsiveness */
/* Mobile responsiveness */
@media (max-width: 992px) {
    .grid, .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .mobile-top {
        order: -1; /* Afbeelding boven tekst op mobiel */
        margin-bottom: 20px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .image-placeholder {
        height: 200px !important;
    }
    
    .top-bar-content {
        display: flex;
        flex-direction: row; /* Forceer items naast elkaar */
        justify-content: space-between;
        align-items: center;
        padding: 8px 15px; /* Iets meer ademruimte */
    }
    
    .top-bar-left {
        flex-direction: row; /* Forceer items naast elkaar */
        gap: 12px;
        font-size: 11px;
    }

    .top-bar-text {
        white-space: nowrap; /* Tekst op één regel */
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .top-bar-right {
        justify-content: flex-end;
        gap: 15px;
    }

    /* Verberg social op hele kleine schermen om ruimte te besparen */
    @media (max-width: 480px) {
        .top-bar-left .top-bar-text:first-child { display: none; }
    }

    header {
        margin: 10px auto;
        max-width: calc(100% - 20px);
    }

    .header-content {
        padding: 10px 20px;
        position: relative;
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
        display: block !important;
        font-size: 24px;
        cursor: pointer;
        color: var(--primary-color);
    }

    #main-nav {
        display: none; /* Hidden by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-radius: 0 0 10px 10px;
        z-index: 1001;
    }

    #main-nav.active {
        display: block;
    }

    #main-nav ul {
        flex-direction: column;
        padding: 20px;
    }

    #main-nav ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .btn-nav-quote {
        border-radius: 5px;
        padding: 15px;
        justify-content: center;
        margin-top: 10px;
    }

    .hero {
        padding: 100px 20px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 32px;
    }

    /* Contact details grid fix */
    .contact-details-grid {
        display: block !important;
        width: 100% !important;
    }

    .detail-item {
        width: 100% !important;
        margin-bottom: 15px;
        box-sizing: border-box !important;
        display: flex !important;
    }

    .detail-item[style*="grid-column: span 2"] {
        grid-column: auto !important;
    }

    /* Voorkom dat tekst uit de box loopt */
    .detail-content {
        min-width: 0;
        flex: 1;
        overflow: hidden;
    }

    .detail-content span {
        display: block;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        font-size: 0.95rem;
    }
}

/* Base styles for toggle (hidden on desktop) */
.menu-toggle {
    display: none;
}


.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--gray-bg);
}

.grid {
    display: grid;
    gap: 30px;
}

@media (max-width: 768px) {
    .grid, .grid-2, .grid-3 {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .grid > div, .grid-2 > div, .grid-3 > div {
        width: 100% !important;
        margin-bottom: 25px;
        box-sizing: border-box !important;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.text-center {
    text-align: center;
}

.card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mt-2 {
    margin-top: 20px;
}

.content-list {
    list-style: none;
    margin: 20px 0;
}

.content-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--secondary-color);
}

.content-list li i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background: #71a036;
}

.small-hero {
    min-height: 40vh;
    padding: 180px 0 100px;
    margin-bottom: 40px;
}


.hero p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 20px auto 40px;
}

.hero-btns {
    display: flex;
    flex-direction: column; /* Items onder elkaar voor mobile-first approach of als backup */
    align-items: center;    /* Centreren */
    gap: 15px;
    margin-top: 30px;
}

.hero-btns a {
    width: 100%;
    max-width: 300px; /* Mooie vaste breedte voor knoppen */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s;
    text-align: center;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-light);
}

.btn-secondary {
    background-color: rgba(255,255,255,0.1);
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #d68910;
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
}

/* USP Bar */
.usp-bar-compact {
    background-color: var(--text-light);
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.usp-bar-compact .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.usp-item {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.usp-item i {
    color: var(--primary-color);
}

/* Services */
.services {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

@media (max-width: 480px) {
    .services-grid {
        display: block !important;
        width: 100% !important;
    }
    
    .service-card {
        width: 100% !important;
        margin-bottom: 20px;
        padding: 20px !important;
        box-sizing: border-box !important;
    }
}

.service-card {
    background-color: var(--text-light);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Method Section */
.method-section {
    padding: 100px 0;
    background-color: var(--gray-bg);
}

.alternate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.method-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.method-step {
    display: flex;
    gap: 25px; /* Iets meer ruimte tussen icoon en tekst */
    margin-bottom: 45px; /* Meer ruimte tussen de stappen zelf */
    align-items: flex-start;
    margin-top: 2rem;
}

.method-step div {
    padding-top: 2px;
}

.method-step h4 {
    margin-bottom: 12px; /* Meer ruimte onder de titel van de stap */
}

.method-step i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--gray-bg) 100%);
}

.form-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    padding-top: 20px;
}

/* Contact Details Page / Over Ons Upgrade */
.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.detail-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.detail-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.detail-item i {
    width: 45px;
    height: 45px;
    background: var(--gray-bg);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.detail-content strong {
    display: block;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.detail-content span {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1rem;
    word-break: break-word; /* Veranderd van break-all naar break-word voor betere leesbaarheid */
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
}

/* CTA & Mission Card styles */
.company-mission-card {
    background: #f8fbff;
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.mission-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.mission-text p {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--secondary-color);
    font-weight: 500;
    margin: 0;
}

.cta-direct-box {
    background: var(--secondary-color);
    color: #fff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.cta-direct-box h3 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.cta-direct-box p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.cta-direct-box .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .cta-direct-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.contact-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: var(--gray-bg);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-method div strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-method div span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.contact-form {
    background-color: var(--text-light);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #edf2f7;
    border-radius: 10px;
    background: #f8fafc;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--primary-color);
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 102, 102, 0.1);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 18px 30px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 992px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 30px;
    }
}

/* Footer */
footer {
    background-color: var(--background-light);
    color: var(--text-dark);
    padding: 80px 0 20px;
    border-top: 1px solid #eee;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3, .footer-col h4 {
    color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 992px) {
    .alternate-grid, .form-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        grid-template-columns: 1fr;
        padding-bottom: 60px !important; /* Extra ruimte onderaan de footer kolommen */
    }
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    #main-nav { display: none; }
    .mobile-menu-toggle { display: block; }
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    font-family: 'Lato', sans-serif;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
}

body.menu-open .chat-widget {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.chat-options {
    background: white;
    width: 280px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.chat-options.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.chat-header {
    background: var(--primary-color);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.chat-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.chat-header div strong {
    display: block;
    font-size: 15px;
}

.chat-header div span {
    font-size: 12px;
    opacity: 0.9;
}

.chat-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-body p {
    margin: 0 0 5px;
    font-size: 13px;
    color: #4e5652;
}

.chat-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s;
}

.chat-opt.wa { background: #e8faef; color: #25d366; }
.chat-opt.phone { background: #eef2f5; color: var(--secondary-color); }
.chat-opt.mail { background: #fef4e8; color: #f39c12; }

.chat-opt:hover { filter: brightness(0.95); }

.chat-main-btn {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0, 102, 102, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    pointer-events: auto;
}

.chat-main-btn:hover {
    transform: scale(1.05);
    background-color: var(--accent-color);
}

.chat-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #ff3b30;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}