/* ============================================================
   services-pricing.css
   Services & Pricing Page — Lifeline Rentals
   Uses the site's :root CSS variables defined in master stylesheet
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.sp-hero-section {
    position: relative;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--p90) var(--p30);
    overflow: hidden;
    background-image: var(--sp-hero-image);
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.sp-hero-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 170px;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(255,255,255,0), var(--white-color));
    pointer-events: none;
}

.sp-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(14, 24, 34, 0.76), rgba(14, 24, 34, 0.50)),
        linear-gradient(to bottom, rgba(14, 24, 34, 0.46), rgba(14, 24, 34, 0.74));
}

.sp-hero-content {
    width: min(100%, 1040px);
    margin: 0 auto;
    text-align: center;
    color: var(--white-color);
    position: relative;
    z-index: 2;
}

.sp-hero-eyebrow {
    display: block;
    font-family: var(--secondary-font);
    font-size: var(--f13);
    font-weight: 700;
    letter-spacing: 6px;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--btn-color);
    margin-bottom: var(--m22);
}

.sp-hero-title {
    font-family: var(--heading-font);
    font-size: clamp(54px, 5vw, 112px);
    font-weight: 700;
    line-height: 0.95;
    color: var(--white-color);
    margin: 0 0 var(--m26);
}

.sp-hero-title span {
    color: var(--btn-color);
}

.sp-hero-subtitle {
    font-family: var(--secondary-font);
    font-size: clamp(17px, 2vw, 22px);
    color: rgba(255,255,255,0.88);
    line-height: 1.6;
    margin: 0 auto;
    max-width: 780px;
}

.sp-hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--p16);
    flex-wrap: wrap;
    margin-top: var(--m40);
}

.sp-hero-btn {
    min-width: 264px;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--p10);
    padding: var(--p16) var(--p30);
    border-radius: 2px;
    font-family: var(--secondary-font);
    font-size: var(--f13);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.sp-hero-btn-primary {
    background: var(--btn-color);
    border: 2px solid var(--btn-color);
    color: var(--white-color);
}

.sp-hero-btn-primary:hover {
    background: var(--btn-hover);
    border-color: var(--btn-hover);
    color: var(--white-color);
    transform: translateY(-2px);
}

.sp-hero-btn-outline {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.56);
    color: var(--white-color);
}

.sp-hero-btn-outline:hover {
    background: var(--white-color);
    border-color: var(--white-color);
    color: var(--territiary-color);
    transform: translateY(-2px);
}

.sp-hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 3;
    width: 28px;
    height: 44px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 7px;
    border: 2px solid rgba(255,255,255,0.62);
    border-radius: 20px;
}

.sp-hero-scroll span {
    width: 5px;
    height: 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.86);
    animation: spHeroScroll 1.55s ease-in-out infinite;
}

@keyframes spHeroScroll {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(13px);
        opacity: 0.28;
    }
}

.sp-rate-marquee {
    overflow: hidden;
    background: var(--territiary-color);
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 10px 0;
    position: relative;
}

.sp-rate-marquee::before,
.sp-rate-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}

.sp-rate-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--territiary-color), rgba(255,255,255,0));
}

.sp-rate-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--territiary-color), rgba(255,255,255,0));
}

.sp-rate-marquee-track {
    display: flex;
    width: max-content;
    animation: spRateMarquee 30s linear infinite;
}

.sp-rate-marquee-group {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-right: 28px;
    white-space: nowrap;
}

.sp-rate-marquee-group span {
    display: inline-flex;
    align-items: center;
    font-family: var(--secondary-font);
    font-size: var(--f15);
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white-color);
    line-height: 1.2;
    padding: 11px 24px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

@keyframes spRateMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ---- Shared Utilities ---- */
.sp-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 var(--p30);
}

.sp-label {
    display: inline-block;
    font-family: var(--secondary-font);
    font-size: var(--f11);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: var(--m10);
}

