/* ===========================
   1. Reset / Globals
=========================== */
@import url('https://fonts.cdnfonts.com/css/general-sans');
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');




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

p {
    font-family: "General Sans", "sans-serif";
    font-weight: 400;
}


.hero {
    height: 116vh;
    width: 100%;
    /* Adjusts optical size if supported */
    background: var(--reef-img-hero) no-repeat center center/cover;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 8rem;
    color: #fff;
    position: relative;
}



.project-title_1 p {
    font-weight: 400;
}

.hero .right {
    width: 380px;
    background: #fff;
    color: #333;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

p {

    font-family: 'General Sans', "sans-serif";
    font-weight: 400;
    /* Bold */
    font-optical-sizing: auto;

}

/* ===========================
   2. Typography
=========================== */
h1,
h2 {
    font-family: "Bodoni Moda", "sans-serif";
    font-weight: 700;
    color: #40c2cc;
}



.project-title {
    font-size: 6rem;
    font-weight: 700;
    font-family: "Bodoni Moda", "sans-serif";
}

.project-name {
    font-size: 42px;
    color: white;
    margin-bottom: 8%;
}


.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Full overlay */
.overlay-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(3px);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    font-family: "Bodoni Moda", "sans-serif";
    text-transform: uppercase;
    opacity: 0;
    /* start hidden ABOVE */
    transition: all 0.6s ease-in-out;
}


.image-wrapper:hover .overlay-text {
    opacity: 1;
    transform: translateY(0);
    /* slide up effect */
    align-items: center;
    /* move text to middle when hovered */
}


.project-desc {
    margin-top: 40%;
    font-size: 50px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 5%;
}

.temps {
    margin-top: 40%;
    font-size: 50px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 5%;
}

.desktop-only strong {
    font-family: 'General Sans', "sans-serif";
    font-weight: 600;
    /* Bold */
    font-optical-sizing: auto;
    font-style: italic;
}

.temps span {
    margin-right: 30px;
}

.desktop-only p {
    font-weight: 300;
}

/* ===========================
   3. Left Section
=========================== */
.left {
    max-width: 670px;
}

/* ===========================
   4. Right Form (Final Design)
=========================== */
.form-container {
    background: rgba(255, 255, 255, 0.85);
    /* 85% opacity for background */
    color: #40c2cc;
    border-radius: 25px;
    padding: 20px;
    width: 350px;
    font-size: 28px;
    margin-top: 8.5rem;
}

.disclaimer strong {
    font-weight: 800;
    color: #000000;
}


.form-container p {
    font-size: 12px;
    margin-bottom: 20px;
    color: #000000;
    font-family: "General Sans", "sans-serif";
    font-weight: 300;
}

#form-modal div {
    margin-top: 3%;
}


.form-container h3 {
    font-family: "General Sans", "sans-serif";

}

/* Inputs and Selects */
.form-container input,
.form-container select,
.lead-form input,
.lead-form select {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 10px;
    border: 1px solid #40c2cc;
    border-radius: 50px;
    font-size: 14px;
    font-family: "General Sans", "sans-serif";
    font-weight: 300;
    /* background: transparent; */
    /* transition: border-color 0.3s ease, box-shadow 0.3s ease; */
}

/* Phone input with UAE flag */
.phone-field {
    position: relative;
    width: 100%;
}

.phone-field input {
    padding: 12px 12px 12px 12px;
    /* extra left space for flag */
    background-size: 28px auto;
    /* flag size */
}


.form-container input:focus,
.form-container select:focus,
.lead-form input:focus,
.lead-form select:focus {
    border-color: #40c2cc;
    /* darker aqua focus */
    box-shadow: 0 0 6px rgba(64, 194, 204, 0.4);
    outline: none;
}

.select-wrapper {
    position: relative;
    width: 100%;
}


