/* =========================================================
   ABOUT PAGE
========================================================= */

:root {
    --about-primary: #1856d8;
    --about-primary-dark: #103f9d;
    --about-primary-soft: #eef4ff;

    --about-dark: #101828;
    --about-text: #475467;
    --about-muted: #667085;

    --about-border: #e4e7ec;
    --about-bg: #f7f9fc;
    --about-white: #ffffff;
}


.vs-about-section *,
.vs-about-services *,
.vs-mission-vision *,
.vs-about-questions *,
.vs-why-choose * {
    box-sizing: border-box;
}


/* =========================================================
   IMAGES
========================================================= */

.vs-about-main-image,
.vs-about-secondary-image {
    width: 100%;

    overflow: hidden;

    border-radius: 20px;

    background: #f2f4f7;

    box-shadow:
        0 14px 40px rgba(16,24,40,.08);
}


.vs-about-main-image {
    min-height: 470px;
}


.vs-about-secondary-image {
    min-height: 410px;
}


.vs-about-main-image img,
.vs-about-secondary-image img {
    width: 100%;
    height: 100%;

    min-height: inherit;

    object-fit: cover;
}


/* =========================================================
   MANAGEMENT
========================================================= */

.vs-management-box {
    padding: 18px;

    border: 1px solid var(--about-border);

    border-radius: 12px;

    background: var(--about-bg);
}


.vs-management-label {
    display: block;

    margin-bottom: 5px;

    color: var(--about-primary);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: .7px;
}


.vs-management-person {
    padding: 12px;

    border-radius: 8px;

    background: white;
}


.vs-management-person span {
    display: block;

    color: var(--about-muted);

    font-size: 10px;
}


.vs-management-person strong {
    display: block;

    margin-top: 3px;

    color: var(--about-dark);

    font-size: 14px;
}


/* =========================================================
   FEATURES
========================================================= */

.vs-about-feature {
    display: flex;
    align-items: flex-start;

    gap: 14px;

    margin-bottom: 18px;

    padding: 15px;

    border: 1px solid var(--about-border);

    border-radius: 12px;

    background: white;
}


.vs-about-feature-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--about-primary-soft);

    color: var(--about-primary);

    font-size: 19px;
}


.vs-about-feature h3 {
    margin: 0 0 4px;

    color: var(--about-dark);

    font-size: 15px;
}


.vs-about-feature p {
    margin: 0;

    color: var(--about-muted);

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   MISSION / VISION
========================================================= */

.vs-mv-card {
    height: 100%;

    padding: 27px;

    border: 1px solid var(--about-border);

    border-radius: 16px;

    background: white;
}


.vs-mv-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--about-primary-soft);

    color: var(--about-primary);

    font-size: 21px;
}


.vs-mv-card > span {
    display: block;

    margin-bottom: 10px;

    color: var(--about-dark);

    font-size: 20px;
    font-weight: 700;
}


/* =========================================================
   QUESTIONS
========================================================= */

.vs-question-list {
    display: flex;
    flex-direction: column;

    gap: 10px;
}


.vs-question-item {
    display: flex;
    align-items: flex-start;

    gap: 9px;

    padding: 10px 12px;

    border-radius: 8px;

    background: #f8fafc;

    color: var(--about-text);

    font-size: 12px;
}


.vs-question-item i {
    flex: 0 0 auto;

    margin-top: 2px;

    color: var(--about-primary);
}


.vs-question-note {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    padding: 16px;

    border-radius: 10px;

    background: var(--about-primary-soft);
}


.vs-question-note > i {
    color: var(--about-primary);

    font-size: 20px;
}


.vs-question-note strong {
    color: var(--about-dark);
}


