﻿* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.full-bleed {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.about-section {
    font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* ===================== ABOUT BLOCK ===================== */
.about-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 320px;
}

    .about-text h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .about-text p {
        font-size: 15px;
        line-height: 1.7;
        color: #333;
        margin-bottom: 14px;
        text-align: justify;
    }

.about-image-wrap {
    position: relative;
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
}

.about-buses-img {
    width: 100%;
    max-width: 420px;
    object-fit: contain;
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    left: 10px;
    background-color: #f5a623;
    color: #fff;
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.experience-number {
    font-size: 28px;
    font-weight: 700;
}

.experience-label {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

/* ===================== STATS ROW ===================== */
.stats-row {
    display: flex;
    justify-content: center;
    gap: clamp(24px, 6vw, 130px);
    margin-top: 100px;
    flex-wrap: wrap;
    background-color: #1C2752;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    padding: 24px 0;
}






.stat-card {
    flex: 0 0 auto;
    min-width: 120px;
    border: 1px solid #1C2752;
    ;
    border-radius: 10px;
    text-align: center;
    padding: 0 1px;
    align-items: center;
}

    .stat-card h3 {
        font-size: 42px;
        font-weight: 500;
        margin: 0 0 6px 0;
        color: #ffffff;
        text-align: center;
        align-items: center;
        align-self: center;
    }

    .stat-card p {
        font-size: 17px;
        font-weight: 120;
        color: #ffffff;
        margin: 0;
        text-align: center;
        align-items: center;
        align-self: center;
    }


/* ===================== WHO WE ARE ===================== */
.who-we-are {
    text-align: center;
    margin-top: 80px;
}

    .who-we-are h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .who-we-are p {
        font-size: 15px;
        line-height: 1.7;
        color: #333;
        max-width: 900px;
        margin: 0 auto;
    }

/* ===================== MISSION/VISION/VALUE/COMMITMENT ===================== */
.mvvc-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 80px;
}

.mvvc-card {
    position: relative;
    color: #fff;
    padding: 28px 22px 38px 22px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform .45s ease, box-shadow .45s ease, background .45s ease;
}

    .mvvc-card:not(.mvvc-card-img) {
        background-color: #0d6dbf;
        border-radius: 16px;
        min-height: 330px;
    }

        .mvvc-card:not(.mvvc-card-img):nth-child(odd) {
            clip-path: polygon(0% 0%, 100% 0%, 100% 88%, 0% 100%);
        }

        .mvvc-card:not(.mvvc-card-img):nth-child(even) {
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 88%);
        }

.mvvc-card-img {
    min-height: 0;
    background: none;
    aspect-ratio: 319 / 464;
}

.mvvc-card-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 0;
    pointer-events: none;
}


.mvvc-card-img::before {
    content: none;
}

.mvvc-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.mvvc-card-img h3,
.mvvc-card-img p,
.mvvc-card-img .mvvc-icon {
    position: relative;
    z-index: 2;
}

.mvvc-icon {
    width: clamp(32px, 4vw + 18px, 46px);
    height: clamp(32px, 4vw + 18px, 46px);
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    transition: transform .45s ease, box-shadow .45s ease;
}

    .mvvc-icon svg {
        width: 48%;
        height: 48%;
    }

.mvvc-card h3 {
    font-size: clamp(14px, 1.4vw + 11px, 18px);
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.mvvc-card p {
    font-size: clamp(12px, 0.8vw + 10px, 13.5px);
    line-height: 1.6;
    color: #eaf2fb;
    margin: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .mvvc-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .mvvc-card {
        padding: 20px 16px 30px 16px;
    }

        .mvvc-card:not(.mvvc-card-img) {
            min-height: 260px;
        }

    /* Cards are now ~45% of viewport width (2-up), not 100% — so icon/text
       need their own, smaller vw-based clamp here instead of inheriting the
       4-column formulas above, or they stay large while the card shrinks. */
    .mvvc-icon {
        width: clamp(26px, 7vw, 38px);
        height: clamp(26px, 7vw, 38px);
        margin-bottom: 14px;
    }

    .mvvc-card h3 {
        font-size: clamp(13px, 3vw, 16px);
    }

    .mvvc-card p {
        font-size: clamp(11.5px, 2.2vw, 13px);
    }
}

@media (max-width: 480px) {
    .mvvc-row {
        gap: 12px;
    }

    .mvvc-card {
        padding: 16px 12px 22px 12px;
    }

        .mvvc-card:not(.mvvc-card-img) {
            min-height: 220px;
        }

    .mvvc-icon {
        width: clamp(22px, 8vw, 30px);
        height: clamp(22px, 8vw, 30px);
        margin-bottom: 10px;
    }

    .mvvc-card h3 {
        font-size: clamp(11.5px, 3.6vw, 13.5px);
        margin-bottom: 6px;
    }

    .mvvc-card p {
        font-size: clamp(10.5px, 2.6vw, 12px);
        line-height: 1.45;
    }
}



.mvvc-card:not(.mvvc-card-img)::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -120%;
    width: 80%;
    height: 220%;
    background: linear-gradient( 120deg, transparent, rgba(255,255,255,.15), transparent );
    transform: rotate(25deg);
    transition: .8s;
}