#country_code {
    width: 75%;
    font-size: 12px;
    padding: 8px 30px 8px 10px;
    /* space on right for arrow */
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff url("./arrow.svg") no-repeat right 12px center;
    background-size: 14px;

    /* hide default arrow */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.select-wrapper select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    /* space for custom icon */
    border: 1px solid #40c2cc;
    border-radius: 50px;
    font-size: 14px;
    font-family: "General Sans", "sans-serif";
    background: #fff url("./arrow.svg") no-repeat right 18px center;
    background-size: 14px;
    /* control size of icon */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    color: #808080;
    line-height: 1.4;
}

/* Button */
.form-container button {
    width: 100%;
    padding: 14px;
    background: #40c2cc;
    /* solid brand aqua */
    border: none;
    border-radius: 50px;
    /* pill-shaped button */
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
    font-family: "General Sans", "sans-serif";
}

.lead-form button {
    width: 100%;
    padding: 8px;
    background: #40c2cc;
    /* solid brand aqua */
    border: none;
    border-radius: 50px;
    /* pill-shaped button */
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-top: 3%;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
    font-family: "general sans", "sans-serif";
}

.form-container button:hover {
    background: #40c2cc;
    /* darker hover */
    transform: translateY(-2px);
}

/* Disclaimer */
.disclaimer {
    font-size: 11px;
    color: #777;
    margin-top: 12px;
    line-height: 1.5;
    font-family: "General Sans", "sans-serif";
}

/* ===========================
   6. Project Section (Image + Content)
=========================== */
.project-section {
    padding: 80px 8rem;
    font-family: "General Sans", "sans-serif";
}

.project-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    /* ✅ centers content horizontally */
    gap: 16rem;
    /* ✅ keeps it neat */
    margin: 0 auto;
    /* ✅ centers inside page */
    text-align: left;
}

.project-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.project-content {
    flex: 1;
    min-width: 300px;
}


.project-description {
    margin-bottom: 1.5rem;
}

.project-content h2 {
    font-family: "Bodoni Moda", serif;
    font-size: 60px;
    color: #40c2cc;
}

.project-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #808080;
    /* width: 73%; */
    /* color: #000000; */
    font-weight: 300;
}

.project-info {
    font-size: 15px;
    margin-bottom: 1%;

}

.project-info span {
    color: #666;
}

.project-info strong {
    display: block;
    font-family: "Bodoni Moda", serif;
    font-size: 26px;
    font-weight: 800;
    color: #40c2cc;
}

.btn-cta {
    display: inline-block;
    background: #40c2cc;
    color: #fff;
    padding: 8px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin: 10px auto;
    font-family: "General Sans", "sans-serif";
    font-weight: 600;
}

.btn-cta_2 {
    display: inline-block;
    background: white;
    color: #42c2cc;
    padding: 8px 30px;
    border-radius: 25px;
    text-decoration: none;
    margin: 10px auto;
    font-family: "General Sans", "sans-serif";
    font-weight: 500;
}


.btn-cta:hover {
    background: #40c2cc;
}


/* ===========================
   5. Swiper Styles
=========================== */
/* Tabs */
.tabs {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* space between tabs */
}


.tabs button {
    text-align: start;
    background: none;
    border: none;
    font-size: 2.4rem;
    cursor: pointer;
    padding: 8px 0px;
    transition: all 0.3s;
    line-height: 1;
    z-index: 999;
    color: #808080 !important;
    font-family: "Bodoni Moda", "sans-serif";
    /* keeps height stable */
}

.tabs button.active {
    /* larger */
    color: #40c2cc !important;
}

/* Slider container */
.slider {
    display: none;
    position: relative;
    width: 1088px;
    height: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.slider.active {
    display: block;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
}

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

.slide.active {
    display: block;
}

/* Controls - arrows left & right */
.controls {
    position: absolute;
    top: 50%;
    left: 85%;
    width: 100%;
    /* transform: translateY(-50%); */
    /* display: flex
; */
    justify-content: space-between;
    align-items: end;
    padding: 0 20px;
    pointer-events: none;
}

.slider-controls {
    text-align: end;
    padding-right: 12rem;
    padding-top: 1.5rem;
}

.arrow {
    cursor: pointer;
    font-size: 2rem;
    user-select: none;
    color: #808080;
    border-radius: 1550%;
    pointer-events: all;
    padding: 0rem 1rem;

}


/* ===========================
   5. Amenities Section
=========================== */
.amenities {
    padding: 0px 8rem;
    margin-bottom: 36px;
}

.amenities-word {
    text-align: start;
    font-size: 60px;
    text-transform: uppercase;

}

.amenities .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 120px;
    flex-direction: column;
}

