/* ===========================
   GENERAL / RESET
=========================== */
.entry-content > div { max-width: 100%; }

/* ===========================
   HERO SECTIE
=========================== */
.mso-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5f8a 50%, #1a7a4f 100%);
    color: #fff;
    padding: 60px 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
}
.mso-hero h1 {
    font-size: 2.4em;
    margin: 0 0 15px 0;
    color: #fff;
}
.mso-hero-sub {
    font-size: 1.2em;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===========================
   TRUST BADGES
=========================== */
.mso-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}
.mso-badge {
    text-align: center;
    padding: 25px 15px;
    background: #fff;
    border: 2px solid #e8f4e8;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.mso-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.mso-badge-icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 10px;
}
.mso-badge strong {
    display: block;
    font-size: 1em;
    color: #1e3a5f;
    margin-bottom: 5px;
}
.mso-badge p {
    font-size: 0.85em;
    color: #666;
    margin: 0;
}

/* ===========================
   FORMULIER
=========================== */
.mso-city-form-section {
    margin-bottom: 50px;
}
.mso-city-form-section h2 {
    text-align: center;
    color: #1e3a5f;
    margin-bottom: 20px;
}
.mso-form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    padding: 0;
}
.mso-form-header {
    text-align: center;
    margin-bottom: 20px;
}
.mso-form-header h3 {
    font-size: 1.5em;
    color: #1e3a5f;
    margin: 0 0 5px 0;
}
.mso-form-header p {
    color: #666;
    margin: 0;
}
.mso-offerte-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
}
.mso-form-row {
    display: flex;
    gap: 15px;
}
.mso-form-group {
    margin-bottom: 18px;
    flex: 1;
}
.mso-form-group.mso-half {
    flex: 1;
}
.mso-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-size: 0.9em;
}
.mso-form-group input,
.mso-form-group select,
.mso-form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    font-size: 15px;
    box-sizing: border-box;
    background: #fafafa;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.mso-form-group input:focus,
.mso-form-group select:focus,
.mso-form-group textarea:focus {
    border-color: #1a7a4f;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26,122,79,0.15);
    background: #fff;
}
.mso-submit-btn {
    background: linear-gradient(135deg, #1a7a4f, #28a745);
    color: #fff;
    border: none;
    padding: 16px 30px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.3px;
}
.mso-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,122,79,0.3);
}
.mso-form-trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    font-size: 0.85em;
    color: #666;
}

/* ===========================
   DIENSTEN
=========================== */
.mso-services {
    margin-bottom: 50px;
}
.mso-services h2 {
    text-align: center;
    color: #1e3a5f;
    margin-bottom: 30px;
}
.mso-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.mso-service-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.mso-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.mso-service-icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 15px;
}
.mso-service-card h3 {
    color: #1e3a5f;
    margin: 0 0 10px 0;
}
.mso-service-card p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* ===========================
   PRIJZEN TABEL
=========================== */
.mso-pricing {
    margin-bottom: 50px;
}
.mso-pricing h2 {
    text-align: center;
    color: #1e3a5f;
    margin-bottom: 25px;
}
.mso-price-table {
    overflow-x: auto;
}
.mso-price-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}
.mso-price-table thead {
    background: #1e3a5f;
    color: #fff;
}
.mso-price-table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
}
.mso-price-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #eee;
}
.mso-price-table tbody tr:hover {
    background: #f8fdf8;
}
.mso-price-table tbody tr:last-child td {
    border-bottom: none;
}
.mso-price-note {
    font-size: 0.85em;
    color: #888;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

/* ===========================
   HOE WERKT HET
=========================== */
.mso-how-it-works {
    background: #f0f7f0;
    padding: 50px 30px;
    border-radius: 12px;
    margin-bottom: 50px;
}
.mso-how-it-works h2 {
    text-align: center;
    color: #1e3a5f;
    margin: 0 0 35px 0;
}
.mso-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}
.mso-step {
    text-align: center;
}
.mso-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a7a4f, #28a745);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    margin: 0 auto 15px;
}
.mso-step h3 {
    color: #1e3a5f;
    margin: 0 0 8px 0;
}
.mso-step p {
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* ===========================
   REVIEWS
=========================== */
.mso-reviews {
    margin-bottom: 50px;
}
.mso-reviews h2 {
    text-align: center;
    color: #1e3a5f;
    margin-bottom: 30px;
}
.mso-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.mso-review-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 25px;
    transition: box-shadow 0.2s;
}
.mso-review-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.mso-stars {
    color: #f5a623;
    font-size: 1.3em;
    margin-bottom: 12px;
}
.mso-review-text {
    color: #444;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
}
.mso-reviewer {
    color: #1e3a5f;
    font-size: 0.9em;
}

/* ===========================
   FAQ
=========================== */
.mso-faq {
    margin-bottom: 50px;
}
.mso-faq h2 {
    text-align: center;
    color: #1e3a5f;
    margin-bottom: 30px;
}
.mso-faq-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
}
.mso-faq-item h3 {
    color: #1e3a5f;
    margin: 0 0 8px 0;
    font-size: 1.1em;
}
.mso-faq-item p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* ===========================
   CTA SECTIE
=========================== */
.mso-cta {
    background: linear-gradient(135deg, #1e3a5f, #2c5f8a);
    color: #fff;
    padding: 50px 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 40px;
}
.mso-cta h2 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 1.8em;
}
.mso-cta > p {
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 1.1em;
}
.mso-cta .mso-offerte-form {
    background: rgba(255,255,255,0.95);
    max-width: 650px;
    margin: 0 auto;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
    .mso-trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    .mso-services-grid {
        grid-template-columns: 1fr;
    }
    .mso-steps {
        grid-template-columns: 1fr;
    }
    .mso-reviews-grid {
        grid-template-columns: 1fr;
    }
    .mso-form-row {
        flex-direction: column;
        gap: 0;
    }
    .mso-hero h1 {
        font-size: 1.8em;
    }
    .mso-hero {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .mso-trust-badges {
        grid-template-columns: 1fr;
    }
    .mso-form-trust {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
}