.mvvc-card:not(.mvvc-card-img):hover::before {
    left: 150%;
}

.mvvc-card:not(.mvvc-card-img)::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at top, rgba(255,255,255,.12), transparent 60% );
    opacity: 0;
    transition: .5s;
}


.mvvc-card:not(.mvvc-card-img):hover {
    transform: translateY(-14px);
    background: #08589d;
}






.mvvc-card:hover .mvvc-icon {
    transform: rotate(12deg) scale(1.15);
    box-shadow: 0 0 25px rgba(255,255,255,.45);
}


/* ===================== CHAIRMAN SECTION ===================== */
.chairman-section {
    text-align: center;
    margin-top: 90px;
}

    .chairman-section h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 30px;
    }

.chairman-box {
    display: flex;
    gap: 40px;
    background-color: #eef6fc;
    border-radius: 16px;
    height: 450px;
    padding: 30px;
    text-align: left;
    align-items: flex-start;
    flex-wrap: wrap;
    transition: box-shadow 0.3s ease-in-out;
}

.chairman-image-wrap {
    position: relative;
    flex: 0 0 260px;
}

.chairman-img {
    width: 100%;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    height: 300px;
    margin-top: 40px;
    transition: box-shadow 0.3s ease-in-out;
    transform: translateY(0px);
    transition: transform 0.3s ease;
}

.chairman-name-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1B1E41;
    ;
    color: #fff;
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    border-radius: 0 0 16px 16px;
}

.chairman-name {
    font-size: 15px;
    font-weight: 400;
    align-self: center;
}

.chairman-title {
    font-size: 12px;
    color: #cfd9e8;
    align-self: center;
}

.chairman-quote {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.quote-mark {
    font-size: 40px;
    color: #0d6dbf;
    font-weight: 700;
    line-height: 1;
}

.quote-mark-end {
    display: block;
    text-align: right;
    font-size: 40px;
    color: #0d6dbf;
    font-weight: 700;
    line-height: 1;
}

.chairman-quote p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #2a2a2a;
    margin-bottom: 14px;
}

/* ===================== SERVICES SECTION ===================== */
.services-section {
    text-align: center;
    margin-top: 90px;
}

    .services-section h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 10px;
    }

.services-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.services-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    text-align: left;
}

.service-card {
    flex: 0 0 calc(33.333% - 24px);
    min-width: 280px;
    background-color: #fdfdfd;
    border-radius: 10px;
    padding: 28px 26px;
    will-change: transform;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 40px rgba(192, 192, 192, 0.15);
    }

    .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0);
        transition: 0.3s;
        border-radius: 10px;
        z-index: 0;
    }

    .service-card:hover::before {
        background: rgba(0, 0, 0, 0.02);
    }

    .service-card * {
        position: relative;
        z-index: 1;
    }

.service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
}

    .service-icon svg {
        width: 40px;
        height: 40px;
    }

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #444;
    margin-bottom: 10px;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: #0d6dbf;
    text-decoration: none;
}

    .read-more:hover {
        text-decoration: underline;
    }

/* ===================== PROJECTS SECTION ===================== */
.projects-section {
    text-align: center;
    margin-top: 90px;
}

    .projects-section h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 10px;
    }

.projects-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.projects-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: left;
}

.project-item {
    display: flex;
    flex-direction: column;
}

.project-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 416 / 354;
    transform: translateZ(0);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.project-img-wrap:hover .project-img {
    transform: scale(1.08);
}

.project-img-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    z-index: 2;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient( 120deg, transparent, rgba(243, 243, 243, 0.25), transparent );
    transform: skewX(-20deg);
    transition: 0.5s;
}

.project-img-wrap:hover::after {
    left: 130%;
}