.amenities-left {
    flex: 1;
    position: relative;
}

.amenities-slider {
    position: relative;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.amenities-slider img {
    width: 100%;
    height: 522px;
    object-fit: contain;
    border-radius: 16px;
}

.slide {
    display: none;

}

.slide.active {
    display: block;
}

.caption {
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 500;
    color: #808080;
}

.leadform_1111 {
    width: 32% !important;
}

/* Make text inside the dropdown smaller */
.iti__country-list .iti__country {
    font-size: 12px;
    /* adjust as needed */
    line-height: 1.2;
}

/* Make the selected flag dropdown text smaller */
.iti__selected-dial-code {
    font-size: 12px;
    /* dial code next to flag */
}

.iti {
    width: 100%;
    margin-bottom: 10px;
}


.phone-input {
    padding-left: 45px !important;
    width: 100% !important;
    box-sizing: border-box;
    /* shift text & placeholder right */
}



/* arrows outside */
.slider-btn {
    position: absolute;
    top: 50%;
    background: #ffffffdc;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.amenities-prev {
    left: 15%;
}

.amenities-next {
    right: 15%;
}

.destinations {
    padding: 60px 8rem;
}

.destinations h2 {
    font-size: 57px;
    font-weight: bold;
    color: #42c2cc;
    margin-bottom: 3.75rem;
    letter-spacing: 1px;
    /* text-align: left; */
}

.destination-list {
    padding-left: 1rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.destination {
    flex: 1 1 150px;
    min-width: 120px;
    text-align: start;
}

.destination img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.destination .time {
    font-family: "Bodoni Moda", "sans-serif";
    font-size: 40px;
    font-weight: bold;
    color: #808080;
}

.destination .time span {
    font-size: 14px;
    font-weight: 300;
    font-family: "General Sans", "sans-serif";
}

.destination p {
    margin: -5px 0 0;
    font-size: 24px;
    font-weight: 300;
    color: #808080;
    font-family: "General Sans", "sans-serif";
}

/* Tablet & Mobile */
@media (max-width: 768px) {
    .destination-list {
        justify-content: center;
        gap: 20px;
    }

    .destination {
        flex: 1 1 45%;
        /* two per row */
    }

}

@media (max-width: 480px) {
    .destination-list {
        justify-content: flex-start;
        padding: 0px 20px;
        /* align items to start */
    }

    .destination img {
        width: 80px;
        height: 80px;

    }

    .overlay-text {
        font-size: 1.25rem;
    }


    .destination .time {

        font-size: 24px;

    }


    .destination p {

        font-size: 12px;

    }

    .destination {
        flex: 1 1 45%;
        /* two per row */
        text-align: left;
        /* text aligned left */
        display: flex;
        flex-direction: column;
        align-items: center;
        /* content aligned left */
    }
}

.about-image img {
    width: 100%;
    display: block;
}

.about-content {
    font-family: "General Sans", sans-serif !important;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3.75rem 20px;
    text-align: center;
}

.about-text {
    text-align: center;
    font-size: 36px;
    color: #40c2cc;

}

.about-text h2 {
    padding-left: 8rem;
    text-align: start;
    padding-bottom: 1.5rem;
    padding-top: 3.5rem;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #40c2cc;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 16px;
    color: #808080;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: start;
}

.about-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    text-align: start;
}

.about-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.about-col p {
    font-size: 15px;
    color: #808080;
    line-height: 1.6;
}


.about-row {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
    text-align: left;
}

.about-left h4 {
    font-family: "General Sans", "sans-serif";
    font-size: 14px;
    font-weight: 700;
    color: #808080;
    margin: 0;
}

.about-right p {
    font-size: 15px;
    color: #808080;
    line-height: 1.4;
    margin: 0;
}

.form-section {
    text-align: center;
    padding: 0px 20px;
}

.form-title {
    font-size: 36px;
    font-weight: 700;
    color: #40c2cc;
    margin-bottom: 20px;
    font-family: "Bodoni Moda", "sans-serif";
    /* matches screenshot font */
    text-transform: uppercase;
}


.phone-field {
    display: flex;
    gap: 8px;
}

.phone-field select,
.phone-field input {
    padding: 10px;
    font-size: 14px;
}


.mobile-only {
    display: none !important;
}

/* ===========================
   4. Right Form (Final Design)
=========================== */
.form-container-bottom {
    background: white;
    color: #40c2cc;
    border-radius: 25px;
    width: 35%;
    font-size: 28px;
    margin: auto;
}

.form-container-bottom p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #808080;
    font-family: "General Sans", "sans-serif";
    font-weight: 400;
}

