:root {
    --gold: #d3a258;
    --gold-light: #e8c9a0;
    --gold-dark: #b8935f;
    --navy: #0d4169;
    --navy-light: #143d5c;
    --cream: #faf8f5;
    --white: #ffffff;
    --text: #1a2f3f;
    --text-light: #4a6a7f;
    --border: #e8e4df;
    --shadow: 0 4px 40px rgba(45, 27, 20, 0.08);
    --shadow-hover: 0 20px 60px rgba(45, 27, 20, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Internal pages navbar */
.navbar-internal {
    background: rgba(255,255,255,0.98) !important;
    box-shadow: 0 2px 30px rgba(0,0,0,0.06);
    padding: 12px 0;
}
.navbar-internal .nav-link { color: var(--navy) !important; }
.navbar-internal .navbar-brand { color: var(--navy) !important; }
.navbar-internal .navbar-toggler-icon { filter: invert(0) !important; }
.navbar-internal .btn-nav { color: var(--white) !important; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* Loader */
.loader {
    position: fixed; inset: 0; background: var(--navy); z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease;
}
.loader.hidden { opacity: 0; pointer-events: none; }
.loader-content { text-align: center; }
.loader-logo {
    font-family: 'Playfair Display', serif; font-size: 2.5rem;
    color: var(--gold); letter-spacing: 2px;
    animation: loaderPulse 1.5s ease-in-out infinite;
}
.loader-bar {
    width: 120px; height: 2px; background: rgba(212, 165, 116, 0.2);
    margin: 20px auto 0; border-radius: 2px; overflow: hidden;
}
.loader-bar::after {
    content: ''; display: block; width: 0; height: 100%;
    background: var(--gold); animation: loaderFill 1.5s ease forwards;
}
@keyframes loaderPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes loaderFill { to { width: 100%; } }

/* Navigation */
.navbar {
    padding: 0 0; transition: all 0.4s ease;
    background: transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
    padding: 0px 0; box-shadow: 0 2px 30px rgba(0,0,0,0.06);
}
.navbar.scrolled .nav-link { color: var(--navy) !important; }
.navbar.scrolled .navbar-brand { color: var(--navy) !important; }
.navbar-brand {
    font-family: 'Playfair Display', serif; font-size: 1.6rem;
    font-weight: 700; color: var(--white) !important; letter-spacing: 1px;
    padding: 5px 0;
    display: flex;
    align-items: center;
}
.navbar-brand span { color: var(--gold); font-weight: 400; }
.navbar-logo {
    height: 32px;
    width: auto;
    max-width: 140px;
    display: block;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}
.navbar.scrolled .navbar-logo,
.navbar-internal .navbar-logo {
    filter: none;
}
.nav-link {
    color: rgba(255,255,255,0.85) !important; font-weight: 500;
    font-size: 0.9rem; margin: 0 8px; position: relative;
    letter-spacing: 0.5px; text-transform: uppercase; font-size: 0.8rem;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 8px; left: 50%;
    width: 0; height: 1px; background: var(--gold);
    transition: all 0.3s ease; transform: translateX(-50%);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--gold) !important; }
.btn-nav {
    background: var(--gold); color: var(--white) !important;
    padding: 10px 28px !important; border-radius: 0;
    font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    font-size: 0.75rem; border: 2px solid var(--gold);
    transition: all 0.3s ease;
}
.btn-nav:hover {
    background: transparent; color: var(--gold) !important;
}
.navbar.scrolled .btn-nav { color: var(--white) !important; }
.navbar.scrolled .btn-nav:hover { color: var(--gold) !important; }
.navbar-toggler {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 10px;
    z-index: 1050;
}
.navbar-internal .navbar-toggler {
    background: rgba(0,0,0,0.05);
    border-color: var(--border);
}
.navbar-toggler-icon {
    width: 1.4em;
    height: 1.4em;
}

/* Hero — Split Design */
.hero {
    min-height: 100vh; display: flex; align-items: stretch;
    position: relative; overflow: hidden;
}
.hero-left {
    flex: 1; display: flex; align-items: center;
    padding: 120px 60px 80px; position: relative; z-index: 1;
    background: var(--navy);
}
.hero-right {
    flex: 1; position: relative; overflow: hidden;
}
.hero-right img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 8s ease;
}
.hero:hover .hero-right img { transform: scale(1.05); }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, transparent 60%);
    z-index: 1;
}
.hero-content { max-width: -webkit-fill-available; position: relative; z-index: 2; }
.hero-label {
    display: inline-block; color: var(--gold);
    font-size: 0.75rem; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 20px;
    border-bottom: 1px solid var(--gold); padding-bottom: 8px;
}
.hero-content h1 {
    font-size: 2.8rem; color: var(--white); line-height: 1.1;
    margin-bottom: 25px; font-weight: 700;
}
.hero-content h1 em {
    color: var(--gold); font-style: italic; font-weight: 500;
}
.hero-content p {
    color: rgba(255,255,255,0.7); font-size: 0.9rem;
    line-height: 1.8; margin-bottom: 35px; font-weight: 300;
    text-align: justify;
}
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.btn-primary-hero {
    background: var(--gold); color: var(--white);
    padding: 16px 40px; border: 2px solid var(--gold);
    font-weight: 600; letter-spacing: 1px;
    text-transform: uppercase; font-size: 0.8rem;
    transition: all 0.3s ease; text-decoration: none; display: inline-block;
}
.btn-primary-hero:hover {
    background: transparent; color: var(--gold);
}
.btn-outline-hero {
    background: transparent; color: var(--white);
    padding: 16px 40px; border: 1px solid rgba(255,255,255,0.3);
    font-weight: 500; letter-spacing: 1px;
    text-transform: uppercase; font-size: 0.8rem;
    transition: all 0.3s ease; text-decoration: none; display: inline-block;
}
.btn-outline-hero:hover {
    border-color: var(--gold); color: var(--gold);
}
.hero-stats {
    display: flex; gap: 40px; margin-top: 50px; padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat h3 {
    font-family: 'Playfair Display', serif; font-size: 2rem;
    color: var(--gold); margin-bottom: 5px;
}
.hero-stat span {
    color: rgba(255,255,255,0.5); font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 1px;
}

/* Search Bar — Floating */
.search-section {
    position: relative; z-index: 10; margin-top: -60px;
    padding: 0 20px;
    z-index: 1;
}
.search-box {
    background: var(--white); padding: 40px 50px;
    box-shadow: var(--shadow-hover); max-width: 1100px; margin: 0 auto;
}
.search-box .form-label {
    font-size: 0.7rem; text-transform: uppercase;
    letter-spacing: 2px; color: var(--text-light); font-weight: 600;
}
.search-box .form-control, .search-box .form-select {
    border: none; border-bottom: 2px solid var(--border);
    border-radius: 0; padding: 12px 0; font-size: 1rem;
    background: transparent;
}
.search-box .form-control:focus, .search-box .form-select:focus {
    border-color: var(--gold); box-shadow: none;
}
.btn-search {
    background: var(--navy); color: var(--white);
    border: none; padding: 16px 40px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px; font-size: 0.8rem;
    transition: all 0.3s ease; width: 100%;
}
.btn-search:hover {
    background: var(--gold);
}

/* Section Headers */
.section-header {
    text-align: center; margin-bottom: 70px;
}
.section-header .label {
    color: var(--gold); font-size: 0.75rem;
    letter-spacing: 3px; text-transform: uppercase;
    font-weight: 600; display: block; margin-bottom: 15px;
}
.section-header h2 {
    font-size: 2.8rem; color: var(--navy); margin-bottom: 15px;
}
.section-header p {
    color: var(--text-light); font-size: 1.05rem; max-width: 700px; margin: 0 auto;
}

/* Properties — Grid Masonry Style */
.properties-section { padding: 100px 0; }
.property-item { margin-bottom: 30px; }
.property-card-v2 {
    background: var(--white); overflow: hidden;
    box-shadow: var(--shadow); transition: all 0.5s ease;
    position: relative;
}
.property-card-v2:hover {
    box-shadow: var(--shadow-hover); transform: translateY(-8px);
}
.property-img-wrap {
    position: relative; overflow: hidden; height: 320px;
}
.property-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.8s ease;
}
.property-card-v2:hover .property-img-wrap img { transform: scale(1.08); }
.property-tag {
    position: absolute; top: 25px; left: 25px;
    background: var(--gold); color: var(--white);
    padding: 8px 20px; font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}
