/* ===================================
   DAKRENOVATIE BOLLENSTREEK
   Dakis.nl-inspired design
   ===================================*/

/* ---------- DESIGN TOKENS ---------- */
:root {
    --orange: #ee8910;
    --orange-d: #d47a0e;
    --black: #111111;
    --dark: #1a1a1a;
    --dark2: #222222;
    --dark3: #2a2a2a;
    --gray: #6a6a6a;
    --gray-l: #999999;
    --light: #f7f7f7;
    --white: #ffffff;
    --star: #ffc107;
    --green: #25d366;

    --font-head: 'Bebas Neue', sans-serif;
    --font-body: 'Roboto', sans-serif;

    --radius: 3px;
    --shadow: 0 4px 20px rgba(0, 0, 0, .12);
    --fast: .25s ease;
    --smooth: .4s ease;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--font-body);
    color: var(--gray);
    line-height: 1.65;
    background: var(--white);
    -webkit-font-smoothing: antialiased
}

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

ul {
    list-style: none
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-head);
    color: var(--black);
    line-height: 1.15;
    letter-spacing: 1px
}

/* ---------- CONTAINER ---------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 32px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--fast);
    white-space: nowrap;
}

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

.btn-orange:hover {
    background: var(--orange-d);
    border-color: var(--orange-d);
    color: var(--white)
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white)
}

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

.btn-sm {
    padding: 10px 22px;
    font-size: .8rem
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 16px
}

/* ---------- TOP BAR ---------- */
.top-bar {
    background: var(--dark);
    color: var(--gray-l);
    font-size: .8rem;
    padding: 8px 0
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px
}

.top-bar a {
    color: var(--gray-l)
}

.top-bar a:hover {
    color: var(--orange)
}

.top-bar span {
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.top-emergency {
    color: var(--orange);
    font-weight: 700
}

/* ---------- HEADER ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    font-family: var(--font-head);
    font-size: 1rem;
    line-height: 1.2
}

.logo-icon {
    font-size: 1.8rem;
    color: var(--orange)
}

.logo-text strong {
    color: var(--orange)
}

.nav ul {
    display: flex;
    gap: 28px
}

.nav a {
    font-weight: 700;
    font-size: .85rem;
    text-transform: uppercase;
    color: var(--black);
    letter-spacing: .5px
}

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

.header-btn {
    margin-left: 16px
}

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

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--black);
    border-radius: 2px;
    transition: var(--fast)
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../assets/images/pannendak-nok.jpg') center/cover no-repeat;
    filter: brightness(.55);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 0
}

.hero-card {
    max-width: 560px;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(8px);
    padding: 48px 44px;
    border-left: 5px solid var(--orange);
    border-radius: var(--radius);
}

.hero-card h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 16px
}

.hero-card p {
    color: var(--gray-l);
    font-size: 1.05rem;
    margin-bottom: 28px;
    line-height: 1.7
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

/* ---------- SERVICES ---------- */
.services {
    background: var(--dark);
    padding: 80px 0
}

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

.service-card {
    background: var(--dark2);
    padding: 40px 30px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--dark3);
    transition: all var(--smooth);
}

.service-card:hover {
    border-color: var(--orange);
    transform: translateY(-6px)
}

.service-icon {
    font-size: 2.8rem;
    color: var(--orange);
    margin-bottom: 20px
}

.service-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 12px
}

.service-card p {
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--gray-l)
}

.service-price {
    display: block;
    color: var(--orange);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px
}

/* ---------- ABOUT (split) ---------- */
.about {
    padding: 90px 0;
    background: var(--white)
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow)
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px
}

.about-text>p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: .95rem;
    color: var(--dark)
}

.check-list i {
    color: var(--orange);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0
}

/* ---------- PROJECTS ---------- */
.projects {
    padding: 80px 0;
    background: var(--light)
}

.section-heading {
    font-family: var(--font-head);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 48px;
    color: var(--black);
    letter-spacing: 2px;
}

.section-heading--white {
    color: var(--white)
}

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

.project-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--smooth)
}

.project-card:hover img {
    transform: scale(1.08)
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .8));
    color: var(--white);
}

.project-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: #fff;
}

.project-overlay span {
    font-size: .85rem;
    color: var(--orange)
}

/* ---------- STATS ---------- */
.stats {
    background: url('../assets/images/bitumen-branden.jpg') center/cover no-repeat fixed;
    position: relative;
    padding: 60px 0;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(238, 137, 16, .88)
}

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

.stat-number {
    font-family: var(--font-head);
    font-size: 3.5rem;
    color: var(--white);
    display: block
}

.stat-label {
    font-size: .85rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase
}

/* ---------- WHY US ---------- */
.why-us {
    padding: 80px 0;
    background: var(--white)
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto
}

.why-col .check-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--light)
}

/* ---------- PROCESS ---------- */
.process {
    padding: 90px 0;
    background: var(--dark)
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 48px
}

.process-step {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: center;
    background: var(--dark2);
    border-radius: var(--radius);
    overflow: hidden;
}

.process-step:nth-child(even) {
    direction: rtl
}

.process-step:nth-child(even) .step-body {
    direction: ltr
}

.process-step:nth-child(even) .step-img {
    direction: ltr
}

.step-img {
    height: 100%
}

.step-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.step-body {
    padding: 36px
}

.step-num {
    font-family: var(--font-head);
    font-size: 4rem;
    color: var(--orange);
    line-height: 1
}

.process-step h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin: 8px 0 12px
}

.process-step p {
    color: var(--gray-l);
    line-height: 1.7
}

/* ---------- PRICING ---------- */
.pricing {
    padding: 80px 0;
    background: var(--light)
}

