

       /* =====================================================
           ROOT VARIABLES
        ===================================================== */

        :root {

            --green: #6d9617;

            --green-dark: #527600;

            --green-light: #edf5df;

            --navy: #142542;

            --navy-light: #1c3554;

            --light-bg: #f5f8f6;

            --text: #263238;

            --muted: #6d747b;

            --border: #e2e9e4;

            --white: #ffffff;

        }




        .header-phone {

            display: flex;

            align-items: center;

            gap: 10px;

        }


        .phone-circle {

            width: 36px;

            height: 36px;

            background: var(--green);

            color: white;

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

        }


        .phone-content small {

            display: block;

            font-size: 9px;

            color: #777;

        }


        .phone-content strong {

            display: block;

            font-size: 11px;

            color: var(--navy);

        }



        /* =====================================================
           HERO SECTION
        ===================================================== */

        .return-hero {

            background: var(--light-bg);

            position: relative;

            overflow: hidden;

            padding: 90px 0 100px;

        }


        .return-hero::before {

            content: "";

            position: absolute;

            width: 500px;

            height: 500px;

            border-radius: 50%;

            background: var(--green-light);

            right: -180px;

            top: -230px;

        }


        .return-hero::after {

            content: "";

            position: absolute;

            width: 250px;

            height: 250px;

            border: 35px solid rgba(109, 150, 23, .08);

            border-radius: 50%;

            left: -150px;

            bottom: -120px;

        }


        .hero-content {

            position: relative;

            z-index: 2;

            padding-right: 40px;

        }


        .hero-label {

            display: inline-flex;

            align-items: center;

            gap: 10px;

            color: var(--green-dark);

            font-size: 11px;

            text-transform: uppercase;

            letter-spacing: 1.5px;

            font-weight: 700;

            margin-bottom: 20px;

        }


        .hero-label span {

            display: block;

            width: 35px;

            height: 2px;

            background: var(--green);

        }


        .hero-content h1 {

            color: var(--navy);

            font-size: clamp(38px, 5vw, 62px);

            line-height: 1.1;

            font-weight: 800;

            margin-bottom: 25px;

        }


        .hero-content h1 span {

            color: var(--green);

        }


        .hero-content p {

            font-size: 15px;

            color: var(--muted);

            line-height: 1.9;

            max-width: 650px;

        }


        .hero-buttons {

            margin-top: 30px;

        }


        .btn-primary-green {

            display: inline-flex;

            align-items: center;

            gap: 10px;

            background: var(--green);

            color: white;

            padding: 14px 25px;

            font-size: 12px;

            font-weight: 700;

            transition: .3s;

        }


        .btn-primary-green:hover {

            background: var(--green-dark);

            color: white;

            transform: translateY(-3px);

        }


        .btn-outline-navy {

            display: inline-flex;

            align-items: center;

            gap: 10px;

            border: 1px solid var(--navy);

            color: var(--navy);

            padding: 13px 25px;

            font-size: 12px;

            font-weight: 700;

            margin-left: 10px;

            transition: .3s;

        }


        .btn-outline-navy:hover {

            background: var(--navy);

            color: white;

        }


        /* HERO VISUAL */

        .hero-visual {

            position: relative;

            padding: 20px;

        }


        .hero-image {

            width: 100%;

            height: 530px;

            object-fit: cover;

            border-radius: 5px;

            position: relative;

            z-index: 2;

        }


        .hero-image-frame {

            position: absolute;

            width: 85%;

            height: 85%;

            border: 2px solid var(--green);

            right: 0;

            top: 0;

            z-index: 1;

        }


        .return-badge {

            position: absolute;

            left: -15px;

            bottom: 55px;

            width: 220px;

            background: var(--navy);

            color: white;

            padding: 25px;

            z-index: 4;

            box-shadow: 0 15px 40px rgba(20, 37, 66, .2);

        }


        .return-badge i {

            font-size: 28px;

            color: #9cbe4b;

            margin-bottom: 15px;

            display: block;

        }


        .return-badge strong {

            display: block;

            font-size: 16px;

            margin-bottom: 5px;

        }


        .return-badge small {

            color: #bac6d2;

            line-height: 1.5;

        }



        /* =====================================================
           INTRODUCTION
        ===================================================== */

        .intro-section {

            padding: 110px 0;

            background: white;

        }


        .intro-heading {

            padding-right: 50px;

        }


        .eyebrow {

            color: var(--green-dark);

            font-size: 10px;

            font-weight: 800;

            text-transform: uppercase;

            letter-spacing: 1.5px;

            margin-bottom: 15px;

        }


        .intro-heading h2 {

            color: var(--navy);

            font-size: 42px;

            line-height: 1.2;

            font-weight: 800;

            margin-bottom: 25px;

        }


        .intro-heading h2 span {

            color: var(--green);

        }


        .intro-heading p {

            color: var(--muted);

            font-size: 15px;

            line-height: 1.9;

        }


        .intro-info {

            display: grid;

            grid-template-columns: repeat(2, 1fr);

            gap: 15px;

        }


        .info-box {

            padding: 30px;

            background: var(--light-bg);

            border-left: 3px solid var(--green);

            transition: .3s;

        }


        .info-box:hover {

            background: var(--navy);

            transform: translateY(-5px);

        }


        .info-box:hover h4,
        .info-box:hover p {

            color: white;

        }


        .info-box h4 {

            font-size: 17px;

            color: var(--navy);

            margin-bottom: 10px;

            transition: .3s;

        }


        .info-box p {

            font-size: 13px;

            color: var(--muted);

            line-height: 1.7;

            margin: 0;

            transition: .3s;

        }



        /* =====================================================
           RETURNS COVERED
        ===================================================== */

        .returns-section {

            padding: 110px 0;

            background: var(--navy);

            position: relative;

            overflow: hidden;

        }


        .returns-section::before {

            content: "";

            position: absolute;

            width: 550px;

            height: 550px;

            border: 1px solid rgba(255, 255, 255, .08);

            border-radius: 50%;

            right: -250px;

            top: -200px;

        }


        .section-title {

            text-align: center;

            max-width: 700px;

            margin: 0 auto 60px;

            position: relative;

            z-index: 2;

        }


        .section-title .eyebrow {

            color: #a7c45e;

        }


        .section-title h2 {

            color: white;

            font-size: 42px;

            font-weight: 800;

            margin-bottom: 15px;

        }


        .section-title h2 span {

            color: #9cbe4b;

        }


        .section-title p {

            color: #b9c5d1;

            line-height: 1.8;

            font-size: 14px;

        }


        .returns-grid {

            display: grid;

            grid-template-columns: repeat(5, 1fr);

            gap: 12px;

            position: relative;

            z-index: 2;

        }


        .return-card {

            min-height: 150px;

            border: 1px solid rgba(255, 255, 255, .13);

            background: rgba(255, 255, 255, .04);

            display: flex;

            flex-direction: column;

            justify-content: space-between;

            padding: 22px;

            transition: .35s;

        }


        .return-card:hover {

            background: var(--green);

            transform: translateY(-8px);

            border-color: var(--green);

        }


        .return-card .card-number {

            color: #93b443;

            font-size: 12px;

            font-weight: 800;

        }


        .return-card:hover .card-number {

            color: white;

        }


        .return-card h4 {

            color: white;

            font-size: 18px;

            margin: 0;

        }


        .return-card i {

            color: #93b443;

            font-size: 22px;

        }


        .return-card:hover i {

            color: white;

        }



        /* =====================================================
           PROCESS SECTION
        ===================================================== */

        .process-section {

            padding: 120px 0;

            background: var(--light-bg);

        }


        .process-title {

            max-width: 600px;

            margin-bottom: 65px;

        }


        .process-title h2 {

            color: var(--navy);

            font-size: 42px;

            font-weight: 800;

        }


        .process-title h2 span {

            color: var(--green);

        }


        .process-title p {

            color: var(--muted);

            line-height: 1.8;

            font-size: 14px;

            margin-top: 15px;

        }


        .process-wrapper {

            position: relative;

        }


        .process-wrapper::before {

            content: "";

            position: absolute;

            top: 48px;

            left: 10%;

            right: 10%;

            height: 2px;

            background: #d9e2dc;

        }


        .process-step {

            position: relative;

            text-align: center;

            z-index: 2;

        }


        .process-icon {

            width: 95px;

            height: 95px;

            border-radius: 50%;

            background: white;

            border: 2px solid var(--green);

            color: var(--green-dark);

            display: flex;

            align-items: center;

            justify-content: center;

            margin: 0 auto 25px;

            font-size: 28px;

            box-shadow: 0 10px 30px rgba(20, 37, 66, .08);

            transition: .3s;

        }


        .process-step:hover .process-icon {

            background: var(--green);

            color: white;

            transform: scale(1.08);

        }


        .step-number {

            display: block;

            color: var(--green);

            font-size: 10px;

            font-weight: 800;

            letter-spacing: 1px;

            margin-bottom: 8px;

        }


        .process-step h3 {

            color: var(--navy);

            font-size: 17px;

            margin-bottom: 10px;

        }


        .process-step p {

            color: var(--muted);

            font-size: 12px;

            line-height: 1.7;

            max-width: 180px;

            margin: auto;

        }



        /* =====================================================
           BENEFITS
        ===================================================== */

        .benefits-section {

            padding: 110px 0;

            background: white;

        }


        .benefits-image {

            height: 520px;

            width: 100%;

            object-fit: cover;

            border-radius: 5px;

        }


        .benefits-content {

            padding-left: 55px;

        }


        .benefits-content h2 {

            color: var(--navy);

            font-size: 42px;

            font-weight: 800;

            line-height: 1.2;

            margin-bottom: 20px;

        }


        .benefits-content h2 span {

            color: var(--green);

        }


        .benefits-content>p {

            color: var(--muted);

            font-size: 14px;

            line-height: 1.8;

            margin-bottom: 30px;

        }


        .benefit-list {

            list-style: none;

            padding: 0;

            margin: 0;

        }


        .benefit-list li {

            display: flex;

            align-items: center;

            gap: 15px;

            padding: 15px 0;

            border-bottom: 1px solid var(--border);

            color: var(--navy);

            font-size: 14px;

            font-weight: 600;

        }


        .benefit-list li i {

            width: 30px;

            height: 30px;

            border-radius: 50%;

            background: var(--green-light);

            color: var(--green-dark);

            display: flex;

            align-items: center;

            justify-content: center;

            font-size: 14px;

        }









        /* =====================================================
           RESPONSIVE
        ===================================================== */

        @media(max-width: 991px) {


            .header-phone {

                display: none;

            }


            .navbar-nav {

                background: white;

                padding: 15px;

                box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

            }


            .hero-content {

                padding-right: 0;

                padding-bottom: 50px;

            }


            .hero-visual {

                padding: 0;

            }


            .returns-grid {

                grid-template-columns:
                    repeat(3, 1fr);

            }


            .process-wrapper::before {

                display: none;

            }


            .process-step {

                margin-bottom: 45px;

            }


            .benefits-content {

                padding-left: 0;

                margin-top: 50px;

            }

        }


        @media(max-width: 767px) {


            .return-hero {

                padding: 70px 0;

            }


            .hero-content h1 {

                font-size: 38px;

            }


            .hero-buttons a {

                margin: 5px 0;

            }


            .btn-outline-navy {

                margin-left: 0;

            }


            .hero-image {

                height: 400px;

            }


            .return-badge {

                left: 15px;

                bottom: 30px;

            }


            .intro-section,

            .returns-section,

            .process-section,

            .benefits-section {

                padding: 75px 0;

            }


            .intro-heading h2,

            .section-title h2,

            .process-title h2,

            .benefits-content h2 {

                font-size: 32px;

            }


            .intro-heading {

                padding-right: 0;

                margin-bottom: 40px;

            }


            .intro-info {

                grid-template-columns: 1fr;

            }


            .returns-grid {

                grid-template-columns:
                    repeat(2, 1fr);

            }


            .return-card {

                min-height: 130px;

            }


            .process-step {

                margin-bottom: 50px;

            }


            .benefits-image {

                height: 380px;

            }


            .cta-box {

                padding: 40px 25px;

            }


            .cta-box h2 {

                font-size: 28px;

            }

        }


        @media(max-width: 400px) {


            .returns-grid {

                grid-template-columns: 1fr;

            }

        }
