/* Load Montserrat font for custom single property styles */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

/* ===== Single Property: New Hero Layout (Pixel Perfect) ===== */
.ap-property-page{
	background:#fff;
}
.ap-hero{
	margin-bottom: 0px; /* Remove bottom margin to match flush layout */
    padding-top: 60px; /* Match top spacing */
}
.ap-hero.d-grid{
	display:grid;
	grid-template-columns: 40% 60%; /* Approximate split from ref */
	gap: 60px;
	align-items: start;
} 

/* --- Top Bar (Before Hero) --- */
.ap-top-bar {
    width: 100%;
    position: relative;
    padding: 20px 0;
    margin-bottom: 0;
    border-top: none;
}
/* The centered line */
.ap-top-bar::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw; /* full viewport width */
    height: 1px;
    background: #CBAF5E;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.ap-top-bar__actions {
	display: flex;
    justify-content: flex-end;
	align-items: center;
    gap: 15px;
    position: relative; /* Ensure buttons sit on top of line */
    z-index: 1;
}
.ap-btn-pill {
    display: inline-flex;
    align-items: center;
	justify-content: center;
    height: 40px;
    padding: 0 30px;
    background: #f5f5f5;
    color: #666;
    border-radius: 100px; /* "50% border radius" usually means pill shape */
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
	text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.ap-btn-pill:hover {
    background: #e0e0e0;
    color: #333;
}
.ap-btn-pill.ap-btn-pill--dark {
    background: #CBAF5E;
    color: #fff !important;
}
.ap-btn-pill.ap-btn-pill--dark:hover {
    background: #fff;
    color: #CBAF5E;
}

/* --- Left Column Typography & Spacing --- */

/* 1. Meta Top (Type . Ref) */
.ap-hero__meta-top{
    font-size: 10px;
	text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
	margin-bottom: 15px;
    font-weight: 600;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ap-hero__sep{
    margin: 0 6px;
    color: #ccc;
}

/* 2. Title */
.ap-hero__left .ere__single-property-title{
	font-size: 36px !important; /* Large serif */
	line-height: 1.25 !important;
	margin: 0 0 40px 0 !important; /* Space below title before button */
  	font-weight: 400 !important;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    color: #1a1a1a !important;
    letter-spacing: -0.5px !important;
}

/* 3. CTA Button (Left Column) */
a.ap-hero__cta{
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	height: 40px; /* Slightly slimmer */
	padding: 0 28px;
	border: 1px solid #333 !important; /* Darker border */
	border-radius: 0px !important;
	background: transparent !important;
	color: #CBAF5E !important;
	font-size: 10px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-weight: 600;
	transition: all .3s ease;
    text-decoration: none;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    border-width: 1px !important;
    border-color: #CBAF5E !important;
}
a.ap-hero__cta:hover{
	background-color: #FFFFFF;
    border-color: #000000 !important;
    color: #000000 !important;
}
a.ap-hero__cta i{
    margin-left: 10px;
    font-size: 9px;
}

/* 4. Price */
.ap-hero__left .ere__single-property-header-price-location{
	margin-bottom: 25px;
    width: 100%; /* Ensure full width for divider */
}
.ap-hero__left .ere-property-price {
    font-size: 28px !important;
    color: #333 !important;
    font-weight: 500 !important;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
/* Hide Location */
.ap-hero__left .property-location { display: none !important; }

/* 5. Divider Line (Between Price and Icons) */
.ap-hero__divider{
    display: block !important;
    border: 0;
    border-top: 1px solid #eaeaea; /* Very subtle */
    margin: 0 0 30px 0;
	width: 100%;
}

/* 6. Meta Icons (Boxed) */
.ap-hero__left .ere__single-property-info {
    margin: 0;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
}
.ap-hero__left .ere__single-property-info .property-info-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px; /* Tighter gap between boxes */
}
.ap-hero__left .ere__loop-property-info-item {
	display: inline-flex;
	align-items: center;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #e0e0e0; /* Light gray border */
    border-radius: 0; /* Sharp corners or very slight radius? Ref looks square/sharp */
    background: #fff;
    min-width: auto;
	gap: 10px;
}
.ap-hero__left .ere__loop-property-info-item i {
    font-size: 16px;
    color: #333;
    margin: 0;
}
/* Value Text */
.ap-hero__left .ere__lpi-value {
	font-weight: 400;
    font-size: 13px;
    color: #333;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
/* Hide Label Text */
.ap-hero__left .ere__lpi-label { display: none; }


/* --- Right Column (Image & Slider) --- */
.ap-hero__right .ere__single-property-gallery,
.ap-hero__right .ap-single-image,
.ap-hero__right .ap-gallery-slider {
	background: transparent;
	border: none;
    box-shadow: none;
	padding: 0;
    position: relative;
}

.ap-slider-image-wrap {
    overflow: hidden;
    position: relative;
}
.ap-slider-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
    cursor: pointer; /* Make entire image clickable */
}
.ap-slide-item {
    width: 100%;
    flex-shrink: 0;
}
.ap-slide-item img {
	width: 100%;
	height: auto;
	display: block;
    object-fit: cover;
    transition: opacity 0.2s ease-in-out; /* Smooth fade */
}

/* Slider Nav Buttons */
.ap-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent; /* No background */
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff; /* White icon */
    font-size: 24px; /* Larger icon */
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 1 !important; /* Always visible */
    text-shadow: 0 1px 3px rgba(0,0,0,0.5); /* Shadow for visibility */
}
.ap-slider-nav:hover {
    background: transparent; /* No bg on hover */
    transform: translateY(-50%) scale(1.1); /* Slight scale up */
}
.ap-prev { left: 10px; }
.ap-next { right: 10px; }

/* Slider Counter */
.ap-slider-counter {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-family: sans-serif;
    z-index: 10;
}

/* --- Lightbox (Full Screen Gallery) --- */
.ap-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff; /* White background as per some minimalist designs, or dark? Reference had white/light bg usually, but full screen images usually benefit from dark. Let's use White for clean look */
    z-index: 99999;
    flex-direction: column;
}
.ap-lightbox.active {
    display: flex;
}
.ap-lightbox-header {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    background: #fff;
}
.ap-lightbox-counter {
    font-size: 14px;
    color: #333;
}
.ap-lightbox-close {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}
.ap-lightbox-content {
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.ap-lightbox-content img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
}