.property-tag.rent { background: var(--navy-light); }
.property-ref {
    position: absolute; top: 70px; left: 25px;
    background: rgba(255,255,255,0.92); color: var(--navy);
    padding: 5px 14px; font-size: 0.7rem;
    letter-spacing: 1px; font-weight: 600;
    z-index: 5;
}
.property-fav {
    position: absolute; top: 25px; right: 25px;
    width: 40px; height: 40px; background: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--text-light); cursor: pointer; transition: all 0.3s;
    border: none;
}
.property-fav:hover, .property-fav.active {
    background: var(--gold); color: var(--white);
}
.property-compare {
    position: absolute; top: 75px; right: 25px;
    width: 40px; height: 40px; background: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--text-light); cursor: pointer; transition: all 0.3s;
    border: none; font-size: 0.85rem;
}
.property-compare:hover, .property-compare.active {
    background: var(--navy); color: var(--white);
}
.property-price-tag {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(2,27,46,0.8));
    padding: 40px 25px 20px; color: var(--white);
}
.property-price-tag .price {
    font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700;
}
.property-price-tag .price span {
    font-family: 'Inter', sans-serif; font-size: 0.8rem; opacity: 0.7;
    font-weight: 400;
}
.property-body-v2 { padding: 30px; }
.property-body-v2 h4 {
    font-size: 1.3rem; color: var(--navy); margin-bottom: 8px;
}
.property-body-v2 .location {
    color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px;
    display: flex; align-items: center; gap: 6px;
}
.property-body-v2 .location i { color: var(--gold); font-size: 0.8rem; }
.property-divider {
    height: 1px; background: var(--border); margin: 20px 0;
}
.property-features-v2 {
    display: flex; justify-content: space-between;
}
.property-features-v2 span {
    font-size: 0.8rem; color: var(--text-light);
    display: flex; align-items: center; gap: 6px;
}
.property-features-v2 i { color: var(--gold); }

