/* ================================================
   renting-solutions.css
   LeaseTime — Leasing & Renting Solutions Advisory
   Matches: landsselection.css color pattern exactly
   Brand: #FAB702 | #ffffff | #0a0a0a
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Inter:wght@300;400;500&display=swap');

/* ================================================
   KEYFRAMES
================================================ */
@keyframes rsFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes rsFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes rsTagFade {
    from { opacity: 0; letter-spacing: 0.30em; }
    to   { opacity: 1; letter-spacing: 0.18em; }
}
@keyframes rsGoldShimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
@keyframes rsImgReveal {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0% 0 0); }
}
@keyframes rsBadgePop {
    0%   { transform: scale(0.6); opacity: 0; }
    70%  { transform: scale(1.08); }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes rsPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .5; transform: scale(.8); }
}
@keyframes rsLineGrow {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

/* ================================================
   SCROLL-REVEAL  (same pattern as landsselection.css)
================================================ */
.rs-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.rs-reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.rs-reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.rs-reveal.rs-visible,
.rs-reveal-left.rs-visible,
.rs-reveal-right.rs-visible {
    opacity: 1;
    transform: none;
}

/* Scope items */
.rs-scope-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.3s, box-shadow 0.3s;
}
.rs-scope-item.rs-visible { opacity: 1; transform: none; }

/* Steps */
.rs-step-item {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.rs-step-item.rs-step-visible { opacity: 1; transform: none; }

/* ================================================
   HERO  — same as lsa-hero
================================================ */
.rs-hero {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: url('../images/services/rentbanner.jfif') center/cover no-repeat;
}
.rs-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(10,10,10,0.97) 45%, rgba(10,10,10,0.60) 100%);
    z-index: 0;
}
/* left gold bar */
.rs-hero::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0; width: 3px;
    background: linear-gradient(to bottom, transparent, var(--brand) 30%, #fffefa 70%, transparent);
    z-index: 2;
}
/* bottom gold line */
.rs-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--brand), transparent);
    transform-origin: left; z-index: 2;
    animation: rsLineGrow 1.2s 0.8s ease both;
}
.rs-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 150px 0 84px;
}
.rs-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    /*background: rgba(250, 183, 2, 0.09);*/
    border: 1px solid #F9B701;
    padding: 6px 16px 6px 12px;
    animation: rsFadeIn 0.6s ease both;
}
.rs-hero-eyebrow::before {
    content: '';
    display: block;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--brand); flex-shrink: 0;
    animation: rsPulse 2s 1s ease infinite;
}
.rs-hero-eyebrow span {
    font-family: var(--font-body);
    font-size: 11px; font-weight: 500;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--white);
    opacity: 0;
    animation: rsTagFade 0.8s 0.4s ease forwards;
}
.rs-hero h1 {
    font-family: var(--font-head);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800; color: var(--white);
    line-height: 1.05; letter-spacing: -0.02em;
    margin: 0 0 20px; max-width: 700px;
    animation: rsFadeUp 0.9s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
    
}
.rs-hero h1 span {
    font-style: normal;
    background: linear-gradient(90deg, #F9B701, #F9B701, #F9B701);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rsGoldShimmer 3s 1.5s linear infinite;
    -webkit-text-stroke: 1px #fff;
}
.rs-hero-desc {
    font-family: var(--font-body);
    font-size: 15px; font-weight: 300;
    color: rgba(255,255,255,0.50);
    max-width: 520px; line-height: 1.8; margin: 0;
    opacity: 0;
    animation: rsFadeUp 0.9s 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* ================================================
   BREADCRUMB  — same as lsa-breadcrumb
================================================ */
.rs-breadcrumb {
    background: #111;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 14px 0;
}
.rs-breadcrumb-inner {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-body); font-size: 12px;
    color: rgba(255,255,255,0.35); letter-spacing: 0.04em;
}
.rs-breadcrumb-inner a {
    color: rgba(255,255,255,0.35); text-decoration: none;
    transition: color 0.2s;
}
.rs-breadcrumb-inner a:hover { color: var(--brand); }
.rs-breadcrumb-inner .bsep   { color: var(--brand); font-size: 10px; }
.rs-breadcrumb-inner .bcurrent { color: rgba(255,255,255,0.65); }

/* ================================================
   SHARED SECTION HEADER  — same as lsa-sec-header
================================================ */
.rs-sec-header { margin-bottom: 56px; }
.rs-sec-header.center { text-align: center; }

.rs-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-body); font-size: 11px; font-weight: 500;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--brand); margin-bottom: 14px;
}
.rs-tag::before {
    content: ''; display: block;
    width: 24px; height: 1px; background: var(--brand);
}
.rs-sec-header.center .rs-tag { justify-content: center; }
.rs-sec-header.center .rs-tag::before { display: none; }
.rs-sec-header.center .rs-tag::after {
    content: ''; display: block;
    width: 24px; height: 1px; background: var(--brand);
}