/* Lightbox Nav Buttons */
.ap-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    background: #CBAF5E; /* Theme Green */
    transition: background 0.3s ease;
}
.ap-lightbox-nav:hover {
    background: #CBAF5E; /* Darker on hover */
}
.ap-lightbox-prev { left: 0; }
.ap-lightbox-next { right: 0; }


/* Hide any unwanted overlays in Right Column */
.ap-hero__right .ere-property-label,
.ap-hero__right .ere-property-status,
.ap-hero__right .property-status,
.ap-hero__right .property-label,
.ap-hero__right .ere-label,
.ap-hero__right .caption,
.ap-hero__right .wp-caption-text,
.ap-hero__right .ere-property-featured,
.ap-hero__right .featured-label {
    display: none !important;
}

/* Overlay Actions - Removed in PHP but ensuring hiding in CSS */
.ap-hero-actions{
	display: none !important;
}

/* ===== New Section: Body Layout (Map/Broker + Description) ===== */

.ap-body-content.d-grid {
    display: grid;
    grid-template-columns: 40% 60%; /* Matches hero split */
    gap: 60px;
    margin-top: 60px;
    padding-bottom: 100px;
}

/* --- Left Column (Map + Broker) --- */
.ap-body__left {
    display: flex;
    flex-direction: column;
    gap: 0; /* Flush map and broker card */
}

/* Map */
.ap-map-wrap .ere-google-map {
	width: 100%;
    height: 300px; /* Square-ish map */
    border-radius: 0;
}