/* Featured Property — Large */
.featured-property {
    position: relative; border-radius: 0; overflow: hidden;
    height: 500px; margin-bottom: 30px;
}
.featured-property img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 6s ease;
}
.featured-property:hover img { transform: scale(1.03); }
.featured-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(2,27,46,0.9) 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 50px;
}
.featured-overlay .badge-featured {
    background: var(--gold); color: var(--white);
    padding: 6px 18px; font-size: 0.7rem;
    text-transform: uppercase; letter-spacing: 2px;
    display: inline-block; margin-bottom: 15px; width: fit-content;
}
.featured-overlay h3 {
    color: var(--white); font-size: 2.2rem; margin-bottom: 10px;
}
.featured-overlay p {
    color: rgba(255,255,255,0.7); margin-bottom: 20px; max-width: 500px;
}
.featured-overlay .price-big {
    font-family: 'Playfair Display', serif; font-size: 2rem;
    color: var(--gold);
}

/* Services — Minimal Cards */
.services-section { padding: 100px 0; background: var(--white); }
.service-v2 {
    padding: 50px 35px; text-align: center;
    border: 1px solid var(--border); transition: all 0.4s ease;
    height: 100%; position: relative; overflow: hidden;
}
.service-v2::before {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 0; background: var(--navy);
    transition: height 0.4s ease; z-index: 0;
}
.service-v2:hover::before { height: 100%; }
.service-v2 > * { position: relative; z-index: 1; }
.service-v2:hover h4, .service-v2:hover p, .service-v2:hover .service-icon-v2 {
    color: var(--white);
}
.service-icon-v2 {
    font-size: 2.5rem; color: var(--gold); margin-bottom: 25px;
    transition: color 0.4s;
}
.service-v2 h4 {
    font-size: 1.3rem; color: var(--navy); margin-bottom: 15px;
    transition: color 0.4s;
}
.service-v2 p {
    color: var(--text-light); font-size: 0.95rem; line-height: 1.7;
    transition: color 0.4s;
}

/* Cities — Horizontal Scroll */
.cities-section { padding: 100px 0; overflow: hidden; }
.cities-scroll {
    display: flex; gap: 25px; overflow-x: auto;
    padding: 20px 10px 40px; scrollbar-width: none;
}
.cities-scroll::-webkit-scrollbar { display: none; }
.city-card-v2 {
    min-width: 300px; height: 400px; position: relative;
    overflow: hidden; cursor: pointer;
}
.city-card-v2 img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.city-card-v2:hover img { transform: scale(1.08); }
.city-info-v2 {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 25px 25px;
    background: linear-gradient(transparent, rgba(2,27,46,0.85));
    color: var(--white);
}
.city-info-v2 h4 {
    font-size: 1.5rem; margin-bottom: 5px;
    color: var(--white);
}
.city-info-v2 span {
    color: var(--gold); font-size: 0.85rem; letter-spacing: 1px;
}
.city-info-v2 p {
    color: var(--white);
}

/* Testimonials — Slider Style */
.testimonials-section {
    padding: 100px 0; background: var(--navy);
    position: relative; overflow: hidden;
}
.testimonials-section::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(212,165,116,0.08) 0%, transparent 70%);
}
.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-header p { color: rgba(255,255,255,0.5); }
.testimonial-v2 {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    padding: 50px 40px; position: relative;
}
.testimonial-v2 .quote-icon {
    font-size: 4rem; color: var(--gold); opacity: 0.3;
    position: absolute; top: 20px; left: 30px; line-height: 1;
}
.testimonial-v2 p {
    color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.8;
    font-style: italic; margin-bottom: 30px; position: relative; z-index: 1;
}
.testimonial-author-v2 {
    display: flex; align-items: center; gap: 15px;
}
.testimonial-author-v2 img {
    width: 55px; height: 55px; border-radius: 50%; object-fit: cover;
    border: 2px solid var(--gold);
}
.testimonial-author-v2 h6 {
    color: var(--white); font-family: 'Inter', sans-serif;
    font-weight: 600; margin-bottom: 3px;
}
.testimonial-author-v2 span {
    color: var(--gold); font-size: 0.8rem;
}

