/* ============================================
   HG VLOERSYSTEMEN — PAGES STYLESHEET
   Gedeelde stijlen voor: over-ons, contact, offerte
   ============================================ */

/* ---- PAGE HERO ---- */
.page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 64px;
    overflow: hidden;
}

.page-hero-short {
    min-height: 340px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15,23,42,0.55) 0%,
        rgba(15,23,42,0.75) 60%,
        rgba(15,23,42,0.90) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 16px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--orange);
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(249,115,22,0.2);
    border: 1px solid rgba(249,115,22,0.4);
    color: #fdba74;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.page-badge--dark {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
}

.page-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 16px;
}

.page-hero-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    line-height: 1.6;
}

.accent-orange {
    color: var(--orange);
}

/* ---- STATS BAR DARK ---- */
.stats-bar-dark {
    background: var(--dark);
    padding: 32px 0;
}

.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
}

.stat-suffix {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--orange);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* ---- SECTION UTILITIES ---- */
.section {
    padding: 80px 0;
}

.section-bg-light {
    background: var(--light);
}

.section-bg-dark {
    background: var(--dark);
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.7;
    margin: 0 auto;
}

.section-header-center {
    text-align: center;
    margin-bottom: 56px;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 500;
}

.body-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- SPLIT LAYOUT ---- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.split-reversed {
    direction: rtl;
}

.split-reversed > * {
    direction: ltr;
}

/* ---- IMAGE STACK ---- */
.img-stack {
    position: relative;
}

.img-main {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.img-secondary {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 45%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
}

.img-badge-circle {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 90px;
    height: 90px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    box-shadow: 0 8px 24px rgba(249,115,22,0.4);
}

.badge-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 0.65rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.img-rounded {
    border-radius: var(--radius-lg);
}

/* ---- CHECK LIST ---- */
.check-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}

.check-item svg {
    color: var(--orange);
    flex-shrink: 0;
}

/* ---- VALUES GRID ---- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 56px;
    height: 56px;
    background: rgba(249,115,22,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ---- TEAM PHOTOS ---- */
.team-photos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.team-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.team-text {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.team-text p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 12px;
}

/* ---- REGIO TAGS ---- */
.regio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.regio-tag {
    background: rgba(249,115,22,0.12);
    color: var(--orange-dark);
    border: 1px solid rgba(249,115,22,0.25);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ---- REVIEWS ---- */
.review-score-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.score-stars {
    display: flex;
    gap: 4px;
}

.score-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark);
}

.score-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.review-text {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
}

.review-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ---- CTA SECTIE ---- */
.cta-section {
    padding: 80px 0;
    background: var(--dark);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 56px 64px;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.65;
    max-width: 500px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.btn-outline-white {
    background: transparent;
    border-color: rgba(255,255,255,0.5);
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn-white {
    background: white;
    color: var(--orange-dark);
    border-color: white;
    font-weight: 700;
}

.btn-white:hover {
    background: var(--light);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    border-color: #1ebe5d;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
}

.btn-xl {
    padding: 16px 32px;
    font-size: 1.05rem;
}

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

/* ---- CONTACT OPTIES ---- */
.contact-opties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.contact-optie-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    text-align: center;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.contact-optie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact-optie-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.contact-optie-icon--phone {
    background: rgba(249,115,22,0.1);
    color: var(--orange);
}

.contact-optie-icon--whatsapp {
    background: rgba(37,211,102,0.1);
    color: #25D366;
}

.contact-optie-icon--email {
    background: rgba(59,130,246,0.1);
    color: #3b82f6;
}

.contact-optie-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.contact-optie-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.contact-optie-card strong {
    font-size: 0.95rem;
    color: var(--dark);
    margin-top: 4px;
}

.contact-optie-cta {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 8px;
}

/* ---- CONTACT LAYOUT ---- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}

.contact-form-wrap .section-label {
    margin-bottom: 8px;
}

/* ---- CONTACT INFO ---- */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-info-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 16px;
}

.contact-info-card--orange {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    border-color: transparent;
}

.contact-info-card--orange h3 {
    color: white;
}

.contact-info-card--orange p {
    color: rgba(255,255,255,0.85);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    background: rgba(249,115,22,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.contact-info-item a,
.contact-info-item span {
    font-size: 0.95rem;
    color: var(--dark);
    text-decoration: none;
}

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

/* ---- CONTACT FORM ---- */
.contact-form,
.offerte-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 28px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text);
    background: white;
    transition: border-color 0.2s;
    font-family: inherit;
    outline: none;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.required {
    color: var(--orange);
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.form-privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    flex-shrink: 0;
    accent-color: var(--orange);
}

.form-privacy a {
    color: var(--orange);
    text-decoration: underline;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 8px;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
    background: rgba(249,115,22,0.05);
    border-radius: var(--radius);
    border: 2px solid rgba(249,115,22,0.2);
}

.form-success svg {
    color: #22c55e;
    margin-bottom: 16px;
}

.form-success h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ---- RADIO GROUP ---- */
.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    padding: 8px 14px;
    border: 2px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.2s, background 0.2s;
}

.radio-label:has(input:checked) {
    border-color: var(--orange);
    background: rgba(249,115,22,0.05);
}

.radio-label input[type="radio"] {
    accent-color: var(--orange);
}

/* ---- OFFERTE HERO ---- */
.offerte-hero {
    background: var(--dark);
    padding: 80px 0 64px;
}

.offerte-hero-inner {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
}

.offerte-hero-content {
    color: white;
}

.offerte-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 16px;
}

