#about {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1c2526 100%);
    overflow: hidden;
    padding: 140px 0;
}

#about .section-subtitle {
    font-family: var(--font-main), sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: #D4A017;
    font-size: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-left: 30px;
    text-shadow: 0 1px 5px rgba(212, 160, 23, 0.2);
}

#about .section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: #D4A017;
    transition: width 0.4s ease;
}

#about .section-subtitle:hover::before {
    width: 30px;
}

#about .section-title {
    font-family: "Gilda Display", serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 64px;
    color: #fff;
    position: relative;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

#about .divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #D4A017, transparent);
    margin-bottom: 25px;
}

#about p {
    font-family: var(--font-main), sans-serif;
    font-size: 19px;
    font-weight: 300;
    line-height: 34px;
    color: #e0e0e0;
    margin-bottom: 25px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

#about p:hover {
    opacity: 1;
}

#about p b {
    font-weight: 500;
    background: linear-gradient(90deg, #D4A017, #f5e6b3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

#about .more-content {
    display: none;
    /* Hidden by default */
    transition: all 0.3s ease;
}

#about .read-toggle {
    display: inline-block;
    font-family: var(--font-main), sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #D4A017;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

#about .read-toggle:hover {
    color: #fff;
    text-decoration: none;
}

#about .button-row {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

#about .button-3 {
    display: inline-block;
    padding: 16px 30px;
    border: 1px solid #D4A017;
    border-radius: 50px;
    background: linear-gradient(135deg, #D4A017 0%, #b58900 100%);
    color: #fff;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.3);
}

#about .button-3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: -1;
}

#about .button-3:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

#about .button-3:hover {
    border-color: #fff;
    color: #0a0a0a;
    box-shadow: 0 10px 25px rgba(212, 160, 23, 0.5);
    transform: translateY(-5px);
}

/* Single Image Styling */
#about .animation-float1 {
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: float1 6s ease-in-out infinite;
    transition: all 0.5s ease;
    border: 1px solid rgba(212, 160, 23, 0.2);
}

#about .animation-float1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

#about .animation-float1:hover::before {
    opacity: 1;
}

#about .animation-float1:hover {
    transform: scale(1.05) translateY(-15px);
    box-shadow: 0 30px 70px rgba(212, 160, 23, 0.4);
    border-color: rgba(212, 160, 23, 0.5);
}

@keyframes float1 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media screen and (max-width: 991px) {
    #about {
        padding: 100px 0;
    }

    #about .section-title {
        font-size: 2rem;
        line-height: 52px;
    }

    #about p {
        font-size: 17px;
        line-height: 30px;
    }

    #about .button-row {
        gap: 15px;
    }

    #about .button-3 {
        padding: 14px 25px;
        font-size: 16px;
    }

    #about .animation-float1 {
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    }
}

@media screen and (max-width: 576px) {
    #about .button-row {
        flex-direction: column;
        align-items: flex-start;
    }

    #about .button-3 {
        width: 100%;
        text-align: center;
    }
}


/* Pricing  */

#pricing {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1c2526 100%);
    padding: 120px 0;
    overflow: hidden;
    color: #fff;
}

#pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
}

#pricing .container {
    position: relative;
    z-index: 1;
}

#pricing .section-subtitle {
    font-family: var(--font-main), sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: #D4A017;
    font-size: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-left: 30px;
    text-shadow: 0 1px 5px rgba(212, 160, 23, 0.2);
}

#pricing .section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: #D4A017;
    transition: width 0.4s ease;
}

#pricing .section-subtitle:hover::before {
    width: 30px;
}

#pricing .section-title {
    font-family: "Gilda Display", serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 64px;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

#pricing .divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #D4A017, transparent);
    margin: 0 auto 40px;
}

#pricing .pricing-gridd {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#pricing .itemm {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(212, 160, 23, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#pricing .itemm:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(212, 160, 23, 0.3);
    border-color: rgba(212, 160, 23, 0.5);
}

#pricing .detail-item {
    text-align: center;
}