/* Inputs and Selects */
.form-container-bottom input,
.form-container-bottom select {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 10px;
    border: 1px solid #40c2cc;
    border-radius: 50px;
    font-size: 14px;
    font-family: "General Sans", "sans-serif";
    /* background: transparent; */
    /* transition: border-color 0.3s ease, box-shadow 0.3s ease; */
}

/* Phone input with UAE flag */
.phone-field {
    position: relative;
    width: 100%;
}

.phone-field input {
    padding: 12px 12px 12px 12px;
    /* extra left space for flag */

    background-size: 28px auto;
    /* flag size */
}

.lead-form .phone-field input {
    padding: 8px 8px 8px 12px;
    /* extra left space for flag */

    background-size: 28px auto;
    /* flag size */
}

.form-container-bottom input:focus,
.form-container-bottom select:focus {
    border-color: #40c2cc;
    /* darker aqua focus */
    box-shadow: 0 0 6px rgba(64, 194, 204, 0.4);
    outline: none;
}

/* Button */
.form-container-bottom button {
    width: 100%;
    padding: 14px;
    background: #40c2cc;
    /* solid brand aqua */
    border: none;
    border-radius: 50px;
    /* pill-shaped button */
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
    font-family: "General Sans", "sans-serif";
}

.form-container-bottom button:hover {
    background: #2ba4ad;
    /* darker hover */
    transform: translateY(-2px);
}

.mobile-only {
    display: none;
}


/* Show only on mobile */
.mobile-only {
    display: none;
}

.last-item {
    margin-left: 48px;
}

.last-item_1 {
    margin-left: 60px;
}


.modal {
    display: none;
    /* hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* dark overlay */
}

.modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}


@media screen and (max-width: 1400px) {


    .tabs {
        padding-right: 0rem !important;
        font-size: 2rem;
    }

    .slider {
        width: 800px !important;
        height: 600px !important;
    }
}




@media screen and (max-width: 1650px) {

    .form-container {
        margin-top: 5.3rem !important;
    }


    .hero {
        height: 100vh;
        width: 100%;
        padding: 8rem 8rem;
    }

    .slider {
        width: 1000px;
        height: 650px;
    }


    .project-desc {
        margin-top: 10rem;
        font-size: 2.4rem;
        width: 510px;
    }

    .form-container {
        margin-top: 0%;
    }

    .amenities-prev {
        left: 1%;
    }

    .amenities-next {
        right: 1%;
    }

}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}

/* Sticky button */
.sticky-enquire-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #40c2cc;
    color: #fff;
    font-size: 18px;
    padding: 15px;
    border: none;
    cursor: pointer;
    text-align: center;
    font-weight: bold;
    z-index: 9999;
}

/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
    /* ✅ allow scrolling */
    padding: 20px;
}

