/* ===========================
   1. Reset / Globals
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero {
    height: 116vh;
    width: 100%;
    font-family: "Cairo", sans-serif;
    background: url("./Asset01.webp") no-repeat center center/cover;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 80px 50px;
    color: #fff;
    position: relative;
}


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


/* ===========================
   2. Typography
=========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Bodoni Moda", serif;
    font-weight: 800;
    color: #40c2cc;
}



.project-title {
    font-size: 20px;
    font-weight: 400;
    font-family: "Cairo", sans-serif;
}

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



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

.temps {
    margin-top: 40px;
    font-size: 22px;
    font-weight: bold;
    font-family: "Cairo", sans-serif;
}

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

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

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

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

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

/* Inputs and Selects */
.form-container input,
.form-container select,
#leadForm input,
#leadForm select {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 10px;
    border: 1px solid #40c2cc;
    border-radius: 50px;
    font-size: 14px;
    font-family: "Cairo", 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 */
}


.form-container input:focus,
.form-container select:focus,
#leadForm input:focus,
#leadForm 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%;
}

.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: "Cairo", 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: "Cairo", sans-serif;
}

#leadForm 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: "Cairo", 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: "Cairo", sans-serif;
}

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

.project-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    /* ✅ centers content horizontally */
    gap: 50px;
    max-width: 1200px;
    /* ✅ 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: 20px;
}

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

.project-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #808080;
    width: 90%;
}

.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;
}

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


/* ===========================
   5. Swiper Styles
=========================== */
/* Tabs */
.tabs {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    /* space between tabs */
}

#slider1,
#slider2,
#slider3,
#slider4 {
    margin-top: -50px;
}

.tabs button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 8px 15px;
    transition: all 0.3s;
    line-height: 1;
    z-index: 999;
    color: #40c2cc !important;
    font-family: "Cairo", sans-serif;
    /* keeps height stable */
}

.tabs button.active {
    font-weight: bold;
    font-size: 46px;
    /* larger */
    color: #40c2cc;
}

/* Slider container */
.slider {
    display: none;
    position: relative;
    width: 1650px;
    height: 880px;
    margin: 0 auto;
    border-radius: 12px;
    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: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    pointer-events: none;
    /* so only arrows clickable */
}

.arrow {
    cursor: pointer;
    font-size: 16px;
    user-select: none;
    color: black;
    background-color: #ffffffc6;
    border-radius: 1550%;
    padding: 8px 14px;
    pointer-events: all;

}


/* ===========================
   5. Amenities Section
=========================== */
.amenities {
    padding: 80px 80px;
}

.amenities-word {
    text-align: center;
    font-size: 60px;
    text-transform: uppercase;
    padding: 30px;
}

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

.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: #555;
}

.leadform_1111 {
    width: 32% !important;
}

/* 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%;
}

/* Right column */
.amenities-right {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* always 2 equal columns */
    grid-auto-rows: 1fr;
    /* make rows equal height */
    gap: 40px;
    /* equal row/col gap */
    align-items: center;
    /* vertically center */
    justify-items: center;
    /* horizontally center */
}


.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 8px;
}

.airport {
    margin-top: -20px !important;
    color: #808080 !important;
}

.amenity-item img {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.amenity-item p {
    margin: 0;
    font-size: 14px;
    font-family: "Cairo", sans-serif;
}

.amenity-item strong {
    font-size: 40px;
    /* bigger number */
    font-weight: 00;
    color: #808080;
}

.amenity-item small {
    font-size: 16px;
    color: #777;
    margin-left: 3px;
}



.about-image img {
    width: 100%;
    display: block;
    margin-top: -20px;
}

.about-content {
    font-family: "Cairo", sans-serif;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

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

}

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

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

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

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

.about-col p {
    font-size: 15px;
    color: #555;
    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-size: 14px;
    font-weight: 400;
    color: #808080;
    margin: 0;
}

.about-right p {
    font-size: 15px;
    color: #555;
    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", 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: "Cairo", 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: "Cairo", 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 */
}

#leadForm .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: "Cairo", 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: 1650px) {
    .hero {
        height: auto;
        width: 100%;
        padding: 8rem 8rem;
    }

    .slider {
        width: 1200px;
        height: 700px;
    }

    .tabs button.active {
        font-size: 36px !important;

    }

    .project-desc {
        margin-top: 6rem;
        font-size: 2.9rem;
    }

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

    .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: 'Cairo';
    color: #808080;
}

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


/* ==========================
   Responsive Fix
========================== */
@media (max-width: 768px) {
    .hero {
        background: url("./assets/Asset-1.webp") no-repeat center center / cover;
        flex-direction: column;
        /* padding: 40px 20px; */
        height: 747px;
        text-align: left;
        padding: 10px 20px;
    }

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

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

    /* Typography adjustments */
    .project-title {
        font-size: 40px !important;
    }

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

    .project-desc {
        font-size: 24px !important;
        width: 100% !important;
        margin-top: 50%;
        width: 61% !important;
    }

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


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

    .project-container {
        flex-direction: column-reverse;
    }

    .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: 20px;
    }

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

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

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

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

    .amenities {
        padding: 40px 10px
    }

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

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

    .tabs {
        flex-wrap: wrap;
        gap: 10px;
        font-size: .85rem !important;
        margin-top: 3rem;
    }

    .tabs button.active {
        font-size: 30px !important;
    }

    #slider1,
    #slider2,
    #slider3,
    #slider4 {
        padding: 1.1rem;
        width: 100%;
        height: auto;
    }




    .slider-section {
        margin-top: 3rem;
    }

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


    .amenities-prev {
        left: 5%;
    }

    .amenities-next {
        right: 5%;
    }


    .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: 'Cairo';
        color: #808080;
    }

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

    .leadform_1111 {
        width: 61% !important;
    }


}