.rs-sec-header h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
    color: var(--black); letter-spacing: -0.02em; line-height: 1.1;
    margin: 0 0 16px;
}
.rs-sec-header h2 em { font-style: normal; color: var(--brand); }
.rs-sec-header p {
    font-family: var(--font-body); font-size: 15px; font-weight: 300;
    color: var(--grey-text); line-height: 1.85;
    max-width: 620px; margin: 0;
}
.rs-sec-header.center p { margin: 0 auto; }

/* ================================================
   INTRO  — white bg, text LEFT, image RIGHT
   Matches: lsa-intro exactly
================================================ */
.rs-intro {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}
.rs-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 540px;
}
.rs-intro-text {
    background: var(--offwhite);
    padding: 80px 60px 80px 48px;
    display: flex; flex-direction: column; justify-content: center;
}
.rs-intro-text p {
    font-family: var(--font-body); font-size: 15px; font-weight: 300;
    color: #444; line-height: 1.95; margin: 0 0 18px;
}
.rs-intro-text p:last-child { margin: 0; }

.rs-intro-img {
    position: relative; overflow: hidden;
    clip-path: polygon(6% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.rs-intro-img.rs-visible img {
    animation: rsImgReveal 1.2s cubic-bezier(0.77,0,0.18,1) both;
}
.rs-intro-img img {
    width: 100%; height: 100%; min-height: 540px;
    object-fit: cover; display: block;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94),
                filter 0.6s ease;
}
.rs-intro-img:hover img {
    transform: scale(1.06);
    filter: brightness(0.85);
}
/* gold overlay on hover */
.rs-intro-img::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(250,183,2,0.25) 0%, rgba(250,183,2,0.05) 50%, transparent 100%);
    opacity: 0; transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 1; pointer-events: none;
}
.rs-intro-img:hover::before { opacity: 1; transform: none; }

/* badge */
.rs-intro-img-badge {
    position: absolute; bottom: 32px; left: 40px;
    background: var(--black); padding: 20px 26px; min-width: 190px;
    border-left: 3px solid var(--brand);
    opacity: 0; z-index: 2;
}
.rs-intro-img.rs-visible .rs-intro-img-badge {
    animation: rsBadgePop 0.7s 1s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
.rs-intro-img-badge .badge-num {
    font-family: var(--font-head); font-size: 40px; font-weight: 800;
    color: var(--brand); line-height: 1; display: block;
}
.rs-intro-img-badge .badge-label {
    font-family: var(--font-body); font-size: 11px; font-weight: 400;
    color: rgba(255,255,255,0.55); letter-spacing: 0.08em;
    text-transform: uppercase; margin-top: 5px; display: block;
}

/* ================================================
   SCOPE OF ADVISORY  — grey-bg + white cards
   Matches: lsa-scope exactly
================================================ */
.rs-scope {
    padding: 96px 0;
    background: var(--grey-bg);
}
.rs-scope-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
}
.rs-scope-item {
    padding: 36px 28px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
    position: relative; overflow: hidden;
}
/* gold sweep on hover */
.rs-scope-item::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; width: 0; height: 3px;
    background: var(--brand);
    transition: width 0.35s ease;
}
.rs-scope-item:hover {
    background: #fffdf5;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    z-index: 2;
}
.rs-scope-item:hover::after { width: 100%; }
.rs-scope-item:nth-child(4n) { border-right: none; }