/* CTA — Full Width */
.cta-v2 {
    padding: 120px 0; text-align: center;
    background: linear-gradient(rgba(2,27,46,0.92), rgba(2,27,46,0.92)),
                url('../img/cta-v2.jpg');
    background-size: cover; background-position: center; background-attachment: fixed;
}
.cta-v2 h2 {
    color: var(--white); font-size: 3rem; margin-bottom: 20px;
}
.cta-v2 p {
    color: rgba(255,255,255,0.6); font-size: 1.1rem; margin-bottom: 40px;
}

/* Footer — Dark Elegant */
footer {
    background: #021b2e; color: rgba(255,255,255,0.6); padding: 80px 0 30px;
}
.footer-brand-v2 {
    font-family: 'Playfair Display', serif; font-size: 1.8rem;
    color: var(--white); text-decoration: none; display: inline-block; margin-bottom: 20px;
}
.footer-brand-v2 span { color: var(--gold); font-weight: 400; }
.footer-desc { line-height: 1.8; margin-bottom: 25px; font-size: 0.95rem; }
.footer-title {
    color: var(--white); font-size: 0.8rem; text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 25px; font-weight: 600;
}
.footer-links-v2 { list-style: none; padding: 0; }
.footer-links-v2 li { margin-bottom: 12px; }
.footer-links-v2 a {
    color: rgba(255,255,255,0.6); text-decoration: none;
    font-size: 0.9rem; transition: color 0.3s;
}
.footer-links-v2 a:hover { color: var(--gold); }
.footer-contact li {
    display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px;
}
.footer-contact i {
    color: var(--gold); margin-top: 3px; font-size: 0.9rem;
}
.social-v2 {
    display: flex; gap: 12px; margin-top: 20px;
}
.social-v2 a {
    width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); text-decoration: none;
    transition: all 0.3s; font-size: 0.9rem;
}
.social-v2 a:hover {
    border-color: var(--gold); color: var(--gold); background: rgba(212,165,116,0.1);
}
.footer-bottom-v2 {
    border-top: 1px solid rgba(255,255,255,0.08); margin-top: 60px;
    padding-top: 25px; text-align: center; font-size: 0.85rem;
}

/* Floating Elements */
.float-whatsapp {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px; background: #25d366;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--white); font-size: 1.6rem; box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    z-index: 1000; animation: whatsappPulse 2s infinite; text-decoration: none;
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
}
.back-top {
    position: fixed; bottom: 18px; right: 15px;
    width: 50px; height: 50px; background: var(--gold);
    border: none; color: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; visibility: hidden;
    transition: all 0.3s; z-index: 1000;
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--navy); }

/* Page Header (internal pages) */
.page-header {
    background: var(--navy);
    padding: 160px 0 80px;
    position: relative;
}
.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
}
.page-header .breadcrumb-v2 {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 15px;
    font-family: 'Inter', sans-serif;
}
.page-header .breadcrumb-v2 a {
    color: var(--gold);
    text-decoration: none;
}
.page-header .breadcrumb-v2 span {
    color: rgba(255,255,255,0.4);
    margin: 0 8px;
}

/* Page Content */
.page-content {
    background: var(--cream);
    padding: 80px 0;
}

/* List item card (list pages) */
.list-card-v2 {
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.5s ease;
    position: relative;
    margin-bottom: 30px;
}
.list-card-v2:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.list-card-v2 .list-img-wrap {
    position: relative;
    overflow: hidden;
    height: 280px;
}
.list-card-v2 .list-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    max-height: 348px;
}
.list-card-v2:hover .list-img-wrap img {
    transform: scale(1.05);
}
.list-card-v2 .list-body {
    padding: 30px;
}
.list-card-v2 .list-body h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.list-card-v2 .list-body .list-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.list-card-v2 .list-body .list-location i {
    color: var(--gold);
}
.list-card-v2 .list-body .list-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 15px;
}
.list-card-v2 .list-body .list-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.list-card-v2 .list-body .list-meta span {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}
.list-card-v2 .list-body .list-meta i {
    color: var(--gold);
}
.list-card-v2 .list-body .btn-list-detail {
    background: var(--navy);
    color: var(--white);
    padding: 12px 28px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}
.list-card-v2 .list-body .btn-list-detail:hover {
    background: var(--gold);
}

/* Contact page form */
.contact-form-v2 input,
.contact-form-v2 textarea,
.form-style4 input,
.form-style4 textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 14px 18px;
    width: 100%;
    margin-bottom: 20px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}
