/* @media (min-width: 1600px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1433px;
    }
} */


#gh .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-color: var(--theme-orange);
    ;
}


/* HERO */
.hero-section {
    padding: 60px 0;
}

.hero-title {
    font-size: 40px;
    color: #202020;
    font-family: mona-sans bold;
}


.hero-subtitle {
    font-weight: 400;
    font-size: 20px;
    color: #202020;
}

/* 60% LIGHT BLUE BACKGROUND */
.services-bg {
    position: relative;
    padding: 70px 0;
    background-color: white;
}

.services-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-color: rgba(237, 118, 37, 0.05);
    /* #6BB1EA1A */
    z-index: 0;
}

/* Keep content above background */
.services-bg .container {
    position: relative;
    z-index: 1;
}

/* SERVICE CARD */
.service-card {
    background: #fff;
    border: 1px solid var(--theme-orange);
    border-radius: 16px;
    padding: 36px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 24px;
    color: #202020;
}

.service-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
}

.service-media {
    position: relative;
    width: 100%;
    height: 170px;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #efefef;
}

.service-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.service-fg-img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    max-height: 160px;
    max-width: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.service-desc {
    font-size: 18px;
    color: #202020;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* LIMIT TO 2 LINES */
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

    line-height: 1.5em;
    min-height: 3em;
}


/* .price {
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
}

.price span {
    font-size: 12px;
    font-weight: 400;
} */

.min-hours {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 12px;
}

.btn-custom {
    --bs-btn-bg: grey;
    --bs-btn-border-color: grey;
    --bs-btn-hover-bg: grey;
    --bs-btn-active-bg: grey;
}

/* .btn-primary {
    background-color: var(--theme-orange);
    ;
    border: none;
    border-radius: 6px;
} */

.service-card .btn-primary {
    background-color: var(--theme-orange);
    border: none;
    border-radius: 6px;
    width: 100px;
    height: 48px;
    margin-top: auto;
}

.offer-section {
    background-color: white;
}

.offer-box {
    /* background-color: rgba(217, 217, 217, 1); */
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    overflow: visible;
    position: relative;
    /* padding: 20px 40px; */
    background-color: rgba(217, 217, 217, 1);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
    /* min-height: 82px; */
}

/* --- Image Positioning --- */
.offer-img {
    position: absolute;
    bottom: 0;
    z-index: 10;
    height: 130px;
    width: auto;
}

/* 3. Position Left and Right specifically */
.offer-img-left {
    left: 20px;
    /* Adjust distance from left edge */
}

.offer-img-right {
    right: 20px;
    /* Adjust distance from right edge */
}

.offer-center {
    display: flex;
    gap: 60px;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    background-color: transparent;
}

/* --- Typography for "Get 50% Off" --- */
.offer-heading {
    color: rgba(0, 0, 0, 1);
    display: flex;
    align-items: baseline;
    gap: 8px;
    line-height: 1;
    padding-top: 13px;
}
.get-text {
    border-radius: 15px 0 0 15px;
    border: 1px solid #333;
    border-right: none;
    padding: 8px 25px;
}
.off-text{
    border-radius: 0 15px 15px 0;
    border: 1px solid #333;
    border-left: none;
    padding: 8px 25px; 
}
.get-text,
.off-text {
    font-size: 24px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
}

.offer-percent {
    font-size: 48px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
    position: relative;
    top: 9px;
}

.offer-subtitle {
    font-size: 22px;
    margin-top: 5px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
    text-align: center;
}

/* --- Coupon Styling --- */
.offer-right-col {
    text-align: center;
    color: rgba(0, 0, 0, 1);
}

.use-code {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-weight: 400;
}

.coupon {
    background: rgba(14, 60, 97, 1);
    color: rgba(255, 255, 255, 1);
    padding: 13.71px 45px;
    border-radius: 56px;
    /* Pill shape from Figma */
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}



