:root {
    --top-bar-bg: #F9F6EE;
    --contianer-bg: #E6E6FA;
    --color-1: #69336d;
    --color-2: #9a6da1;
    --h1-text: clamp(1.4rem, 3vw, 1.8rem);
    --hero-text: clamp(0.8rem 3vw, 1.8rem);
    --p-text: clamp(1.2rem, 3vw, 1.6rem);
    --promo-bg: #b1e4df;
    --promo-border-bg: #008f85;
    --promo-text: clamp(1rem, 3vw, 1.4rem);
    --p-color: #333333;
    --footer-bg: #FCF5E5;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow-x: hidden;
    font-family: "Bitter", serif;
}


.top-bar {
    background-color: var(--top-bar-bg);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px 20px;
    color: var(--color-1);
}

.hero {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero img {
    width: 30px;
    height: 30px;
}

.hero-text {
    font-size: var(--h1-text);
    font-weight: 700;
}

.top-bar-item {
    min-width: 140px;
    font-weight: 500;
    text-align: end;
}

.banner-swiper {
    width: 100%;
    height: 700px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.nabh-certification {
    text-align: center;
    padding: 40px 20px;
}

.nabh-logo {
    width: 100px;
    margin-bottom: 10px;
}

.nabh-text {
    font-size: var(--h1-text);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    color: var(--p-color);
}

.nabh-text strong {
    color: var(--promo-border-bg);
}

.content-sec {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    align-items: start;
    background-color: var(--contianer-bg);
    border-radius: 10px;
    width: 100%;
    margin-bottom: 30px;
}

.services-sec,
.booking-sec {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    word-break: break-word;
}

.services-sec-h2,
.booking-sec-h2 {
    font-size: var(--h1-text);
    margin-bottom: 15px;
    color: #333;
}

.services-sec ul,
.booking-sec ul {
    list-style: disc outside;
    font-size: var(--p-text);
    color: var(--p-color);
    line-height: 1.6;
    padding-left: 40px;
}

.promo-text {
    margin: 20px 0;
    font-size: var(--promo-text);
    color: #333;
    font-weight: 500;
    background-color: var(--promo-bg);
    padding: 15px;
    border-left: 5px solid var(--promo-border-bg);
    border-radius: 8px;
    line-height: 1.6;
}

.book-now-btn {
    display: inline-block;
    background-color: var(--color-1);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
    margin-top: 20px;
}

.book-now-btn:hover {
    background-color: var(--color-2);
}

.site-footer {
    background-color: var(--footer-bg);
    color: var(--color-1);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
    contain: layout style;

}

.scroll-fade.site-footer {
    opacity: 0;
    transform: translateY(40px);
    visibility: hidden;
}

.scroll-fade.visible.site-footer {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.footer-content {
    padding: 10px;
    font-size: var(--promo-text);
}

.address-block {
    display: flex;
    gap: 20px;
    font-weight: 500;
    padding: 20px 40px;
}

.legal-block {
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    color: #333;
}

.social-media-icons a {
    text-decoration: none;
}

.fa-youtube {
    color: #FF0000;
    cursor: pointer;
}

.fa-facebook {
    color: #1877F2;
    cursor: pointer;
    padding-left: 8px;
}

.fa-square-instagram {
    color: #E4405F;
    cursor: pointer;
    padding-left: 8px;

}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up-on-load {
    animation: fadeUp 1.5s ease forwards;
}

.fade-up-on-load.delay-1 {
    animation-delay: 0.5s;
}

.fade-up-on-load.delay-2 {
    animation-delay: 1s;
}

.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
    backface-visibility: hidden;
    min-height: 200px;
}

.scroll-fade:not(.visible) {
    visibility: hidden;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: var(--color-1);
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: var(--color-1);
}

@media screen and (max-width: 599px) {
    .top-bar {
        flex-direction: column;
        text-align: start;
        padding: 12px 16px;
        gap: 6px;
    }

    .hero img {
        width: 40px;
        height: 40px;
    }

    .top-bar-item {
        text-align: left;
    }

    .banner-bg-image-sec {
        height: 400px;
    }


    .banner-swiper {
        width: 100%;
        height: 400px;
    }

    .footer-content {
        padding: 10px;
        text-align: left;
    }

    .address-block {
        padding: 5px 10px;
    }

    .address-block img {
        height: 50px;
        width: 50px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        display: none;
    }

    .content-sec {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        width: 100%;
    }

    .services-sec,
    .booking-sec {
        padding: 10px;
    }

    .fa-facebook,
    .fa-square-instagram {
        padding-left: 4px;
    }
}

@media screen and (min-width: 600px) and (max-width: 767px) {
    .top-bar-item {
        text-align: left;
    }

    .hero img {
        width: 40px;
        height: 40px;
    }

    .banner-bg-image-sec {
        height: 400px;
    }

    .banner-swiper {
        width: 100%;
        height: 400px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        display: none;
    }

    .content-sec {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        max-width: 500px;
    }

    .address-block img {
        height: 70px;
        width: 70px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .banner-bg-image-sec {
        height: 500px;
    }

    .banner-swiper {
        width: 100%;
        height: 500px;
    }

    .content-sec {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        max-width: 700px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .content-sec {
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        max-width: 900px;
    }
}