/* ===== Variables ===== */
:root {
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --navy: #1A2744;
    --navy-light: #253A5C;
    --navy-dark: #111B30;
    --secondary: #F5F7FA;
    --text: #1A2744;
    --text-light: #4A5568;
    --text-muted: #8896A6;
    --white: #FFFFFF;
    --black: #000000;
    --border: #DCE1E8;
    --shadow: rgba(26, 39, 68, 0.08);
    --shadow-lg: rgba(26, 39, 68, 0.15);
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --star: #FFC107;

    --gray-100: #F7F8FA;
    --gray-200: #EDF0F4;
    --gray-300: #DCE1E8;
    --gray-400: #B0B8C4;
    --gray-500: #8896A6;
    --gray-600: #5A6678;
    --gray-700: #3D4A5C;

    --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
}

h1 {
    font-size: clamp(1.75rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.section-title {
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn svg {
    width: 20px;
    height: 20px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow-lg);
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--gray-200);
    color: var(--text);
    transform: translateY(-2px);
}

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

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

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-full {
    width: 100%;
}

.form-buttons {
    display: flex;
    gap: 0.75rem;
}

.form-buttons .btn {
    flex: 1;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.3s;
}

.btn-whatsapp:hover {
    background: #1da851;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    position: relative;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 48px;
    width: auto;
    border-radius: 6px;
}

.nav {
    display: none;
    margin: 0;
    padding: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 40px;
}

.nav-list li {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 40px;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
    margin: 0;
}

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

.nav-list a.nav-cta {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    line-height: 1;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}

.nav-list a.nav-cta:hover {
    background: var(--primary-dark);
    color: var(--white) !important;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header .container {
        position: relative;
        min-height: 56px;
    }

    .logo-img {
        height: 40px;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        background: #FFFFFF;
        padding: 100px 0 2rem;
        overflow-y: auto;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 1.5rem;
        height: auto;
    }

    .nav-list li {
        width: 100%;
        height: auto;
    }

    .nav-list a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #e5e7eb;
        font-size: 1.1rem;
        font-weight: 500;
        line-height: 1.4;
        height: auto;
        color: #1a1a2e;
    }

    .nav-list a:hover,
    .nav-list a:active {
        color: #2E7D32;
    }

    .nav-list li:last-child a.nav-cta {
        display: block;
        margin-top: 1.5rem;
        padding: 1rem;
        text-align: center;
        border-bottom: none;
        border-radius: 8px;
        background: #2E7D32;
        color: #FFFFFF !important;
        font-weight: 600;
    }

    .mobile-menu-btn {
        z-index: 10000;
    }

    .header.scrolled {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--white);
    }
}

@media (min-width: 769px) {
    .nav {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }
}

/* ===== Hero Section ===== */
.hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--primary-dark) 100%);
    color: var(--white);
}

.hero .container {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
}

.feature svg {
    width: 20px;
    height: 20px;
    color: var(--primary-light);
    flex-shrink: 0;
}

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

.hero-image {
    display: none;
}

.hero-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: block;
}