@media (max-width: 992px) {
    .offer-center {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .offer-heading {
        justify-content: center;
    }
}

/* Fix for Right Image Overflowing below 768px */
@media (max-width: 768px) {
    .offer-box {
        padding: 20px;
        /* Reduce padding to give content more room */
        overflow: hidden;
        /* Clips any accidental overflow */
        flex-direction: column;
        /* Stacks content vertically if needed */
        text-align: center;
    }

    .offer-center {
        gap: 20px;
        margin: 20px 0;
    }

    /* Prevent images from going out of bounds */
    .offer-img {
        max-height: 120px;
        /* Scale down images for mobile */
        width: auto;
        position: relative;
        /* Ensure they stay in the flow */
    }

    /* Specifically handle the right image */
    .offer-img-right {
        margin-top: 10px;
        object-fit: contain;
    }

    /* Optional: Hide one image on very small screens to keep text large */
    @media (max-width: 480px) {
        .offer-img-left {
            display: none;
        }
    }
}

/* 


.form-label {
    font-size: 12px;
    font-weight: 500;
    color: #202020;
}

.form-control,
.form-select {
    height: 42px;
    font-size: 14px;
}

.offer-center {
    transition: all 0.3s ease;
}

/* BOOK BUTTON */
.book-btn {
    background-color: var(--theme-orange);
    ;
    color: #ffffff;
    /* padding: 10px 22px; */
    /* height: 42px; */
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
}

.book-btn:hover {
    background-color: var(--theme-orange);
    ;
}

/* QUICK SERVICE */
.quick-service {
    margin-top: 18px;
}

.quick-title {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #202020;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-tag {
    background: #ffffff;
    border: 1px solid #cfe2f3;
    color: #0E3C61;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
}

.service-tag.active {
    background: #0E3C61;
    color: #ffffff;
}

.hero-left {
    max-width: 990px;
    /* Figma card width */
    text-align: center;
}

.hero-image img {
    max-width: 484px;
    /* Figma image width */
    width: 100%;
    height: auto;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
}


/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        padding: 60px 0;
        text-align: center;
    }

    .hero-image {
        margin-top: 40px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-search-card {
        padding: 18px;
    }
}


.packages-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* TITLE */
.packages-title {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display";
    font-size: 28px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 8px;
}

.packages-subtitle {
    font-size: 15px;
    color: #202020;
}

/* CARD */
.package-card {
    border: 1.5px solid var(--theme-orange);
    ;
    border-radius: 14px;
    padding: 28px;
    height: 459px;
    max-width: 459px;
    width: 100%;
    background: #fff;
}

