.floor-plan {
    background-color: #faf7f3;
}
.floor-title {
    font-size: 40px;
    letter-spacing: 2px;
    font-weight: 500;
}
.floor-subtitle {
    color: #555;
    font-size: 16px;
}
.floor-card {
    position: relative;
    border: 4px solid #e3a26f;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    width: 80%;

}
.floor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.floor-card img {
    height: 320px;
    width: 100%;
    object-fit: cover;
    filter: blur(2px);
    transition: filter 0.35s ease, transform 0.35s ease;
}
.floor-card:hover img {
    filter: blur(0);
    transform: scale(1.05);
}
.floor-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.floor-overlay h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 22px;
}
.floor-overlay .btn {
    padding: 8px 20px;
    font-weight: 500;
    border-radius: 0;
}
.schedule {
    padding: 80px 0;
}
.image-box {
    position: relative;
    overflow: hidden;
}
.image-box img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.text-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}
.text-overlay h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
}
.text-overlay p {
    font-size: 18px;
    margin: 10px 0;
}
.horizontal {
    width: 80px;
    border: 1px solid #fff;
    opacity: 0.8;
}
.text-overlay a {
    margin-top: 15px;
    padding: 10px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
}
.highlight {
    background-color: #ffffff;
}
.highlight-title {
    font-size: 32px;
    letter-spacing: 2px;
    font-weight: 600;
}
.highlight-text p {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}
.highlight-text p::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e3a26f;
    font-size: 20px;
    line-height: 1;
}
.highlight-image img {
    width: 85%;
    height: 80%;
    border-radius: 2px;
}
.location {
    background-color: #faf7f3;
}
.location-box {
    border: 1px solid #ead7c3;
    padding: 40px;
}
.location-title {
    font-size: 30px;
    font-weight: 600;
}
.location-subtitle {
    color: #555;
    margin-top: 5px;
}
.location-list p {
    padding: 14px 0;
    margin: 0;
    border-bottom: 1px solid #e6d3bf;
    font-size: 16px;
    color: #333;
}
.location-map iframe {
    width: 90%;
    height: 400px;
    border: 0;
    border-radius: 6px;
}

.form-header h3 {
    color: #d39c63;
    margin-bottom: 10px;
}

.form-header p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.input-group-text {
    background: transparent;
    color: #d39c63;
}

.btn-submit {
    background: #d39c63;
    color: #fff;
    font-weight: 600;
    border-radius: 0;
}

.btn-submit:hover {
    background: #c08952;
}

/* Modal container */
.fp-bs-modal {
    border-radius: 8px;
    overflow: hidden;
    border: none;
}

/* Close button */
.fp-bs-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
}

/* Left image */
.fp-bs-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right form */
.fp-bs-right {
    padding: 30px;
    background: #fff;
}

.fp-bs-right h3 {
    margin-bottom: 5px;
    font-weight: 600;
}

.location-text {
    color: #555;
    margin-bottom: 20px;
}

/* Inputs */
.fp-bs-right .form-control {
    height: 45px;
    border-radius: 4px;
}

/* Textarea */
.fp-bs-right textarea {
    min-height: 90px;
    resize: none;
}

/* Submit button */
.fp-bs-submit {
    background: #d39c63;
    color: #fff;
    font-weight: 600;
    height: 45px;
    border-radius: 4px;
}

.fp-bs-submit:hover {
    background: #c08952;
}

/* Mobile */
@media (max-width: 991px) {
    .fp-bs-right {
        padding: 25px 20px;
    }
}

.location-text {
    color: #555;
    margin-bottom: 15px;
}
.btn-submit {
    background: #d39c63;
    color: #fff;
    font-weight: 600;
    border-radius: 0;
}

.btn-submit:hover {
    background: #c08952;
}

