.navbar-brand,
.logo-img {
    width: 190px;
}

@media(max-width: 768px) {

    .navbar-brand,
    .logo-img {
        width: 140px;
    }
}

.nearby-locations {
    list-style: none;
    padding-left: 0;
}

.nearby-locations li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #4c4c4c;
}

.nearby-locations li i {
    color: #034e7e;
}

.bg--halfwhite {
    background-color: hsl(0deg 0% 93.64%) !important;
}

/* Floor Plan Section */

.floorplan-tabs .nav-tabs {
    border: none;
    gap: 15px;
}

.floorplan-tabs .nav-tabs .nav-link {
    border: none;
    color: #555;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    background: #fff;
    border-radius: 8px;
    padding: 12px 28px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.floorplan-tabs .nav-tabs .nav-link:hover {
    color: #034e7e;
    background: #b7e6f8;
    transform: translateY(-2px);
}

.floorplan-tabs .nav-tabs .nav-link.active {
    background: #034e7e;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(112, 74, 3, 0.3);
}

.floorplan-tabs .tab-content {
    margin-top: 40px;
}

/* Swiper Styles */
.floorplan-swiper {
    position: relative;
}

.floorplan-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floorplan-swiper .swiper-slide a {
    background-color: #fff;
    border-radius: 10px;
}

.floorplan-swiper img {
    border-radius: 12px;
    transition: all 0.4s ease;
}

.floorplan-swiper img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.floorplan-swiper .swiper-pagination {
    margin-top: 40px !important;
}

/* Pagination Dots */
.floorplan-swiper .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.floorplan-swiper .swiper-pagination-bullet-active {
    background: #034e7e;
    transform: scale(1.3);
}

/* Stilt Floor Plan Centered Image */
#pane-stilt img {
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

#pane-stilt img:hover {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {
    .floorplan-tabs .nav-tabs .nav-link {
        padding: 10px 18px;
        font-size: 14px;
    }

    .floorplan-swiper .swiper-slide {
        flex-direction: column;
        gap: 16px;
    }

    .floorplan-swiper .swiper-slide a {
        width: 100% !important;
    }
}

.investment-section {
    background: #fdfbf7;
    padding: 80px 0;
}

.investment-section .section-title h2 {
    color: #034e7e;
    font-size: 34px;
    font-weight: 700;
}

.investment-section .section-title p {
    color: #7a7a7a;
    font-size: 17px;
    margin-top: 8px;
}

.investment-table {
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    font-size: 18px;
}