#pricing .detail-item .label {
    font-family: var(--font-main), sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #D4A017;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}

#pricing .detail-item .value {
    font-family: var(--font-main), sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #e0e0e0;
    display: block;
    margin-top: 5px;
}

#pricing .detail-item.highlight .value {
    font-size: 36px;
    font-weight: 500;
    background: linear-gradient(90deg, #D4A017, #f5e6b3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(212, 160, 23, 0.3);
}

#pricing .project-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(212, 160, 23, 0.2);
    transition: box-shadow 0.3s ease;
}

#pricing .project-details:hover {
    box-shadow: 0 20px 40px rgba(212, 160, 23, 0.2);
}

#pricing .details-title {
    font-family: "Gilda Display", serif;
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

#pricing .details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    text-align: center;
}

#pricing .detail-item {
    padding: 15px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

#pricing .detail-item:hover {
    transform: scale(1.05);
}

#pricing .section-info {
    margin-top: 40px;
}

#pricing .section-info .tag {
    font-family: var(--font-main), sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #D4A017;
    background-color: #0a0a0a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 1px 5px rgba(212, 160, 23, 0.2);
}

#pricing .section-info .desc {
    font-family: var(--font-main), sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #e0e0e0;
}

#pricing .section-info .desc a {
    color: #D4A017;
    text-decoration: underline;
    transition: color 0.3s ease;
}

#pricing .section-info .desc a:hover {
    color: #fff;
}

/* Responsive Adjustments */
@media screen and (max-width: 991px) {
    #pricing {
        padding: 100px 0;
    }

    #pricing .section-title {
        font-size: 2rem;
        line-height: 52px;
    }

    #pricing .details-title {
        font-size: 30px;
    }

    #pricing .details-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    #pricing .detail-item.highlight .value {
        font-size: 30px;
    }
}

@media screen and (max-width: 576px) {
    #pricing .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    #pricing .item {
        width: 100%;
        max-width: 300px;
        padding: 20px;
    }

    #pricing .project-details {
        padding: 20px;
    }

    #pricing .details-grid {
        grid-template-columns: 1fr;
    }

    #pricing .detail-item.highlight .value {
        font-size: 28px;
    }
}

/* Project Usps Specifications */




#specifications {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1c2526 100%);
    padding: 120px 0;
    overflow: hidden;
    color: #fff;
}

#specifications .section-subtitle {
    font-family: var(--font-main), sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: #D4A017;
    font-size: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
    display: block;
    padding-left: 30px;
    text-shadow: 0 1px 5px rgba(212, 160, 23, 0.2);
    text-align: center;
}

#specifications .section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: #D4A017;
    transition: width 0.4s ease;
}

#specifications .section-subtitle:hover::before {
    width: 30px;
}

#specifications .section-title {
    font-family: "Gilda Display", serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 64px;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
}

#specifications .divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #D4A017, transparent);
    margin: 0 auto 40px;
}

/* Specifications Grid (for Project USP's) */
#specifications .specifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

#specifications .spec-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 160, 23, 0.2);
}

#specifications .spec-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(212, 160, 23, 0.3);
    border-color: rgba(212, 160, 23, 0.5);
}

#specifications .spec-item i {
    color: #D4A017;
    font-size: 30px;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

#specifications .spec-item:hover i {
    color: #fff;
}

#specifications .spec-item h3 {
    font-family: var(--font-main), sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#specifications .spec-item p {
    font-family: var(--font-main), sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #e0e0e0;
    line-height: 26px;
    opacity: 0.9;
    margin: 0;
}

/* Dual Card Grid (for Amenities and Aangan) */
#specifications .dual-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

#specifications .single-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#specifications .single-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(212, 160, 23, 0.3);
    border-color: rgba(212, 160, 23, 0.5);
}

#specifications .single-card .card-title {
    font-family: "Gilda Display", serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

#specifications .amenities-list {
    list-style: none;
    padding: 0;
}

#specifications .amenities-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