.project-img-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: 0.3s;
    z-index: 1;
    border-radius: inherit;
    pointer-events: none;
}

.project-info {
    padding: 16px 2px 0 2px;
    background: transparent;
}

    .project-info h3 {
        font-size: 17px;
        font-weight: 700;
        margin: 0 0 8px 0;
        color: #1a1a1a;
    }

    .project-info p {
        font-size: 14px;
        line-height: 1.6;
        color: #555;
        margin: 0 0 8px 0;
    }

/* ===================== VISION BANNER ===================== */
.vision-banner {
    margin-top: 70px;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(90deg, #4fa3ff 0%, #0d6dbf 50%, #084a8a 100%);
}

.vision-logo {
    position: absolute;
    top: 50%;
    width: 280px;
    height: auto;
    opacity: 0.12;
    transform: translateY(-50%);
    pointer-events: none;
}

.vision-logo-left {
    height: 180px;
    width: auto;
    left: 40px;
}

.vision-logo-right {
    height: 180px;
    width: auto;
    right: 40px;
}

.vision-banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

    .vision-banner-content h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 16px;
    }

    .vision-banner-content p {
        font-size: 15px;
        line-height: 1.7;
        color: #eaf2fb;
        margin-bottom: 26px;
    }

.btn-view-projects {
    background-color: #fff;
    color: #020507;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

    .btn-view-projects:hover {
        background-color: #e6f0fb;
    }

/* ===================== FEATURED WORKS ===================== */
.featured-section {
    text-align: center;
    margin-top: 90px;
}

    .featured-section h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 40px;
    }

.featured-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    text-align: left;
}

.featured-main {
    position: relative;
    flex: 0 0 320px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: visible;
    border: 8px solid #cfe6fb;
    margin-left: clamp(0px, 8vw, 120px);
    padding: 10px;
}

    .featured-main::before {
        content: "";
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 2px solid rgba(13,109,191,0.35);
        transition: all .5s ease;
    }

    .featured-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 50%;
        transition: transform .5s ease, box-shadow .5s ease;
        box-shadow: 0 10px 25px rgba(0,0,0,.12);
    }

    .featured-main:hover img {
        transform: translateY(-12px) scale(1.04);
        box-shadow: 0 25px 40px rgba(0,0,0,.22), 0 0 0 12px rgba(13,109,191,.10);
    }

    .featured-main:hover::before {
        transform: scale(1.08);
    }

.featured-thumbs {
    flex: 1;
    min-width: 170px;
    max-width: 610px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 12px;
    row-gap: 16px;
    justify-content: center;
    justify-items: center;
}

.featured-thumb-wrap {
    width: 100%;
    max-width: 190px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.featured-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s ease;
}

.featured-thumb-wrap:hover img {
    transform: scale(1.08);
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-section {
    text-align: center;
    margin-top: 90px;
}

    .testimonials-section h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 10px;
    }

.testimonials-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.testimonials-row {
    display: flex;
    flex: 1;
    gap: 24px;
    transition: transform .6s ease-in-out;
    overflow: hidden;
    width: 100%;
    padding: 20px 10px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform .7s ease-in-out;
    max-width: 100%;
    margin: -20px -10px;
    padding: 20px 10px;
}

.testimonial-card {
    flex: 1 1 0;
    min-width: 0;
    min-width: calc((100% - 48px) / 3);
    height: 290px;
    background: #f7f8fa;
    border-radius: 12px;
    padding: 30px 26px;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
    transition: transform .3s ease, box-shadow .3s ease;
}

@media (max-width: 991px) {
    .testimonial-card {
        min-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 599px) {
    .testimonial-card {
        min-width: 100%;
        height: auto;
        min-height: 240px;
    }
}

.testimonial-card:hover {
    transform: translateY(-6px);
}

.testimonial-quote {
    font-size: 40px;
    font-weight: 700;
    color: #0d6dbf;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
}

.testimonial-card p {
    font-size: 13.5px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0;
}

.testimonial-author {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author span {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d8dde3;
    display: inline-block;
}

    .dot.active {
        background-color: #0d6dbf;
    }

/* ===================== DAEWOO MOBILE APP BANNER ===================== */
.app-banner {
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding: 70px 60px;
    background-color: #1296e0;
    color: #fff;
}

.app-banner-text {
    flex: 1;
    min-width: 320px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: max(20px, calc((100vw - 1200px) / 2 + 20px));
}

    .app-banner-text h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 14px;
        margin-left: 10px;
    }

    .app-banner-text p {
        font-size: 14.5px;
        line-height: 1.7;
        color: #eaf6ff;
        margin-bottom: 26px;
        max-width: 420px;
        margin-left: 10px;
    }

.app-qr-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.app-qr-code {
    padding: 8px;
    border-radius: 6px;
    display: flex;
    width: fit-content;
}

    .app-qr-code img {
        width: 80px;
        height: 80px;
        display: block;
    }

.app-store-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    max-width: 180px;
    max-height: 100px;
    overflow: hidden;
    transition: filter 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
}