.sp-label-center {
    display: block;
    text-align: center;
}

.sp-label-light {
    color: var(--btn-color);
}

.sp-section-heading {
    font-family: var(--heading-font);
    font-size: var(--f38);
    color: var(--white-color);
    margin: var(--m8) 0 var(--m30);
    line-height: 1.25;
}

.sp-text-center {
    text-align: center;
}

.sp-text-light {
    color:var(--territiary-color) !important;
}

.sp-btn {
    display: inline-block;
    padding: var(--p14) var(--p35);
    font-family: var(--secondary-font);
    font-size: var(--f13);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.sp-btn-gold {
    background: var(--btn-color);
    color: var(--white-color);
    border: 2px solid var(--btn-color);
}

.sp-btn-gold:hover {
    background: var(--btn-hover);
    border-color: var(--btn-hover);
    color: var(--white-color);
}

.sp-btn-outline {
    background: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.sp-btn-outline:hover {
    background: var(--white-color);
    color: var(--territiary-color);
}

/* ============================================================
   SECTION 1 — Short-Term Vacation Rental Management
   ============================================================ */
.sp-intro-section {
    padding: var(--p70) 0;
    background: var(--white-color);
}

.sp-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--p60);
    align-items: center;
}

.sp-intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.sp-intro-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.sp-intro-content .sp-label {
    margin-bottom: var(--m12);
}

.sp-intro-heading {
    font-family: var(--heading-font);
    font-size: var(--f36);
    color: var(--territiary-color);
    line-height: 1.25;
    margin: 0 0 var(--m20);
}

.sp-intro-text {
    font-family: var(--secondary-font);
    font-size: var(--f15);
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--m16);
}

.sp-intro-stats {
    display: flex;
    gap: var(--p30);
    margin-top: var(--m25);
    padding-top: var(--p20);
    border-top: 1px solid var(--gray-200);
}

.sp-stat {
    display: flex;
    align-items: center;
    gap: var(--p8);
    font-family: var(--secondary-font);
    font-size: var(--f13);
    color: var(--gray-600);
}

.sp-stat i {
    font-size: var(--f20);
    color: var(--secondary-color);
}

/* ============================================================
   SECTION 2 — Full-Service Hospitality Management
   ============================================================ */
.sp-services-section {
    padding: var(--p80) 0;
    background: var(--territiary-color);
}

.sp-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--p24);
    margin-top: var(--m40);
}

.sp-service-card {
    background: var(--white-color);
    padding: var(--p28) var(--p24);
    border: 0.5px solid var(--secondary-color);
    border-radius: 4px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sp-service-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
    transform: translateY(-4px);
}

.sp-service-icon {
    margin-bottom: var(--m14);
}

.sp-service-icon i {
    font-size: var(--f30);
    color: var(--secondary-color);
}

.sp-service-card h4 {
    font-family: var(--secondary-font);
    font-size: var(--f15);
    font-weight: 700;
    color: var(--territiary-color);
    margin: 0 0 var(--m10);
    line-height: 1.35;
}

.sp-service-card p {
    font-family: var(--secondary-font);
    font-size: var(--f13);
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.sp-services-tagline {
    font-family: var(--secondary-font);
    font-size: var(--f15);
    color: var(--gray-600);
    text-align: center;
    max-width: 820px;
    margin: var(--m50) auto 0;
    line-height: 1.8;
    font-style: italic;
    padding: var(--p25) var(--p40);
    border-left: 4px solid var(--secondary-color);
    background: var(--white-color);
    text-align: left;
}

/* ============================================================
   SECTION 3 — Investment in Performance
   ============================================================ */
.sp-investment-section {
    padding: var(--p80) 0;
    /* background: var(--territiary-color); */
    position: relative;
    overflow: hidden;
}

.sp-investment-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://www.lifelinerentals.com/wp-content/uploads/2024/10/lifeline-rentals-vacation-home-interior.jpg') center/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}

.sp-investment-box {
    background: var(--territiary-color);
    border-top: 4px solid rgb(217 168 113);
    border-radius: 6px;
    padding: var(--p60) var(--p70);
    text-align: center;
    max-width: 680px;
    margin: var(--m40) auto var(--m60);
    position: relative;
}

.sp-invest-sublabel {
    font-family: var(--secondary-font);
    font-size: var(--f11);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--btn-color);
    display: block;
    margin-bottom: var(--m15);
}