#specifications .amenities-list li:hover {
    color: #fff;
}

#specifications .amenities-list li i {
    color: #D4A017;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

#specifications .amenities-list li:hover i {
    color: #fff;
}

#specifications .amenities-list li span {
    font-family: var(--font-main), sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #e0e0e0;
    line-height: 24px;
    opacity: 0.9;
}

#specifications .amenities-list li span strong {
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Highlight Text */
#specifications .highlight-text {
    font-family: var(--font-main), sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: #e0e0e0;
    margin: 40px auto 80px;
    max-width: 700px;
    text-align: center;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

#specifications .highlight-text:hover {
    opacity: 1;
}

/* Responsive Adjustments */
@media screen and (max-width: 991px) {
    #specifications {
        padding: 100px 0;
    }

    #specifications .section-title {
        font-size: 2rem;
        line-height: 52px;
    }

    #specifications .specifications-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    #specifications .spec-item h3 {
        font-size: 18px;
    }

    #specifications .spec-item p {
        font-size: 15px;
        line-height: 24px;
    }

    #specifications .dual-card-grid {
        grid-template-columns: 1fr; /* Stack cards vertically */
        gap: 20px;
    }

    #specifications .single-card {
        padding: 20px;
    }

    #specifications .single-card .card-title {
        font-size: 22px;
    }

    #specifications .amenities-list li span {
        font-size: 15px;
        line-height: 22px;
    }

    #specifications .highlight-text {
        font-size: 18px;
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 576px) {
    #specifications .specifications-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    #specifications .spec-item {
        padding: 15px;
    }

    #specifications .single-card {
        padding: 15px;
    }

    #specifications .amenities-list li {
        flex-direction: column;
        text-align: center;
        margin-bottom: 20px;
    }

    #specifications .amenities-list li i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}


/*
***********************************************************
***********************************************************
Floor Plann
***********************************************************
**********************************************************
*/

#floor-plan {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1c2526 100%);
    padding: 120px 0;
    overflow: hidden;
    color: #fff;
}

#floor-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
}

#floor-plan .container {
    position: relative;
    z-index: 1;
}

#floor-plan .section-subtitle {
    font-family: var(--font-main), sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: #D4A017;
    font-size: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-left: 30px;
    text-shadow: 0 1px 5px rgba(212, 160, 23, 0.2);
}

#floor-plan .section-subtitle i {
    margin-right: 10px;
    font-size: 20px;
    transition: color 0.3s ease;
}

#floor-plan .section-subtitle:hover i {
    color: #fff;
}

#floor-plan .section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: #D4A017;
    transition: width 0.4s ease;
}

#floor-plan .section-subtitle:hover::before {
    width: 30px;
}

#floor-plan .section-title {
    font-family: "Gilda Display", serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 64px;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

#floor-plan .divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #D4A017, transparent);
    margin: 0 auto 25px;
}

#floor-plan p {
    font-family: var(--font-main), sans-serif;
    font-size: 19px;
    font-weight: 300;
    line-height: 34px;
    color: #e0e0e0;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

#floor-plan p:hover {
    opacity: 1;
}

#floor-plan .floor-plan-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(212, 160, 23, 0.2);
    transition: box-shadow 0.3s ease;
}

#floor-plan .floor-plan-container:hover {
    box-shadow: 0 20px 40px rgba(212, 160, 23, 0.2);
}

#floor-plan .floor-plan-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

#floor-plan .floor-plan-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

#floor-plan .floor-plan-container:hover .floor-plan-image img {
    transform: scale(1.05);
}

#floor-plan .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

#floor-plan .floor-plan-container:hover .overlay {
    opacity: 1;
}

#floor-plan .zoom-btn {
    font-family: var(--font-main), sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    background: #D4A017;
    padding: 12px 25px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#floor-plan .zoom-btn i {
    margin-right: 8px;
}

#floor-plan .zoom-btn:hover {
    background: #fff;
    color: #D4A017;
    box-shadow: 0 10px 20px rgba(212, 160, 23, 0.3);
}