.contact-form-v2 input:focus,
.contact-form-v2 textarea:focus,
.form-style4 input:focus,
.form-style4 textarea:focus {
    border-color: var(--gold);
    outline: none;
}
.contact-form-v2 button,
.form-style4 button.vs-btn,
.form-style4 button[type="submit"] {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}
.contact-form-v2 button:hover,
.form-style4 button.vs-btn:hover,
.form-style4 button[type="submit"]:hover {
    background: var(--navy);
}

/* Dropdown hover & animation - navbar only */
.navbar .dropdown:hover > .dropdown-menu {
    display: block;
    animation: dropdownFade 0.25s ease forwards;
}
.dropdown-menu {
    margin-top: 0;
    border: none;
    background: var(--white);
    box-shadow: var(--shadow-hover);
    border-radius: 0;
    padding: 10px 0;
    min-width: 220px;
}
.dropdown-item {
    font-size: 0.85rem;
    padding: 10px 25px;
    color: var(--navy);
    transition: all 0.2s;
}
.dropdown-item:hover {
    background: var(--cream);
    color: var(--gold);
}
.dropdown-toggle {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}
.dropdown-toggle::after {
    vertical-align: middle;
    font-size: 0.65rem;
    margin-left: auto;
    border: none;
    content: '\f107';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 400;
    color: inherit;
    display: inline-block;
}
@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Uniform card heights */
.property-item {
    display: flex;
}
.property-item > .property-card-v2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.property-body-v2 {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.property-body-v2 .property-features-v2 {
    margin-top: auto;
    padding-top: 15px;
}

/* List card stretch */
.list-card-v2 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch !important;
}
.list-card-v2 > [class*="col-"] {
    display: flex;
    flex-direction: column;
}
.list-card-v2 .list-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
}
.list-card-v2 .list-body .btn-list-detail {
    margin-top: auto;
    align-self: flex-start;
}

/* Footer text colors & captcha */
footer .footer-desc { color: rgba(255,255,255,0.7) !important; }
footer .form-control { color: #fff !important; }
footer .form-control::placeholder { color: rgba(255,255,255,0.4) !important; }
footer .g-recaptcha-container { overflow: hidden; width: 100%; }
footer .g-recaptcha { transform: scale(0.9); transform-origin: 0 0; }

/* Search form icons */
.search-form .form-group { position: relative; }
.search-form .form-group > i.fa-solid,
.search-form .form-group > i.fas,
.search-form .form-group > i.fa {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    pointer-events: none;
    font-size: 0.9rem;
    z-index: 5;
}
.search-form .form-group .bootstrap-select {
    width: 100% !important;
}
.search-form .form-group .bootstrap-select .dropdown-toggle {
    padding-right: 35px;
}

/* CTA Gold button */
.btn-cta-gold {
    background: var(--gold);
    color: var(--white);
    padding: 16px 40px;
    border: 2px solid var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-cta-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--navy);
    transition: left 0.4s ease;
    z-index: -1;
}
.btn-cta-gold:hover {
    color: var(--white);
    border-color: var(--navy);
}
.btn-cta-gold:hover::before {
    left: 0;
}

/* Compare icon fix */
.property-compare { z-index: 5; }
.property-compare i { font-weight: 900; }

/* Internal search form premium */
.search-internal {
    background: var(--white);
    padding: 35px 40px;
    box-shadow: var(--shadow-hover);
    margin-bottom: 40px;
}
.search-internal .form-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}
.search-internal .bootstrap-select .dropdown-toggle,
.search-internal .form-control,
.search-internal .form-select {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 1px 15px;
    font-size: 0.9rem;
    color: var(--text);
    width: 100%;
    min-height: 46px;
}
.search-internal .bootstrap-select .dropdown-toggle:focus,
.search-internal .form-control:focus,
.search-internal .form-select:focus {
    border-color: var(--gold);
    box-shadow: none;
    outline: none;
}
.search-internal .form-group {
    position: relative;
}
.search-internal .form-group > i.fas,
.search-internal .form-group > i.fa {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    pointer-events: none;
    font-size: 0.85rem;
    z-index: 5;
}
.search-internal .btn-search-internal {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 46px;
}
.search-internal .btn-search-internal:hover {
    background: var(--gold);
}
.search-internal .adv-toggle {
    width: 46px;
    height: 46px;
    min-height: 46px;
    background: var(--cream);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    flex-shrink: 0;
}
.search-internal .adv-toggle:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.search-internal .adv-content {
    background: var(--cream);
    padding: 25px;
    margin-top: 20px;
    border-top: 2px solid var(--gold);
}
.search-internal .adv-content .form-control {
    background: var(--white);
}