/* Modal Content */
.modal-content {
    background: #fff;
    margin: 50px auto;
    padding: 20px;
    border-radius: 12px;
    width: 95%;
    max-width: 500px;
    position: relative;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.close-btn:hover {
    color: #40c2cc;
}

.last-footer p {
    text-align: center;
    margin-top: -2.5rem;
    font-family: 'General Sans', sans-serif;
    font-weight: 300;
    color: #808080;
}

.last-right-item {
    margin-right: 25px;
}

.tabs-container {
    display: flex;
    justify-content: space-between;
    padding: 80px 0rem 80px 8rem;
}

/* ==========================
   Responsive Fix
========================== */
@media (max-width: 768px) {
    .hero {
        background: var(--reef-img-hero-mobile) no-repeat center center / cover;
        flex-direction: column;
        /* padding: 40px 20px; */
        height: 90vh;
        text-align: left;
        padding: 10px 20px;
    }

    .project-title_1 {
        font-weight: 300 !important;
    }

    .hero .left {
        width: 100% !important;
        margin-top: 20px;
    }

    .form-container {
        display: none;
        /* 🔥 hide form on mobile */
    }

    /* Typography adjustments */
    .project-title {
        font-size: 40px !important;
        padding-bottom: 12px;
        font-family: "Bodoni Moda", "sans-serif";
        font-weight: 700;
    }

    .project-name {
        font-size: 24px !important;
        margin-bottom: 16px;
    }

    .tabs-container {
        display: block;
    }

    .tabs {
        display: block;
        text-align: center;
    }

    .tabs button {
        padding-right: 0 !important;
        font-size: .85rem;
        padding: 0px 10px;
    }

    .project-desc {
        font-size: 1.6rem !important;
        width: 100% !important;
        margin-top: 4rem;
    }

    .form-section {
        text-align: start;
        padding: 0px 20px;
    }


    .project-section {
        padding: 0 20px !important;
    }

    .project-container {
        padding: 4.5rem .5rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
        gap: 0rem;
        margin: 0 auto;
        text-align: left;
    }

    .form-container-bottom {
        width: 95% !important;
    }

    .form-title {
        line-height: 2.5rem;
    }

    .form-container-bottom p {
        font-size: 12px !important;
    }

    .about-row {
        display: grid;
        grid-template-columns: 95px 1fr;
        /* gap: 40px; */
        align-items: start;
        margin-bottom: 40px;
        text-align: start;
    }

    .about-content {
        padding: 3rem 20px;
    }

    .about-text {
        font-size: 25px !important;
        text-align: start;
    }

    .about-text h2 {
        padding-left: 10px !important;
        font-size: 32px !important;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
        font-family: "General Sans", "sans-serif";
        font-weight: 600;
    }

    .amenities {
        padding: 1.5rem 20px;
        margin-bottom: 0px;
    }

    .amenities h2 {
        font-size: 32px !important;
    }

    .amenities-slider img {
        height: auto !important;
    }

    .amenities .container {
        flex-direction: column;
        padding: 0 10px;
    }

    .tabs {
        flex-wrap: wrap;
        gap: 0px;
        font-size: .85rem !important;
        margin: 3rem 0rem 0px 1rem 0rem;

    }

    .mobile-prev {
        padding-right: 15rem;
    }


    #slider1,
    #slider2,
    #slider3,
    #slider4 {
        width: 100% !important;
        height: 30vh !important;
    }

    .tabs-container {
        padding: 2rem 0rem;
    }

    .slider-controls {
        text-align: center !important;
        padding-right: 0px;
    }


    .amenities-word {
        font-size: 30px !important;
        padding: 10px !important;
    }


    .amenities-prev {
        left: 5%;
    }

    .amenities-next {
        right: 5%;
    }

    .destinations {
        padding: 0;
    }

    .destinations h2 {
        font-size: 2rem !important;
        padding: 3.5rem 20px;
        margin-bottom: 0px;
    }

    .slider-btn {
        padding: 10px 14px !important;
    }

    .last-item {
        margin-left: 30px !important;
    }

    .last-item_1 {
        margin-left: 40px;
    }

    .last-footer p {
        text-align: center;
        font-size: 12px;
        margin-top: 0px;
        font-family: "General Sans", "sans-serif";
        color: #808080;
    }

    .about-right {
        width: 95% !important;
    }

    .leadform_1111 {
        width: 61% !important;
    }

    .unique-slider-controls-row {
        display: flex;
        justify-content: space-between !important;
        gap: 10px;
        margin-top: 10px;
        padding-right: 0px !important;
    }


}