#floor-plan .button-3 {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid #D4A017;
    border-radius: 50px;
    background: linear-gradient(135deg, #D4A017 0%, #b58900 100%);
    color: #fff;
    font-family: var(--font-main), sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.3);
}

#floor-plan .button-3 i {
    margin-right: 10px;
}

#floor-plan .button-3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: -1;
}

#floor-plan .button-3:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

#floor-plan .button-3:hover {
    color: #0a0a0a;
    box-shadow: 0 10px 25px rgba(212, 160, 23, 0.5);
    transform: translateY(-5px);
}

/* Lightbox Custom Styling (kept for Master Plan) */
.lightbox .lb-image {
    border: 5px solid #D4A017;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox .lb-outerContainer {
    background: rgba(0, 0, 0, 0.9);
}

.lightbox .lb-nav a.lb-prev,
.lightbox .lb-nav a.lb-next {
    background: rgba(212, 160, 23, 0.2);
    color: #fff;
    font-size: 40px;
    transition: background 0.3s ease;
}

.lightbox .lb-nav a.lb-prev:hover,
.lightbox .lb-nav a.lb-next:hover {
    background: #D4A017;
}

.lightbox .lb-data .lb-caption {
    font-family: var(--font-main), sans-serif;
    font-size: 18px;
    color: #fff;
    background: rgba(212, 160, 23, 0.8);
    padding: 10px;
    border-radius: 5px;
}

.lightbox .lb-data .lb-close {
    color: #D4A017;
    font-size: 40px;
    transition: color 0.3s ease;
}

.lightbox .lb-data .lb-close:hover {
    color: #fff;
}

/* Floor Plans Grid */
.floor-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Fixed 3 columns for the first three */
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 160, 23, 0.2);
    transition: box-shadow 0.3s ease;
}

.floor-plans-grid:hover {
    box-shadow: 0 20px 40px rgba(212, 160, 23, 0.2);
}

.floor-plans-centered {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 160, 23, 0.2);
    transition: box-shadow 0.3s ease;
}

.floor-plans-centered:hover {
    box-shadow: 0 20px 40px rgba(212, 160, 23, 0.2);
}

.floor-plan-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    text-align: center;
}

.floor-plan-item img.blurred {
    width: 100%;
    height: auto;
    display: block;
    filter: blur(3px); /* Initial blur effect */
    transition: filter 0.5s ease, transform 0.5s ease;
}

.floor-plan-item:hover img.blurred {
    filter: blur(1px); /* Slightly reduce blur on hover */
    transform: scale(1.05); /* Slight zoom effect */
}

.floor-plan-label {
    font-family: var(--font-main), sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #D4A017;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Adjustments */
@media screen and (max-width: 991px) {
    #floor-plan {
        padding: 100px 0;
    }

    #floor-plan .section-title {
        font-size: 2rem;
        line-height: 52px;
    }

    #floor-plan p {
        font-size: 17px;
        line-height: 30px;
    }

    #floor-plan .button-3 {
        padding: 14px 35px;
        font-size: 16px;
    }

    .floor-plans-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
}

@media screen and (max-width: 576px) {
    #floor-plan .section-title {
        font-size: 36px;
        line-height: 46px;
    }

    #floor-plan p {
        font-size: 16px;
        line-height: 28px;
    }

    #floor-plan .button-3 {
        width: 64%;
        padding: 5px 8px;
        font-size: 12px;
    }

    #floor-plan .zoom-btn {
        font-size: 16px;
        padding: 10px 20px;
    }

    .floor-plans-grid {
        grid-template-columns: 1fr; /* Stack all items on small screens */
        padding: 10px;
    }

    .floor-plan-item img.blurred {
        filter: blur(3px); /* Maintain blur on small screens */
    }

    .floor-plan-label {
        font-size: 14px;
    }
}

/* 
*******************************************************************************
Amenities
*******************************************************************************
*/

#amenities {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1c2526 100%);
    padding: 120px 0;
    overflow: hidden;
    color: #fff;
}

