/* first section start */

 .sw-home-interior-intro {
            background: #ffff;
            padding: 30px 20px;
            overflow: hidden;
        }

        .sw-hi-content {
            max-width: 820px;
        }

        .sw-hi-tag {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .sw-hi-title {
            font-size: 40px;
            font-weight: 700;
            color: var(--combo);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .sw-hi-title span {
            display: block;
            color: var(--primary);
        }

        .sw-hi-text {
            color: #666;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .sw-hi-text-small {
            font-size: 15px;
            color: #777;
        }

        .sw-hi-highlights {
            display: grid;
            grid-template-columns: repeat(3, 1fr);

            gap: 14px;

            margin-top: 32px;
        }


        .sw-hi-highlight {
            display: flex;
            align-items: flex-start;

            gap: 13px;

            padding: 17px 14px;

            background: #fafafa;

            border: 1px solid #eeeeee;

            transition: .35s ease;
        }


        .sw-hi-highlight:hover {
            transform: translateY(-5px);

            border-color: var(--primary);

            box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
        }


        .sw-hi-highlight-icon {
            width: 42px;
            height: 42px;

            flex-shrink: 0;

            display: flex;
            align-items: center;
            justify-content: center;

            background: #3B4350;

            color: var(--primary);

            font-size: 18px;
        }


        .sw-hi-highlight h3 {
            font-size: 15px;

            color: #3B4350;

            font-weight: 700;

            margin: 1px 0 5px;
        }


        .sw-hi-highlight p {
            color: #777;

            font-size: 12px;

            line-height: 1.5;

            margin: 0;
        }

        .sw-hi-visual {
            position: relative;

            min-height: 560px;

            display: flex;

            align-items: center;

            justify-content: center;
        }


        /* BIG NUMBER */

        .sw-hi-number {
            position: absolute;

            top: 0;
            right: 8px;

            font-size: 150px;

            font-weight: 700;

            line-height: 1;

            color: rgba(59, 67, 80, .045);

            z-index: 0;

            user-select: none;
        }


        /* IMAGE */

        .sw-hi-image-wrap {
            position: relative;

            width: 88%;

            height: 500px;

            overflow: hidden;

            z-index: 1;

            box-shadow: 25px 25px 0 var(--primary);
        }


        .sw-hi-image {
            width: 100%;
            height: 100%;

            object-fit: cover;

            display: block;

            transition: transform .7s ease;
        }


        .sw-hi-image-wrap:hover .sw-hi-image {
            transform: scale(1.06);
        }


        .sw-hi-image-overlay {
            position: absolute;

            inset: 0;

            background: linear-gradient(180deg,
                    rgba(59, 67, 80, .02),
                    rgba(59, 67, 80, .28));

            pointer-events: none;
        }

        .sw-hi-floating-card {
            position: absolute;

            left: 0;
            bottom: 35px;

            z-index: 3;

            display: flex;

            align-items: center;

            gap: 14px;

            background: #fff;

            padding: 17px 22px;

            min-width: 240px;

            box-shadow: 0 15px 35px rgba(0, 0, 0, .14);
        }


        .sw-hi-floating-icon {
            width: 46px;
            height: 46px;

            display: flex;
            align-items: center;
            justify-content: center;

            background: #3B4350;

            color: var(--primary);

            font-size: 20px;
        }


        .sw-hi-floating-card span {
            display: block;

            color: #999;

            font-size: 10px;

            letter-spacing: 1.5px;

            font-weight: 700;

            margin-bottom: 3px;
        }


        .sw-hi-floating-card strong {
            display: block;

            color: #3B4350;

            font-size: 16px;
        }

        .sw-hi-side-label {
            position: absolute;

            right: -8px;
            bottom: 90px;

            z-index: 4;

            display: flex;

            flex-direction: column;

            gap: 2px;

            writing-mode: vertical-rl;

            background: #3B4350;

            color: #fff;

            padding: 13px 9px;

            font-size: 10px;

            font-weight: 700;

            letter-spacing: 2px;
        }

        @media(max-width:1199px) {

            .sw-hi-title {
                font-size: 40px;
            }

            .sw-hi-highlights {
                grid-template-columns: 1fr;
            }

            .sw-hi-visual {
                min-height: 500px;
            }

            .sw-hi-image-wrap {
                height: 440px;
            }

        }

        @media(max-width:991px) {

            .sw-home-interior-intro {
                padding: 30px 10px;
            }

            .sw-hi-content {
                max-width: 100%;
            }

            .sw-hi-title {
                font-size: 32px;
            }

            .sw-hi-text {
                font-size: 15px;

                line-height: 1.75;

                text-align: left;
            }

            .sw-hi-highlights {
                grid-template-columns: 1fr;

                gap: 10px;
            }

            .sw-hi-highlight {
                padding: 15px;
            }

            .sw-hi-buttons {
                justify-content: flex-start;

                flex-wrap: wrap;
            }

            .sw-hi-visual {
                min-height: 470px;

                justify-content: flex-start;

                margin-top: 20px;
            }

            .sw-hi-image-wrap {
                width: 90%;
                height: 420px;

                box-shadow: 15px 15px 0 var(--primary);
            }

            .sw-hi-number {
                font-size: 110px;

                right: 0;
            }

        }


        @media(max-width:576px) {

            .sw-home-interior-intro {
                padding: 30px 10px;
            }

            .sw-hi-title {
                font-size: 28px;
            }

            .sw-hi-text {
                font-size: 14px;

                line-height: 1.7;
            }

            .sw-hi-text-small {
                font-size: 13px;
            }

            .sw-hi-highlights {
                margin-top: 24px;
            }

            .sw-hi-highlight {
                align-items: center;

                padding: 13px;
            }

            .sw-hi-highlight-icon {
                width: 38px;
                height: 38px;

                font-size: 16px;
            }

            .sw-hi-highlight h3 {
                font-size: 14px;
            }

            .sw-hi-highlight p {
                font-size: 11px;
            }

            .sw-hi-visual {
                min-height: 380px;

                margin-top: 10px;
            }

            .sw-hi-image-wrap {
                width: 88%;

                height: 330px;

                box-shadow: 10px 10px 0 var(--primary);
            }

            .sw-hi-floating-card {
                left: 0;

                bottom: 20px;

                min-width: 210px;

                padding: 12px 14px;
            }

            .sw-hi-floating-icon {
                width: 40px;
                height: 40px;

                font-size: 17px;
            }

            .sw-hi-floating-card strong {
                font-size: 14px;
            }

            .sw-hi-side-label {
                right: 0;

                bottom: 65px;

                padding: 10px 7px;

                font-size: 8px;
            }

            .sw-hi-number {
                font-size: 85px;

                top: 5px;
            }

        }

        /* second  cta section start */

         .compact-cta-section {
            padding: 0px 20px;
        }

        .compact-cta {
            min-height: 200px;
            background: linear-gradient(135deg, #3B4350, #242B35);
            padding: 35px 45px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-badge {
            display: inline-block;
            background: rgba(218, 161, 76, .15);
            color: var(--primary);
            padding: 6px 16px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .cta-content h2 {
            color: #fff;
            font-size: 34px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .cta-content p {
            color: #d8d8d8;
            margin: 0;
            font-size: 16px;
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            position: relative;
            z-index: 2;
        }

        .btn-consult,
        .btn-call {
            text-decoration: none;
            padding: 14px 28px;
            font-weight: 600;
            transition: .3s;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn-consult {
            background: var(--primary);
            color: #fff;
        }

        .btn-consult:hover {
            background: #fff;
            color: #3B4350;
        }

        .btn-call {
            border: 2px solid rgba(255, 255, 255, .25);
            color: #fff;
        }

        .btn-call:hover {
            background: #fff;
            color: #3B4350;
        }

        @media(max-width:991px) {
            .compact-cta-section {
                padding: 0px 10px;
            }

            .compact-cta {
                flex-direction: column;
                text-align: center;
                gap: 25px;
                min-height: auto;
                padding: 35px 25px;
            }

            .cta-content h2 {
                font-size: 28px;
            }

            .cta-buttons {
                justify-content: center;
                flex-wrap: wrap;
            }

        }

        @media(max-width:576px) {
            .compact-cta-section {
                padding: 0px 10px;
            }

            .cta-content h2 {
                font-size: 22px;
            }

            .cta-content p {
                font-size: 14px;
            }

            .btn-consult,
            .btn-call {
                width: 100%;
                justify-content: center;
            }

            .cta-buttons {
                width: 100%;
            }
        }

        /* third final section start */

       .sw-home-final-section {
            background: #fff;
            padding: 40px 20px;
            overflow: hidden;
        }

        .sw-home-final-visual {
            position: relative;
            min-height: 570px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sw-home-final-image-main {
            width: 82%;
            height: 500px;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .sw-home-final-image-main::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,
                    rgba(59, 67, 80, .02),
                    rgba(59, 67, 80, .18));
        }

        .sw-home-final-image-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: .6s ease;
        }

        .sw-home-final-image-main:hover img {
            transform: scale(1.05);
        }

        .sw-home-final-visual::before {
            content: "";
            position: absolute;

            width: 75%;
            height: 75%;

            left: 0;
            top: 8%;

            background: var(--primary);

            z-index: 0;
        }


        /* BADGE */

        .sw-home-final-badge {
            position: absolute;

            left: 15px;
            top: 35px;

            z-index: 4;

            width: 125px;
            height: 125px;

            background: #3B4350;
            color: #fff;

            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            text-align: center;

            transform: rotate(-5deg);
        }

        .sw-home-final-badge strong {
            font-size: 24px;
            line-height: 1;
            color: var(--primary);
        }

        .sw-home-final-badge span {
            font-size: 19px;
            font-weight: 700;
            line-height: 1.2;
        }

        .sw-home-final-badge small {
            margin-top: 6px;
            font-size: 8px;
            letter-spacing: 1.5px;
            color: #ddd;
        }


        .sw-home-final-content {
            max-width: 760px;
        }

        .sw-home-final-tag {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            padding: 8px 18px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .sw-home-final-content h2 {
            font-size: 40px;
            font-weight: 700;
            color: var(--combo);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .sw-home-final-content h2 span {
            display: block;
            color: var(--primary);
        }

        .sw-home-final-content p {
            color: #666;
            line-height: 1.5;
            margin-bottom: 15px;
        }

        .sw-home-final-intro {
            font-size: 17px !important;
            color: #555 !important;
        }

        .sw-home-final-process {
            margin-top: 30px;
            padding: 22px 0;

            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
        }


        .sw-home-process-item {
            display: flex;
            align-items: flex-start;

            gap: 15px;
        }


        .sw-home-process-number {
            width: 45px;
            height: 45px;

            flex-shrink: 0;

            display: flex;
            align-items: center;
            justify-content: center;

            background: #3B4350;
            color: var(--primary);

            font-size: 12px;
            font-weight: 700;
        }


        .sw-home-process-item h3 {
            color: #3B4350;

            font-size: 16px;
            font-weight: 700;

            margin: 2px 0 5px;
        }


        .sw-home-process-item p {
            font-size: 12px;

            line-height: 1.5;

            margin: 0;
        }


        .sw-home-process-line {
            width: 1px;
            height: 20px;
            background: var(--primary);
            margin: 5px 0 5px 22px;
        }

        .sw-home-final-action {
            display: flex;
            align-items: center;

            gap: 20px;

            margin-top: 28px;
        }


        .sw-home-final-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            gap: 12px;

            padding: 14px 22px;

            background: var(--primary);
            color: #fff;

            text-decoration: none;

            font-size: 13px;
            font-weight: 600;

            transition: .3s ease;
        }


        .sw-home-final-btn:hover {
            background: #3B4350;
            color: #fff;
        }


        .sw-home-final-btn i {
            font-size: 17px;
        }


        .sw-home-final-action>span {
            color: #777;
            font-size: 12px;
        }

        .sw-home-final-action>span i {
            color: var(--primary);
            margin-right: 5px;
        }

        @media(max-width:991px) {

            .sw-home-final-section {
                padding: 40px 15px;
            }

            .sw-home-final-visual {
                min-height: 500px;
                margin-bottom: 15px;
            }

            .sw-home-final-image-main {
                width: 82%;
                height: 450px;
            }

            .sw-home-final-content h2 {
                font-size: 36px;
            }

        }

        @media(max-width:767px) {
            .sw-home-final-section {
                padding: 40px 10px;
            }

            .sw-home-final-visual {
                min-height: 390px;

                justify-content: flex-start;
            }

            .sw-home-final-image-main {
                width: 87%;
                height: 350px;
            }

            .sw-home-final-visual::before {
                width: 75%;
                height: 75%;
            }

            .sw-home-final-badge {
                width: 95px;
                height: 95px;

                left: 5px;
                top: 20px;
            }

            .sw-home-final-badge strong {
                font-size: 18px;
            }

            .sw-home-final-badge span {
                font-size: 15px;
            }

            .sw-home-final-badge small {
                font-size: 6px;
            }

            .sw-home-final-content {
                text-align: left;
            }

            .sw-home-final-content h2 {
                font-size: 32px;

            }

            .sw-home-final-content p {
                font-size: 14px;

                line-height: 1.5;
                text-align: left;
            }

            .sw-home-final-intro {
                font-size: 15px !important;
            }

            .sw-home-final-process {
                margin-top: 25px;
            }

            .sw-home-process-item {
                gap: 12px;
            }

            .sw-home-process-number {
                width: 40px;
                height: 40px;
            }

            .sw-home-process-item h3 {
                font-size: 14px;
            }

            .sw-home-process-item p {
                font-size: 11px;
            }

            .sw-home-process-line {
                margin-left: 20px;
            }

            .sw-home-final-action {
                flex-direction: column;

                align-items: flex-start;

                gap: 12px;
            }

            .sw-home-final-btn {
                width: 100%;
                justify-content: center;
            }

        }

        @media(max-width:400px) {

            .sw-home-final-image-main {
                height: 320px;
            }

            .sw-home-final-visual {
                min-height: 360px;
            }

            .sw-home-final-content h2 {
                font-size: 28px;
            }

        }  