/* ICON */
.icon-box {
    width: 52px;
    height: 52px;
    background: #0d3b66;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}



/* TEXT */
.package-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.package-card .desc {
    font-size: 14px;
    color: #202020;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* PRICE */
.price {
    font-size: 32px;
    font-weight: 600;
    color: #202020;
    text-align: start;
    margin-top: 32px;
    margin-bottom: 32px;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: #202020;
}

.note {
    font-size: 12px;
    color: #202020;
    margin-bottom: 20px;
}

/* BUTTON */
.package-btn {
    width: 100%;
    background-color: var(--theme-orange);
    ;
    color: #fff;
    font-size: 14px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
}

.package-btn:hover {
    background-color: white;
    color: var(--theme-orange);
    ;
}

.about-section {
    background-color: white;
    padding: 18px 0;
}

.heading-abt-us {
    text-align: center;
    font-weight: 600;
    padding-bottom: 47px;
    font-size: 36px;
}

/* IMAGE */
.about-image {
    max-width: 100%;
    height: auto;
}

/* RIGHT CONTENT */
.about-content h2 {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display";
    font-size: 36px;
    font-weight: 600;
    color: #202020;
    margin-bottom: 20px;
}

.about-desc {
    font-size: 20px;
    color: #202020;
    max-width: 480px;
    margin-bottom: 25px;
}

/* FEATURES */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 26px;
    column-gap: 40px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 500;
    color: #202020;
}

/* GREEN CIRCLE */
.check-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #3bb273;
    /* green */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

/* BUTTON */
.about-btn {
    background-color: var(--theme-orange);
    ;
    color: white;
    padding: 12px 26px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.about-btn:hover {
    background-color: white;
    color: var(--theme-orange);
    ;
}

.about-content {
    padding-left: 10px;
}

@media (max-width: 992px) {

    .about-section {
        padding: 70px 0;
    }

    .about-content {
        text-align: center;
        margin-top: 40px;
        padding-left: 0;
        margin: 12px;

    }

    .about-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .features-list {
        grid-template-columns: 1fr;
        row-gap: 18px;
    }
}


/* HOW IT WORKS SECTION */
.how-it-works {
    padding: 90px 0;
    background: #ffffff;
}

/* TITLES */
.how-title {
    font-size: 28px;
    font-weight: 600;
    color: #202020;
}

.how-subtitle {
    font-size: 14px;
    color: #202020;
    margin-bottom: 70px;
}

/* STEPS WRAPPER */
.steps-wrapper {
    display: flex;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* EACH STEP COLUMN */
.step-col {
    flex: 1;
    text-align: center;
    position: relative;
    /* REQUIRED for line */
}

.step-col::after {
    content: "";
    position: absolute;

    /* vertical center of INNER circle */
    top: 32px;

    /* start from OUTER circle edge */
    left: calc(50% + 44px);

    /* stop at NEXT OUTER circle edge */
    width: calc(100% - 88px);

    height: 2px;
    background-color: #808080;
    z-index: 0;
}


/* REMOVE LINE AFTER LAST STEP */
.step-col:last-child::after {
    display: none;
}

/* TOP PART */
.step-top {
    display: flex;
    justify-content: center;
}

/* DOUBLE-RING CIRCLE */
.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;

    /* INNER CIRCLE COLOR (NUMBER CIRCLE) */
    background-color: #808080;
    ;
    color: rgba(255, 255, 255, 1);

    font-size: 20px;
    font-weight: 600;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 2;

    /* 🔑 THIS IS THE MAGIC */
    box-shadow:
        0 0 0 12px #F1F8FD,
        /* ring fill (64 → 88) */
        0 0 0 14px rgba(75, 85, 99, 1)
        /* outer border */
}


/* OUTER CIRCLE WITH FILLED RING */
/* .step-circle::before { */
/* content: ""; */
/* position: absolute; */

/* width: 88px; */
/* height: 88px; */
/* border-radius: 50%; */

/* background-color: #F1F8FD; */
/* ring fill */
/* border: 2px solid #0d3b66; */

/* top: 50%; */
/* left: 50%; */
/* transform: translate(-50%, -50%); */

/* z-index: -1; */
/* 🔑 BELOW inner circle */
/* } */

.step-col {
    isolation: isolate;
}

/* TEXT */
.step-title {
    font-size: 16px;
    font-weight: 600;
    color: #202020;
    margin-top: 40px;
}

.step-desc {
    font-size: 13px;
    color: #202020;
    line-height: 1.5;
    max-width: 260px;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .steps-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .step-col::after {
        display: none;
    }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    background-color: rgba(254, 248, 244, 1);
    padding: 90px 0;
}

/* TITLE */
.testimonials-title {
    font-size: 28px;
    font-weight: 600;
    color: #202020;
}

.testimonials-subtitle {
    font-size: 14px;
    color: #202020;
}

/* CARD */
.testimonial-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* STARS */
.stars {
    color: #f4b740;
    font-size: 16px;
    margin-bottom: 16px;
}

/* TEXT */
.testimonial-text {
    font-size: 14px;
    color: #202020;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* USER */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-user img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h6 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: #202020;
}

.testimonial-user span {
    font-size: 12px;
    color: #202020;
}

/* CTA SECTION */
.cta-section {
    background-color: rgba(255, 255, 255, 1);
    ;
    /* dark blue */
    padding: 80px 0;
}

/* TITLE */
.cta-title {
    font-size: 48px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 10px;
    /* font-style: ; */
}

/* SUBTITLE */
.cta-subtitle {
    font-size: 24px;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 24px;
    font-weight: 400;
}

/* BUTTON */
.cta-btn {
    background-color:#0E3C61;
    color: white;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
}

.cta-btn:hover {
    background-color: #f1f8fd;
}



/* FOOTER */
.site-footer {
    background-color: rgba(229, 229, 229, 1);
    padding: 20px 0;
    font-size: 12px;
    color: #202020;
}

/* WRAPPER */
.footer-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* BRAND */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--theme-orange);
    ;
}

.footer-brand img {
    width: 28px;
    height: auto;
}

/* CENTER */
.footer-center {
    flex: 1;
    text-align: center;
}

.footer-center p {
    margin-bottom: 6px;
    color: #0E3C61;
}

/* LINKS */
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links a {
    color: #202020;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* SOCIAL */
.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social img {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .footer-center {
        order: 3;
    }
}

html,
body {
    height: 100%;
}

.app-body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.app-content {
    flex: 1;
}

/* EXTRA SMALL DEVICES (REAL MOBILE FIX) */
@media (max-width: 530px) {

    /* NAVBAR */
    .navbar {
        padding: 14px 0;
    }

    .navbar-nav {
        gap: 18px;
    }

    /* BUTTONS */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* HERO */
    .hero-text h1 {
        font-size: 24px;
        line-height: 1.3;
        text-align: center;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-image img {
        max-width: 260px;
    }

    /* PACKAGE CARDS */
    .package-card {
        height: auto;
        padding: 22px;
    }

    /* ABOUT */
    .about-content h2 {
        font-size: 26px;
    }

    .about-desc {
        font-size: 14px;
    }

    /* STEPS */
    .step-desc {
        max-width: 100%;
        padding: 0 12px;
    }


    .cta-btn {
        width: 100%;
        padding: 14px;
    }

    /* FOOTER */
    .footer-wrapper {
        gap: 14px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: auto;
        padding: 50px 0;
    }
}