.sp-invest-number {
    font-family: var(--heading-font);
    font-size: 110px;
    line-height: 1;
    color: var(--white-color);
    margin-bottom: var(--m10);
}

.sp-invest-number span {
    font-size: var(--f60);
    color: var(--btn-color);
    vertical-align: top;
    margin-top: var(--m20);
    display: inline-block;
}

.sp-invest-desc {
    font-family: var(--secondary-font);
    font-size: var(--f15);
    color: var(--white-color);
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto var(--m30);
}

.sp-lower-fees-section {
    padding-bottom: var(--p80);
    padding-top: 0px;
    background: var(--white-color);
}

.sp-lower-fees-section .sp-lower-fees-heading {
    font-family: var(--heading-font);
    font-size: var(--f38);
    color: var(--territiary-color);
    margin: 0 0 var(--m16);
    line-height: 1.2;
}

.sp-lower-fees-section .sp-lower-fees-sub {
    font-family: var(--secondary-font);
    font-size: var(--f16);
    color: var(--gray-600);
    max-width: 680px;
    margin: 0 auto var(--m45);
    line-height: 1.65;
}

.sp-lower-fees-section .sp-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--p22);
    max-width: 920px;
    margin: 0 auto var(--m45);
}

.sp-lower-fees-section .sp-why-item {
    display: flex;
    align-items: center;
    gap: var(--p14);
    min-height: 74px;
    padding: var(--p18);
    background: var(--lt-bg-color);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    font-family: var(--secondary-font);
    font-size: var(--f15);
    font-weight: 600;
    color: var(--territiary-color);
    line-height: 1.35;
}

.sp-lower-fees-section .sp-why-item i {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(202, 160, 91, 0.16);
    font-size: var(--f20);
    color: var(--btn-color);
    flex-shrink: 0;
}

.sp-lower-fees-section .sp-invest-footer-text {
    font-family: var(--secondary-font);
    font-size: var(--f18);
    color: var(--white-color);
    max-width: 920px;
    margin: 0 auto;
    padding: var(--p24) var(--p35);
    background: var(--territiary-color);
    border-radius: 8px;
    line-height: 1.6;
    font-style: italic;
}

/* ============================================================
   SECTION 4 — Why Owners Choose Lifeline Rentals
   ============================================================ */
.sp-why-section {
    padding: var(--p80) 0;
    background: var(--territiary-color);
}

.sp-why-intro {
    font-family: var(--secondary-font);
    font-size: var(--f16);
    color: rgba(255,255,255,0.70);
    max-width: 620px;
    margin: 0 auto var(--m50);
    line-height: 1.8;
}

.sp-why-owners-list {
    max-width: 960px;
    margin: 0 auto var(--m50);
    display: grid;
    gap: var(--p20);
}

.sp-why-owner-item {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--p30);
    align-items: center;
    min-height: 94px;
    padding: var(--p26) var(--p30);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 8px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.sp-why-owner-item:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.24);
    transform: translateY(-2px);
}

.sp-why-owner-left {
    display: flex;
    align-items: center;
    gap: var(--p16);
}

.sp-why-owner-title {
    display: block;
    font-family: var(--secondary-font);
    font-size: var(--f15);
    font-weight: 800;
    color: var(--white-color);
    letter-spacing: 0;
    line-height: 1.35;
    margin-bottom: var(--m6);
}