.pricing-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 32px;
    font-size: 1.05rem
}

.pricing-table-wrap {
    overflow-x: auto
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow)
}

.pricing-table thead {
    background: var(--dark);
    color: var(--white)
}

.pricing-table th {
    padding: 16px 20px;
    text-align: left;
    font-family: var(--font-head);
    font-size: 1.1rem;
    letter-spacing: 1px
}

.pricing-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--light);
    font-size: .9rem
}

.pricing-table tbody tr:hover {
    background: rgba(238, 137, 16, .06)
}

.pricing-note {
    text-align: center;
    margin-top: 20px;
    font-size: .9rem;
    color: var(--gray)
}

.pricing-note a {
    color: var(--orange);
    font-weight: 700
}

/* ---------- REVIEWS ---------- */
.reviews {
    padding: 80px 0;
    background: var(--dark)
}

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

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform var(--smooth);
}

.review-card:hover {
    transform: translateY(-6px)
}

.review-stars {
    margin-bottom: 16px
}

.review-stars i {
    color: var(--star);
    font-size: 1rem
}

.review-card p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: .9rem;
    color: var(--dark)
}

.review-author {
    font-size: .85rem;
    margin-bottom: 4px
}

.review-author strong {
    color: var(--black)
}

.review-author span {
    color: var(--gray)
}

.review-type {
    font-size: .8rem;
    color: var(--orange);
    font-weight: 600
}

/* ---------- SERVICE AREA ---------- */
.area {
    padding: 80px 0;
    background: var(--white)
}

.area-intro {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 36px
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.area-grid span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--light);
    border-radius: var(--radius);
    font-weight: 500;
    font-size: .9rem;
    color: var(--dark);
    transition: all var(--fast);
}

.area-grid span:hover {
    background: var(--orange);
    color: var(--white)
}

.area-grid span i {
    color: var(--orange);
    font-size: .9rem
}

.area-grid span:hover i {
    color: var(--white)
}

/* ---------- CTA / CONTACT ---------- */
.cta-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('../assets/images/dakdekker-werk.jpg') center/cover no-repeat;
    filter: brightness(.3);
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cta-text h2 {
    font-family: var(--font-head);
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 16px
}

.cta-text p {
    color: var(--gray-l);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px
}

.cta-contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.cta-contact-info div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: .95rem
}

.cta-contact-info i {
    color: var(--orange);
    font-size: 1.1rem;
    width: 20px
}

.cta-contact-info a {
    color: var(--white)
}

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

.contact-form {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .12);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: .9rem;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius);
    color: var(--white);
    margin-bottom: 12px;
    transition: border-color var(--fast);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray-l)
}

.contact-form select {
    color: var(--gray-l);
    appearance: auto
}

.contact-form select option {
    background: var(--dark);
    color: var(--white)
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: var(--gray-l);
    margin-bottom: 16px;
    cursor: pointer
}

.checkbox-label input {
    width: auto;
    margin: 0
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--black);
    color: var(--gray-l);
    padding: 60px 0 0
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: var(--white);
    font-family: var(--font-head)
}

.footer-logo .logo-icon {
    font-size: 1.6rem;
    color: var(--orange)
}

.footer-logo .logo-text {
    font-size: .9rem;
    line-height: 1.2
}

.footer-logo .logo-text strong {
    color: var(--orange)
}

.footer .footer-col>p {
    font-size: .9rem;
    line-height: 1.7;
    margin-bottom: 16px
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: .85rem
}

.footer h4 {
    font-family: var(--font-head);
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 1px
}

.footer ul li {
    margin-bottom: 8px;
    font-size: .9rem
}

.footer a {
    color: var(--gray-l)
}

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

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

.footer-contact i {
    color: var(--orange);
    width: 16px
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    font-size: .8rem
}

.footer-bottom a {
    color: var(--gray-l)
}

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

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .3);
    transition: transform var(--fast);
}

.whatsapp-float:hover {
    transform: scale(1.12);
    color: var(--white)
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

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

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

    .process-step {
        grid-template-columns: 280px 1fr
    }

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

@media(max-width:768px) {
    .top-bar-inner {
        justify-content: center;
        text-align: center
    }

    .top-bar-right {
        display: none
    }

    .header-inner {
        height: 70px
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        transition: left var(--smooth);
        z-index: 999;
        box-shadow: var(--shadow);
    }

    .nav.active {
        left: 0
    }

    .nav ul {
        flex-direction: column;
        padding: 32px;
        gap: 0
    }

    .nav li {
        border-bottom: 1px solid var(--light)
    }

    .nav a {
        display: block;
        padding: 16px 0;
        font-size: 1rem
    }

    .header-btn {
        display: none
    }

    .mobile-toggle {
        display: flex
    }

    .hero {
        min-height: 70vh
    }

    .hero-card {
        padding: 32px 28px
    }

    .hero-card h1 {
        font-size: 2.2rem
    }

    .hero-btns {
        flex-direction: column
    }

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

    .services-grid {
        grid-template-columns: 1fr
    }

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

    .projects-grid {
        grid-template-columns: 1fr
    }

    .stats-inner {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .process-step {
        grid-template-columns: 1fr
    }

    .process-step:nth-child(even) {
        direction: ltr
    }

    .step-img {
        height: 220px
    }

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

    .area-grid {
        grid-template-columns: 1fr 1fr
    }

    .cta-inner {
        grid-template-columns: 1fr
    }

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

    .section-heading {
        font-size: 2rem
    }
}

@media(max-width:480px) {
    .area-grid {
        grid-template-columns: 1fr
    }

    .hero-card h1 {
        font-size: 1.8rem
    }

    .stat-number {
        font-size: 2.5rem
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px
    }
}