.rs-scope-icon {
    width: 48px; height: 48px;
    border: 1.5px solid rgba(250,183,2,0.35);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 18px;
    transition: background 0.25s, border-color 0.25s,
                transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.rs-scope-item:hover .rs-scope-icon {
    background: var(--brand); border-color: var(--brand);
    transform: rotate(6deg);
}
.rs-scope-icon svg {
    width: 20px; height: 20px;
    stroke: var(--brand); fill: none;
    stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
    transition: stroke 0.25s;
}
.rs-scope-item:hover .rs-scope-icon svg { stroke: var(--black); }

.rs-scope-item h3 {
    font-family: var(--font-head);
    font-size: 15px; font-weight: 700;
    color: var(--black); margin: 0 0 10px; line-height: 1.3;
}
.rs-scope-item p {
    font-family: var(--font-body); font-size: 13px; font-weight: 300;
    color: var(--grey-text); line-height: 1.75; margin: 0;
}

/* ================================================
   OUR APPROACH  — black bg
   Matches: lsa-approach exactly
================================================ */
.rs-approach {
    background: var(--black);
    padding: 96px 0;
    position: relative; overflow: hidden;
}
.rs-approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.rs-approach-left .rs-tag { color: var(--brand); }
.rs-approach-left .rs-tag::before { background: var(--brand); }

.rs-approach-left h2 {
    font-family: var(--font-head);
    font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
    color: var(--white); letter-spacing: -0.02em; line-height: 1.1;
    margin: 0 0 28px;
}
.rs-approach-left h2 em { font-style: normal; color: var(--brand); }

.rs-approach-left p {
    font-family: var(--font-body); font-size: 15px; font-weight: 300;
    color: rgba(255,255,255,0.50); line-height: 1.9; margin: 0 0 18px;
}

/* Stats — same as lsa-approach-stats */
.rs-approach-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(255,255,255,0.08);
    margin-top: 40px;
}
.rs-stat {
    padding: 28px 24px;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}
.rs-stat:last-child { border-right: none; }
.rs-stat-num {
    font-family: var(--font-head);
    font-size: 36px; font-weight: 800;
    color: var(--brand); display: block;
    line-height: 1; margin-bottom: 6px;
}
.rs-stat-label {
    font-family: var(--font-body); font-size: 11px; font-weight: 400;
    color: white; letter-spacing: 0.08em; text-transform: uppercase;
}

/* Right panel — border + quote + steps */
.rs-approach-right {
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 60px; padding-top: 8px;
}
.rs-quote-block { margin-bottom: 44px; }
.rs-quote-block blockquote {
    font-family: var(--font-head);
    font-size: clamp(18px, 2.2vw, 26px); font-weight: 600;
    color: var(--white); line-height: 1.45; letter-spacing: -0.01em;
    margin: 0 0 14px;
    padding-left: 24px;
    border-left: 3px solid var(--brand);
    transition: border-left-width 0.3s ease, padding-left 0.3s ease;
}
.rs-quote-block blockquote:hover {
    border-left-width: 6px;
    padding-left: 27px;
}
.rs-quote-block cite {
    font-family: var(--font-body); font-size: 12px; font-weight: 400;
    color: rgba(255,255,255,0.35); letter-spacing: 0.1em;
    text-transform: uppercase; font-style: normal;
}

