/* Banner */
.vs-rental-banner {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 60px 0 105px;
    background-image: linear-gradient(90deg, rgba(7,27,52,.78) 0%, rgba(8,38,73,.58) 45%, rgba(8,38,73,.2) 100%), url("../images/inner-banner.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vs-banner-content {
    position: relative;
    z-index: 2;
    max-width: 790px;
}

.vs-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    padding: 7px 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 30px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
    backdrop-filter: blur(7px);
}

.vs-banner-content h1 {
    max-width: 760px;
    margin: 0 0 15px;
    color: #fff;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.vs-banner-content p {
    max-width: 730px;
    margin: 0 0 22px;
    color: #fff;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
}

.vs-banner-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 22px;
    background: #fff;
    color: #064b94;
    border-radius: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 9px 24px rgba(0,0,0,.18);
    transition: .3s ease;
}

.vs-banner-btn:hover {
    background: #0057b8;
    color: #fff;
    transform: translateY(-2px);
}

.vs-banner-btn i {
    font-size: 11px;
    transition: transform .3s ease;
}

.vs-banner-btn:hover i {
    transform: translateX(4px);
}

.vs-banner-features {
    position: absolute;
    left: 50%;
    bottom: 25px;
    z-index: 3;
    width: calc(100% - 30px);
    max-width: 1296px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    transform: translateX(-50%);
    overflow: hidden;
    background: rgba(6,26,49,.82);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(0,0,0,.16);
}

.vs-banner-feature {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,.14);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 600;
}

.vs-banner-feature:last-child {
    border-right: 0;
}

.vs-banner-feature-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
}

/* Common Section */
.vs-section {
    padding: 65px 0;
    background: #fff;
}

.vs-section-light {
    background: #f7f9fc;
}

.vs-section-head {
    max-width: 850px;
    margin: 0 auto 36px;
}

.vs-section-head-left {
    max-width: none;
    margin: 0 0 18px;
    text-align: left;
}

.vs-section-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 11px;
    padding: 7px 14px;
    background: #eaf3fb;
    color: #0057b8;
    border-radius: 30px;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.vs-section-label i {
    font-size: 11px;
}

.vs-section-title {
    margin: 0 0 11px;
    color: #173152;
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
}

.vs-section-text {
    max-width: 820px;
    margin: 0 auto;
    color: #687587;
    font-size: 14px;
    line-height: 1.75;
}

/* Common Button */
.vs-primary-btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 5px;
    padding: 10px 21px;
    background: linear-gradient(135deg,#003d82,#0057b8);
    color: #fff;
    border-radius: 9px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,87,184,.2);
    transition: .3s ease;
}

.vs-primary-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0,87,184,.28);
}

.vs-primary-btn i {
    font-size: 11px;
    transition: transform .3s ease;
}

.vs-primary-btn:hover i {
    transform: translateX(4px);
}

/* Rental Intro */
.vs-rental-content {
    padding-right: 18px;
}

.vs-rental-content > p {
    margin: 0 0 15px;
    color: #657386;
    font-size: 14px;
    line-height: 1.8;
}

.vs-rental-image-wrap {
    position: relative;
    padding: 16px 16px 40px 0;
}

.vs-rental-image-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 82%;
    height: 88%;
    background: #eaf3fb;
    border-radius: 20px;
}

.vs-rental-image {
    position: relative;
    z-index: 1;
    height: 500px;
    overflow: hidden;
    background: #eef2f6;
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(20,48,82,.14);
}

.vs-rental-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.vs-rental-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(10,40,78,.22),transparent);
    pointer-events: none;
}

.vs-rental-image-wrap:hover .vs-rental-image img {
    transform: scale(1.04);
}

.vs-rental-image-card {
    position: absolute;
    left: -20px;
    bottom: 0;
    z-index: 3;
    width: calc(100% - 40px);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e3e9f0;
    border-radius: 13px;
    box-shadow: 0 10px 26px rgba(22,49,82,.13);
}

.vs-rental-image-card-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#003d82,#0057b8);
    color: #fff;
    border-radius: 11px;
    font-size: 16px;
}

