:root {
    --brand-geen: #056940;
    --white: #fff;
}

.hero-light {
    background-color: #f4f4f4;
}

.ml11 {
    font-weight: 800;
    font-size: 36px;
    color: var(--brand-geen);
}

.ml11 .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.1em;
    padding-right: 0.05em;
    padding-bottom: 0.15em;
}

.ml11 .line {
    opacity: 0;
    position: absolute;
    left: 0;
    height: 100%;
    width: 3px;
    background-color: var(--brand-geen);
    transform-origin: 0 50%;
}

.ml11 .line1 {
    top: 0;
    left: 0;
}

.ml11 .letter {
    display: inline-block;
    line-height: 1em;
}

/* =========================================
   SCRAP FINDER - HOW IT WORKS
========================================= */
.scrap-finder-how-it-works {
    padding: 50px 0;
    background: #f7f9fb;
}

/* Section Heading */
.scrap-finder-heading {
    max-width: 720px;
    margin: 0 auto 55px;
}

.scrap-finder-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--brand-geen);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.scrap-finder-heading h2 {
    margin: 0 0 14px;
    color: #1b2630;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

.scrap-finder-heading p {
    margin: 0;
    color: #68747d;
    font-size: 16px;
    line-height: 1.7;
}

/* Steps */
.scrap-finder-steps {
    position: relative;
}

/* Step Card */
.scrap-finder-step-card {
    position: relative;
    height: 100%;
    padding: 35px 25px 30px;
    background: #ffffff;
    border: 1px solid #e8edf0;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s ease;
}

.scrap-finder-step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(42, 162, 59, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

/* Step Number */
.scrap-finder-step-number {
    position: absolute;
    top: 15px;
    right: 18px;
    color: #dfe6ea;
    font-size: 13px;
    font-weight: 700;
}

/* Icon */
.scrap-finder-step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f8f1;
    border-radius: 50%;
    font-size: 32px;
}

/* Title */
.scrap-finder-step-card h3 {
    margin: 0 0 10px;
    color: #1b2630;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
}

/* Description */
.scrap-finder-step-card p {
    margin: 0;
    color: #737e86;
    font-size: 14px;
    line-height: 1.65;
}

/* =========================================
   GOOGLE RATING BOX
========================================= */
.google-rating-box {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 16px 28px 16px 16px;
    background: #ffffff;
    border-radius: 22px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

/* =========================================
   GOOGLE LOGO
========================================= */
.google-logo-box {
    width: 75px;
    height: 75px;
    flex: 0 0 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f8ef;
    border-radius: 20px;
    overflow: hidden;
}

.google-logo-box img {
    width: 44px;
    height: 44px;
    display: block;
    object-fit: contain;
}

/* =========================================
   RATING CONTENT
========================================= */
.google-rating-info {
    padding-top: 2px;
}

/* Score + Stars */
.google-rating-score-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

/* 5.0 */
.google-rating-score {
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: #000000;
}

/* =========================================
   STARS
========================================= */
.google-rating-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #fbbc04;
    font-size: 25px;
    line-height: 1;
}

.google-rating-stars span {
    display: inline-block;
}

/* =========================================
   LABEL
========================================= */
.google-rating-label {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    color: #666666;
    white-space: nowrap;
}

.copyright-footer {
    padding-top: 20px;
    background: #f0f0f0;
    text-align: center !important;
}

/* Features Section */
.section-title {
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
}

.features,
.categories,
.how-it-works {
    padding: 50px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.card {
    background-color: var(--white);
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.card h3 {
    margin: 0 0 10px;
    color: #1b2630;
    font-size: 19px;
    line-height: 1.35;
    font-weight: 700;
}

.card p {
    color: #737e86;
    font-size: 14px;
}

/* Categories Section */
.categories {
    background-color: #f3f3f3;
}

.cat-card {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cat-card .card-icon {
    margin-bottom: 0;
    font-size: 2rem;
}

/* Hero Section */
.hero {
    color: #fff;
    padding: 50px 0;
    text-align: center;
    background: linear-gradient(to bottom, #056940, #329370);
}

.hero h1 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero p {
    font-size: 14px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Coverage Area Section */
.coverage-area {
    padding: 20px 0;
    background-color: var(--white);
    text-align: center;
}

.coverage-area p {
    color: #68747d;
    margin: 0 auto 30px auto;
    font-size: 16px;
}

.sf-location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 0 auto;
}

.sf-location-tags span {
    padding: 5px 9px;
    border: 1px solid #aeffde;
    border-radius: 30px;
    background: #f2fffa;
    color: #787a7c;
    font-size: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.sf-location-tags span:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.2);
}

/* Floating Action Buttons */
.floating-btn {
    position: fixed;
    bottom: 35px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: all 0.3s ease;
}

/* Call Button - Bottom Left */
.float-call {
    left: 20px;
    background-color: var(--brand-geen);
    color: #fff;
    animation: float-pulse-green 2s infinite;
}

/* WhatsApp Button - Bottom Right */
.float-whatsapp {
    color: #fff;
    right: 20px;
    background-color: #25D366;
    /* Official WhatsApp Green */
    color: var(--white);
    animation: float-pulse-wa 2s infinite;
    animation-delay: 1s;
    /* Offset the pulse slightly from the call button */
}

.float-whatsapp img {
    width: 25px;
}

.hero-buttons img {
    padding-right: 2px;
    width: 20px;
}

/* Hover Effects */
.floating-btn:hover {
    color: #fff;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-text {
    box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
    border: 1px solid #eee;
    padding-top: 1px;
    top: -4px;
    align-items: center;
    text-align: center;
    height: 20px;
    width: 20px;
    font-size: 10px;
    border-radius: 50%;
    position: absolute;
    right: -4px;
    background: #ffffff;
    color: #313030;
    font-weight: 800;
}

/* Modern Pulse Animations */
@keyframes float-pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes float-pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Scrap Rates Section */
.scrap-rates {
    padding: 20px 0;
    background-color: #f4f4f4;
}

.scrap-rates .section-title {
    margin-bottom: 10px;
}

.scrap-rates-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
    font-size: 15px;
}

/* 4 Columns Desktop / 2 Columns Mobile Grid */
.rates-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.rate-card {
    background-color: var(--white);
    border: 1px solid #b2b4b6;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-geen);
}

.rate-img-wrapper {
    width: 100%;
    /* height: 140px; */
    background-color: #f3f4f6;
    /* Placeholder background */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* The actual image tag */
.rate-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rate-content {
    padding: 15px;
    text-align: center;
}

.rate-title {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.rate-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-geen);
    background: rgba(16, 185, 129, 0.1);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
}

.rate-price-small {
    font-size: 0.85rem;
    font-weight: 500;
}

.sf-breadcrumb {
    border-bottom: 1px solid #f0f0f0;
    border-top: 1px solid #f0f0f0;
    position: relative;
    background-color: #f2f2f2;
    padding: 5px 5px 0px;
}

.axil-breadcrumb {
    display: flex;
    padding: 0;
    overflow: hidden;
    display: -webkit-inline-box;
    margin: 0 0 5px !important;
    list-style: none;
    align-items: center;
}

.axil-breadcrumb li a {
    color: var(--brand-geen);
    display: block;
}

.sf-breadcrumb li {
    font-size: 12px;
}

.axil-breadcrumb li.separator {
    width: 2px;
    background-color: #e5e5e5;
    margin: 0 8px;
}

.scrap-content-section {
    background: #f6f9f7;
    padding: 20px 0;
    color: #000;
}



.scrap-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e5f6ea;
    color: #198754;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.scrap-hero {
    background: #ffffff;
    border-radius: 24px;
    padding: 55px;
    margin-bottom: 30px;
    border: 1px solid #e8eee9;
    box-shadow: 0 10px 35px rgba(25, 70, 45, 0.06);
}

.scrap-hero h1 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 750;
    margin-bottom: 20px;
    color: #000;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    color: #000;
}

.scrap-hero h1 span {
    color: #198754;
}

.scrap-lead {
    font-size: 18px;
    line-height: 1.8;
    color: #66736c;
    margin-bottom: 0;
}

.scrap-highlight {
    background: linear-gradient(135deg, #e9f8ed, #f5fbf7);
    border-left: 4px solid #198754;
    border-radius: 16px;
    padding: 28px 30px;
    margin: 30px 0;
}

.scrap-highlight h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.scrap-content-section h1 {
    color: #000 !important;
}

.scrap-highlight p {
    color: #65716a;
    line-height: 1.8;
    margin: 0;
}

.scrap-section-title {
    text-align: center;
    margin: 65px 0 35px;
}

.scrap-section-title .small-title {
    color: #198754;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.scrap-section-title h2 {
    font-size: 32px;
    font-weight: 750;
    color: #17231c;
    margin-bottom: 10px;
}

.scrap-section-title p {
    color: #758078;
    margin: 0 auto;
    max-width: 650px;
    line-height: 1.7;
}

.scrap-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.scrap-type-card {
    background: #ffffff;
    border: 1px solid #e6ece8;
    border-radius: 18px;
    padding: 25px;
    transition: all 0.25s ease;
}

.scrap-type-card:hover {
    transform: translateY(-4px);
    border-color: #b9dfc4;
    box-shadow: 0 12px 30px rgba(25, 70, 45, 0.08);
}

.scrap-type-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf7ed;
    border-radius: 14px;
    font-size: 25px;
    margin-bottom: 18px;
}

.scrap-type-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #26332b;
    margin-bottom: 7px;
}

