.dfw-section,
.dfw-section * {
    box-sizing: border-box;
}

.dfw-section {
    position: relative;
    width: 100%;
    padding: 28px 0;
    font-family: inherit;
}

.dfw-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.dfw-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    position: relative;
    padding-left: 78px;
    margin-bottom: 18px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.dfw-section-badge:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 58px;
    height: 3px;
    border-radius: 999px;
    transform: translateY(-50%);
    background: #bc7a2a;
}

.dfw-section-title {
    margin: 0;
    color: #171717;
    font-size: clamp(34px, 4.2vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
    max-width: 980px;
}

.dfw-carousel-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-top: 22px;
}

.dfw-nav-btn {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(23, 23, 23, 0.22);
    background: transparent;
    color: #171717;
    cursor: pointer;
    transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease, opacity .25s ease;
}

.dfw-nav-btn:hover {
    transform: translateY(-2px);
}

.dfw-nav-btn[disabled] {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
}

.dfw-nav-btn span {
    font-size: 24px;
    line-height: 1;
}

.dfw-carousel {
    width: 100%;
    overflow: hidden;
}

.dfw-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 56px) / 3);
    gap: 28px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.dfw-track::-webkit-scrollbar {
    display: none;
}

.dfw-slide {
    scroll-snap-align: start;
    min-width: 0;
}

/* Testimonials */
.dfw-testimonials {
    padding-bottom: 34px;
}

.dfw-testimonial-card {
    position: relative;
    min-height: 328px;
    padding: 36px 36px 72px;
    border-radius: 34px;
    background: #fff;
    overflow: hidden;
}

.dfw-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.dfw-star {
    color: #bc7a2a;
    font-size: 19px;
    line-height: 1;
}

.dfw-testimonial-quote {
    margin: 0;
    color: #616976;
    font-size: 17px;
    line-height: 1.75;
}

.dfw-testimonial-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
}

.dfw-testimonial-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dfw-avatar-wrap {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.dfw-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dfw-testimonial-name {
    color: #171717;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
}

.dfw-testimonial-role {
    margin-top: 6px;
    color: #616976;
    font-size: 15px;
    line-height: 1.5;
}

.dfw-quote-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #bc7a2a;
    color: #fff;
    font-size: 36px;
    line-height: 1;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(188, 122, 42, .22);
}

/* Blog */
.dfw-blog-section .dfw-post-card {
    display: flex;
    flex-direction: column;
}

.dfw-post-image-wrap {
    position: relative;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 18px;
}

.dfw-post-image {
    display: block;
    width: 100%;
    height: 285px;
    object-fit: cover;
    transition: transform .4s ease;
}

.dfw-post-card:hover .dfw-post-image {
    transform: scale(1.04);
}

.dfw-post-pill {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 7px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: #bc7a2a;
    font-size: 15px;
    font-weight: 600;
}

.dfw-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 10px;
    color: #6b7280;
    font-size: 15px;
}

.dfw-post-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dfw-post-meta-item:before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 2px;
    background: #bc7a2a;
    flex-shrink: 0;
}

.dfw-post-title {
    margin: 0 0 18px;
    font-size: 26px;
    line-height: 1.35;
    font-weight: 800;
    color: #171717;
}

.dfw-post-title a {
    color: inherit;
    text-decoration: none;
}

.dfw-post-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 1px solid #bc7a2a;
    border-radius: 999px;
    color: #bc7a2a;
    text-decoration: none;
    font-weight: 700;
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.dfw-post-btn:hover {
    background: #bc7a2a;
    color: #fff;
    transform: translateY(-2px);
}

/* Services */
.dfw-services-section {
    padding: 48px 58px 58px;
    border-radius: 0;
    background: #bc7a2a;
    overflow: hidden;
}