.vs-rental-image-card span {
    display: block;
    margin-bottom: 2px;
    color: #0057b8;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.vs-rental-image-card strong {
    display: block;
    color: #1d314b;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

/* Product Cards */
.scaffold-product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e3e9f0;
    border-radius: 16px;
    box-shadow: 0 9px 25px rgba(23,49,82,.07);
    transition: .3s ease;
}

.scaffold-product-card:hover {
    transform: translateY(-5px);
    border-color: #bfd4e8;
    box-shadow: 0 16px 34px rgba(0,87,184,.11);
}

.scaffold-product-image {
    height: 220px;
    overflow: hidden;
    background: #fff;
}

.scaffold-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transition: transform .4s ease;
}

.scaffold-product-card:hover .scaffold-product-image img {
    transform: scale(1.05);
}

.scaffold-product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.scaffold-product-content h3 {
    margin: 0 0 7px;
    color: #1b314e;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.scaffold-product-content p {
    flex: 1;
    margin: 0 0 17px;
    color: #697789;
    font-size: 13px;
    line-height: 1.65;
}

.scaffold-product-actions {
    display: flex;
    gap: 9px;
    margin-top: auto;
}

.scaffold-view-btn,
.scaffold-enquiry-btn {
    flex: 1;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: .25s ease;
}

.scaffold-view-btn {
    background: #f5f8fb;
    color: #27415f;
    border: 1px solid #d8e1e9;
}

.scaffold-view-btn:hover {
    background: #eaf3fb;
    color: #0057b8;
    border-color: #bdd3e7;
}

.scaffold-view-btn i {
    font-size: 10px;
    transition: transform .25s ease;
}

.scaffold-view-btn:hover i {
    transform: translateX(3px);
}

.scaffold-enquiry-btn {
    background: linear-gradient(135deg,#003d82,#0057b8);
    color: #fff;
    border: 1px solid transparent;
}

.scaffold-enquiry-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* Audience */
.vs-audience-card {
    height: 100%;
    padding: 18px;
    background: #fff;
    border: 1px solid #e3e9f0;
    border-radius: 15px;
    box-shadow: 0 9px 25px rgba(23,49,82,.06);
}

.vs-audience-item {
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px;
    border-bottom: 1px solid #edf0f4;
    color: #273a52;
    font-size: 14px;
    font-weight: 600;
    transition: .25s ease;
}

.vs-audience-item:last-child {
    border-bottom: 0;
}

.vs-audience-item:hover {
    padding-left: 14px;
    background: #f8fbff;
    color: #0057b8;
}

.vs-audience-icon {
    width: 37px;
    height: 37px;
    min-width: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0057b8;
    color: #fff;
    border-radius: 9px;
    font-size: 15px;
}

/* Benefits */
.vs-benefit-card {
    position: relative;
    height: 100%;
    padding: 24px 21px;
    background: #fff;
    border: 1px solid #e3e9f0;
    border-radius: 15px;
    box-shadow: 0 9px 25px rgba(20,48,82,.06);
    transition: .3s ease;
}

.vs-benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 21px;
    width: 40px;
    height: 3px;
    background: #0057b8;
    border-radius: 0 0 5px 5px;
}

.vs-benefit-card:hover {
    transform: translateY(-5px);
    border-color: #bdd4e8;
    box-shadow: 0 15px 32px rgba(0,87,184,.1);
}

.vs-benefit-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: #edf5fd;
    color: #0057b8;
    border-radius: 12px;
    font-size: 17px;
    transition: .3s ease;
}

.vs-benefit-card:hover .vs-benefit-icon {
    background: #0057b8;
    color: #fff;
}

.vs-benefit-card h3 {
    margin: 0 0 8px;
    color: #1d314b;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
}

.vs-benefit-card p {
    margin: 0;
    color: #6b7889;
    font-size: 13px;
    line-height: 1.7;
}

/* Rental Process */
.vs-process-wrap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.vs-process-wrap::before {
    content: "";
    position: absolute;
    top: 29px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: #d8e5f1;
}

.vs-process-step {
    position: relative;
}

.vs-process-top {
    position: relative;
    z-index: 2;
    height: 60px;
    display: flex;
    justify-content: center;
}

.vs-process-number {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #0057b8;
    border: 2px solid #0057b8;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 5px 14px rgba(0,87,184,.12);
    transition: .3s ease;
}

