/* ===============================
   OUR PROJECTS PAGE STYLES
================================= */

/* Banner Section */
.projects-banner {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
}

.projects-banner .banner-bg-img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    display: block;
    object-fit: cover;
    max-height: none;
}

.projects-banner .banner-overlay-text {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    text-align: left;
    z-index: 2;
}

.projects-banner .banner-overlay-text .line-normal {
    display: block;
    font-family: var(--ff-heading);
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 400;
    color: #333;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.projects-banner .banner-overlay-text .line-bold {
    display: block;
    font-family: var(--ff-heading);
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 700;
    font-style: italic;
    color: #1a1a1a;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .projects-banner {
        height: 40vh !important;
        min-height: 40vh !important;
    }

    .projects-banner .banner-overlay-text {
        right: auto;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 90%;
        background: rgb(255 255 255 / 37%);
        padding: 20px;
        border-radius: 6px;
    }
}

/* About The Project Section */
.about-project {
    padding: 80px 0;
    background-color: #fff;
}

.about-project .section-heading {
    font-family: var(--ff-heading);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 400;
    color: #222;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Project Card */
.project-card {
    margin-bottom: 0;
}

.project-card .project-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
}

.project-card .project-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-card .project-logo {
    max-width: 95px;
    height: auto;
    margin-bottom: 30px;
}

.project-card .project-name {
    font-family: var(--ff-heading);
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.9;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.project-card .project-name strong {
    font-weight: 700;
}

.project-card .project-desc {
    font-family: var(--ff-body);
    font-size: 15px;
    font-weight: 400;
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.project-card .know-more-link {
    display: inline-block;
    font-family: var(--ff-heading);
    font-size: 14px;
    font-weight: 600;
    /* color: var(--clr-gold); */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-base);
    color: #95c12b;
}

.project-card .know-more-link:hover {
    color: #333;
}

/* Responsive */
@media (max-width: 991px) {
    .about-project {
        padding: 50px 0;
    }

    .about-project .section-heading {
        margin-bottom: 40px;
    }

    .project-card .project-name {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .about-project {
        padding: 40px 0;
    }

    .about-project .section-heading {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .project-card .project-info {
        padding-top: 25px;
    }

    .project-card .project-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .project-card .project-name,
    .project-card .project-desc {
        text-align: center;
    }

    .project-card .know-more-link {
        display: block;
        text-align: center;
    }

    .luxury-slide-content h2 {
        font-size: 14px;
    }
}

/* ===============================
   LUXURY SLIDER SECTION
================================= */
.luxury-slider-section {
    padding: 0 0 40px 0;
    background-color: var(--clr-white);
    overflow: hidden;
    position: relative;
}

.luxury-track-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.luxury-slide {
    flex-shrink: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-slide.side {
    flex: 0 0 24%;
}

.luxury-slide.active {
    flex: 0 0 44%;
}

.luxury-img-box {
    width: 100%;
    height: 450px;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease;
    background-color: #f5f5f5;
}

.luxury-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .luxury-slide.side .luxury-img-box {
    opacity: 0.5;
} */

.luxury-slide.active .luxury-img-box {
    opacity: 1;
}

.luxury-slide-content {
    margin-top: 25px;
    transition: opacity 0.4s ease;
}

.luxury-slide.side .luxury-slide-content {
    display: none;
    opacity: 0;
}

.luxury-slide.active .luxury-slide-content {
    display: block;
    opacity: 1;

}

.luxury-slide-content h2 {
    font-family: var(--ff-heading);
    font-size: clamp(18px, 2.5vw, 20px);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.luxury-slide-content p {
    font-family: var(--ff-body);
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.luxury-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.luxury-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--clr-gold);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-gold);
    font-size: 18px;
    transition: all 0.3s ease;
}

.luxury-arrow:hover {
    background: var(--clr-gold);
    color: var(--clr-white);
}

@media (min-width: 992px) {
    .luxury-nav {
        position: absolute;
        top: 225px;
        left: 0;
        right: 0;
        padding: 0 40px;
        margin-top: 0;
        justify-content: space-between;
        pointer-events: none;
        z-index: 10;
        transform: translateY(-50%);
        max-width: 1700px;
        margin-left: auto;
        margin-right: auto;
    }

    .luxury-arrow {
        pointer-events: auto;
        width: 60px;
        height: 60px;
        font-size: 22px;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(4px);
    }
}

@media (max-width: 991px) {
    .luxury-track-wrapper {
        gap: 0;
        padding: 0 20px;
    }

    .luxury-slide.side {
        display: none;
    }

    .luxury-slide.active {
        flex: 0 0 100%;
    }

    .luxury-img-box {
        height: 350px;
    }

    .luxury-slide-content h2 {
        font-size: 18px;
    }

    .luxury-slide-content p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .luxury-img-box {
        height: 250px;
    }
    
    .video-wrapper {
        border-radius: 20px;
    }
}


/* ===============================
   AMENITIES SECTION
================================= */
.amenities-section {
    padding: 40px 0 20px;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.amenities-heading {
    font-family: var(--ff-heading);
    font-size: clamp(26px, 3.5vw, 28px);
    font-weight: 400;
    color: #222;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.amenity-item {
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.amenity-name {
    font-family: var(--ff-heading);
    font-size: 18px;
    font-weight: 500;
    color: #222;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.amenity-desc {
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 400;

    color: #888;
    letter-spacing: 1.8px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .amenities-section {
        padding: 40px 0 30px;
    }

    .amenities-heading {
        margin-bottom: 30px;
    }

    .amenity-item {
        margin-bottom: 25px;
        text-align: center !important;
    }
}

/* ===============================
   LOCATION SECTION
================================= */
.location-section {
    padding: 100px 0;
    background-color: #000;
    color: #fff;
}

.location-title {
    font-family: var(--ff-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 400;
    color: #fff;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 40px;
    line-height: 1.25;
}

.location-text {
    font-family: var(--ff-body);
    font-size: 17px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

.realm-list {
    display: flex;
    flex-direction: column;
}

.realm-item {
    font-family: var(--ff-body);
    font-size: 20px;
    color: #fff;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.realm-item:first-child {
    padding-top: 0;
}

.content_location {
    padding-right: 60px;
}



@media (max-width: 991px) {
    .location-section {
        padding: 50px 0;
    }

    .connectivity-list {
        column-count: 2;
    }

    .content_location {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .location-section {
        padding: 40px 0;
    }

    .location-title {
        text-align: center;
    }

    .location-text {
        text-align: center;
    }

    .connectivity-heading {
        text-align: center;
        margin-top: 20px;
    }

    .connectivity-list {
        column-count: 1;
    }

    .realm-item {
        font-size: 16px;
        letter-spacing: 1px;
    }
}