.dfw-services-section:after {
    content: "";
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -36px;
    height: 128px;
    opacity: .16;
    background-image:
        radial-gradient(circle at 24px 24px, rgba(255,255,255,.9) 0, rgba(255,255,255,.9) 6px, transparent 6px),
        radial-gradient(circle at 76px 72px, rgba(255,255,255,.85) 0, rgba(255,255,255,.85) 8px, transparent 8px),
        radial-gradient(circle at 138px 30px, rgba(255,255,255,.85) 0, rgba(255,255,255,.85) 5px, transparent 5px);
    background-size: 160px 120px;
    pointer-events: none;
}

.dfw-services-section .dfw-section-title {
    color: #fff;
    max-width: 1120px;
}

.dfw-services-section .dfw-section-badge {
    color: #fff;
}

.dfw-services-section .dfw-section-badge:before {
    background: #fff;
}

.dfw-services-section .dfw-track {
    padding-bottom: 18px;
}

.dfw-service-card {
    position: relative;
    background: #fff;
    border-radius: 28px 28px 28px 28px;
    padding: 20px 20px 26px;
    overflow: visible;
}

.dfw-service-image-wrap {
    overflow: hidden;
    border-radius: 24px;
}

.dfw-service-image {
    display: block;
    width: 100%;
    height: 255px;
    object-fit: cover;
    transition: transform .45s ease;
}

.dfw-service-card:hover .dfw-service-image {
    transform: scale(1.05);
}

.dfw-service-body {
    padding-top: 18px;
}

.dfw-service-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #bc7a2a;
    font-size: 15px;
    font-weight: 500;
}

.dfw-service-tag:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bc7a2a;
}

.dfw-service-title {
    margin: 0;
    color: #171717;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
}

.dfw-service-sep {
    width: 100%;
    height: 1px;
    margin: 18px 0 16px;
    background: rgba(23,23,23,.12);
}

.dfw-service-desc {
    margin: 0;
    color: #5f6771;
    font-size: 17px;
    line-height: 1.65;
}

}

/* Responsive */
@media (max-width: 1199px) {
    .dfw-track {
        grid-auto-columns: calc((100% - 28px) / 2);
    }

    .dfw-section-title {
        font-size: clamp(30px, 4vw, 54px);
    }

    .dfw-post-image,
    .dfw-service-image {
        height: 245px;
    }

    .dfw-services-section {
        padding: 42px 34px 50px;
    }
}

@media (max-width: 767px) {
    .dfw-section {
        padding: 18px 0;
    }

    .dfw-section-head {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 18px;
    }

    .dfw-carousel-nav {
        margin-top: 0;
    }

    .dfw-nav-btn {
        width: 48px;
        height: 48px;
    }

    .dfw-track {
        grid-auto-columns: 88%;
        gap: 18px;
    }

    .dfw-section-badge {
        padding-left: 58px;
        font-size: 14px;
    }

    .dfw-section-badge:before {
        width: 42px;
    }

    .dfw-section-title {
        font-size: clamp(26px, 9vw, 42px);
        line-height: 1.02;
    }

    .dfw-testimonial-card {
        padding: 26px 22px 32px;
        min-height: auto;
        border-radius: 24px;
    }

    .dfw-testimonial-quote {
        font-size: 16px;
        line-height: 1.65;
    }

    .dfw-avatar-wrap {
        width: 60px;
        height: 60px;
    }

    .dfw-testimonial-name {
        font-size: 17px;
    }

    .dfw-quote-badge {
        width: 46px;
        height: 46px;
        font-size: 28px;
    }

    .dfw-post-image,
    .dfw-service-image {
        height: 220px;
    }

    .dfw-post-title,
    .dfw-service-title {
        font-size: 22px;
    }

    .dfw-post-meta {
        font-size: 14px;
    }

    .dfw-services-section {
        padding: 32px 18px 40px;
        border-radius: 24px;
    }

    .dfw-service-card {
        padding: 16px 16px 26px;
        border-radius: 22px;
    }

    .dfw-service-desc {
        font-size: 16px;
    }