.vs-process-card {
    position: relative;
    min-height: 220px;
    margin-top: 13px;
    padding: 23px 19px;
    background: #fff;
    border: 1px solid #e2e8ef;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 9px 26px rgba(23,49,82,.06);
    transition: .3s ease;
}

.vs-process-card::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    height: 14px;
    transform: translateX(-50%) rotate(45deg);
    background: #fff;
    border-left: 1px solid #e2e8ef;
    border-top: 1px solid #e2e8ef;
}

.vs-process-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0057b8;
    color: #fff;
    border-radius: 11px;
    font-size: 18px;
}

.vs-process-card h3 {
    margin: 0 0 8px;
    color: #20334c;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
}

.vs-process-card p {
    margin: 0;
    color: #6c7888;
    font-size: 13px;
    line-height: 1.65;
}

.vs-process-step:hover .vs-process-number {
    background: #0057b8;
    color: #fff;
}

.vs-process-step:hover .vs-process-card {
    transform: translateY(-4px);
    border-color: #bdd5e9;
    box-shadow: 0 15px 32px rgba(0,87,184,.09);
}

/* Service Areas */
.vs-area-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
}

.vs-area-item {
    width: calc(20% - 10px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #e4e9ef;
    border-radius: 10px;
    color: #1e1d1d;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(23,49,82,.05);
    transition: .25s ease;
}

.vs-area-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0057b8;
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
}

.vs-area-item:hover {
    transform: translateY(-2px);
    color: #0057b8;
    border-color: #bcd5ec;
    box-shadow: 0 9px 22px rgba(0,87,184,.09);
}

/* CTA */
.vs-cta-section {
    padding: 45px 0;
}

.vs-cta-box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 34px 38px;
    background: linear-gradient(135deg,#0d2342,#173f74);
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(13,35,66,.16);
}

.vs-cta-box::before {
    content: "";
    position: absolute;
    top: -100px;
    right: 150px;
    width: 190px;
    height: 190px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
}

.vs-cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.vs-cta-content h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
}

.vs-cta-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255,255,255,.9);
    font-size: 14px;
    line-height: 1.7;
}

