.add-foot {
    background-color: var(--lightgreen);
}

.booking-section {
    width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    margin: auto;
    margin-top: -280px;
}

.form-container {
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(90deg, white 67%, #1a1a1a 62%);
    border-radius: 5px;
    position: relative;
}

.form-container .book-now {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: #ccc;
    padding: 10px;
    font-size: 26px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
    font-weight: bold;
}

.booking-section form {
    padding-left: 50px;
}

.form-group {
    margin-bottom: 38px;
}

.form-group label {
    margin-left: 20px;
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
    font-weight: 400;
    color: #333;
}

.form-group input {
    margin-left: 20px;
    width: 95%;
    padding: 17px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 19px;
}

.form-group input[type="date"] {
    padding-right: 30px;
}

.sub-for {
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    font-size: 25px;
    font-weight: 600;
    position: relative;
    color: var(--white);
}

.submit-btn:before {
    content: "";
    position: absolute;
    bottom: 0px;
    width: 100px;
    border-radius: 20px;
    height: 5px;
    background-color: #ccc;
}

.footer-sec {
    color: white;
    padding: 20px 0px;
    text-align: center;
}

.footer-content {
    display: flex;
    /* align-items: center; */
    justify-content: space-around;
    flex-wrap: wrap;
    color: #ffffff;
}

.footer-content h3 {
    font-size: 20px;
}

.footer-content p {
    margin-top: 20px;
    font-size: 16px;
}

#rerano{
    margin-top: 50px;
}

.footer-content i {
    margin-top: 20px;
    font-size: 16px;
}

.footer-sec div {
    margin: 10px;
}

.footer-sec a {
    color: white;
    text-decoration: none;
    margin: 0 8px;

}

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

.copy-right {
    background-color: #ccc;
    padding: 20px 0;
}

.footer-copy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
    gap: 10px;
}

.copy-right p,
.copy-right span,
.copy-right a {
    font-size: 16px;
    color: #000;
    margin-bottom: 0;
    text-decoration: none;
}

/* ✅ Center disclaimer link */
.disclaimer-link {
    font-weight: 500;
    color: #014d97;
    text-decoration: none;
    transition: all 0.3s ease;
}

.disclaimer-link:hover {
    color: #000;
    text-decoration: underline;
}

/* ========================= */
/* ✅ Sliding Disclaimer Panel */
/* ========================= */
.disclaimer-panel {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.5s ease;
    max-height: 70vh;
    overflow-y: auto;
    border-top: 4px solid #014d97;
}

.disclaimer-panel.active {
    bottom: 0;
}

.disclaimer-content {
    padding: 20px 25px;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #014d97;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 768px) {
    .footer-copy {
        flex-direction: column;
        gap: 8px;
    }
}


.scrollUp i {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--lightgreen);
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.foot_logo {
    width: 150px;
    height: auto;
    /* filter: invert(1) brightness(10) contrast(10); */
}

.dual-footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /* space between logos */
    position: relative;
}

/* ✅ Force footer logos to left on mobile */
@media (max-width: 767.98px) {
    .dual-footer-logo {
        justify-content: flex-start !important;
        /* override center alignment */
        text-align: left !important;
        margin-left: 0 !important;
        width: 100%;
    }

    /* Optional: slightly reduce logo spacing on mobile */
    .dual-footer-logo img {
        max-width: 120px;
    }

    .footer-copy {
        text-align: left !important;
    }

    #foot-list{
        margin-left: 0px;
    }
}

/* ✅ Vertical white divider */
.logo-divider {
    width: 1.5px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    /* soft white line */
    align-self: stretch;
}

.social-icons {
    position: fixed;
    bottom: 20%;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1000;
}

.social-icons i {
    font-size: 18px;
    padding: 12px;
    border-radius: 50%;
    background-color: #1d69c3;
    color: var(--white);
}

.whatsapp_sec i {
    background-color: #4caf50;
    color: var(--white);
}