/* Presentation page legacy styles */
.img-box1 { position: relative; }
.img-box1 .img-2 { position: relative; }
.img-box1 .img-2 img { width: 100%; border-radius: 0; box-shadow: var(--shadow); }
.title-area3 { margin-bottom: 30px; }
.sec-subtitle2 { color: var(--gold); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; font-weight: 600; display: block; margin-bottom: 10px; }
.border-title, .border-title2, .border-title3 { font-family: 'Playfair Display', serif; color: var(--navy); margin-bottom: 20px; }

/* Contact info icons */
.icon-btn3 {
    width: 60px; height: 60px;
    background: var(--navy);
    display: flex; align-items: center; justify-content: center;
    margin-right: 20px; flex-shrink: 0;
}
.icon-btn3 img { width: 24px; height: 24px; filter: brightness(0) invert(1); }
.border-title2 { font-family: 'Playfair Display', serif; color: var(--navy); margin-bottom: 20px; }
.sec-title2 { font-family: 'Playfair Display', serif; color: var(--navy); margin-bottom: 15px; }

/* Responsive */
@media (max-width: 991px) {
    .navbar .dropdown:hover > .dropdown-menu { display: none; }
    .dropdown-menu.show { display: block; }
    /* Mobile menu */
    .navbar-collapse {
        background: var(--white);
        padding: 15px 20px;
        margin-top: 10px;
        box-shadow: var(--shadow-hover);
        border-radius: 0;
        max-height: 80vh;
        overflow-y: auto;
    }
    .navbar-internal .navbar-collapse {
        background: var(--white);
    }
    .navbar-collapse .navbar-nav {
        gap: 0;
    }
    .navbar-collapse .nav-link {
        color: var(--navy) !important;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        font-size: 0.85rem;
    }
    .navbar-collapse .dropdown-menu {
        box-shadow: none;
        border-left: 3px solid var(--gold);
        padding: 5px 0 5px 15px;
        margin: 5px 0 10px;
        animation: none;
        display: none;
    }
    .navbar-collapse .dropdown-menu.show {
        display: block !important;
    }
    .navbar-collapse .dropdown-item {
        padding: 8px 15px;
        color: var(--navy);
    }
    .navbar-collapse .btn-nav {
        margin-top: 10px;
        text-align: center;
        display: block;
    }
    .navbar-collapse .devise-dropdown {
        margin-top: 15px;
        padding-top: 10px;
        border-top: 1px solid var(--border);
    }
    .navbar-collapse .devise-dropdown .dropdown-toggle {
        border: 1px solid var(--border);
        background: var(--cream);
        color: var(--navy);
        width: 100%;
        justify-content: center;
    }
    .navbar-collapse .devise-dropdown .dropdown-toggle:hover,
    .navbar-collapse .devise-dropdown .dropdown-toggle:active,
    .navbar-collapse .devise-dropdown .dropdown-toggle:focus {
        background: var(--white);
        color: var(--navy);
        border-color: var(--gold);
    }
    .hero { flex-direction: column; }
    .hero-left { padding: 120px 30px 60px; }
    .hero-right { height: 400px; }
    .hero-content h1 { font-size: 2.5rem; }
    .search-box { padding: 30px; }
    .section-header h2 { font-size: 2rem; }
    .featured-property { height: 400px; }
    .featured-overlay { padding: 30px; }
    .featured-overlay h3 { font-size: 1.6rem; }
    .page-header { padding: 120px 0 60px; }
    .page-header h1 { font-size: 2rem; }
    .navbar-logo {
        height: 26px;
        max-width: 120px;
    }
}
@media (max-width: 576px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-stats { gap: 20px; }
    .hero-stat h3 { font-size: 1.5rem; }
    .cta-v2 h2 { font-size: 2rem; }
    .page-header h1 { font-size: 1.6rem; }
}

/* ============================================================
   FIXES : Devise dropdown, Hamburger mobile, Favorites/Compare
   ============================================================ */

/* ---------- Devise dropdown button ---------- */
.devise-dropdown .dropdown-toggle {
    width: auto;
    min-width: 100px;
    font-size: 0.85rem;
    padding: 6px 12px;
    gap: 8px;
    border-radius: 0;
    transition: all 0.3s ease;
}

/* Home transparent */
.navbar:not(.navbar-internal):not(.scrolled) .devise-dropdown .dropdown-toggle {
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.navbar:not(.navbar-internal):not(.scrolled) .devise-dropdown .dropdown-toggle:hover,
.navbar:not(.navbar-internal):not(.scrolled) .devise-dropdown .dropdown-toggle:active,
.navbar:not(.navbar-internal):not(.scrolled) .devise-dropdown .dropdown-toggle:focus {
    background: rgba(255,255,255,0.25);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}

/* Home scrolled */
.navbar.scrolled .devise-dropdown .dropdown-toggle {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--navy);
}
.navbar.scrolled .devise-dropdown .dropdown-toggle:hover,
.navbar.scrolled .devise-dropdown .dropdown-toggle:active,
.navbar.scrolled .devise-dropdown .dropdown-toggle:focus {
    background: var(--cream);
    color: var(--navy);
    border-color: var(--gold);
}