.scrap-type-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #737e77;
    margin: 0;
}

.scrap-description {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e6ece8;
    padding: 28px 30px;
    margin-top: 22px;
    color: #68736c;
    line-height: 1.8;
}

.scrap-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.scrap-benefit {
    display: flex;
    gap: 18px;
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    border: 1px solid #e6ece8;
}

.scrap-benefit-number {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #198754;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.scrap-benefit h3 {
    font-size: 17px;
    font-weight: 700;
    color: #26332b;
    margin: 0 0 7px;
}

.scrap-benefit p {
    font-size: 14px;
    line-height: 1.7;
    color: #737e77;
    margin: 0;
}

.scrap-cta {
    margin-top: 65px;
    background: linear-gradient(135deg, #075e38, #198754);
    color: #ffffff;
    border-radius: 24px;
    padding: 45px 50px;
    position: relative;
    overflow: hidden;
}

.scrap-cta h2 {
    font-size: 30px;
    font-weight: 750;
    margin-bottom: 14px;
}

.scrap-cta p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    max-width: 780px;
    margin-bottom: 25px;
}

.scrap-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #08763f;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.2s ease;
}

.scrap-cta-btn:hover {
    background: #f1f8f3;
    color: #075e38;
    transform: translateY(-2px);
}

.scrap-tagline {
    text-align: center;
    margin-top: 28px;
    color: #66736c;
    font-size: 15px;
    font-style: italic;
}

