/* ================================================
   RS-SECTIONS.CSS
   1. Awards & Recognitions Grid
   2. Services Section (Defining Standards) V3
   3. Why Choose Reliant Surveyors V2 (Improved)
   ================================================ */


/* ------------------------------------------------
   1. AWARDS & RECOGNITIONS GRID
   ------------------------------------------------ */
.rs-awards-grid {
    padding: 60px 0;
    background: #f8fafc;
}

.rs-awards-grid-inner {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 24px;
}

.rs-awards-grid-header {
    text-align: center;
    margin-bottom: 40px;
}

.rs-awards-grid-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #0a5391;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    background: rgba(10, 83, 145, .06);
    padding: 6px 18px;
    border-radius: 30px;
}

/* .rs-awards-grid-title {
    font-size: 34px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.25;
} */

/* Grid */
.rs-awards-grid-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}

.rs-award-cell {
    background: #ffffff;
    border: 1px solid #e8edf2;
    border-radius: 16px;
    padding: 28px 16px 22px;
    text-align: center;
    transition: all .4s cubic-bezier(.25, .46, .45, .94);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.rs-award-cell::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0a5391, #1e88e5);
    border-radius: 3px 3px 0 0;
    transition: transform .35s ease;
}

.rs-award-cell:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(10, 83, 145, .1);
    border-color: rgba(10, 83, 145, .2);
}

.rs-award-cell:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.rs-award-cell-img {
    width: 150px;
    height: 90px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs-award-cell-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
}

.rs-award-cell-img svg {
    width: 48px;
    height: 48px;
}

.rs-award-cell:hover .rs-award-cell-img img,
.rs-award-cell:hover .rs-award-cell-img svg {
    transform: scale(1.08);
}

.rs-award-cell-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.rs-award-cell-info strong {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.rs-award-cell-info span {
    font-size: 10px;
    color: #64748b;
    line-height: 1.4;
    border-radius: 50px;
    display: inline-block;
    margin-top: 7px;
    width: 100%;
}

/* span.badge.bg-primary.text-white {
    background: #0a5391 !important;
} */

/* CTA */
.rs-awards-grid-cta {
    text-align: center;
    margin-top: 32px;
}

.rs-awards-grid-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 28px;
    border: 1.5px solid #0a5391;
    border-radius: 50px;
    color: #0a5391;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    background: transparent;
}

.rs-awards-grid-btn:hover {
    background: #0a5391;
    color: #fff;
}

.rs-awards-grid-btn svg {
    transition: transform .3s ease;
}

.rs-awards-grid-btn:hover svg {
    transform: translateX(3px);
}

/* Awards Grid Responsive */
@media (max-width: 991px) {
    .rs-awards-grid-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .rs-awards-grid-title {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .rs-awards-grid {
        padding: 40px 0;
    }

    .rs-awards-grid-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .rs-awards-grid-title {
        font-size: 22px;
    }

    .rs-award-cell {
        padding: 20px 12px 16px;
    }

    .rs-award-cell-img {
        width: 60px;
        height: 70px;
    }

    .rs-award-cell-info strong {
        font-size: 13px;
    }
}


/* ------------------------------------------------
   2. SERVICES SECTION V3 - DEFINING STANDARDS
   ------------------------------------------------ */
.rs-svc-v3 {
    padding: 80px 0 60px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.rs-svc-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a5391, #1e88e5, #3b9eff, #1e88e5, #0a5391);
}

.rs-svc-v3-inner {
    padding: 0 60px;
}

.rs-svc-v3-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.rs-svc-v3-left {
    flex: 1;
    min-width: 300px;
}

.rs-svc-v3-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #0a5391;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    background: rgba(10, 83, 145, .05);
    padding: 6px 16px;
    border-radius: 8px;
}

.rs-svc-v3-tag svg {
    stroke: #0a5391;
}

/* .rs-svc-v3-title {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.5px;
} */

.rs-svc-v3-title span {
    background: linear-gradient(135deg, #0a5391, #1e88e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rs-svc-v3-right {
    display: flex;
    align-items: flex-end;
    gap: 28px;
    max-width: 480px;
    flex-shrink: 0;
}

.rs-svc-v3-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Nav Buttons with Counter */
.rs-svc-v3-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.rs-svc-v3-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #0a5391;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s cubic-bezier(.25, .46, .45, .94);
}

.rs-svc-v3-btn:hover {
    background: #0a5391;
    color: #fff;
    border-color: #0a5391;
    box-shadow: 0 4px 14px rgba(10, 83, 145, .25);
}

.rs-svc-v3-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.rs-svc-v3-counter {
    font-size: 14px;
    font-weight: 600;
    color: #94a3b8;
    white-space: nowrap;
    min-width: 40px;
    text-align: center;
}

.rs-svc-v3-counter .rs-svc-v3-current {
    color: #0a5391;
    font-size: 18px;
    font-weight: 700;
}

