/* Vullings Verhuisservice - Main Stylesheet */

/* ===== CSS Variables ===== */
:root {
  --color-dark: #1F2A44;
  --color-primary: #3A4F7A;
  --color-light: #F6F7F9;
  --color-soft: #EEF2F7;
  --color-warm: #FAF8F5;

  --color-accent: #F2C94C;   /* CTA */
  --color-green: #6FCF97;    /* checks / duurzaam */

  --text-dark: #111827;
  --text-body: #374151;
  --text-muted: #6B7280;

  --white: #FFFFFF;
  --shadow: rgba(0, 0, 0, 0.06);
  --shadow-lg: rgba(0, 0, 0, 0.1);
  --max-width: 1200px;
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--white);
    color: var(--text-body);
    line-height: 1.6;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-dark);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-body);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-body);
    line-height: 1.6;
}

.micro {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-muted);
}

/* ===== Container & Sections ===== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    border-radius: 32px;
    margin: -2rem 1rem 0 1rem;
    position: relative;
}

.hero + .wave-divider + .section {
    margin-top: -3rem;
}

@media (max-width: 768px) {
    .section {
        margin: -1rem 0.5rem 0 0.5rem;
        padding: 4rem 0;
    }
}

/* ===== Wave Divider ===== */
.wave-divider {
    line-height: 0;
    overflow: hidden;
    margin-top: -1px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 80px;
}

.wave-divider.flip {
    transform: rotate(180deg);
}

/* ===== Header & Navigation ===== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 8px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-body);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--color-primary);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(135deg, #1F2A44 0%, #3A4F7A 100%);
    padding: 6rem 0 4rem 0;
    text-align: center;
    border-radius: 0;
    margin: 0;
    color: var(--white);
    position: relative;
}

.hero h1 {
    color: var(--white);
    font-size: 3rem;
}

.hero .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.35rem;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.hero .micro {
    color: rgba(255, 255, 255, 0.85);
}

.hero-image {
    width: 100%;
    max-width: 900px;
    margin: 3rem auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    background-color: var(--color-soft);
    aspect-ratio: 16/9;
    object-fit: cover;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: #E5B93D;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 201, 76, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary.light {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary.light:hover {
    background-color: var(--color-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(58, 79, 122, 0.2);
}

/* ===== Cards ===== */
.card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px var(--shadow-lg);
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.card-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.card-indicatie {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.card-list {
    list-style: none;
    margin-bottom: 2rem;
}

.card-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-body);
}

.card-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.badge {
    display: inline-block;
    background-color: var(--color-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.card-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-soft);
}

/* ===== Grid ===== */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* ===== Section Backgrounds ===== */
.section-bg-light {
    background-color: var(--color-light);
}

.section-bg-soft {
    background-color: var(--color-soft);
}

.section-bg-warm {
    background-color: var(--color-warm);
}

.section-bg-white {
    background-color: var(--white);
}

.section-bg-gradient {
    background: linear-gradient(135deg, #1F2A44 0%, #3A4F7A 100%);
    color: var(--white);
}

.section-bg-gradient h2,
.section-bg-gradient h3,
.section-bg-gradient p {
    color: var(--white);
}

/* ===== Lists ===== */
.bullet-list {
    list-style: none;
}

.bullet-list li {
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-body);
    font-size: 1.05rem;
}