@media (min-width: 768px) {
    .hero {
        padding: 160px 0 80px;
    }

    .hero .container {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .hero-image {
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .hero-logo {
        max-width: 500px;
    }

    .hero-features {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== Diensten Section ===== */
.diensten {
    padding: 80px 0;
    background: var(--white);
}

.diensten-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 0.75rem 2rem;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    background: var(--secondary);
    color: var(--text);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    background: var(--primary);
    color: var(--white);
}

.tab-btn:hover:not(.active) {
    background: var(--border);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.dienst-grid {
    display: grid;
    gap: 1.5rem;
}

.dienst-card {
    background: var(--secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.dienst-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

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

.dienst-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.dienst-card h3 {
    margin-bottom: 0.75rem;
}

.dienst-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.diensten-extra {
    margin-top: 3rem;
    text-align: center;
}

.diensten-extra h3 {
    margin-bottom: 1.5rem;
}

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

.extra-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 10px var(--shadow);
    overflow: hidden;
    text-align: center;
}

.extra-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.extra-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.extra-item h4 {
    margin: 1rem 1rem 0.25rem;
    font-size: 1rem;
}

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

@media (min-width: 768px) {
    .dienst-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .extra-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .extra-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== Calculator Section ===== */
.calculator {
    padding: 80px 0;
    background: var(--secondary);
}

.calculator-wrapper {
    display: grid;
    gap: 2rem;
}

.calculator-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px var(--shadow);
}

.calc-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.calc-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.calc-section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

.calc-section-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    margin-left: 48px;
}

/* Afval Grid */
.afval-grid {
    display: grid;
    gap: 1rem;
}

.afval-item {
    background: var(--secondary);
    border-radius: var(--radius);
    padding: 1rem;
    display: grid;
    gap: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.afval-item.selected {
    border-color: var(--primary);
    background: rgba(46, 125, 50, 0.05);
}

.afval-checkbox {
    display: flex;
    align-items: flex-start;
}

.afval-checkbox input[type="checkbox"] {
    display: none;
}

.afval-checkbox label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    flex: 1;
}

.afval-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    transition: var(--transition);
}

.afval-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.afval-name {
    display: block;
    font-weight: 600;
    color: var(--text);
}

.afval-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.afval-quantity {
    display: none;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.afval-item.selected .afval-quantity {
    display: flex;
}

.afval-quantity label {
    font-size: 0.9rem;
    color: var(--text-light);
    white-space: nowrap;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.qty-btn {
    width: 36px;
    height: 36px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.quantity-control input {
    width: 60px;
    text-align: center;
    padding: 0.5rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
}

.quantity-control input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Extra opties */
.extra-opties {
    display: grid;
    gap: 0.75rem;
}

.optie-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--secondary);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.optie-item:hover {
    background: var(--border);
}

.optie-item input[type="checkbox"] {
    display: none;
}

.optie-check {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    position: relative;
    transition: var(--transition);
}

.optie-item input:checked + .optie-check {
    background: var(--primary);
    border-color: var(--primary);
}

.optie-item input:checked + .optie-check::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.optie-item input:disabled + .optie-check {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

.optie-content {
    flex: 1;
}

.optie-name {
    display: block;
    font-weight: 600;
}

.optie-desc {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.optie-price {
    font-weight: 700;
    color: var(--primary);
}

.optie-price.included {
    color: var(--primary-light);
}

/* Calculator Result */
.calculator-result {
    background: var(--secondary);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 2rem;
}

.result-summary {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.result-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--text-light);
}

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

.result-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.result-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.result-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.calculator-actions {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.calculator-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 0.75rem;
}

/* Mobile info banner - shown only on mobile */
.mobile-info-banner {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--primary);
    border-radius: var(--radius);
}

.mobile-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

.mobile-info-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .mobile-info-banner {
        display: grid;
    }
}

/* Calculator Highlights Bar */
.calculator-highlights {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.5rem;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
}

.highlight-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

.highlight-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    padding: 0.5rem 1rem;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.highlight-whatsapp:hover {
    background: #1da851;
}

.highlight-whatsapp svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .afval-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .afval-item {
        grid-template-columns: 1fr;
    }

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

@media (min-width: 992px) {
    .afval-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.form-group select,
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-main);
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    transition: var(--transition);
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.calculator-result {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.result-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.result-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.result-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ===== Werkwijze Section ===== */
.werkwijze {
    padding: 80px 0;
    background: var(--secondary);
}

.stappen-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stap {
    text-align: center;
    position: relative;
}

.stap-nummer {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stap-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px var(--shadow);
}

.stap-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary);
}

.stap h3 {
    margin-bottom: 0.75rem;
}

.stap p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.werkwijze-cta {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.werkwijze-cta p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .stappen-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== Reviews Section ===== */
.reviews {
    padding: 80px 0;
    background: var(--white);
}

.reviews-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-card {
    background: var(--secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 20px;
    height: 20px;
    color: var(--star);
}

.review-stars:not(:has(svg)) {
    font-size: 1.2rem;
    color: var(--star);
    letter-spacing: 2px;
}

.review-name {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.95rem;
}

.review-text {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-name {
    font-weight: 600;
    color: var(--text);
}

.author-location {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.reviews-cta {
    text-align: center;
    padding: 2rem;
    background: var(--secondary);
    border-radius: var(--radius-lg);
}

.reviews-cta p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.portfolio-grid {
    display: grid;
    gap: 2rem;
}

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

.portfolio-before,
.portfolio-after {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.portfolio-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--black);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.portfolio-before img,
.portfolio-after img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== FAQ Section ===== */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    background: none;
    border: none;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    color: var(--text);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding-bottom: 0;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Contact Section ===== */
.contact {
    padding: 80px 0;
    background: var(--secondary);
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
}

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

.contact-items {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text);
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-social a {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--primary);
}

.contact-social svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-social a:hover svg {
    color: var(--white);
}

.contact-whatsapp {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.contact-whatsapp p {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== Acties Banner ===== */
.acties {
    padding: 60px 0;
    background: var(--primary);
    color: var(--white);
}

.acties h3 {
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
}

.acties-grid {
    display: grid;
    gap: 1.5rem;
}

.actie-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.actie-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.actie-item p {
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .acties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Footer ===== */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 100px;
    width: auto;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-logo .logo-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.footer-col ul a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

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

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: var(--whatsapp-dark);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Animate on scroll classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animate-left {
    transform: translateX(-30px);
}

.animate-on-scroll.animate-right {
    transform: translateX(30px);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.9);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Hero animation */
.hero-content {
    animation: fadeInLeft 0.8s ease forwards;
}

.hero-image {
    animation: fadeInRight 0.8s ease 0.2s forwards;
}

/* Floating WhatsApp button pulse */
.whatsapp-float {
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    animation: none;
}

/* Stap nummer hover effect */
.stap:hover .stap-nummer {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.stap:hover .stap-icon {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Review cards hover lift */
.review-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-lg);
}

/* Actie items hover */
.actie-item {
    transition: transform 0.3s ease, background 0.3s ease;
}

.actie-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

/* Top bar shimmer text */
.top-bar-text {
    animation: fadeIn 0.5s ease forwards;
}

/* Button hover effects enhanced */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

/* Counter animation for numbers */
.stap-nummer {
    transition: transform 0.3s ease, background 0.3s ease;
}

/* Section titles animation */
.section-title {
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0.75rem auto 0;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100px;
}

/* FAQ smooth open animation */
.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
    display: block !important;
    padding-bottom: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

/* ===== Enhanced Mobile Styles ===== */
@media (max-width: 480px) {
    /* Base mobile adjustments */
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .logo-img {
        height: 34px;
    }

    /* Top bar mobile */
    .top-bar {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }

    .top-bar-text strong {
        font-size: 1rem;
    }

    .header {
        top: 28px;
    }

    /* Hero mobile */
    .hero {
        padding: 130px 0 40px;
    }

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

    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Calculator mobile */
    .calculator {
        padding: 50px 0;
    }

    .calculator-card {
        padding: 1.25rem;
    }

    .calc-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .calc-section-title {
        font-size: 1rem;
    }

    .calc-section-desc {
        margin-left: 0;
        margin-top: 0.75rem;
    }

    .afval-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .afval-item {
        padding: 0.875rem;
    }

    .afval-icon {
        width: 40px;
        height: 40px;
    }

    .afval-name {
        font-size: 0.95rem;
    }

    .afval-desc {
        font-size: 0.85rem;
    }

    .afval-quantity {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .quantity-control {
        margin-left: 0;
        justify-content: center;
    }

    .qty-btn {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }

    .quantity-control input {
        width: 70px;
        padding: 0.75rem;
        font-size: 1.1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .result-amount {
        font-size: 2.5rem;
    }

    .calculator-actions .btn {
        padding: 1rem;
    }

    /* Highlights bar mobile */
    .calculator-highlights {
        gap: 0.75rem 1rem;
    }

    .highlight-whatsapp {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        margin-top: 0.25rem;
    }

    /* Diensten mobile */
    .diensten {
        padding: 50px 0;
    }

    .diensten-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tab-btn {
        width: 100%;
    }

    .dienst-card {
        padding: 1.5rem;
    }

    .dienst-icon {
        width: 50px;
        height: 50px;
    }

    .dienst-icon svg {
        width: 24px;
        height: 24px;
    }

    /* Werkwijze mobile */
    .werkwijze {
        padding: 50px 0;
    }

    .stappen-grid {
        gap: 1.5rem;
    }

    .stap-icon {
        width: 60px;
        height: 60px;
    }

    .stap-icon svg {
        width: 28px;
        height: 28px;
    }

    /* Reviews mobile */
    .reviews {
        padding: 50px 0;
    }

    .review-card {
        padding: 1.5rem;
    }

    /* Portfolio mobile */
    .portfolio {
        padding: 50px 0;
    }

    .portfolio-item {
        grid-template-columns: 1fr;
    }

    /* FAQ mobile */
    .faq {
        padding: 50px 0;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 0;
    }

    .faq-question span {
        padding-right: 1rem;
    }

    /* Contact mobile */
    .contact {
        padding: 50px 0;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .contact-whatsapp {
        padding: 1.5rem;
    }

    /* Footer mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        gap: 1.5rem;
    }

    /* WhatsApp float button mobile */
    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ===== Tablet Styles ===== */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        padding: 140px 0 50px;
    }

    .hero-features {
        grid-template-columns: 1fr 1fr;
    }

    .stappen-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Large Desktop Styles ===== */
@media (min-width: 1200px) {
    .container {
        max-width: 1280px;
    }

    .hero .container {
        gap: 4rem;
    }

    .afval-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .afval-item {
        padding: 1.25rem;
    }

    .stappen-grid {
        gap: 3rem;
    }
}

/* ===== Touch Device Optimizations ===== */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn {
        min-height: 48px;
    }

    .qty-btn {
        width: 48px;
        height: 48px;
    }

    .faq-question {
        min-height: 56px;
    }

    .tab-btn {
        min-height: 48px;
    }

    /* Remove hover effects that don't work on touch */
    .dienst-card:hover,
    .afval-item:hover {
        transform: none;
    }

    /* Better touch feedback */
    .btn:active {
        transform: scale(0.98);
    }

    .afval-item:active {
        background: var(--border);
    }
}

/* ===== Landscape Phone ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 30px;
        min-height: auto;
    }

    .hero-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== High DPI / Retina Displays ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-text {
        -webkit-font-smoothing: antialiased;
    }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ===== Dark Mode Support (Future) ===== */
@media (prefers-color-scheme: dark) {
    /* Placeholder for dark mode styles */
}

/* ===== Top Bar ===== */
.top-bar {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.top-bar-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.02em;
}

.top-bar-text strong {
    color: var(--primary-light);
    font-size: 1.1rem;
}

@media (min-width: 481px) {
    .header {
        top: 32px;
    }
}

/* ===== Hero Slogan ===== */
.hero-slogan {
    display: inline-block;
    background: rgba(76, 175, 80, 0.2);
    color: var(--primary-light);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(76, 175, 80, 0.3);
    letter-spacing: 0.01em;
}

/* ===== M3 Helper ===== */
.m3-helper {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.m3-helper-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(26, 39, 68, 0.05));
    border: 2px dashed var(--primary);
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
}

.m3-helper-toggle:hover {
    background: rgba(46, 125, 50, 0.12);
    border-color: var(--primary-dark);
}

.m3-helper-toggle svg {
    flex-shrink: 0;
    color: var(--primary);
}

.m3-helper-content {
    display: none;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
    border-top: none;
    margin-top: -2px;
}

.m3-helper-content.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; max-height: 0; }
    to { opacity: 1; max-height: 1000px; }
}

.m3-helper-intro {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.m3-reference-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .m3-reference-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.m3-reference-category h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.m3-reference-category ul {
    display: grid;
    gap: 0.4rem;
}

.m3-reference-category li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid var(--secondary);
}

.m3-item {
    color: var(--text);
}

.m3-value {
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
}

.m3-helper-tip {
    margin-top: 1.25rem;
    padding: 0.75rem 1rem;
    background: rgba(46, 125, 50, 0.08);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text);
}

.m3-helper-tip a {
    font-weight: 600;
    color: var(--whatsapp-dark);
}

/* ===== Acties - Verbeterde positionering ===== */
.acties {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.actie-badge {
    background: var(--primary-light);
    font-size: 1.1rem;
}

/* ===== Section Dividers ===== */
.diensten {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.werkwijze {
    background: var(--secondary);
}

.stap-nummer {
    background: var(--navy);
}

/* ===== Nav CTA ===== */
.nav-cta {
    background: var(--primary) !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
}

/* ===== Dienst Icons ===== */
.dienst-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/* ===== Calculator Preview in sidebar ===== */
.calculator-preview-sidebar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    color: var(--white);
    text-align: center;
}

/* ===== Print Styles ===== */
@media print {
    .header,
    .whatsapp-float,
    .hero-buttons,
    .werkwijze-cta,
    .reviews-cta,
    .acties,
    .contact-whatsapp,
    .calculator-highlights,
    .calculator-actions {
        display: none;
    }

    .hero {
        padding-top: 0;
    }

    .calculator-card {
        box-shadow: none;
        border: 1px solid #ccc;
    }

    body {
        font-size: 12pt;
    }

    a {
        color: inherit;
        text-decoration: none;
    }
}

/* ===== Offerte Modal ===== */
.offerte-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.offerte-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.modal-content {
    position: relative;
    z-index: 1;
    background: white;
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--gray-200);
    color: var(--text);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.modal-header p {
    color: var(--gray-600);
}

.success-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
}

/* Offerte Form */
.offerte-form .form-group {
    margin-bottom: 1rem;
}

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

.offerte-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.offerte-form input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.offerte-form input::placeholder {
    color: var(--gray-400);
}

.offerte-form .btn {
    margin-top: 1rem;
}

.offerte-form .form-note {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-align: center;
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--gray-100);
    border-radius: 8px;
}

/* Checkbox styling */
.checkbox-group {
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0.5rem;
    border-radius: 8px;
    background: var(--gray-100);
}

.checkbox-label:hover {
    background: var(--gray-200);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    border: 2px solid var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    background: var(--white);
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-text {
    color: var(--gray-700);
    flex: 1;
}

.checkbox-text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.checkbox-text a:hover {
    color: var(--primary-dark);
}

/* Mobile checkbox */
@media (max-width: 480px) {
    .checkbox-label {
        font-size: 0.85rem;
        gap: 0.6rem;
        padding: 0.75rem;
    }

    .checkmark {
        width: 28px;
        height: 28px;
        min-width: 28px;
        min-height: 28px;
    }
}

.offerte-form .btn:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
    opacity: 0.7;
}

.offerte-form .btn:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Offerte Result */
.offerte-result {
    background: var(--gray-100);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.offerte-summary {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.offerte-summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.offerte-summary-item .item-name {
    color: var(--gray-700);
}

.offerte-summary-item .item-details {
    color: var(--text);
    font-weight: 500;
}

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

.total-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.total-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.5rem 0;
}

.total-price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price-note {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.offerte-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.offerte-actions .btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.offerte-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 1rem;
}

/* Modal Mobile Adjustments */
@media (max-width: 480px) {
    .modal-content {
        padding: 1.25rem;
        margin: 0.5rem;
        max-height: 95vh;
        border-radius: 12px;
    }

    .modal-header h3 {
        font-size: 1.2rem;
    }

    .modal-header p {
        font-size: 0.9rem;
    }

    .offerte-form .form-group {
        margin-bottom: 0.75rem;
    }

    .offerte-form label {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }

    .offerte-form input {
        padding: 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .offerte-form .btn {
        padding: 0.875rem;
        font-size: 1rem;
    }

    .total-price {
        font-size: 2rem;
    }

    .success-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .offerte-result {
        padding: 1rem;
    }

    .offerte-summary-item {
        font-size: 0.85rem;
        flex-wrap: wrap;
    }

    .offerte-actions .btn {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
}