@media (max-width: 1440px) {
    .footer-sec {
        padding: 30px 0px;
    }
}

@media (max-width: 1366px) {
    .form-container {
        padding: 60px 30px;
    }

    /* .form-group label {
        font-size: 27px;
    } */

    .footer-content h3 {
        font-size: 19px;
    }

    /* .footer-content p {

        font-size: 18px;
    } */

    .copy-right p {
        font-size: 17px;
    }

    .copy-right span {
        font-size: 17px;
    }

    /* .form-container .book-now {
        font-size: 35px;
    } */

}

/* @media (max-width: 1200px) {
    .form-group label {
        font-size: 25px;
    }

    .form-container .book-now {
        font-size: 30px;
    }

} */

@media (max-width: 1199px) {
    .loc-map iframe {
        height: 500px;
    }

    .form-group label {
        font-size: 16px;
    }
}

@media(max-width:1152px) {
    .foot_logo {
        width: 220px;
    }

    .footer-sec div {
        margin: 7px;
    }

    .copy-right span,
    .copy-right p {
        font-size: 12px;
    }

    .copy-right {
        padding: 5px 0;
    }
}

@media (max-width: 1024px) {
    .footer-content img {
        width: 205px !important;
        height: auto;
    }


    .footer-sec {
        padding: 0px 0px;
    }

    .footer-content h3 {
        font-size: 20px;
    }

    .footer-content p {
        font-size: 16px;
    }

    .form-container {
        padding: 30px 30px;
    }

    .form-container .book-now {
        font-size: 17px;
    }

    .booking-section form {
        padding-left: 5px;
    }

    .form-group input {

        width: 96%;

    }
}

