/* ============ SECTION 6: DỰ ÁN TRỌNG ĐIỂM ============ */
.kd-featured-projects-section {
    background: #f5f5f5;
    padding: 60px 0;
}

.kd-featured-section-title {
    color: var(--kd-orange);
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.02em;
}

/* Featured Main Card */
.kd-featured-main-card {
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.kd-featured-text-block {
    background: #2b2b2b;
    padding: 40px 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;
}

.kd-featured-main-title {
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 12px;
    line-height: 1.3;
}

.kd-featured-main-place {
    color: #f37021;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 10px;
}

.kd-featured-main-excerpt {
    color: #bbb;
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 24px;
    flex: 1;
}

.kd-featured-more-link {
    color: #f37021;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.kd-featured-more-link:hover {
    color: #d44c1a;
    gap: 14px;
}

.kd-featured-img-block {
    display: block;
    overflow: hidden;
    height: 100%;
    min-height: 280px;
}

.kd-featured-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.kd-featured-main-card:hover .kd-featured-img-block img {
    transform: scale(1.04);
}

/* Project Thumbnail Cards */
.kd-project-thumb-card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    aspect-ratio: 4 / 3;
}

.kd-project-thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    filter: brightness(0.8);
}

.kd-project-thumb-card:hover img {
    transform: scale(1.06);
    filter: brightness(0.6);
}

.kd-project-thumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 18px 20px;
}

.kd-project-thumb-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .kd-featured-text-block {
        padding: 28px 24px;
        min-height: auto;
    }

    .kd-featured-img-block {
        min-height: 200px;
    }
}

/* ============ SECTION 7: TESTIMONIALS ============ */
.kd-testimonials-section {
    background: #fff;
    padding: 60px 0;
}

.kd-section-divider {
    height: 2px;
    background: #f15a22;
    margin: 0;
    width: 100%;
}

.kd-testimonials-title {
    color: #f15a22;
    font-size: clamp(20px, 3.5vw, 34px);
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    margin: 48px 0 36px;
    letter-spacing: 0.04em;
}

.kd-testimonial-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}

.kd-testimonial-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.kd-testimonial-logo {
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.kd-testimonial-logo img {
    max-height: 50px;
    max-width: 140px;
    object-fit: contain;
}

.kd-testimonial-divider {
    height: 1px;
    background: #ddd;
    margin-bottom: 16px;
}

.kd-testimonial-role {
    color: #888;
    font-size: 12px;
    margin: 0 0 6px;
    line-height: 1.5;
}

.kd-testimonial-name {
    color: #111;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 16px;
    line-height: 1.4;
}

.kd-testimonial-quote {
    color: #555;
    font-size: 13px;
    line-height: 1.8;
    margin: 0;
    flex: 1;
}

@media (max-width: 767px) {
    .kd-testimonials-title {
        margin: 32px 0 24px;
    }

    .kd-testimonial-card {
        padding: 24px 20px;
    }
}