@keyframes scaleIn {
    from {
        transform: translateY(-50%) scale(0.9);
        opacity: 0;
    }

    to {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
}

.floor-card {
    margin: 0px !important;
    /* reduce or set to 0 */
}

@media (max-width: 576px) {

    h1,
    h2 {
        font-size: 24px !important;
    }

    p {
        font-size: 14px;
    }

    section {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 991px) {

    .floor-card {
        width: 100%;
        margin: 0 auto 20px auto;
    }

    .floor-card img {
        height: 240px;
    }
}


@media (max-width: 768px) {

    .fp-modal-content {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .fp-image {
        width: 100%;
        height: 220px;
    }

    .fp-modal-content .row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {

    .image-box img {
        height: 300px;
    }

    .text-overlay h1 {
        font-size: 26px;
    }

    .text-overlay p {
        font-size: 14px;
    }

    .text-overlay a {
        padding: 8px 20px;
    }
}

@media (max-width: 768px) {

    .highlight-image img {
        width: 100%;
        height: auto;
    }

    .highlight-text p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {

    .location-box {
        padding: 20px;
    }

    .location-map iframe {
        width: 100%;
        height: 280px;
    }
}

.hero-section {
    position: relative;
    min-height: 100vh;
    background: url("https://max-estatesnoida.com/img/banner-img2.webp") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
}

.hero-lines {
    position: relative;
    padding-left: 40px;
    padding-top: 20px;
}

.hero-lines::before {
    content: "";
    position: absolute;
    left: 15px;
    top: -50px;
    width: 2px;
    height: calc(100% + 50px);
    background-color: #d8a46f;
    z-index: 2;
}

.hero-lines::after {
    content: "";
    position: absolute;
    left: -10px;
    top: -25px;
    width: 260px;
    height: 2px;
    background-color: #d8a46f;
    z-index: 3;
}

.locationss {
    font-size: 15px;
    margin-bottom: 10px;
}

.luxury-badge {
    background-color: #d8a46f;
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
}

.features li {
    font-size: 16px;
    margin-bottom: 10px;
}

.price-box {
    background: #d8a46f;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 22px;
    font-weight: bold;
}

.price-box small {
    font-size: 14px;
    font-weight: normal;
}

/* RIGHT FORM */

.contact-header {
    font-size: 22px;
    text-align: center;
    padding: 12px;
    font-weight: 700;
}

.contact-text {
    text-align: center;
    font-size: 14px;
    margin: 15px 0;
    border-bottom: 2px solid #d8a46f;
    padding-bottom: 10px;
}

.contact-card {
    position: absolute;
    right: 40px;
    bottom: 85px;
    max-width: 360px;
    background: #efefef;
    border-radius: 6px;
    padding: 25px;
    z-index: 2;
}

.features li {
    position: relative;
    padding-left: 22px;
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d8a46f;
    font-weight: bold;
}

.form-control,
.form-select {
    height: 45px;
}

.btn-callback {
    background: #d8a46f;
    color: #fff;
    font-weight: 600;
    height: 45px;
}

.btn-callback:hover {
    background: #c28c57;
}

@media (max-width:768px) {
    .hero-section {
        min-height: auto;
        padding: 60px 0;
        overflow: hidden
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2
    }

    .hero-lines {
        padding-left: 38px;
        padding-top: 10px
    }

    .hero-lines::before {
        top: -20px;
        height: calc(100% + 20px)
    }

    .hero-lines::after {
        width: 160px;
        top: -10px
    }

    .features li {
        font-size: 14px
    }

    .price-box {
        font-size: 18px;
        padding: 10px 14px;
        margin-bottom: 24px
    }

    .contact-card {
        margin-top: 30px;
        padding: 20px
    }

    .location {
        font-size: 14px
    }

    .luxury-badge {
        font-size: 13px;
        padding: 6px 12px
    }

    .hero-lines::before,
    .hero-lines::after {
        display: none
    }

    .luxury-badge {
        display: inline-block;
        max-width: 90%;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
        padding: 8px 14px
    }
}

/*---- INTRODUCTION PAGE----- */

.estate-intro {
    background: #f8f3ed;
    padding: 60px 0
}

.estate-intro__title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1f1f1f
}

.estate-intro__text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px
}

.estate-intro__btn {
    display: inline-block;
    margin-top: 20px;
    background: #0b3a6f;
    color: #fff;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none
}

.estate-gallery {
    display: flex;
    gap: 16px
}

.estate-gallery__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 48%;
    overflow: hidden;
    border-radius: 6px
}

.estate-gallery__right {
    width: 52%
}

.estate-shot {
    overflow: hidden;
    border-radius: 6px
}

.estate-shot img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.estate-gallery__left .estate-shot {
    height: 220px
}

.estate-gallery__right .estate-shot--tall {
    height: calc(220px*2 + 16px)
}

.estate-shot:hover img {
    transform: scale(1.08)
}

@media (max-width:768px) {
    .estate-intro {
        padding: 50px 0
    }

    .estate-intro__btn {
        margin-bottom: 28px
    }

    .estate-gallery {
        gap: 12px
    }

    .estate-gallery__left .estate-shot {
        height: 160px
    }

    .estate-gallery__right .estate-shot--tall {
        height: calc(160px * 2 + 12px)
    }
}

/* PRICE LIST SECTION */

.price-section {
    padding: 70px 0;
    background: #fff url("https://max-estatesnoida.com/img/pricelist-bg.png") center/contain no-repeat
}

.price-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 36px;
    color: #0b3a6f;
    text-align: center;
}

.price-grid {
    display: flex;
    gap: 20px;
    justify-content: center
}

.price-card {
    flex: 1;
    max-width: 420px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(6, 43, 85, .75), rgba(8, 59, 115, .75)), url("../images/price-card-pattern.png") center/cover;
    backdrop-filter: blur(2px);
    color: #fff;
    border-radius: 6px
}

.price-card__type {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 18px
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    font-size: 15px
}

.price-btn {
    display: inline-block;
    margin-top: 18px;
    background: #fff;
    color: #0b3a6f;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none
}

@media(max-width:768px) {
    .price-grid {
        flex-direction: column
    }
}

/* AMENITIES SECTION */

.amenities-section {
    background: #f8f3ed;
    padding: 90px 0
}

.amenities-title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 22px;
    color: #0b3a6f
}

.amenities-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 28px
}

.amenities-btn {
    display: inline-block;
    background: #0b3a6f;
    color: #fff;
    padding: 11px 26px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    text-decoration: none
}
.amenities-btn:hover {
    background: #d8a46f;
    color: #fff
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 60px;
    column-gap: 40px;
    text-align: center
}

.amenity-item img {
    width: 65px;
    margin-bottom: 14px;
    opacity: .85
}

.amenity-item span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1f1f1f
}

@media(max-width:768px) {
    .amenities-section {
        padding: 60px 0
    }

    .amenities-title {
        font-size: 26px;
        margin-bottom: 16px
    }

    .amenities-text {
        font-size: 14px;
        line-height: 1.7;
        margin: 0 0 22px;
        padding-right: 10px
    }

    .amenities-btn {
        margin-bottom: 40px
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 20px
    }

    .amenity-item img {
        width: 40px
    }

    .amenity-item span {
        font-size: 13px
    }
}
.contact-card-mobile {
    background: #efefef;
    border-radius: 16px;
    padding: 20px;
    margin: 15px;
}

.contact-header-mobile {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    margin-bottom: 8px;
}

.contact-text-mobile {
    font-size: 14px;
    color: #d8a46f;
    text-align: center;
    margin-bottom: 20px;
}