.badge-img {
    height: 52px;
    width: auto;
    display: block;
}

.store-badge svg {
    flex-shrink: 0;
}

.badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.badge-small {
    font-size: 10px;
    font-weight: 400;
    color: #fff;
    opacity: 0.85;
    letter-spacing: 0.3px;
}

.badge-large {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.2px;
    margin-top: -1px;
}

.app-banner-image {
    flex: 1;
    min-width: 260px;
    max-width: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    position: relative;
}

.app-phones-img {
    position: relative;
    width: clamp(160px, 42vw, 300px);
    height: auto;
    max-height: 340px;
    aspect-ratio: 300 / 600;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* ===================== FAQ ===================== */
.faq-section {
    margin-top: 90px;
}

    .faq-section h2 {
        font-size: 30px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 10px;
    }

.faq-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    border: 1px solid #e4e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e4e7eb;
}

    .faq-item:last-child {
        border-bottom: none;
    }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    gap: 16px;
    font-family: -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
    transition: background 0.15s ease;
}

    .faq-question:hover {
        background: #f9fafb;
    }

.faq-chevron {
    flex-shrink: 0;
    color: #555;
    display: flex;
    align-items: center;
}

.chevron-down {
    transition: transform 0.3s ease;
}

.faq-item--open .chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height .5s ease, padding .5s ease;
    background: #fff;
    opacity: 0;
    transition: opacity .4s ease, padding .4s ease;
}

    .faq-answer p {
        font-size: 14.5px;
        line-height: 1.7;
        color: #555;
        margin: 0;
    }

.faq-item--open .faq-answer {
    max-height: 250px;
    opacity: 1;
    padding: 0 24px 22px;
}

/* ===================== CONTACT US ===================== */
.contact-section {
    margin-top: 90px;
}

    .contact-section h2 {
        font-size: 30px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 10px;
    }

.contact-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.contact-body {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact-info {
    flex: 0 0 280px;
    min-width: 240px;
}

    .contact-info h3 {
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 28px;
        color: #1a1a1a;
    }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
    font-size: 14.5px;
    color: #333;
    line-height: 1.55;
}

    .contact-item svg {
        flex-shrink: 0;
        margin-top: 1px;
    }

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

    .contact-map iframe {
        width: 100%;
        height: 70%;
        display: block;
    }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .about-section {
        padding: 40px 20px;
    }

    .chairman-box {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .projects-row {
        grid-template-columns: 1fr;
    }

    .vision-logo {
        width: 80px;
    }

    .chairman-image-wrap {
        flex: 0 0 auto;
        width: 100%;
        max-width: 260px;
    }

    .featured-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-main {
        width: 220px;
        height: 220px;
        flex: 0 0 220px;
    }

    .app-banner {
        padding: 50px 24px;
    }

    .app-banner-text {
        padding-left: 0;
    }

    .contact-body {
        flex-direction: column;
        gap: 32px;
    }

    .contact-info {
        flex: 0 0 auto;
        width: 100%;
    }

    .contact-map {
        width: 100%;
        height: 260px;
    }

    .footer-inner {
        padding: 48px 24px 32px 24px;
        gap: 32px;
    }

    .footer-brand {
        flex: 0 0 100%;
    }

    .footer-bottom {
        padding: 20px 24px;
    }

    .footer-app-badges {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    width: 100%;
}

    .slider-controls button {
        width: 45px;
        height: 45px;
        border: none;
        border-radius: 50%;
        background: #0d6dbf;
        color: white;
        font-size: 22px;
        cursor: pointer;
    }

        .slider-controls button:hover {
            opacity: 0.9;
        }

.testimonials-row {
    display: flex;
    flex: 1;
    gap: 24px;
    transition: all .5s ease;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #0d6dbf;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: transform .3s ease, box-shadow .3s ease;
    z-index: 999;
}

    .back-to-top:hover {
        transform: translateY(-6px);
        background: #084a8a;
        box-shadow: 0 15px 30px rgba(0,0,0,.3);
    }