.vs-cta-action {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.vs-cta-btn {
    min-width: 160px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 21px;
    background: #fff;
    color: #0d3c71;
    border-radius: 9px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .3s ease;
}

.vs-cta-btn:hover {
    background: #0057b8;
    color: #fff;
    transform: translateY(-2px);
}

.vs-cta-btn i {
    font-size: 11px;
}

/* FAQ */
.vs-faq-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.vs-faq-item {
    overflow: hidden;
    background: #fff;
    border: 1px solid #e3e9f0;
    border-radius: 12px;
    box-shadow: 0 5px 16px rgba(23,49,82,.05);
    transition: .25s ease;
}

.vs-faq-item:hover {
    border-color: #cbd9e7;
    box-shadow: 0 8px 22px rgba(23,49,82,.08);
}

.vs-faq-button {
    position: relative;
    width: 100%;
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 42px 11px 13px;
    background: #fff;
    color: #26384d;
    border: 0;
    box-shadow: none !important;
    text-align: left;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

.vs-faq-button:not(.collapsed) {
    background: #f5f9fd;
    color: #0057b8;
}

.vs-faq-number {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edf4fb;
    color: #0057b8;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
}

.vs-faq-button:not(.collapsed) .vs-faq-number {
    background: #0057b8;
    color: #fff;
}

.vs-faq-question {
    flex: 1;
}

.vs-faq-button::after {
    display: none !important;
}

.vs-faq-button::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #0057b8;
    border-bottom: 2px solid #0057b8;
    transform: translateY(-65%) rotate(45deg);
    transition: transform .25s ease;
}

.vs-faq-button:not(.collapsed)::before {
    transform: translateY(-25%) rotate(225deg);
}

.vs-faq-answer {
    background: #fff;
}

.vs-faq-answer p {
    margin: 0;
    padding: 12px 14px;
    background: #f8fafc;
    color: #3e3f41;
    font-size: 14px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1199px) {
    .vs-rental-image {
        height: 460px;
    }

    .vs-area-item {
        width: calc(25% - 9px);
    }
}

@media (max-width: 991px) {
    .vs-rental-banner {
        min-height: 520px;
        padding: 55px 0 95px;
    }

    .vs-banner-content h1 {
        font-size: 36px;
    }

    .vs-banner-feature {
        min-height: 58px;
        padding: 8px;
        font-size: 11px;
    }

    .vs-section {
        padding: 55px 0;
    }

    .vs-section-head {
        margin-bottom: 30px;
    }

    .vs-section-title {
        font-size: 30px;
    }

    .vs-rental-content {
        padding-right: 0;
    }

    .vs-rental-image-wrap {
        max-width: 650px;
        margin: 10px auto 0;
        padding-left: 20px;
    }

    .vs-rental-image {
        height: 420px;
    }

    .vs-rental-image-card {
        left: 0;
    }

    .vs-process-wrap {
        grid-template-columns: repeat(2,1fr);
    }

    .vs-process-wrap::before {
        display: none;
    }

    .vs-area-item {
        width: calc(33.333% - 8px);
    }
}

@media (max-width: 767px) {
    .vs-rental-banner {
        min-height: 500px;
        padding: 45px 0 90px;
    }

    .vs-banner-tag {
        margin-bottom: 10px;
        font-size: 9px;
    }

    .vs-banner-content h1 {
        margin-bottom: 11px;
        font-size: 30px;
    }

    .vs-banner-content p {
        margin-bottom: 18px;
        font-size: 13px;
        line-height: 1.6;
    }

    .vs-banner-features {
        bottom: 15px;
        width: calc(100% - 24px);
    }

    .vs-banner-feature {
        min-height: 55px;
        gap: 5px;
        padding: 6px 4px;
        text-align: center;
        font-size: 9px;
    }

    .vs-banner-feature-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 10px;
    }

    .vs-section {
        padding: 42px 0;
    }

    .vs-section-head {
        margin-bottom: 26px;
    }

    .vs-section-label {
        margin-bottom: 9px;
        padding: 6px 12px;
        font-size: 10px;
    }

    .vs-section-title {
        margin-bottom: 9px;
        font-size: 25px;
    }

    .vs-section-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .vs-rental-content > p {
        font-size: 13px;
        line-height: 1.7;
    }

    .vs-primary-btn {
        width: 100%;
    }

    .vs-rental-image-wrap {
        padding: 10px 10px 50px 0;
    }

    .vs-rental-image {
        height: 340px;
        border-radius: 15px;
    }

    .vs-rental-image-card {
        left: 10px;
        width: calc(100% - 20px);
    }

    .scaffold-product-content {
        padding: 18px;
    }

    .scaffold-product-content h3 {
        font-size: 16px;
    }

    .vs-area-grid {
        gap: 9px;
    }

    .vs-area-item {
        width: calc(50% - 5px);
        font-size: 12px;
    }

    .vs-cta-section {
        padding: 35px 0;
    }

    .vs-cta-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 26px 20px;
    }

    .vs-cta-content h3 {
        font-size: 22px;
    }

    .vs-cta-action,
    .vs-cta-btn {
        width: 100%;
    }

    .vs-faq-button {
        min-height: 58px;
        font-size: 13px;
    }

    .vs-faq-answer p {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .vs-process-wrap {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .vs-process-step {
        display: flex;
    }

    .vs-process-top {
        width: 54px;
        height: auto;
        min-width: 54px;
        padding-top: 10px;
    }

    .vs-process-number {
        width: 43px;
        height: 43px;
        font-size: 12px;
    }

    .vs-process-card {
        flex: 1;
        min-height: auto;
        margin: 0 0 0 8px;
        padding: 16px;
        text-align: left;
    }

    .vs-process-card::before {
        top: 23px;
        left: -7px;
        transform: rotate(-45deg);
    }

    .vs-process-icon {
        width: 40px;
        height: 40px;
        margin: 0 0 11px;
        font-size: 15px;
    }

    .vs-process-card h3 {
        font-size: 15px;
    }

    .vs-process-card p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .vs-banner-feature {
        flex-direction: column;
        line-height: 1.2;
    }

    .vs-rental-image {
        height: 285px;
    }

    .vs-area-item {
        width: 100%;
    }

    .scaffold-product-actions {
        flex-direction: column;
    }

    .scaffold-view-btn,
    .scaffold-enquiry-btn {
        width: 100%;
        flex: none;
    }
}