.property-hero-section {
    padding: 0;
}

/* ============================================
   PHOTO SECTION
   ============================================= */

.project-details-hero-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.project-details-hero-image {
    display: block;
    width: 100%;
    height: 810px;
    object-fit: cover;
}

.project-details-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0) 60%,
            #ffffff 95%);
}

.project-details-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    align-items: flex-start;
}

.project-details-logo {
    max-width: 200px;
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 30px;
}

/* .property-status-wrapper {
  	border-radius: 24px;
  	background: linear-gradient(#FFF, #FFF) padding-box, linear-gradient(180deg, #50C3CB 0%, #00A4CA 100%) border-box;
  	border: 1px solid transparent;
  	display: flex;
  	align-items: center;
  	justify-content: center;
  	padding: 6px 10px;
	line-height: 1;
    width: fit-content;
} */

.property-status-wrapper {
    border-radius: 24px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    line-height: 1;
    width: fit-content;
    position: relative;
}


.property-status-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 24px;
    pointer-events: none;
    background: linear-gradient(180deg, #50C3CB 0%, #00A4CA 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.property-status {
    position: relative;
    background: linear-gradient(180deg, #50c3cb, #00a4ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-details-title {
    margin: 0;
    color: var(--Neutral-Grey-300, #3E3A39);
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 600;
}

.project-details-location {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #3E3A39;
    font-family: Lato;
    font-size: 18px;
}

.project-details-location i {
    background: linear-gradient(180deg, var(--Tosca-Primary-Tosca-100, #50C3CB) 0%, var(--Tosca-Primary-Tosca-300, #006A81) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-details-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.gallery-images.swiper {
    overflow: hidden;
    width: 100%;
}

.gallery-images.swiper .swiper-slide {
    width: 180px;
    height: 140px;
    flex-shrink: 0;
}

.gallery-image {
    width: 100%;
    height: 100%;

    border-radius: 8px;

    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-images.swiper .swiper-slide-active .gallery-image {
    opacity: 1;
}

.gallery-images.swiper .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #00000033;
    border-radius: 8px;
    transition: .3s;
    pointer-events: none;
}

.gallery-images.swiper .swiper-slide-active::after {
    opacity: 0;
}

.gallery-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    background: rgba(255, 255, 255, .15);

    backdrop-filter: blur(5px);

    color: white;

    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);

    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.gallery-nav::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: 50%;
    pointer-events: none;
    mask-composite: exclude;
    background: linear-gradient(338deg, #ffffff 0%, transparent 35%, transparent 65%, #ffffff 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.gallery-nav.gallery-prev {
    left: -15px;
}

.gallery-nav.gallery-next {
    right: -15px;
}

.gallery-nav.swiper-button-disabled {
    box-shadow: none;
    cursor: not-allowed;
}

.gallery-nav.swiper-button-disabled i {
    color: #E8E8E8;
}

.gallery-footer {
    text-align: right;
}

.project-price-label {
    color: var(--Tosca-Primary-Tosca-400, #1D4656);

    font-family: Montserrat;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1.2px;
}

/* ============================================
   DETAILS SECTION
   ============================================= */
.property-detail-section {
    padding: 0;
}

.project-divider {
    width: 100%;
    height: 1px;
    background: #E8E8E8;
    margin: 24px 0;
}

.project-details-about {
    width: 100%;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.project-details-about-title,
.unit-title,
.location-title {
    color: var(--Tosca-Primary-Tosca-100, #50C3CB);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.project-details-about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.project-details-about-text {
    width: 100%;
    color: var(--Neutral-Grey-300, #3E3A39);
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.32px;
}

.project-details-about-text p {
    margin-bottom: 0;
}

.project-details-about-text.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-details-about-read-more {
    padding: 2px 0;
    border: none;
    background: transparent;
    color: var(--Neutral-Grey-200, #717171);
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 4px;
}

.project-details-about-read-more:hover {
    color: var(--Tosca-Primary-Tosca-100, #50C3CB);
}

.unit-type {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.unit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.unit-navigation {
    display: flex;
    gap: 10px;
}

.unit-list {
    display: flex;
    overflow-x: auto;
    margin-left: 0;
    margin-right: 0;
}

.unit-list.swiper {
    display: block;
    overflow: hidden;
}

.unit-list.swiper .swiper-wrapper {
    display: flex;
}

.unit-card.swiper-slide {
    width: 320px;
}

.unit-card {
    height: 421px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.unit-image-gallery {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.unit-images-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.unit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.unit-image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 10;
    font-size: 14px;
    color: white;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(5px);
}

.unit-image-nav::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 0.5px;
    border-radius: 50%;
    pointer-events: none;
    mask-composite: exclude;
    background: linear-gradient(338deg, #ffffff 0%, transparent 35%, transparent 65%, #ffffff 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}

.unit-image-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.unit-image-prev {
    left: 8px;
}

.unit-image-next {
    right: 8px;
}

.unit-card:hover .unit-image-nav {
    opacity: 1;
}

.unit-image-nav.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.10);
    display: none !important;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.08);
    color: #717171;
    backdrop-filter: blur(5px);
}

.unit-card:hover .unit-image-nav.swiper-button-disabled {
    display: flex !important;
}

.unit-overlay {
    position: absolute;
    inset: auto 0 0;
    height: 170px;
    z-index: 4;
    background: linear-gradient(180deg, rgba(62, 58, 57, 0) 0%, rgba(62, 58, 57, .9) 80%);
    backdrop-filter: blur(7.5px);
    mask-image: linear-gradient(to bottom, transparent, rgba(62, 58, 57, 0) -40%, rgba(62, 58, 57) 50%, rgba(62, 58, 57));
}

.unit-category {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
}

.unit-category span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 24px;
    background: rgba(62, 58, 57, 0.25);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 500;
    backdrop-filter: blur(8px);
    line-height: 1;
}

.unit-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    line-height: 1.2;
    z-index: 5;
}

.unit-price {
    display: flex;
    gap: 6px;
    color: #fff;
}

.price-prefix,
.price-value {
    font-size: 24px;
    font-weight: 800;
    text-shadow: 0 0 4px rgba(0, 0, 0, .25);
    letter-spacing: 1.20px;
}

.price-prefix {
    font-family: Lato;
}

.price-value {
    font-family: Montserrat;
}

.unit-name {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.unit-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.unit-spec {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    font-size: 14px;
    font-family: Lato;
    font-weight: 400;
}

.facilities-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 24px;
    text-align: left;
}

.facilities-title {
    color: var(--Tosca-Primary-Tosca-100, #50C3CB);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.facilities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    align-items: center;
}

.facility-item {
    width: 250px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.facility-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--Neutral-Grey-200, #717171);
}

.facility-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.facility-name {
    color: var(--Neutral-Grey-300, #3E3A39);
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.32px;
}

.location-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 24px;
    text-align: left;
}

.nearby-locations {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: -12px;
}

.location-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.location-item i {
    color: #717171;
    font-size: 15px;
}

.location-distance {
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    font-family: Lato;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.32px;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.developer-about {
    padding: 18px;
    background: var(--Neutral-Grey-50, #F7F7F7);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    margin-top: 24px;
}

.developer-heading {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.developer-label {
    color: var(--Neutral-Grey-200, #717171);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.developer-name {
    color: var(--Tosca-Primary-Tosca-100, #50C3CB);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.developer-content {
    width: 100%;
}

.developer-description {
    margin: 0;
    color: var(--Neutral-Grey-300, #3E3A39);
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.32px;
}

/* ============================================
   AGENT CARD SECTION
   ============================================= */
.agent-section {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    margin-top: 24px;
}

.agent-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}

.agent-action-btn {
    padding: 10px 18px;
    background: #F7F7F7;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.agent-action-btn:hover {
    background: #f0f0f0;
}

.agent-action-icon {
    width: 18px;
    height: 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-action-icon i {
    color: #717171;
}

.agent-action-text {
    color: #717171;
    font-size: 16px;
    font-family: Lato;
    font-weight: 400;
}

.agent-card-wrapper {
    align-self: stretch;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    position: sticky;
    top: 80px !important;
    z-index: 100;
}

/* Mobile Fixed Bottom */
@media (max-width: 991px) {
    .agent-card-wrapper {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        padding: 16px;
        background: white;
        border-radius: 24px 24px 0 0;
        border-top: 1px solid #e0e0e0;
        top: auto !important;
        opacity: 0;
    }

    .agent-card {
        border-radius: 0 !important;
        border: none !important;
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none;
    }

    .agent-name {
        color: #006A81 !important;
        font-size: 14px !important;
        font-family: 'Lato', sans-serif !important;
        font-weight: 700 !important;
        word-wrap: break-word !important;
        text-align: left !important;
    }

    .agent-location-text,
    .agent-phone {
        color: #3E3A39 !important;
        font-size: 12px !important;
        font-family: 'Lato', sans-serif !important;
        font-weight: 400 !important;
        word-wrap: break-word !important;
    }

    .agent-avatar {
        width: 60px !important;
        height: 60px !important;
    }

    .related-properties-section {
        margin-top: 0 !important;
    }
}

.agent-card {
    align-self: stretch;
    padding: 16px;
    background: white;
    border-radius: 24px;
    border: 1px #77CCD133 solid;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
    box-shadow: none;
}

.agent-card-header {
    align-self: stretch;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}

.agent-avatar {
    width: 80px;
    height: 80px;
    background: #E8E8E8;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    border: 1px white solid;
    flex-shrink: 0;
}

.agent-info {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 14px;
    line-height: 1.2;
}

.agent-name-section {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 6px;
}

.agent-name {
    align-self: stretch;
    color: #006A81;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    word-wrap: break-word;
}

.property-agent .agent-name {
    color: #3E3A39;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.28px;
    word-wrap: break-word;
    text-align: left;
}

.agent-location {
    align-self: stretch;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
}

.agent-location-text {
    color: #3E3A39;
    font-size: 16px;
    font-family: Lato;
    font-weight: 400;
}

.agent-phone {
    color: #3E3A39;
    font-size: 16px;
    font-family: Lato;
    font-weight: 400;
}

.contact-agent-btn {
    align-self: stretch;
    background: radial-gradient(ellipse 192.31% 192.31% at 52.63% 123.08%, white 0%, #F57F20 23%, #F57F20 58%, white 100%);
    border-radius: 24px;
    border: 1px #F57F20 solid;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px 18px;
}

.contact-agent-btn:hover {
    background: radial-gradient(ellipse 192.31% 192.31% at 52.63% 123.08%, white 0%, #F05728 23%, #F05728 58%, white 100%);
}

.contact-agent-text {
    color: white;
    font-size: 16px;
    font-family: Lato;
    font-weight: 500;
}

.contact-agent-icon {
    width: 18px;
    height: 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-agent-icon i {
    color: white;
}

/* ============================================
   RELATED PROPERTY SECTION
   ============================================= */

.related-properties-section {
    background-color: #F7F7F7;
    padding: 30px 0;
}

.section-title {
    font-weight: 700;
    font-size: 28px;
    color: #1D4656;
}

.btn-filter {
    border-radius: 24px;
    border: 1px solid #717171;
    padding: 10px 18px;
    font-weight: 500;
    background: transparent;
    color: #717171 !important;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    word-wrap: break-word;
    line-height: 1;
}

.btn-filter.active,
.btn-filter.active:hover {
    background: #50C3CB;
    color: white !important;
    border-color: #50C3CB;
}

.btn-filter:hover {
    background: #E8E8E880;
    color: #717171 !important;
    border-color: #71717180;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.property-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-property-nav,
.partnermap-nav {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 55%;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    outline: 1px rgba(113, 113, 113, 0.15) solid;
    outline-offset: -1px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-property-nav::after,
.partnermap-nav::after {
    font-size: 16px;
    color: #717171;
    font-weight: bold;
}

.mobile-property-nav.swiper-button-prev-custom,
.partnermap-nav.swiper-button-prev {
    left: -10px;
}

.mobile-property-nav.swiper-button-next-custom,
.partnermap-nav.swiper-button-next {
    right: -10px;
}

.property-arrow,
.unit-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.property-arrow:hover,
.unit-arrow:hover {
    background: #f5f5f5;
}

.property-arrow i,
.unit-arrow i {
    font-size: 16px;
    color: #717171;
}

.property-arrow.swiper-button-disabled,
.unit-arrow.swiper-button-disabled {
    box-shadow: none;
    cursor: not-allowed;
    opacity: 1;
}

.property-arrow.swiper-button-disabled i,
.unit-arrow.swiper-button-disabled i {
    color: #E8E8E8;
}

.see-more-link {
    color: #717171;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    word-wrap: break-word;
}

.international-properties-section .see-more-link:hover {
    color: #50C3CB;
}

.see-more-link-white {
    color: white;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    word-wrap: break-word;
    border-radius: 24px;
    outline: 1px #E8E8E8 solid;
    padding: 10px 18px;
}

.see-more-link-white:hover {
    background: rgba(232, 232, 232, 0.50);
    outline: 1px rgba(113, 113, 113, 0.50) solid;
}

.see-more-link-grey {
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    word-wrap: break-word;
    border-radius: 24px;
    outline: 1px #717171 solid;
    padding: 10px 18px;
    margin-top: 30px;
    width: fit-content;
}

.property-body {
    padding: 8px 20px 10px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 326px;
}

.property-body span {
    color: #717171;
    font-size: 16px;
    font-family: 'Lato';
    font-weight: 400;
    word-wrap: break-word
}

.property-body .info-header {
    margin-bottom: 16px;
}

.property-price {
    color: #06323E;
    font-size: 24px;
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    letter-spacing: 1.20px;
    word-wrap: break-word;
    text-align: left;
    margin-bottom: 40px;
}

.property-price span {
    font-size: 14px;
    font-weight: 400;
    color: #717171;
}

.property-title {
    color: #3E3A39;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    word-wrap: break-word;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.property-location {
    color: #3E3A39;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    text-align: left;
    gap: 4px;
    display: flex;
    margin-top: 6px;
}

.property-location i {
    background: linear-gradient(180deg, var(--Tosca-Primary-Tosca-100, #50C3CB) 0%, var(--Tosca-Primary-Tosca-300, #006A81) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.property-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: unset;
    text-align: left;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #3E3A39;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.facilities-list li i {
    color: #3E3A39;
    font-size: 14px;
}

.agent-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
    border: 1px white solid;
    margin-top: unset !important;
}

.agent-office {
    color: #717171;
    font-size: 10px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 16px;
    word-wrap: break-word;
    text-align: left;
}

.propertyImageSwiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.propertyImageSwiper .swiper-wrapper {
    width: 100%;
}

.propertyImageSwiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
}

.property-image-pagination {
    display: flex;
    justify-content: center;
}

.property-image-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background: #D9D9D9;
    opacity: 1;
    margin: 0 4px !important;
    transition: 0.3s;
}

.property-image-pagination .swiper-pagination-bullet-active {
    background: #3E3A39;
    border-radius: 10px;
}

.agent-menu-toggle {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.agent-menu-toggle i {
    color: #717171;
}

.agent-menu-toggle:hover {
    background: rgba(113, 113, 113, 0.15);
}

.agent-menu-toggle::after {
    display: none;
}

.agent-dropdown {
    width: 160px;
    padding: 8px 10px;
    border-radius: 18px;
    border: 1px solid #E8E8E8;
    box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.15);
    background: #FFFFFF;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 12000 !important;
    display: flex !important;
    flex-direction: column;
    position: fixed;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.agent-dropdown.measuring {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.agent-dropdown.show {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    visibility: visible !important;
}

.agent-dropdown-title {
    font-size: 12px;
    color: #717171;
    margin-bottom: 8px;
    text-align: left;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    word-wrap: break-word;
    padding: 0 !important;
}

.agent-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 12px;
    padding: 6px 8px;
    text-decoration: none;
    color: #717171;
    transition: all 0.2s ease;
    color: #3E3A39;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    word-wrap: break-word;
}

.agent-contact-item:hover {
    background: #F0F0F0;
    color: #3E3A39;
}

.agent-contact-item i {
    font-size: 22px;
    color: #717171;
    min-width: 16px;
}

/* =========================
   MORTGAGE CALCULATOR
========================= */

.mortgage-wrapper {
    width: 100%;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mortgage-container {
    width: 100%;
    padding: 40px 30px;
    background: rgba(119, 204, 209, 0.08);
    border-radius: 36px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mortgage-title {
    color: #3E3A39;
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-align: left;
}

/* =========================
   MAIN CONTENT
========================= */

.mortgage-content {
    display: flex;
    gap: 78px;
    align-items: stretch;
}

.mortgage-left {
    width: 527px;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid #E8E8E8;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.mortgage-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mortgage-label {
    color: #3E3A39;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    text-align: left;
}

/* =========================
   INPUT GROUP
========================= */

.form-control,
.input-group-text {
    border-radius: 24px !important;
    background: #FFFFFF;
    border: 1px solid #E8E8E8;
    color: #717171;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    word-wrap: break-word;
    box-shadow: none;
    height: 47px;
}

.form-control {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    padding: 14px 18px 14px 8px;
    margin-left: 0 !important;
    font-weight: 400;
}

.input-group-text {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    padding: 14px 12px 14px 16px;
    font-weight: 600;
}

.form-control.prefix-input {
    border-top-left-radius: 24px !important;
    border-bottom-left-radius: 24px !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    padding: 12px 18px;
}

.input-group-text.suffix-label {
    border-top-right-radius: 24px !important;
    border-bottom-right-radius: 24px !important;
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    text-transform: lowercase;
}

.input-group {
    position: relative;
}

.input-group::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    pointer-events: none;
    opacity: 0;
    transition: 0.2s ease;
}

.input-group:focus-within::after {
    opacity: 1;
    box-shadow: 0 0 0 1px #77CCD1, 0 0 10px rgba(119, 204, 209, 0.6);
}

.form-control:focus,
.input-group:focus-within .input-group-text {
    background: #fff;
    outline: none;
    box-shadow: none;
    border: 1px solid #E8E8E8;
}

/* =========================
   HELPER TEXT
========================= */

.mortgage-helper {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
}

.mortgage-helper span {
    color: #717171;
    font-weight: 500;
}

.mortgage-helper a {
    color: #50C3CB;
    font-weight: 500;
    text-decoration: none;
}

/* =========================
   BUTTON
========================= */

.mortgage-btn {
    width: 100%;
    padding: 12px 18px;
    border-radius: 24px;
    border: none;
    background:
        radial-gradient(ellipse 143.59% 143.59% at 52.63% 123.08%,
            #fff 0%,
            #50C3CB 30%,
            #00A4CA 84%);
    color: #fff;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
    line-height: 1;
}

.mortgage-btn:hover {
    background: radial-gradient(143.59% 143.59% at 52.63% 123.08%, #FFFFFF 0%, #0A8091 36.31%, #00A4CA 100%) !important;
}

/* =========================
   RESULT SECTION
========================= */

.mortgage-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 86px;
}

.mortgage-result-card {
    padding: 24px;
    background: #fff;
    border-left: 2px solid #50C3CB;
    border-radius: 0 24px 24px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mortgage-result-label {
    color: #F05728;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-align: left;
}

.mortgage-result-value {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #3E3A39;
    font-size: 30px;
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.lead-agent-card {
    padding: 24px 16px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.lead-agent-label {
    color: var(--Neutral-Grey-200, #717171);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.lead-agent-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lead-agent-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--Neutral-White, #fff);
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    flex-shrink: 0;
}

.lead-agent-name {
    color: var(--Neutral-Grey-300, #3E3A39);
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0.32px;
}

/* responsive styles */
/* desktop */
@media (min-width: 991px) {
    .unit-card {
        width: 320px !important;
    }
}

@media (max-width: 480px) {
    .currency {
        flex: unset;
    }

    .property-details {
        gap: 20px;
    }

    .price-col {
        text-align: left;
        margin-top: 10px;
    }

    .property-name-parent {
        gap: 6px;
    }

    .property-name {
        font-size: 18px;
    }

    .property-code {
        font-size: 16px;
    }

    .location-info-parent {
        font-size: 16px;
        gap: 4px;
    }

    .price-row {
        font-size: 20px;
    }

    .property-type-wrapper {
        font-size: 14px;
    }

    .agent-info {
        gap: 6px;
    }

    .description-text,
    .specs-table .spec-label,
    .specs-table .spec-value,
    .location-name,
    .location-item {
        font-size: 14px;
    }

    .specs-table td {
        padding: 10px 0;
    }

    .spec2 {
        gap: 10px;
    }

    .project-details-logo {
        margin-bottom: 16px;
        margin-top: 20px;
    }

    .agent-action-btn {
        margin-top: 20px;
    }

    .lead-agent-card {
        padding: 24px 0 0;
    }

    .gallery-nav.gallery-next {
        right: 8px;
    }

    .gallery-nav.gallery-prev {
        left: 8px;
    }

    .project-details-gallery {
        overflow: visible;
    }

    .gallery-images.swiper {
        margin-left: 15px;
    }

    .gallery-nav {
        top: 50%;
    }
}

/* =========================
   MORTGAGE BANK DROPDOWN
========================= */

.mc-dropdown-wrapper {
    width: 100%;
    position: relative;
    margin-top: 14px;
}

.mc-dropdown-select {
    width: 100%;
    padding: 12px 18px;
    background: #FFFFFF;
    border-radius: 24px;
    outline: 1px solid #E8E8E8;
    outline-offset: -1px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #717171;
    position: relative;
    z-index: 11;
    text-align: left;
}

.mc-dropdown-select.open {
    outline: 1px solid #50C3CB;
    background: #fff;
}

.mc-dropdown-select.has-selected {
    padding: 8px 14px;
}

.mc-select-label {
    flex: 1 1 0;
    color: #717171;
    font-size: 16px;
    font-family: Lato, sans-serif;
    font-weight: 500;
}

.mc-select-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mc-icon-chevron {
    display: inline-block;
    width: 12px;
    height: 7px;
    background: #717171;
    mask: url('data:image/svg+xml;utf8,<svg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%23717171" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg width="12" height="7" viewBox="0 0 12 7" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%23717171" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center/contain;
    transition: transform 0.2s;
}

.mc-dropdown-select.open .mc-icon-chevron {
    transform: rotate(180deg);
}

.mc-dropdown-container {
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: 8px;
}

.mc-dropdown-list-wrapper {
    width: 100%;
    box-shadow: 0px 0px 2px rgba(113, 113, 113, 0.50);
    border-radius: 24px;
}

.mc-dropdown-list {
    padding: 4px;
    border-radius: 26px;
    display: flex;
    flex-direction: column;
}

.mc-bank-item {
    padding: 8px 14px;
    background: #fff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 4px;
}

.mc-bank-item:last-child {
    margin-bottom: 0;
}

.mc-bank-item:hover {
    background: rgba(119, 204, 209, 0.15);
}

.mc-bank-img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.mc-bank-img img,
.mc-dropdown-select .mc-selected-img img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.mc-bank-name {
    flex: 1 1 0;
    color: #3E3A39;
    font-size: 16px;
    font-family: Lato, sans-serif;
    font-weight: 500;
    text-align: left;
}

.mc-bank-rate {
    color: #3E3A39;
    font-size: 16px;
    font-family: Lato, sans-serif;
    font-weight: 500;
}

.mc-dropdown-select .mc-selected-img {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
}

.mc-dropdown-select .mc-selected-name,
.mc-dropdown-select .mc-selected-rate {
    color: #3E3A39;
    font-size: 16px;
    font-family: Lato, sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .mortgage-content {
        flex-direction: column;
        gap: 30px;
    }

    .mortgage-left {
        width: 100%;
    }

    .mortgage-right {
        gap: 20px;
    }
}