.bullet-list li:before {
    content: "•";
    position: absolute;
    left: 1rem;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

/* ===== Icons ===== */
.icon {
    width: 48px;
    height: 48px;
    stroke: var(--color-primary);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-bottom: 0;
    flex-shrink: 0;
}

.icon-large {
    width: 64px;
    height: 64px;
}

.icon-white {
    stroke: var(--white);
}

.icon-green {
    stroke: var(--color-green);
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* ===== Feature Blocks ===== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.feature-item p {
    color: var(--text-body);
    font-size: 0.95rem;
}

/* ===== Steps ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    counter-reset: step-counter;
    margin-top: 3rem;
}

.step {
    position: relative;
    padding-left: 5rem;
    counter-increment: step-counter;
}

.step:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 4rem;
    height: 4rem;
    background-color: var(--color-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.step-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.step-text {
    color: var(--text-body);
    font-size: 1.05rem;
}

/* ===== FAQ ===== */
.faq {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px var(--shadow);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: var(--color-soft);
}

.faq-question:after {
    content: "+";
    font-size: 1.75rem;
    color: var(--color-primary);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item details[open] .faq-question:after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-body);
}

/* ===== Decision Helper ===== */
.decision-helper {
    background-color: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 30px var(--shadow);
    margin: 3rem 0;
}

.decision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.decision-card {
    padding: 2rem;
    background-color: var(--color-soft);
    border-radius: 16px;
    border-left: 4px solid var(--color-primary);
}

.decision-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.decision-card-text {
    font-size: 1rem;
    color: var(--text-body);
    margin: 0;
    line-height: 1.6;
}

/* ===== Alert Box ===== */
.alert {
    padding: 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    border-left: 4px solid var(--color-primary);
    background-color: var(--color-warm);
}

.alert-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-size: 1.15rem;
}

.alert-text {
    color: var(--text-body);
    margin: 0;
}

/* ===== CTA Strip ===== */
.cta-strip {
    background: linear-gradient(135deg, #1F2A44 0%, #3A4F7A 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    border-radius: 32px;
    margin: -2rem 1rem 4rem 1rem;
}

.cta-strip h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-strip p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.cta-strip .btn {
    margin: 0 0.75rem;
}

.cta-strip .btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.8);
}

.cta-strip .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.cta-strip .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 201, 76, 0.4);
}

/* ===== Region Links ===== */
.region-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.region-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.region-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-lg);
}

.region-card a {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.region-card a:hover {
    color: var(--color-primary);
}

/* ===== USP Blocks ===== */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.usp-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.usp-icon {
    flex-shrink: 0;
}

.usp-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.usp-content p {
    color: var(--text-body);
    margin: 0;
}

/* ===== Suitable For ===== */
.suitable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.suitable-item {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px var(--shadow);
}

.suitable-item h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 0.75rem;
}

/* ===== Duurzaam Section ===== */
.duurzaam-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-text-grid img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .duurzaam-grid,
    .image-text-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ===== Collage Section ===== */
.collage-section {
    width: 100%;
    padding: 0;
    margin: 4rem 0;
    overflow: hidden;
}

.collage-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.collage-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .collage-section {
        margin: 3rem 0;
    }

    .collage-wrapper {
        padding: 0 0.5rem;
    }

    .collage-image {
        border-radius: 20px;
    }
}

/* ===== Form ===== */
.form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-label .required {
    color: #DC2626;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-soft);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
    background-color: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.form-checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox-item input[type="checkbox"] {
    width: auto;
}

.form-radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.form-radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-radio-item input[type="radio"] {
    width: auto;
}

.form-help {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.form-submit {
    margin-top: 2rem;
}

.success-message {
    background-color: var(--color-green);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin: 2rem 0;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-dark);
    color: var(--white);
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== Sticky WhatsApp (Mobile) ===== */
.whatsapp-sticky {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px var(--shadow-lg);
    font-weight: 600;
    z-index: 999;
    display: none;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.whatsapp-sticky:hover {
    transform: scale(1.05);
    color: var(--white);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    .hero {
        padding: 4rem 0 3rem 0;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero .lead {
        font-size: 1.15rem;
    }

    .hero-image {
        margin: 2rem auto;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 4px 8px var(--shadow);
        transition: left 0.3s ease;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .whatsapp-sticky {
        display: flex;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .decision-grid {
        grid-template-columns: 1fr;
    }

    .cta-strip {
        margin: -1rem 0.5rem 0 0.5rem;
        padding: 3rem 0;
    }

    .cta-strip .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }

    .form-radio-group {
        flex-direction: column;
        gap: 1rem;
    }

    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 3rem 0;
        margin: -1rem 0.25rem 0 0.25rem;
    }

    h1 {
        font-size: 1.875rem;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

    .card {
        padding: 1.5rem;
    }

    .decision-helper {
        padding: 2rem;
    }
}