/* Slider area */
.rs-svc-v3-slider {
    padding: 0 60px 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .rs-svc-v3 {
        padding: 50px 0 40px;
    }

    .rs-svc-v3-inner {
        padding: 0 24px;
    }

    .rs-svc-v3-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .rs-svc-v3-title {
        font-size: 30px;
    }

    .rs-svc-v3-right {
        max-width: 100%;
        gap: 16px;
    }

    .rs-svc-v3-slider {
        padding: 0 24px 10px;
    }
}

@media (max-width: 575px) {
    .rs-svc-v3-inner {
        padding: 0 16px;
    }

    .rs-svc-v3-title {
        font-size: 24px;
    }

    .rs-svc-v3-desc {
        font-size: 14px;
    }

    .rs-svc-v3-slider {
        padding: 0 16px 10px;
    }

    .rs-svc-v3-btn {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }
}


/* ------------------------------------------------
   3. WHY CHOOSE US — SPLIT LAYOUT (FRESH)
   ------------------------------------------------ */
.rs-wcu {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 600px;
}

.rs-wcu-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.rs-wcu-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10, 30, 60, .92) 0%,
        rgba(10, 83, 145, .11) 100%);
    z-index: 1;
}

/* Split layout */
.rs-wcu-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 600px;
}

/* ---- Left panel ---- */
.rs-wcu-left {
    width: 38%;
    flex-shrink: 0;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rs-wcu-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: #e21d37;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    width: fit-content;
}

.rs-wcu-heading {
    font-size: 42px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 18px;
    letter-spacing: -0.3px;
}

.rs-wcu-text {
    font-size: 15px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    margin: 0 0 40px;
    max-width: 360px;
}

/* Controls — arrows + counter */
.rs-wcu-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rs-wcu-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .25);
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s ease;
}

.rs-wcu-arrow:hover {
    background: #e21d37;
    border-color: #e21d37;
    box-shadow: 0 4px 20px rgba(226, 29, 55, .4);
    transform: scale(1.08);
}

.rs-wcu-arrow svg {
    width: 20px;
    height: 20px;
}

.rs-wcu-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: 'Inter', sans-serif;
}

.rs-wcu-cur {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.rs-wcu-sep {
    font-size: 16px;
    color: rgba(255, 255, 255, .3);
    margin: 0 2px;
}

.rs-wcu-tot {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, .4);
}

/* ---- Right panel — slider ---- */
.rs-wcu-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 60px 60px 0;
    overflow: hidden;
}

.rs-wcu-swiper {
    width: 100%;
    overflow: visible;
}

.rs-wcu-swiper .swiper-wrapper {
    align-items: stretch;
}

.rs-wcu-swiper .swiper-slide {
    height: auto;
    display: flex;
}

/* ---- Card ---- */
.rs-wcu-card {
    width: 100%;
    padding: 30px 28px 28px;
    border-radius: 14px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    transition: all .4s cubic-bezier(.25, .46, .45, .94);
    will-change: transform, box-shadow;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    border-bottom: 3px solid transparent;
}

.rs-wcu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
    border-bottom-color: #e21d37;
}

/* Card top row — icon + number */
.rs-wcu-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.rs-wcu-icon {
    width: 48px;
    height: 48px;
    background: #fef2f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .35s ease;
}

.rs-wcu-icon svg {
    width: 22px;
    height: 22px;
    stroke: #e21d37;
    stroke-width: 1.5;
    fill: none;
    transition: all .35s ease;
}

.rs-wcu-card:hover .rs-wcu-icon {
    background: #e21d37;
    transform: scale(1.06);
    box-shadow: 0 4px 16px rgba(226, 29, 55, .25);
}

.rs-wcu-card:hover .rs-wcu-icon svg {
    stroke: #fff;
}

.rs-wcu-num {
    font-size: 38px;
    font-weight: 700;
    color: rgba(10, 83, 145, .05);
    line-height: 1;
    font-family: 'Inter', sans-serif;
    transition: color .4s ease;
}

.rs-wcu-card:hover .rs-wcu-num {
    color: rgba(226, 29, 55, .08);
}

/* Card text */
.rs-wcu-card-title {
    font-size: 20px;
    font-weight: 500;
    color: #1a1a2e;
    margin: 0 0 6px;
    line-height: 1.4;
}

.rs-wcu-card-sub {
    font-size: 18px;
    font-weight: 400;
    color: #e21d37;
    margin: 0 0 12px;
    line-height: 1.5;
    letter-spacing: .2px;
}

.rs-wcu-card-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.75;
    margin: 0;
    flex-grow: 1;
}

.rs-wcu-card:hover .rs-wcu-card-desc {
    color: #475569;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .rs-wcu-wrap {
        flex-direction: column;
        min-height: auto;
    }

    .rs-wcu-left {
        width: 100%;
        padding: 60px 24px 30px;
    }

    .rs-wcu-heading {
        font-size: 32px;
    }

    .rs-wcu-text {
        margin-bottom: 28px;
    }

    .rs-wcu-right {
        padding: 0 24px 60px;
    }
}