.sp-why-owner-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 7px;
    background: rgba(255,255,255,0.08);
    color: var(--btn-color);
}

.sp-why-owner-icon i {
    font-size: var(--f20);
}

.sp-why-owner-tag {
    display: block;
    font-family: var(--secondary-font);
    font-size: var(--f11);
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--btn-color);
}

.sp-why-owner-right {
    display: flex;
    align-items: center;
}

.sp-why-owner-right p {
    font-family: var(--secondary-font);
    font-size: var(--f15);
    color: rgba(255,255,255,0.74);
    line-height: 1.65;
    margin: 0;
}

.sp-platform-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--p30);
    max-width: 900px;
    margin: var(--m55) auto var(--m45);
}

.sp-platform-badge {
    text-align: center;
    min-width: 0;
}

.sp-platform-name {
    display: block;
    font-family: var(--heading-font);
    text-transform: lowercase !important;
    font-size: clamp(28px, 2vw, 38px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--btn-color);
    margin-bottom: var(--m8);
}

.sp-platform-sub {
    display: block;
    font-family: var(--secondary-font);
    font-size: var(--f15);
    color: rgba(255,255,255,0.66);
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.45;
}

.sp-platform-note {
    font-family: var(--secondary-font);
    font-size: clamp(17px, 2vw, 21px);
    color: rgba(255,255,255,0.72);
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================================
   SECTION 5 — Rapid Cleaning & Maintenance
   ============================================================ */
.sp-cleaning-section {
    padding: var(--p80) 0;
    background: var(--white-color);
}

.sp-cleaning-tagline {
    font-family: var(--heading-font);
    font-size: var(--f28);
    color: var(--secondary-color);
    margin: 0 0 var(--m50);
    font-style: italic;
}

.sp-cleaning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--p24);
    margin-bottom: var(--m30);
}

.sp-cleaning-card {
    background: var(--btn-color);
    padding: var(--p30) var(--p25);
    border-radius: 4px;
    border-bottom: 3px solid #ff6f61;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.sp-cleaning-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
    transform: translateY(-4px);
}

.sp-cleaning-icon {
    margin-bottom: var(--m14);
}

.sp-cleaning-icon i {
    font-size: var(--f32);
    color: var(--territiary-color);
}

.sp-cleaning-card h4 {
    font-family: var(--secondary-font);
    font-size: var(--f15);
    font-weight: 700;
    color: var(--territiary-color);
    margin: 0 0 var(--m10);
    line-height: 1.35;
}

.sp-cleaning-card p {
    font-family: var(--secondary-font);
    font-size: var(--f13);
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.sp-cleaning-note {
    font-family: var(--secondary-font);
    font-size: var(--f14);
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================================
   SECTION 6 — Direct Booking Website Advantage
   ============================================================ */
.sp-direct-section {
    padding: var(--p70) 0;
    background: var(--white-color);
}

.sp-direct-header .sp-section-heading {
    color: var(--territiary-color);
    margin: var(--m8) 0 var(--m16);
}

.sp-direct-desc {
    font-family: var(--secondary-font);
    font-size: var(--f15);
    color: var(--gray-600);
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto var(--m10);
}

.sp-direct-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--p16);
    max-width: 1160px;
    margin: 0 auto;
}

.sp-direct-list-item {
    display: flex;
    align-items: center;
    gap: var(--p14);
    min-height: 84px;
    padding: var(--p16);
    font-family: var(--secondary-font);
    color: var(--territiary-color);
    background: var(--lt-bg-color);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    cursor: default;
}

.sp-direct-list-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.sp-direct-list-item.sp-direct-active {
    background: var(--territiary-color);
    border-color: var(--territiary-color);
    color: var(--white-color);
}

.sp-direct-bar {
    width: 10px;
    min-height: 40px;
    border-radius: 999px;
    background: var(--btn-color);
    flex-shrink: 0;
}

.sp-direct-title,
.sp-direct-sub {
    display: block;
}