/* Broker Card */
.ap-broker-card {
    background: var(--ere-color-accent);/* Dark green very close to reference */
    color: #ffffff;
    padding: 40px 40px;
    margin-top: -5px; /* Overlap or flush with map */
    position: relative;
    z-index: 2;
}
.ap-broker__top {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}
.ap-broker__img-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 140px; /* fixed column for image */
    border: 2px solid rgba(255,255,255,0.1);
}
.ap-broker__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive breakpoints for laptop screens (1024px - 1440px) */
@media (max-width: 1024px) {
    .ap-broker__img-wrap {
        width: 70px; /* 50% of original 140px */
        height: 70px;
        flex: 0 0 70px;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .ap-broker__img-wrap {
        width: 105px; /* 75% of original 140px */
        height: 105px;
        flex: 0 0 105px;
    }
}

@media (min-width: 1281px) and (max-width: 1440px) {
    .ap-broker__img-wrap {
        width: 122px; /* 87% of original 140px */
        height: 122px;
        flex: 0 0 122px;
    }
}
.ap-broker__intro {
    flex: 1 1 auto;
    text-align: left;
}
.ap-broker__intro h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 18px 0;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.4;
}
.ap-broker__details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    align-items: flex-start;
}
.ap-broker__line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}
.ap-broker__val {
    display: inline-flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
}
.ap-broker__val:hover {
    color: #fff;
    text-decoration: none;
}

.ap-broker__val--whatsapp {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
}
.ap-broker__val--upper {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
}

/* Inline SVG broker icons (phone, WhatsApp, email) */
.ap-broker__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-right: 8px;
}
.ap-broker__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Global Montserrat typography for key elements */
.ere-property-title,
.ap-property-title,
.ap-hero-price-value,
.mb-20.sub-title-one,
.fs-20.lh-lg,
.ere-heading-style2,
.ere-heading-style2 h2,
.ap-unit-details-section,
.ap-unit-price-text,
.ap-unit-contact-btn,
.ap-unit-accordion-content,
.ap-accordion-content-active,
.ap-unit-social-title,
.needs-validation.ere__form,
.btn.btn-primary.btn-block.ere__btn-submit-contact-form {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Property cards (archive /property) typography */
.listing-card-one,
.listing-card-one .title,
.listing-card-one .address,
.listing-card-one .feature li,
.listing-card-one .price,
.listing-card-one .price sub {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* --- Right Column (Description) --- */
.ap-body__right .ere-property-element {
    margin-bottom: 30px;
}
.ap-body__right h4.ere-property-element-title {
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 24px;
    margin-bottom: 25px;
    color: #1a1a1a;
}
.ap-body__right .ere-property-element > p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
	margin-bottom: 20px;
}


/* --- Cleanup --- */
.content-single-property .ere__single-property-gallery:not(.ap-single-image):not(.ap-gallery-slider),
.single-property-area > .ere-property-gallery-wrap,
.ere-property-wrap > .ere-property-gallery-wrap,
.ap-single-image .owl-nav,
.ap-single-image .single-property-image-thumb,
.ap-single-image .zoomGallery,
.ap-single-image .property-gallery-preview {
	display:none !important;
}

/* Responsive */
@media(max-width: 991px){
	.ap-hero.d-grid,
    .ap-body-content.d-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

    /* On mobile: show hero gallery first, then details */
    .ap-hero__right {
        order: 1;
    }
    .ap-hero__left {
        order: 2;
    }

	.ap-hero__left .ere__single-property-title{
		font-size: 30px;
        margin-bottom: 30px;
	}
    /* Align Top Bar right on mobile too, or center? */
    .ap-top-bar__actions {
        justify-content: flex-end;
    }
    .ap-body__left {
        order: 2; /* Map/Broker below description on mobile? or keep above? ref usually keeps order */
    }

    /* Mobile: hide agent image, keep static contact details */
    .ap-broker__img-wrap {
        display: none;
    }

    .ap-broker-card {
        padding: 30px 20px;
    }

    .ap-broker__intro h3 {
        font-size: 16px;
    }

    .ap-broker__intro p {
        font-size: 14px;
    }
}

/* ===== Bottom Lightbox Controls (Ensure visibility + match hero) ===== */
.ap-bottom-lightbox .ap-lightbox-nav {
    background: #CBAF5E !important; /* same gold as hero */
    color: #fff !important;
}

.ap-bottom-lightbox .ap-lightbox-close {
    color: #333 !important; /* dark icon on white header */
}

/* ===== Contact Form Styling ===== */
.ere__contact-form {
    background: #fff;
    padding: 40px 0;
    margin: 40px auto;
    width: 50%;
    max-width: 100%;
}

/* Contact Heading with Golden Accent */
.ere__contact-form .ere-heading-style2 {
    margin-bottom: 40px;
}

.ere__contact-form .ere-heading-style2 h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
    padding: 0;
    position: relative;
    display: inline-block;
}