.vs-question-note p {
    margin: 4px 0 0;

    color: var(--about-muted);

    font-size: 11px;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.vs-why-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


.vs-why-card {
    padding: 23px;

    border: 1px solid var(--about-border);

    border-radius: 14px;

    background: white;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.vs-why-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(16,24,40,.07);
}


.vs-why-card > i {
    width: 45px;
    height: 45px;

    margin-bottom: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: var(--about-primary-soft);

    color: var(--about-primary);

    font-size: 18px;
}


.vs-why-card h3 {
    margin: 0 0 6px;

    color: var(--about-dark);

    font-size: 15px;
}


.vs-why-card p {
    margin: 0;

    color: var(--about-muted);

    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   APPROVAL IMAGE
========================================================= */

.vs-about-approval-image {
    max-width: 900px;

    margin-left: auto;
    margin-right: auto;

    overflow: hidden;

    border-radius: 16px;

    box-shadow:
        0 12px 35px rgba(16,24,40,.08);
}


.vs-about-approval-image img {
    width: 100%;
    height: auto;

    display: block;
}


/* =========================================================
   CTA
========================================================= */

.vs-about-cta {
    margin-top: 55px;

    padding: 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #103d96,
            #226adb
        );

    color: white;
}


.vs-about-cta > div {
    max-width: 720px;
}


.vs-about-cta span {
    display: block;

    margin-bottom: 5px;

    color: rgba(255,255,255,.72);

    font-size: 10px;
    font-weight: 700;

    text-transform: uppercase;
}


.vs-about-cta h2 {
    margin: 0 0 7px;

    color: white;

    font-size: 25px;
}


.vs-about-cta p {
    margin: 0;

    color: rgba(255,255,255,.8);

    font-size: 12px;
}


.vs-about-cta-btn {
    flex: 0 0 auto;

    min-height: 48px;

    padding: 12px 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    border-radius: 8px;

    background: white;

    color: var(--about-primary);

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .vs-about-main-image,
    .vs-about-secondary-image {
        min-height: 350px;
    }


    .vs-why-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .vs-about-cta {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 767px) {

    .vs-about-main-image,
    .vs-about-secondary-image {
        min-height: 290px;

        border-radius: 14px;
    }


    .vs-mv-card {
        padding: 20px;
    }


    .vs-why-grid {
        grid-template-columns: 1fr;
    }


    .vs-about-cta {
        padding: 24px 20px;
    }


    .vs-about-cta h2 {
        font-size: 21px;
    }


    .vs-about-cta-btn {
        width: 100%;
    }

}


@media (max-width: 480px) {

    .vs-about-main-image,
    .vs-about-secondary-image {
        min-height: 230px;
    }


    .vs-about-feature {
        padding: 12px;
    }


    .vs-about-feature-icon {
        width: 40px;
        height: 40px;

        flex-basis: 40px;
    }


    .vs-management-person {
        padding: 10px;
    }

}

.rbt-team-tab-thumb button {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.rbt-team-tab-thumb button .rbt-team-thumbnail {
    transition: transform .25s ease, opacity .25s ease;
}

.rbt-team-tab-thumb button:hover .rbt-team-thumbnail {
    transform: scale(1.04);
}

.rbt-team-tab-thumb button:not(.active) .rbt-team-thumbnail {
    opacity: .65;
}

.rbt-team-tab-thumb button.active .rbt-team-thumbnail {
    opacity: 1;
}

/* =========================================================
   CONTACT PAGE
========================================================= */

.vs-contact-direct {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.vs-contact-direct-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 16px;

    border: 1px solid #e4e7ec;
    border-radius: 12px;

    background: #ffffff;

    text-align: left;
}

.vs-contact-direct-item > i {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #eef4ff;

    color: #1856d8;

    font-size: 18px;
}

.vs-contact-direct-item span {
    display: block;

    margin-bottom: 3px;

    color: #667085;

    font-size: 10px;
}

.vs-contact-direct-item a {
    display: block;

    color: #101828;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;
}

.vs-contact-direct-item a:hover {
    color: #1856d8;
}


/* OFFICE */

.vs-office-info {
    max-width: 800px;

    margin: auto;
}

.vs-office-info h3 {
    margin-bottom: 8px;

    font-size: 20px;
}

.vs-office-info p {
    margin: 0;

    color: #667085;

    font-size: 13px;
    line-height: 1.6;
}


/* MAP */

.vs-google-map {
    overflow: hidden;

    width: 100%;

    border-radius: 16px;

    box-shadow:
        0 10px 35px rgba(16,24,40,.08);
}

.vs-google-map iframe {
    display: block;

    width: 100%;

    min-height: 450px;
}


/* RESPONSIVE */

@media (max-width: 767px) {

    .vs-contact-direct {
        grid-template-columns: 1fr;
    }

    .vs-google-map iframe {
        min-height: 350px;
    }

}

@media (max-width: 480px) {

    .vs-google-map iframe {
        min-height: 300px;
    }

}

/* =========================================================
   TOP COLLECTIONS
========================================================= */

.vs-collection-card {
    display: block;
    height: 100%;
}

.vs-collection-card .collection-card-inner {
    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;
}

.vs-collection-card .thumbnail {
    width: 100%;
    height: 190px;

    overflow: hidden;
}

.vs-collection-card .thumbnail img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .35s ease;
}

.vs-collection-card:hover .thumbnail img {
    transform: scale(1.05);
}

.vs-collection-card .content {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 16px;
}

.vs-collection-card .title {
    margin: 6px 0 8px;

    font-size: 15px;
    line-height: 1.45;
}

.vs-collection-badge {
    display: inline-block;

    width: fit-content;

    padding: 4px 8px;

    border-radius: 6px;

    background: #eef4ff;
    color: #1856d8;

    font-size: 9px;
    font-weight: 700;
}

.vs-collection-subtitle {
    margin: 0 0 8px;

    color: #667085;

    font-size: 11px;
    line-height: 1.5;
}

.vs-collection-location {
    display: flex;
    align-items: center;

    gap: 5px;

    margin-bottom: 10px;

    color: #667085;

    font-size: 10px;
}

.vs-collection-location i {
    color: #1856d8;
}

.vs-collection-card .read-more-btn {
    margin-top: auto;
}

.vs-collection-empty {
    padding: 45px 20px;

    border: 1px solid #e4e7ec;

    border-radius: 14px;

    background: #ffffff;
}

.vs-collection-empty-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eef4ff;

    color: #1856d8;

    font-size: 24px;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .vs-collection-card .thumbnail {
        height: 175px;
    }

}

@media (max-width: 767px) {

    .vs-collection-card .thumbnail {
        height: 210px;
    }

}

@media (max-width: 575px) {

    .vs-collection-card .thumbnail {
        height: 240px;
    }

}