/* Internal pages */
.navbar-internal .devise-dropdown .dropdown-toggle {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--navy);
}
.navbar-internal .devise-dropdown .dropdown-toggle:hover,
.navbar-internal .devise-dropdown .dropdown-toggle:active,
.navbar-internal .devise-dropdown .dropdown-toggle:focus {
    background: var(--cream);
    color: var(--navy);
    border-color: var(--gold);
}

/* Devise dropdown menu */
.devise-dropdown .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-hover);
    border-radius: 0;
    padding: 8px 0;
    min-width: 100px;
}
.devise-dropdown .dropdown-item {
    font-size: 0.85rem;
    padding: 8px 16px;
    color: var(--navy);
}
.devise-dropdown .dropdown-item:hover {
    background: var(--cream);
    color: var(--gold);
}

/* ---------- Hamburger menu modern ---------- */
.navbar-toggler {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 0;
    z-index: 1050;
    cursor: pointer;
    transition: all 0.3s ease;
}
.navbar-internal .navbar-toggler {
    background: rgba(0,0,0,0.05);
    border-color: var(--border);
}
.hamburger-box {
    width: 24px;
    height: 18px;
    position: relative;
    display: inline-block;
}
.hamburger-box span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.25s ease-in-out;
}
.navbar-internal .hamburger-box span,
.navbar.scrolled .hamburger-box span {
    background: var(--navy);
}
.hamburger-box span:nth-child(1) { top: 0; }
.hamburger-box span:nth-child(2) { top: 8px; }
.hamburger-box span:nth-child(3) { top: 16px; }

/* Animation open/close */
.navbar-toggler[aria-expanded="true"] .hamburger-box span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}
.navbar-toggler[aria-expanded="true"] .hamburger-box span:nth-child(2) {
    opacity: 0;
    left: -20px;
}
.navbar-toggler[aria-expanded="true"] .hamburger-box span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .navbar-toggler {
        width: 52px;
        height: 52px;
    }
    .hamburger-box {
        width: 26px;
        height: 20px;
    }
    .hamburger-box span:nth-child(2) { top: 9px; }
    .hamburger-box span:nth-child(3) { top: 18px; }
    .navbar-toggler[aria-expanded="true"] .hamburger-box span:nth-child(1),
    .navbar-toggler[aria-expanded="true"] .hamburger-box span:nth-child(3) {
        top: 9px;
    }
}

/* ============================================================
   FIXES BATCH 2 : Search bar, Toast, Cities carousel, Evaluer
   ============================================================ */

/* ---------- Search bar alignment ---------- */
.search-internal .search-row-align {
    align-items: stretch;
}
.search-internal .search-row-align > [class*="col-"] {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 0;
}
.search-internal .form-group {
    margin-bottom: 0;
}
.search-internal .transaction-radio-group {
    min-height: 46px;
    display: flex;
    align-items: center;
}
.search-internal .bootstrap-select .dropdown-toggle,
.search-internal .form-control,
.search-internal .form-select {
    min-height: 46px;
}
@media (max-width: 991px) {
    .search-internal .search-row-align > [class*="col-"] {
        margin-bottom: 12px;
    }
    .search-internal .search-row-align > [class*="col-"]:last-child {
        margin-bottom: 0;
    }
}

/* ---------- Toast notifications ---------- */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}
.toast-item {
    background: var(--white);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-hover);
    padding: 16px 24px;
    min-width: 280px;
    max-width: 360px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--navy);
    animation: toastSlideIn 0.4s ease forwards;
    pointer-events: auto;
    border-radius: 0;
}
.toast-item.toast-success { border-left-color: var(--gold); }
.toast-item.toast-error { border-left-color: #e74c3c; }
.toast-item i { font-size: 1.1rem; color: var(--gold); }
.toast-item.toast-error i { color: #e74c3c; }
.toast-item.toast-removing {
    animation: toastFadeOut 0.4s ease forwards;
}
@keyframes toastSlideIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes toastFadeOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(40px); }
}
@media (max-width: 576px) {
    .toast-container {
        right: 15px;
        left: 15px;
        bottom: 15px;
        align-items: stretch;
    }
    .toast-item {
        min-width: auto;
        max-width: none;
    }
}