/* ================================
   Carousel Styles
================================= */
.carousel-container {
    position: relative;
    max-width: 68.75rem;
    /* 1100px */
    margin: auto;
    overflow: hidden;
    /* 20px */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 calc(100% / 3);
    /* 3 slides visible */
    padding: 0.625rem;
    /* 10px */
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
    /* 12px */
    object-fit: cover;
    display: block;
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.1);
}

/* ================================
   Modern Arrows
================================= */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    cursor: pointer;
    color: #fff;
    font-size: 1.5rem;
    padding: 0.75rem;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 1rem;
}

.carousel-next {
    right: 1rem;
}


/* ================================
   Responsive
================================= */
@media (max-width: 48rem) {

    /* 768px */
    .carousel-slide {
        flex: 0 0 100%;
        /* 1 slide on mobile */
    }

    .carousel-btn {
        font-size: 1.5rem;
        padding: 0.25rem 0.625rem;
    }
}

@media (max-width: 30rem) {

    /* 480px */
    .carousel-progress {
        font-size: 0.75rem;
        /* 12px */
        gap: 0.375rem;
        /* 6px */
    }

    .carousel-btn {
        font-size: 1.2rem;
        padding: 0.1875rem 0.5rem;
    }
}

.amenities h2 {
    font-size: 54px;
}



/* =============================== */

.unique-slider-container {
    max-width: 90%;
    margin: auto;
}

.unique-slider {
    overflow: hidden;
}

.unique-slider-track {
    display: flex;
    transition: transform 0.3s ease;
}

.unique-slide {
    min-width: 500px;
    height: 500px;
    flex-shrink: 0;
    margin-right: 10px;
}

.unique-slide img {
    width: 500px;
    height: 500px;
    object-fit: cover;
}

/* Arrows below slider in a new row */
.unique-slider-controls-row {
    display: flex;
    justify-content: flex-end;
    /* right aligned */
    gap: 10px;
    margin-top: 1.5rem;
    padding-right: 5rem;
}

.unique-prev,
.unique-next {
    cursor: pointer;
    font-size: 2rem;
    padding: 0px 10px;
    border-radius: 50%;
    color: #808080;
}

/* Mobile: show only 1 slide */
@media (max-width: 768px) {

    .unique-slide,
    .unique-slide img {
        min-width: 100%;
        width: 100%;
        height: 43vh;
    }
}

.title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    /* spacing between title and button */
}

.mobile-btn {
    display: none;
    /* hide on desktop */
}

@media (max-width: 768px) {
    .mobile-btn {
        display: inline-block;
        /* show on mobile */
        position: absolute;
        left: 50%;
        top: 2.8%;
    }
}



/* 

*/


.register-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1440px;
    margin: 50px auto;
    padding: 20px;
    gap: 12rem;
}

/* Left section */
.register-left {
    flex: 1;
}

.register-heading {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    color: #42c2cc;
    margin: 0 0 20px;
}

.register-description {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* Right form */
.register-right {
    flex: 1;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.register-input:focus {
    border-color: #42c2cc;
}

.register-btn {
    background: #42c2cc;
    color: #fff;
    font-size: 16px;
    padding: 14px 0;
    cursor: pointer;
    width: 100%;
}


.bottom_form input,
.bottom_form select {
    border: 0px !important;
    border-bottom: 1px solid #808080 !important;
    border-radius: 0px !important;
}



/* Responsive */
@media (max-width: 900px) {
    .register-container {
        flex-direction: column;
        text-align: left;
        gap: 0rem;
        margin: 0px;
    }


    .register-heading {
        font-size: 36px;
    }

    .register-btn {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }


    .qr-code img {
        width: 80px !important;
    }
}


.qr-code {
    text-align: center;
}

.qr-code img {
    width: 150px;
}

/* hide recaptcha badge */
.grecaptcha-badge {
    /* visibility: hidden; */
}