#amenities .section-subtitle {
    font-family: var(--font-main), sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: #D4A017;
    font-size: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-left: 30px;
    text-shadow: 0 1px 5px rgba(212, 160, 23, 0.2);
}

#amenities .section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: #D4A017;
    transition: width 0.4s ease;
}

#amenities .section-subtitle:hover::before {
    width: 30px;
}

#amenities .section-title {
    font-family: "Gilda Display", serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 64px;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

#amenities .divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #D4A017, transparent);
    margin-bottom: 25px;
}

#amenities p {
    font-family: var(--font-main), sans-serif;
    font-size: 19px;
    font-weight: 300;
    line-height: 34px;
    color: #e0e0e0;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

#amenities p:hover {
    opacity: 1;
}

#amenities .button-3 {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #D4A017;
    border-radius: 50px;
    background: linear-gradient(135deg, #D4A017 0%, #b58900 100%);
    color: #fff;
    font-family: var(--font-main), sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.3);
}

#amenities .button-3::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    z-index: -1;
}

#amenities .button-3:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

#amenities .button-3:hover {
    border-color: #fff;
    color: #0a0a0a;
    box-shadow: 0 10px 25px rgba(212, 160, 23, 0.5);
    transform: translateY(-5px);
}

#amenities .owl-carousel {
    padding-top: 40px;
    /* Extra space to prevent clipping on hover */
}

#amenities .owl-carousel .item.hover-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    height: 300px;
    /* Fixed height for consistency */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(212, 160, 23, 0.2);
    overflow: hidden;
    /* Prevents content overflow */
}

#amenities .owl-carousel .item.hover-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(212, 160, 23, 0.3);
    border-color: rgba(212, 160, 23, 0.5);
}

#amenities .owl-carousel .cont {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    justify-content: center;
    /* Centers content vertically */
}

#amenities .owl-carousel .icon {
    margin-bottom: 15px;
}

#amenities .owl-carousel .icon i {
    color: #D4A017;
    font-size: 30px;
    transition: color 0.3s ease;
}

#amenities .owl-carousel .item.hover-box:hover .icon i {
    color: #fff;
}

#amenities .owl-carousel .text h5 {
    font-family: var(--font-main), sans-serif;
    font-size: 16px;
    /* Slightly smaller to fit consistently */
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#amenities .owl-carousel .text p {
    font-family: var(--font-main), sans-serif;
    font-size: 14px;
    /* Smaller to fit within fixed height */
    font-weight: 300;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.5;
}

#amenities .owl-carousel .owl-nav .owl-prev,
#amenities .owl-carousel .owl-nav .owl-next {
    color: #D4A017;
    font-size: 24px;
    transition: color 0.3s ease;
}

#amenities .owl-carousel .owl-nav .owl-prev:hover,
#amenities .owl-carousel .owl-nav .owl-next:hover {
    color: #fff;
    background: none;
}

#amenities .owl-carousel .owl-dots .owl-dot span {
    background: #D4A017;
    opacity: 0.5; margin-top: 1rem;
}

#amenities .owl-carousel .owl-dots .owl-dot.active span,
#amenities .owl-carousel .owl-dots .owl-dot:hover span {
    background: #D4A017;
    opacity: 1;
}

/* Responsive Adjustments */
@media screen and (max-width: 991px) {
    #amenities {
        padding: 100px 0;
    }

    #amenities .section-title {
        font-size: 42px;
        line-height: 52px;
    }

    #amenities p {
        font-size: 17px;
        line-height: 30px;
    }

    #amenities .button-3 {
        padding: 14px 35px;
        font-size: 16px;
    }

    #amenities .owl-carousel .item.hover-box {
        height: 180px;
        /* Slightly smaller for medium screens */
    }
}

@media screen and (max-width: 576px) {
    #amenities .col-lg-4 {
        text-align: center;
    }

    #amenities .button-3 {
        width: 100%;
    }

    #amenities .owl-carousel .item.hover-box {
        height: 200px;
        /* Consistent height maintained */
    }
}