.card-text-left {
    text-align: left !important;
}

.sf-rates-strip {
    width: 100%;
    overflow: hidden;
    background: #cbe2d2;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding: 13px 0;
}

.sf-rates-scroll {
    display: flex;
    width: max-content;
    animation: sfRateScroll 45s linear infinite;
}

.sf-rates-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.sf-rate-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 18px;
    white-space: nowrap;
    font-size: 14px;
    line-height: 1.4;
}

.sf-rate-item strong {
    font-weight: 700;
    color: #020202;
}

.sf-rate-item em {
    font-style: normal;
    font-weight: 600;
    color: var(--brand-geen);
}

.sf-rate-divider {
    color: var(--brand-geen);
    font-size: 14px;
}

.sf-rates-strip:hover .sf-rates-scroll {
    animation-play-state: paused;
}

@keyframes sfRateScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media only screen and (max-width: 991px) {
    .col-sm-6 {
        width: 50% !important;
    }

    .sf-rates-strip {
        padding: 8px 0;
    }

    .sf-rate-item {
        padding: 0 12px;
        font-size: 13px;
        gap: 5px;
    }

    .sf-rate-divider {
        font-size: 12px;
    }

    .header-booking-btn {
        padding: 5px 10px !important;
        font-size: 12px !important;
    }

    .scrap-content-section {
        padding: 20px 0;
    }

    .scrap-types {
        grid-template-columns: repeat(2, 1fr);
    }


    .scrap-hero {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .scrap-hero h1 {
        font-size: 26px;
    }

    .scrap-lead {
        font-size: 15px;
    }

    .scrap-types,
    .scrap-benefits {
        grid-template-columns: 1fr;
    }

    .scrap-section-title {
        margin-top: 45px;
    }

    .scrap-section-title h2 {
        font-size: 27px;
    }

    .scrap-cta {
        padding: 32px 25px;
        border-radius: 18px;
    }

    .scrap-cta h2 {
        font-size: 25px;
    }

    .rates-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    /* .rate-img-wrapper {
        height: 100px; 
    } */

    .rate-content {
        padding: 10px 0px;
    }

    .rate-title {
        font-weight: 700;
        font-size: 14px
    }

    .rate-price {
        font-size: 12px;
        padding: 3px 8px;
    }

    .rate-price-small {
        font-size: 10px;
        font-weight: 500;
    }

    .sf-location-tags {
        gap: 6px;
    }

    .coverage-area {
        padding: 20px 0 !important;
    }

    .google-rating-box {
        gap: 14px;
        padding: 12px 16px 12px 12px;
        border-radius: 18px;
    }

    .google-logo-box {
        width: 75px;
        height: 75px;
        flex: 0 0 75px;
        border-radius: 14px;
    }

    .google-logo-box img {
        width: 44px;
        height: 44px;
    }

    .google-rating-score-row {
        gap: 9px;
        margin-bottom: 7px;
    }

    .google-rating-score {
        font-size: 25px;
    }

    .google-rating-stars {
        font-size: 18px;
        gap: 1px;
    }

    .google-rating-label {
        font-size: 15px;
        white-space: normal;
    }

    .ml11 {
        font-weight: 800;
        font-size: 24px;
        color: var(--brand-geen);
    }

    .lead {
        font-size: 16px !important;
    }

    .scrap-finder-how-it-works {
        padding: 20px 0;
    }

    .scrap-finder-heading {
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .scrap-finder-heading h2,
    .section-title {
        font-size: 22px !important;
        font-weight: 800;
    }

    .scrap-finder-heading p,
    .coverage-area p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* 2 Cards Per Row on Mobile */
    .scrap-finder-steps>div {
        width: 50%;
        padding-left: 6px;
        padding-right: 6px;
    }

    .scrap-finder-step-card {
        padding: 25px 12px 22px;
        border-radius: 14px;
    }

    .scrap-finder-step-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 15px;
        font-size: 26px;
    }

    .scrap-finder-step-card h3,
    .card h3 {
        font-size: 15px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .scrap-finder-step-card p,
    .card p {
        font-size: 12px;
        line-height: 1.5;
    }

    .scrap-finder-step-number {
        top: 10px;
        right: 12px;
        font-size: 11px;
    }
}