.sp-direct-title {
    font-size: var(--f14);
    font-weight: 800;
    color: currentColor;
    line-height: 1.3;
    margin-bottom: var(--m4);
}

.sp-direct-sub {
    font-size: var(--f11);
    color: var(--gray-600);
    line-height: 1.4;
}

.sp-direct-active .sp-direct-sub {
    color: rgba(255,255,255,0.74);
}

.sp-direct-list-item i {
    margin-left: auto;
    font-size: var(--f18);
    color: var(--btn-color);
    flex-shrink: 0;
}

.sp-direct-list-item.sp-direct-active i {
    color: var(--btn-color);
}

/* ============================================================
   SECTION 7 — A Hospitality-Focused Approach
   ============================================================ */
.sp-hospitality-section {
    padding: var(--p80) 0;
    background: var(--territiary-color);
}

.sp-hospitality-intro {
    font-family: var(--secondary-font);
    font-size: var(--f16);
    color: rgba(255,255,255,0.76);
    max-width: 720px;
    margin: 0 auto var(--m50);
    line-height: 1.75;
}

.sp-hospitality-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--p22);
    max-width: 960px;
    margin: 0 auto;
}

.sp-hospitality-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: var(--p18);
    align-items: start;
    min-height: 156px;
    background: rgba(255,255,255,0.06);
    padding: var(--p26);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.16);
    text-align: left;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.sp-hospitality-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(255,255,255,0.24);
    transform: translateY(-3px);
}

.sp-hosp-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: var(--btn-color);
}

.sp-hosp-icon i {
    font-size: var(--f22);
}

.sp-hospitality-card h4 {
    font-family: var(--secondary-font);
    font-size: var(--f18);
    font-weight: 800;
    color: var(--white-color);
    margin: 0 0 var(--m12);
    line-height: 1.35;
}

.sp-hospitality-card p {
    font-family: var(--secondary-font);
    font-size: var(--f13);
    color: rgba(255,255,255,0.68);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   SECTION 8 — CTA
   ============================================================ */
.sp-cta-section {
    padding: var(--p90) 0;
    background: var(--territiary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sp-cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://www.lifelinerentals.com/wp-content/uploads/2024/10/lifeline-rentals-vacation-home-interior.jpg') center/cover no-repeat;
    opacity: 0.07;
    pointer-events: none;
}

.sp-cta-heading {
    font-family: var(--heading-font);
    font-size: var(--f48);
    color: var(--white-color);
    margin: 0 0 var(--m40);
    line-height: 1.25;
    position: relative;
}

.sp-cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--p20);
    flex-wrap: wrap;
    position: relative;
}

/* ============================================================
   Scroll Animations
   ============================================================ */
.sp-animate-up {
    opacity: 0;
    transform: translateY(1px);
    transition: opacity 0.6s ease, transform 0.2s ease;
}

.sp-animate-up.sp-visible {
    opacity: 1;
    /* transform: translateY(0); */
}

.sp-animate-delay-1 { transition-delay: 0.1s; }
.sp-animate-delay-2 { transition-delay: 0.2s; }
.sp-animate-delay-3 { transition-delay: 0.3s; }
.sp-animate-delay-4 { transition-delay: 0.4s; }

.income-analysis-section .service-form-actions {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 14px;
    flex-wrap: wrap;
}

.income-analysis-section .submit-btn.service-phone-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--territiary-color);
    border-color: var(--territiary-color);
    color: var(--white-color);
    text-decoration: none;
}

.income-analysis-section .submit-btn.service-phone-btn:hover {
    background: var(--btn-color);
    border-color: var(--btn-color);
    color: var(--white-color);
}



.wwo-icon{
      color: #ff6f61;
    background: antiquewhite;
    width: 45px;
    padding: 5px;
    height: 45px;
    border-radius: 4px;
}


.txt-blue{
    color: var(--territiary-color) !important;
}