@media (max-width: 991px) {
    .fot-con {
        max-width: 90%;
    }

    .copy-right p {
        font-size: 13px;
    }
     .copy-right a {
        font-size: 13px;
    }

    .copy-right span {
        font-size: 13px;
    }

    .footer-sec div {
        margin: 3px;
    }

    .booking-section {
        margin-top: -200px;
    }

    .fot-con {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .form-group input {
        width: 100%;
    }

    .form-group input {
        font-size: 14px;
        margin-left: 16px;
    }

    .footer-content h3 {
        font-size: 17px;
    }

    .social-icons {
        bottom: 21%;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .form-group label {
        margin-left: 0px;
    }

    .form-group label {
        font-size: 16px;
    }

    .form-group input {
        margin-left: 0px;
    }

    .form-group input {

        width: 100%;
        padding: 17px 5px;
        font-size: 15px;
    }

    .fot-con {
        max-width: 78%;
    }

    .booking-section {
        width: 100%;
    }

    .booking-section form {
        padding-left: 25px;
    }

    .footer-sec div {
        margin: 19px;
    }
}


/* Mobile view: stack items vertically */
@media (max-width: 767.98px) {
    .footer-copy {
        flex-direction: column;
        /* stack vertically */
        align-items: flex-start;
        /* align to left */
        text-align: left;
        /* left-align text */
        gap: 8px;
        /* add spacing between items */
    }

    .footer-copy p,
    .footer-copy a,
    .footer-copy span {
        display: block;
        width: 100%;
    }

    .footer-copy a.disclaimer-link {
        margin: 5px 0;
    }
}

@media (max-width: 767px) {
    .form-container {
        background: linear-gradient(90deg, white 98%, #eaf7bd 53%);
    }

    .form-group {
        margin-bottom: 17px;
    }

    .form-group label {
        font-size: 22px;
    }

    .form-group input {

        padding: 17px 10px;
        font-size: 18px;
    }

    .footer-copy {
        text-align: center;
        display: block;
    }

    .submit-btn {
        color: #000;
    }
}

@media (max-width: 576px) {
    .fot-con {
        max-width: 95%;
    }

    .form-group label {
        font-size: 17px;
    }

    .form-group input {
        font-size: 15px;
    }
}

@media (max-width: 540px) {
    .booking-section {
        width: 100%;
    }

    .form-group label {
        font-size: 17px;
    }

    .form-group input {
        padding: 17px 10px;
        font-size: 15px;
    }

    .form-container .book-now {
        font-size: 20px;
    }

    .submit-btn {
        font-size: 20px;
    }

    .submit-btn:before {
        top: 43px;
        width: 88px;
    }

    .footer-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .footer-content p {
        font-size: 16px;
        margin-top: 10px;
    }

    .footer-content i {
        margin-top: 10px;
        font-size: 18px;
    }

    .dual-footer-logo img {
        justify-content: flex-start;
    }
}

@media(max-width:492px) {
    .form-container .book-now {
        transform: unset;
        writing-mode: unset;
        height: auto;
        width: 100%;
        position: unset;
    }

    .booking-section form {
        padding-left: 0;
    }

    .form-container {
        padding: 30px 10px;
        background: var(--white);
        border-bottom: solid 8px var(--lightgreen);
    }

    /* ✅ Only target text columns — not every div */
    .footer-sec .footer-column {
        margin: 19px 0;
        text-align: left;
    }

    /* ✅ Keep dual logos & copyright row safe */
    .dual-footer-logo,
    .footer-copy {
        flex-direction: row !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }
}


@media (max-width:460px) {
    .booking-section {
        padding: 10px;

    }

    .fot-con {
        max-width: 100%;
    }

    .copy-right p {
        font-size: 13px;
    }
     .copy-right a {
        font-size: 13px;
    }

    .copy-right span {
        font-size: 12px;
    }
}

@media (max-width:432px) {
    .loc-map iframe {
        height: 400px;
    }

    .footer-content p {
        text-align: left;
    }

    .footer-content img {
        width: 180px !important;
        height: auto;
    }



    .booking-section {
        margin-top: 0;
    }

    .footer-content {
        align-items: unset;
        justify-content: normal;
    }

    .footer-content h3 {
        text-align: start;
        font-size: 17px;
    }
}

@media (max-width:419px) {
    .footer-content img {
        width: 120px;
        height: auto;

    }
}

@media (max-width:400px) {
    .copy-right p {
        padding: 0px;
        font-size: 13px;
    }
    .copy-right a {
        font-size: 13px;
    }

    .amenities_main .nav button,
    .amenities_main .nav .nav-item {
        width: 100%;
    }
}



@media (max-width:360px) {
    .exclusive {
        padding: 16px;
    }

    .exclusive {
        width: 287px;
    }

    .footer-copy {
        padding: 0px;
        text-align: center;
        display: block;
    }
}



















.website-counter {
    margin: 10px;
    /* padding: 10px 10px; */
    background-color: #9cbe22;
    height: 40px;
    width: 80px;
    color: white;
    /* border-radius: 30px; */
    font-weight: 700;
    font-size: 25px;
    /* margin-top: 10px; */
}

/* Styles for reset button */
#reset {
    margin-top: 20px;
    background-color: #008cba;
    cursor: pointer;
    font-size: 18px;
    padding: 8px 20px;
    color: white;
    border: 0;
}

.website-count {
    justify-content: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.website-count h1 {
    color: white;
    font-size: 16px;
}




/* Sticky button */
.disclaimer-btn {
    position: fixed;
    bottom: 10%;
    right: 20px;
    z-index: 1050;
    background-color: #a6483a;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.disclaimer-panel {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    right: 0;
    /* ✅ ensures no horizontal gap */
    background: #fff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: all 0.5s ease;
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    /* ✅ prevent horizontal scroll */
    border-top: 4px solid #014d97;
}

.disclaimer-panel.show {
    bottom: 0;
}

.disclaimer-content {
    padding: 25px 30px;
}

.disclaimer-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

#closeDisclaimer {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: #333;
    cursor: pointer;
}

.ftr-btn-style{
    background-color: #1a1a1a;
    border: none;
}