.offerte-hero-lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin-bottom: 28px;
}

.offerte-beloftes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offerte-belofte {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}

.offerte-belofte svg {
    color: var(--orange);
    flex-shrink: 0;
}

.offerte-hero-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ---- OFFERTE FORM LAYOUT ---- */
.offerte-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
}

.offerte-form-wrap {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.offerte-form-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border);
}

.offerte-form-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.offerte-form-header p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-section {
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.form-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.form-step-nr {
    width: 28px;
    height: 28px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ---- OFFERTE SIDEBAR ---- */
.offerte-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.offerte-sidebar-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.offerte-sidebar-card--dark {
    background: var(--dark);
    border-color: transparent;
}

.offerte-sidebar-card--dark h3 {
    color: white;
}

.offerte-sidebar-card--contact {
    background: var(--light);
}

.offerte-sidebar-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.offerte-voordelen {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offerte-voordelen li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}

.offerte-voordelen li svg {
    color: var(--orange);
    flex-shrink: 0;
}

.review-score-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.review-stars-mini {
    display: flex;
    gap: 2px;
}

.review-score-mini strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
}

.sidebar-review {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 3px solid var(--orange);
}

.sidebar-review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-review-author strong {
    display: block;
    font-size: 0.85rem;
    color: var(--dark);
}

.sidebar-review-author span {
    font-size: 0.78rem;
    color: var(--text-light);
}

.offerte-sidebar-card--contact h3 {
    color: var(--dark);
    margin-bottom: 8px;
}

.offerte-sidebar-card--contact p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

/* ---- ACCORDION ---- */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
}

.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: background 0.2s;
}

.accordion-trigger:hover {
    background: var(--light);
}

.accordion-trigger svg {
    flex-shrink: 0;
    color: var(--orange);
    transition: transform 0.25s;
}

.accordion-trigger[aria-expanded="true"] svg {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.accordion-content.open {
    max-height: 400px;
}

.accordion-content p {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ---- REVEAL ANIMATIONS ---- */
/* Alleen animeren als JS geladen is (js-loaded class op body) */
body.js-loaded .reveal,
body.js-loaded .reveal-left,
body.js-loaded .reveal-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

body.js-loaded .reveal-left {
    transform: translateX(-30px);
}

body.js-loaded .reveal-right {
    transform: translateX(30px);
}

body.js-loaded .reveal.visible,
body.js-loaded .reveal-left.visible,
body.js-loaded .reveal-right.visible {
    opacity: 1;
    transform: none;
}

/* Fix 3: pagina's met veel reveal-elementen (>20) tonen alles direct */
body.js-loaded.reveal-heavy .reveal,
body.js-loaded.reveal-heavy .reveal-left,
body.js-loaded.reveal-heavy .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding-top: 64px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-top: 16px;
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-col ul li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--orange);
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.25s, box-shadow 0.25s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-reversed {
        direction: ltr;
    }

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

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

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

    .contact-opties-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

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

    .offerte-layout {
        grid-template-columns: 1fr;
    }

    .offerte-sidebar {
        position: static;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

@media (max-width: 768px) {
    .section {
        padding: 56px 0;
    }

    .page-hero {
        min-height: 320px;
        padding-bottom: 40px;
    }

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

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

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

    .offerte-form-wrap {
        padding: 24px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .img-secondary {
        display: none;
    }

    .img-badge-circle {
        display: none;
    }
}