/* ---------- Cities slick carousel ---------- */
.cities-slider {
    padding: 20px 50px 40px;
    margin: 0;
}
.cities-slider .city-slide {
    padding: 0 12px;
    outline: none;
}
.cities-slider .slick-prev,
.cities-slider .slick-next {
    width: 48px;
    height: 48px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    font-size: 0;
    line-height: 0;
}
.cities-slider .slick-prev:hover,
.cities-slider .slick-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}
.cities-slider .slick-prev:hover:before,
.cities-slider .slick-next:hover:before {
    color: var(--white);
}
.cities-slider .slick-prev:before,
.cities-slider .slick-next:before {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--navy);
    opacity: 1;
    transition: color 0.3s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.cities-slider .slick-prev:before { content: '‹'; }
.cities-slider .slick-next:before { content: '›'; }
.cities-slider .slick-prev { left: 10px; }
.cities-slider .slick-next { right: 10px; }
.cities-slider .slick-dots {
    bottom: -30px;
}
.cities-slider .slick-dots li button:before {
    font-size: 10px;
    color: var(--border);
    opacity: 1;
}
.cities-slider .slick-dots li.slick-active button:before {
    color: var(--gold);
}
@media (max-width: 991px) {
    .cities-slider .slick-prev { left: 5px; }
    .cities-slider .slick-next { right: 5px; }
}

/* ---------- Renovation cards ---------- */
.renov-card {
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.renov-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}
.renov-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}
.renov-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.renov-card:hover .renov-img-wrap img {
    transform: scale(1.08);
}
.renov-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--white);
    padding: 5px 14px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}
.renov-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.renov-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 12px;
}
.renov-meta {
    display: flex;
    gap: 18px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: var(--text-light);
}
.renov-meta i {
    color: var(--gold);
    margin-right: 4px;
}
.renov-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}
.renov-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}
.renov-list li {
    position: relative;
    padding-left: 16px;
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 6px;
}
.renov-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

/* ---------- Evaluer page modern ---------- */
.page-evaluer-v2 {
    padding: 80px 0;
    background: var(--cream);
}
.page-evaluer-v2 .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}
.page-evaluer-v2 .form-group {
    margin-bottom: 24px;
}
.page-evaluer-v2 label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}
.page-evaluer-v2 .form-control,
.page-evaluer-v2 .bootstrap-select .dropdown-toggle,
.page-evaluer-v2 textarea.form-control {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 14px 18px;
    font-size: 0.95rem;
    color: var(--text);
    width: 100%;
    min-height: 50px;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.page-evaluer-v2 .form-control:focus,
.page-evaluer-v2 .bootstrap-select .dropdown-toggle:focus,
.page-evaluer-v2 textarea.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
    outline: none;
}
.page-evaluer-v2 textarea.form-control {
    min-height: 140px;
    resize: vertical;
}
.page-evaluer-v2 .form-check {
    margin-bottom: 10px;
}
.page-evaluer-v2 .form-check-input {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border);
    border-radius: 2px;
    margin-right: 10px;
    cursor: pointer;
}
.page-evaluer-v2 .form-check-input:checked {
    background-color: var(--gold);
    border-color: var(--gold);
}
.page-evaluer-v2 .form-check-label {
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}
.page-evaluer-v2 .btn-submit-evaluer {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 16px 48px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}
.page-evaluer-v2 .btn-submit-evaluer:hover {
    background: var(--gold);
}
.page-evaluer-v2 .upload-zone {
    border: 2px dashed var(--border);
    background: var(--white);
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.page-evaluer-v2 .upload-zone:hover {
    border-color: var(--gold);
    background: var(--cream);
}
.page-evaluer-v2 .upload-zone i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 12px;
    display: block;
}
.page-evaluer-v2 .upload-zone span {
    font-size: 0.9rem;
    color: var(--text-light);
}
.page-evaluer-v2 .map-container {
    border: 1px solid var(--border);
    overflow: hidden;
}
.page-evaluer-v2 .alert {
    border-radius: 0;
    border: none;
    border-left: 4px solid;
    padding: 16px 20px;
}
.page-evaluer-v2 .alert-success { border-left-color: #28a745; background: #eafaf1; }
.page-evaluer-v2 .alert-danger { border-left-color: #dc3545; background: #fdedec; }
.page-evaluer-v2 .alert-info { border-left-color: #17a2b8; background: #e8f6f8; }

/* Button pulse animation for favorites/compare */
.pulse-active {
    animation: btnPulse 0.6s ease;
}
@keyframes btnPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.search-internal .bootstrap-select .dropdown-toggle{
    display: none;

}
 .dropup .dropdown-toggle:after {
    display: none; 
}
.navbar-logo{
    height: 80px !important;
}
@media (max-width: 500px) {
    .property-ref.ref-coup{
        top: 8px;
        left: 30px;

    }}
.cities-slider .slick-dots{
    justify-self: center;
    justify-content: center;

}