.ere__contact-form .ere-heading-style2 h2:after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 3px;
    background: #CBAF5E;
    margin-left: 15px;
    vertical-align: middle;
}

/* Form Styling */
.ere__contact-form .ere__form {
    max-width: 100%;
}

.ere__contact-form .form-group {
    margin-bottom: 25px;
}

/* Show Labels Above Inputs */
.ere__contact-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    text-align: left;
}

/* Add asterisk for required fields */
.ere__contact-form .form-group label[for="sender_name"]:after,
.ere__contact-form .form-group label[for="sender_phone"]:after,
.ere__contact-form .form-group label[for="sender_email"]:after,
.ere__contact-form .form-group label[for="sender_msg"]:after {
    content: '*';
    color: #dc3545;
    margin-left: 3px;
}

/* Input Fields */
.ere__contact-form .form-control {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ere__contact-form .form-control:focus {
    outline: none;
    border-color: #CBAF5E;
    box-shadow: 0 0 0 3px rgba(203, 175, 94, 0.1);
}

.ere__contact-form .form-control::placeholder {
    color: #999;
    opacity: 0.7;
}

.ere__contact-form .form-control:-ms-input-placeholder {
    color: #999;
    opacity: 0.7;
}

.ere__contact-form .form-control::-ms-input-placeholder {
    color: #999;
    opacity: 0.7;
}

/* Textarea */
.ere__contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
    padding: 15px 20px;
}

/* Submit Button - Orange like design */
.ere__contact-form .ere__btn-submit-contact-form,
.ere__contact-form .btn-primary,
.ere__contact-form .btn-primary.btn-block {
    width: 100% !important;
    padding: 15px 30px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #fff !important;
    background-color: #CBAF5E !important;
    border: none !important;
    border-radius: 0px !important;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    line-height: 1.5 !important;
}

.ere__contact-form .ere__btn-submit-contact-form:hover,
.ere__contact-form .btn-primary:hover,
.ere__contact-form .btn-primary.btn-block:hover {
    background-color: #CBAF5E !important;
    transform: translateY(-2px);
    color: #fff !important;
}

.ere__contact-form .ere__btn-submit-contact-form:active {
    transform: translateY(0);
}

/* Error Messages - Hidden by default, only show on submit */
.ere__contact-form .invalid-feedback {
    display: none;
    margin-top: 8px;
    font-size: 14px;
    color: #dc3545;
}

/* Show validation only after form submission attempt */
.ere__contact-form .was-validated .form-control:invalid ~ .invalid-feedback,
.ere__contact-form .was-validated .form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

.ere__contact-form .was-validated .form-control:invalid,
.ere__contact-form .was-validated .form-control.is-invalid {
    border-color: #dc3545;
}

/* Hide browser default validation on initial load */
.ere__contact-form .form-control:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #e0e0e0;
    box-shadow: none;
}