@media (max-width: 575px) {
    .rs-wcu-left {
        padding: 40px 16px 24px;
    }

    .rs-wcu-heading {
        font-size: 26px;
    }

    .rs-wcu-right {
        padding: 0 16px 40px;
    }

    .rs-wcu-arrow {
        width: 42px;
        height: 42px;
    }

    .rs-wcu-card {
        padding: 24px 20px 22px;
    }

    .rs-wcu-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .rs-wcu-icon svg {
        width: 20px;
        height: 20px;
    }
}


/* ------------------------------------------------
   4. PREMIUM SVG ICONS & FEATURED CARD (Services)
   ------------------------------------------------ */
/* Premium SVG Icons for Service Cards */
.services-card .rs-svg-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.services-card:hover .rs-svg-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 6px rgba(10, 83, 145, 0.25));
}

/* Featured Card 0 - Property Valuation */
.rs-featured-card {
    position: relative;
    border: 2px solid #0a5391 !important;
    background: linear-gradient(165deg, #ffffff 0%, #f0f7ff 100%) !important;
    box-shadow: 0 8px 32px rgba(10, 83, 145, 0.12) !important;
}

.rs-featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a5391 0%, #1565c0 50%, #0a5391 100%);
    border-radius: 12px 12px 0 0;
    z-index: 1;
}

.rs-featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #0a5391 0%, #1565c0 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(10, 83, 145, 0.3);
    text-transform: uppercase;
}

.rs-featured-card .rs-service-icon .rs-svg-icon {
    width: 54px;
    height: 54px;
}

.rs-featured-card .services-card-bottom {
    background-color: #dbeafe !important;
}

.rs-featured-card:hover {
    box-shadow: 0 14px 48px rgba(10, 83, 145, 0.18) !important;
    border-color: #1565c0 !important;
}

.rs-featured-card:hover .services-card-bottom {
    background-color: #bfdbfe !important;
}

.rs-featured-card .service-details-btn {
    color: #0a5391;
    font-weight: 600;
}

.rs-featured-card .service-details-btn:hover {
    color: #fff !important;
}

@media (max-width: 768px) {
    .services-card .rs-svg-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 10px;
    }

    .rs-featured-card .rs-service-icon .rs-svg-icon {
        width: 40px;
        height: 40px;
    }

    .rs-featured-badge {
        font-size: 10px;
        padding: 3px 10px;
        top: 10px;
        right: 10px;
    }
}


/* ------------------------------------------------
   5. MARKET REPORT SECTION
   ------------------------------------------------ */
.rs-mr-section {
    padding: 80px 0 80px;
    background: #f8f9fa;
    overflow: hidden;
}

.rs-mr-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.rs-mr-header-left {
    max-width: 520px;
}

.rs-mr-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #0a5391;
    background: rgba(10, 83, 145, .08);
    padding: 6px 18px;
    border-radius: 30px;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.rs-mr-heading {
    font-size: 34px;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.25;
    margin: 0;
}

.rs-mr-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rs-mr-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: #0a5391;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all .3s cubic-bezier(.25, .46, .45, .94);
    white-space: nowrap;
}

.rs-mr-btn:hover {
    background: #083d6b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 83, 145, .3);
}

.rs-mr-nav {
    display: flex;
    gap: 10px;
}

.rs-mr-prev,
.rs-mr-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #0a5391;
    background: transparent;
    color: #0a5391;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .3s cubic-bezier(.25, .46, .45, .94);
}

.rs-mr-prev:hover,
.rs-mr-next:hover {
    background: #0a5391;
    color: #fff;
    transform: scale(1.08);
}

.rs-mr-prev svg,
.rs-mr-next svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Swiper */
.rs-mr-swiper {
    padding: 0 60px;
    overflow: visible;
}

.rs-mr-swiper .swiper-slide {
    height: auto;
}

/* Card */
.rs-mr-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    transition: all .4s cubic-bezier(.25, .46, .45, .94);
    will-change: transform, box-shadow;
    height: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.rs-mr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
}

/* Image — fixed height, uniform */
.rs-mr-card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.rs-mr-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.rs-mr-card:hover .rs-mr-card-img-wrap img {
    transform: scale(1.06);
}

/* Body */
.rs-mr-card-body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.rs-mr-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.rs-mr-meta span {
    font-size: 12px;
    color: #0a5391;
    font-weight: 600;
    background: rgba(10, 83, 145, .06);
    padding: 3px 10px;
    border-radius: 20px;
}

.rs-mr-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.45;
    margin: 0;
    transition: color .3s ease;
}

.rs-mr-card:hover .rs-mr-card-title {
    color: #0a5391;
}

@media (max-width: 991px) {
    .rs-mr-section {
        padding: 50px 0;
    }

    .rs-mr-header {
        padding: 0 24px;
        margin-bottom: 28px;
    }

    .rs-mr-heading {
        font-size: 26px;
    }

    .rs-mr-swiper {
        padding: 0 24px;
    }

    .rs-mr-card-img-wrap {
        height: 200px;
    }
}

@media (max-width: 575px) {
    .rs-mr-header {
        padding: 0 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .rs-mr-swiper {
        padding: 0 16px;
    }

    .rs-mr-heading {
        font-size: 22px;
    }

    .rs-mr-card-img-wrap {
        height: 180px;
    }
}