/* Steps inside approach */
.rs-steps { display: flex; flex-direction: column; gap: 0; }
.rs-step-item {
    display: flex; gap: 22px; align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rs-step-item:last-child { border-bottom: none; }
.rs-step-num {
    flex-shrink: 0; width: 48px; height: 48px;
    background: rgba(255,255,255,0.04);
    border: 2px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head); font-size: 16px; font-weight: 800;
    color: var(--white);
    transition: border-color 0.3s, background 0.3s, color 0.3s,
                transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s;
}
.rs-step-item:hover .rs-step-num {
    border-color: var(--brand); background: var(--brand); color: var(--black);
    transform: scale(1.08); box-shadow: 0 6px 18px rgba(250,183,2,0.3);
}
.rs-step-body h3 {
    font-family: var(--font-head); font-size: 15px; font-weight: 700;
    color: var(--white); margin: 6px 0 8px; line-height: 1.3;
}
.rs-step-body p {
    font-family: var(--font-body); font-size: 13px; font-weight: 300;
    color: rgba(255,255,255,0.45); line-height: 1.75; margin: 0;
}

/* ================================================
   CTA STRIP  — gold bg
   Matches: lsa-cta exactly
================================================ */
.rs-cta {
    background: var(--brand);
    padding: 72px 0;
}
.rs-cta-inner {
    display: flex; align-items: center;
    justify-content: space-between; gap: 40px;
}
.rs-cta-text h2 {
    font-family: var(--font-head);
    font-size: clamp(22px, 3vw, 36px); font-weight: 800;
    color: var(--white); letter-spacing: -0.02em;
    margin: 0 0 8px; line-height: 1.15;
}
.rs-cta-text p {
    font-family: var(--font-body); font-size: 14px; font-weight: 400;
    color: var(--white); margin: 0;
}
.rs-cta-btns {
    display: flex; gap: 14px; flex-shrink: 0;
}
.rs-btn-dark {
    display: inline-block; background: var(--black); color: var(--white);
    font-family: var(--font-body); font-size: 13px; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 16px 36px; text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.rs-btn-dark:hover {
    background: #1f1f1f; color: var(--white); text-decoration: none;
    transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.28);
}
.rs-btn-ghost {
    display: inline-block; background: transparent; color: var(--white);
    border: 1.5px solid var(--white);
    font-family: var(--font-body); font-size: 13px; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 15px 36px; text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}
.rs-btn-ghost:hover {
    background: var(--black); color: var(--white);
    text-decoration: none; transform: translateY(-2px);
}

/* ================================================
   RESPONSIVE
================================================ */
@media (max-width: 1100px) {
    .rs-scope-grid { grid-template-columns: repeat(2, 1fr); }
    .rs-scope-item:nth-child(4n) { border-right: 1px solid var(--border); }
    .rs-scope-item:nth-child(2n) { border-right: none; }
}
@media (max-width: 991px) {
    .rs-intro-grid   { grid-template-columns: 1fr; }
    .rs-intro-img    { clip-path: none; min-height: 320px; }
    .rs-approach-grid { grid-template-columns: 1fr; gap: 50px; }
    .rs-approach-right {
        border-left: none; padding-left: 0;
        border-top: 1px solid rgba(255,255,255,0.08);
        padding-top: 50px;
    }
    .rs-cta-inner { flex-direction: column; text-align: center; align-items: center; }
    .rs-cta-btns  { justify-content: center; }
}
@media (max-width: 767px) {
    .rs-hero { min-height: 340px; }
    .rs-intro, .rs-scope, .rs-approach, .rs-cta { padding: 64px 0; }
    .rs-scope-grid { grid-template-columns: 1fr; }
    .rs-scope-item  { border-right: none; }
    .rs-approach-stats { grid-template-columns: 1fr; }
    .rs-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .rs-stat:last-child { border-bottom: none; }
    .rs-intro-text { padding: 40px 24px; }
}
@media (prefers-reduced-motion: reduce) {
    .rs-reveal, .rs-reveal-left, .rs-reveal-right,
    .rs-scope-item, .rs-step-item {
        opacity: 1; transform: none; transition: none;
    }
    .rs-hero h1, .rs-hero-desc, .rs-hero-eyebrow,
    .rs-hero-eyebrow span, .rs-hero::after { animation: none; opacity: 1; }
    .rs-hero h1 em { animation: none; -webkit-text-fill-color: var(--brand); color: var(--brand); }
    .rs-intro-img.rs-visible img,
    .rs-intro-img.rs-visible .rs-intro-img-badge { animation: none; opacity: 1; clip-path: none; }
}