/* 
**********************************************************************************
Locations
**********************************************************************************
*/

#location {
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1c2526 100%);
    padding: 120px 0;
    overflow: hidden;
    color: #fff;
}

#location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
}

#location .container {
    position: relative;
    z-index: 1;
}

#location .section-subtitle {
    font-family: var(--font-main), sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: #D4A017;
    font-size: 18px;
    letter-spacing: 5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-left: 30px;
    text-shadow: 0 1px 5px rgba(212, 160, 23, 0.2);
}

#location .section-subtitle i {
    margin-right: 10px;
    font-size: 20px;
    transition: color 0.3s ease;
}

#location .section-subtitle:hover i {
    color: #fff;
}

#location .section-title {
    font-family: "Gilda Display", serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 64px;
    color: #fff;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

#location .divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #D4A017, transparent);
    margin: 0 auto 25px;
}

#location p {
    font-family: var(--font-main), sans-serif;
    font-size: 19px;
    font-weight: 300;
    line-height: 34px;
    color: #e0e0e0;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

#location p:hover {
    opacity: 1;
}

/* Elegant List Styling */
.location-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 160, 23, 0.2);
    transition: all 0.3s ease;
}

.location-details:hover {
    box-shadow: 0 15px 30px rgba(212, 160, 23, 0.2);
    transform: translateY(-5px);
}

.elegant-list {
    list-style: none;
    padding: 0;
}

.elegant-list li {
    font-family: var(--font-main), sans-serif;
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    transition: color 0.3s ease;
}

.elegant-list li::before {
    content: '✦';
    color: #D4A017;
    position: absolute;
    left: 0;
    top: 2px;
}

.elegant-list li:hover {
    color: #fff;
}

.highlight {
    color: #D4A017;
    font-weight: 600;
}

/* Proximity Box Styling */
.proximity-box {
    background: rgba(212, 160, 23, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(212, 160, 23, 0.3);
    transition: all 0.3s ease;
}

.proximity-box:hover {
    box-shadow: 0 15px 30px rgba(212, 160, 23, 0.2);
    transform: translateY(-5px);
}

.proximity-box h4 {
    font-family: "Gilda Display", serif;
    font-size: 24px;
    color: #D4A017;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
}

.proximity-list {
    list-style: none;
    padding: 0;
}

.proximity-list li {
    font-family: var(--font-main), sans-serif;
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.proximity-list li i {
    color: #D4A017;
    margin-right: 10px;
    position: absolute;
    left: 0;
    top: 4px;
}

/* Location Map Styling */
#location .location-container {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(212, 160, 23, 0.2);
    transition: box-shadow 0.3s ease;
}

#location .location-container:hover {
    box-shadow: 0 20px 40px rgba(212, 160, 23, 0.2);
}

#location .location-map iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

#location .location-container:hover .location-map iframe {
    transform: scale(1.02);
}

/* Button Styling */
#location .luxury-btn {
    font-family: var(--font-main), sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #D4A017 0%, #b58900 100%);
    padding: 12px 30px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(212, 160, 23, 0.3);
}

#location .luxury-btn i {
    margin-right: 10px;
}

#location .luxury-btn:hover {
    background: #fff;
    color: #D4A017;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 160, 23, 0.5);
}

/* Responsive Adjustments */
@media screen and (max-width: 991px) {
    #location {
        padding: 100px 0;
    }

    #location .section-title {
        font-size: 2rem;
    }

    .elegant-list li,
    .proximity-list li {
        font-size: 16px;
    }

    #location .location-map iframe {
        height: 350px;
    }
}

@media screen and (max-width: 576px) {
    #location .section-title {
        font-size: 1.8rem;
    }

    .location-details,
    .proximity-box {
        margin-bottom: 20px;
    }

    .elegant-list li,
    .proximity-list li {
        font-size: 14px;
    }

    #location .luxury-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    #location .location-map iframe {
        height: 250px;
    }
}