.investment-table thead {
    background: #034e7e;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.investment-table th,
.investment-table td {
    padding: 20px 24px;
    vertical-align: middle;
}

.investment-table tbody tr:nth-child(even) {
    background-color: #f8f3eb;
}

.investment-table tbody tr:hover {
    background: #f3eadc;
    transition: all 0.3s ease;
}

/* Enquire Button */
.btn-enquire {
    background: #034e7e;
    color: #fff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 17px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-enquire i {
    transform: rotate(0deg);
}

.btn-enquire:hover {
    background: #034e7e;
    transform: translateY(-2px);
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .investment-section {
        padding: 60px 0;
    }

    .investment-section .section-title h2 {
        font-size: 26px;
    }

    .investment-table,
    .investment-table thead,
    .investment-table tbody,
    .investment-table th,
    .investment-table td,
    .investment-table tr {
        display: block;
        width: 100%;
        max-width: 100% !important;
    }

    .table tbody tr td:first-child {
        text-align: center !important;
    }

    .investment-table thead {
        display: none;
    }

    .investment-table tr {
        margin-bottom: 18px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        padding: 10px 0;
    }

    .investment-table td {
        padding: 10px 16px;
        font-size: 15px;
        text-align: left;
        position: relative;
    }

    .investment-table td:before {
        content: attr(data-label);
        font-weight: 600;
        color: #034e7e;
        display: block;
        margin-bottom: 4px;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .btn-enquire {
        padding: 10px 20px;
        font-size: 15px;
        width: 100%;
        box-sizing: border-box;
        margin-top: 8px;
    }
}

/* Floating Enquire Now Button */
.floating-enquire {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #034e7e;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 14px 10px;
    border-radius: 8px 0 0 8px;
    font-size: 15px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 9999;
}

.floating-enquire i {
    font-size: 18px;
    margin-bottom: 6px;
}

.floating-enquire:hover {
    background: #034e7e;
    transform: translateY(-50%) scale(1.05);
    color: #fff;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .floating-enquire {
        top: auto;
        bottom: 20px;
        right: 20px;
        writing-mode: horizontal-tb;
        text-orientation: initial;
        border-radius: 50px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .floating-enquire i {
        margin-bottom: 0;
        margin-right: 8px;
    }
}

.enquiry-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 10;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 8px;
    opacity: 1;
    transition: background 0.2s;
}

.enquiry-modal-close:hover {
    background: #f5f5f5;
}

.thankyou-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #fff, #f8f4ee);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.thankyou-content {
    background: #fff;
    border: 2px solid #034e7e;
    border-radius: 16px;
    padding: 30px 40px;
    max-width: 600px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.thankyou-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thankyou-icon {
    font-size: 60px;
    color: #034e7e;
    margin-bottom: 20px;
    animation: popIn 0.6s ease-out;
}

.thankyou-content h2 {
    color: #034e7e;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.thankyou-content p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-back-home {
    display: inline-block;
    background: #034e7e;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-back-home:hover {
    background: #034e7e;
    transform: scale(1.05);
}

/* Animation */
@keyframes popIn {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 576px) {
    .thankyou-content {
        padding: 40px 25px;
    }

    .thankyou-content h2 {
        font-size: 1.8rem;
    }

    .thankyou-content p {
        font-size: 1rem;
    }
}

.icon-box-row {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.icon-box {
    background: #efefef;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
    min-width: 220px;
}

.icon-box__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box__icon i {
    font-size: 1.5rem;
    color: #034e7e;
    transition: transform 0.3s;
}

.icon-box__content h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: #222;
    line-height: 1.3;
}

.icon-box:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
    transform: translateY(-4px) scale(1.03);
}

.icon-box:hover .icon-box__icon i {
    transform: scale(1.15) rotate(-8deg);
}

@media (max-width: 600px) {
    .icon-box-row {
        flex-direction: column;
        gap: 1rem;
    }

    .icon-box {
        min-width: 0;
        width: 100%;
        justify-content: flex-start;
    }
}

input[type="submit"],
.selldof .btn {
    color: #000 !important;
}

/* ak */
.amenities-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    /* space between items */
    max-width: 1200px;
    margin: 0 auto;
}

.amenity {
    flex: 0 0 calc(25% - 40px);
    /* 4 per row on desktop */
    text-align: center;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .amenity {
        flex: 0 0 calc(33.33% - 40px);
        /* 3 per row */
    }
}

@media (max-width: 768px) {
    .amenity {
        flex: 0 0 calc(50% - 40px);
        /* 2 per row */
    }
}

@media (max-width: 480px) {
    .amenity {
        flex: 0 0 100%;
        /* 1 per row */
    }
}

/* White circular frame */
.amenity__img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    overflow: hidden;
    position: relative;
}

/* Inner image (fully visible, not cropped) */
.amenity__img img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
}

/* Optional light hover shine */
.amenity__img::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-25deg);
    transition: left 0.5s ease;
}

.amenity__img:hover::after {
    left: 125%;
}

/* Title */
.amenity__title {
    margin-top: 10px;
    font-size: 16px;
    color: #074F9D;
    font-weight: 600;
    line-height: 1.3;
}

/* Subtle hover lift for circle and title */
.amenity:hover .amenity__img {
    transform: translateY(-5px);
}

.amenity:hover .amenity__title {
    color: #052c6b;
}

.text-white {
    color: white !important;
}

.ft-19 {
    font-size: 19px;
}