/* Ensure no validation styling on page load - only after submit */
.ere__contact-form .form-control:not(.was-validated):invalid {
    border-color: #e0e0e0;
}

.ere__contact-form .form-control:not(.was-validated):valid {
    border-color: #e0e0e0;
}

/* Only show validation after form submission attempt */
.ere__contact-form .ere__form:not(.was-validated) .invalid-feedback {
    display: none !important;
}

/* Success/Error Messages */
.ere__contact-form .ere__message {
    margin-top: 20px;
    padding: 12px 20px;
    border-radius: 0px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.ere__contact-form .ere__message.ere__message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.ere__contact-form .ere__message.ere__message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ere__contact-form {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .ere__contact-form {
        width: 90%;
        padding: 30px 0;
        margin: 30px auto;
    }
    
    .ere__contact-form .ere-heading-style2 {
        margin-bottom: 30px;
    }
    
    .ere__contact-form .ere-heading-style2 h2 {
        font-size: 28px;
    }
    
    .ere__contact-form .ere-heading-style2 h2:after {
        width: 40px;
        margin-left: 10px;
    }
    
    .ere__contact-form .form-group {
        margin-bottom: 20px;
    }
    
    .ere__contact-form .form-control {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .ere__contact-form textarea.form-control {
        min-height: 120px;
    }
    
    .ere__contact-form .ere__btn-submit-contact-form {
        padding: 12px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .ere__contact-form {
        width: 95%;
        padding: 20px 0;
        margin: 20px auto;
    }
    
    .ere__contact-form .ere-heading-style2 h2 {
        font-size: 24px;
    }
    
    .ere__contact-form .ere-heading-style2 h2:after {
        width: 30px;
        height: 2px;
        margin-left: 8px;
    }
}

/* Tablet and Medium Screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .ere__contact-form {
        width: 70%;
        padding: 35px 0;
    }
    
    .ere__contact-form .form-control {
        padding: 14px 18px;
    }
}

/* ===== Global Button Styling (Pallen gold outline) ===== */
/* Apply to common button classes used in the theme */
.ere__btn-submit-contact-form{
    background-color: #FFFFFF;
    border-color: #000000 !important;
    color: #000000 !important;
    border-style: solid;
    border-width: 1px;
    border-color: #CBAF5E;
    border-radius: 0px !important;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #CBAF5E !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ap-btn-pill {
    background-color: #FFFFFF;
    padding: 0 24px;
    border-style: solid;
    border-width: 1px;
    border-color: #CBAF5E;
    border-radius: 0px !important;
    font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #CBAF5E !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.ere__btn-submit-contact-form:hover,
.ap-btn-pill:hover {
    background-color: #FFFFFF;
    border-color: #000000 !important;
    color: #000000 !important;
}

.ap-btn-pill .ap-btn-pill--dark{
    background-color: #CBAF5E !important;
    color: #FFFFFF !important;
    border-color: #000000 !important;   
}
.ap-btn-pill .ap-btn-pill--dark:hover{
    color: #CBAF5E !important;
    border-color: #CBAF5E !important;
    background-color: #FFFFFF !important;
}

/* Fix btn-four rounded-circle hover color - ensure text/icon is black */
.btn-four.rounded-circle:hover,
.btn-four.rounded-circle:focus,
.btn-four:hover,
.btn-four:focus {
    background: #CBAF5E !important;
    color: #fff !important;
}

.btn-four.rounded-circle:hover i,
.btn-four.rounded-circle:focus i,
.btn-four:hover i,
.btn-four:focus i {
    color: #fff !important;
}

/* Specific fix for property cards */
.listing-card-one .btn-four.rounded-circle:hover,
.listing-card-one .btn-four.rounded-circle:focus {
    background: #CBAF5E !important;
    color: #fff !important;
}

.listing-card-one .btn-four.rounded-circle:hover i,
.listing-card-one .btn-four.rounded-circle:focus i {
    color: #fff !important;
}
