/* ===== VARIABLES - Bisbec Properties Color Scheme ===== */
:root {
    --primary-color: #c19a6b;
    --primary-dark: #a07d52;
    --secondary-color: #2c3e50;
    --text-dark: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 10px 30px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 16px;
    --border-radius-sm: 8px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    padding-top: 80px;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* ===== Navbar Styles (from index) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background: var(--bg-white);
    box-shadow: var(--shadow);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.4s ease;
}

.logo-scrolled {
    display: none;
}

.header.scrolled .logo-default {
    display: none;
}

.header.scrolled .logo-scrolled {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 300;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
}

.header.scrolled .nav-menu a {
    color: var(--text-dark);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    border-radius: var(--border-radius-sm);
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    font-size: 14px;
    color: var(--text-dark) !important;
}

.dropdown-menu a::after {
    display: none;
}

.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
}

.cta-button:hover {
    background: transparent;
    color: var(--primary-color);
}

.header.scrolled .cta-button {
    background: var(--primary-color);
    color: white;
}

.header.scrolled .cta-button:hover {
    background: transparent;
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: var(--transition);
}

.header.scrolled .hamburger span {
    background: var(--text-dark);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== Page Header ===== */
.page-header {
    height: 400px;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    background-image: url('../Imgs/Gomoa/1.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.header-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.breadcrumb {
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb span {
    color: rgba(255,255,255,0.8);
}

/* ===== Listings Section ===== */
.listings-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.listings-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

/* ===== Filters Sidebar ===== */
.filters-sidebar {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.filters-header h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.filters-header h3 i {
    color: var(--primary-color);
    margin-right: 8px;
}

.clear-filters {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
}

.clear-filters:hover {
    color: var(--primary-dark);
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-light);
}

.filter-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

/* Price Range Filter */
.price-range {
    margin-top: 10px;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-inputs input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
}

.price-inputs span {
    color: var(--text-light);
}

.price-slider {
    position: relative;
    height: 30px;
    margin-bottom: 10px;
}

.price-range-slider {
    position: absolute;
    width: 100%;
    height: 5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
}

.price-range-slider::-webkit-slider-thumb {
    pointer-events: auto;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    margin-top: -6px;
}

.price-range-slider::-webkit-slider-runnable-track {
    height: 5px;
    background: #ddd;
    border-radius: 5px;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

/* Filter Select */
.filter-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    color: var(--text-dark);
}

.apply-filters-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
}

.apply-filters-btn:hover {
    background: var(--primary-dark);
}

/* ===== Listings Main ===== */
.listings-main {
    width: 100%;
}

.listings-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    max-width: 400px;
}

.search-box i {
    color: var(--text-lighter);
}

.search-box input {
    flex: 1;
    padding: 8px 0;
    border: none;
    outline: none;
    font-size: 0.95rem;
}

.sort-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-box label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.sort-box select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    outline: none;
    cursor: pointer;
}

.results-count {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== Properties Grid ===== */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.property-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.property-image-slider {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slider-images img.active {
    opacity: 1;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 5;
    opacity: 0;
    transition: var(--transition);
}

.property-card:hover .slider-nav {
    opacity: 1;
}

.slider-nav button {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.8);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-nav button:hover {
    background: var(--primary-color);
    color: white;
}

.property-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 5;
}

.property-badge.hot {
    background: #e74c3c;
}

.property-badge.featured {
    background: var(--primary-color);
}

.property-type {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 5;
}

.property-details {
    padding: 20px;
}

.property-title {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.property-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.property-location i {
    color: var(--primary-color);
    margin-right: 5px;
}

.property-size {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.property-size i {
    color: var(--primary-color);
    margin-right: 5px;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: var(--bg-light);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.feature-tag i {
    color: var(--primary-color);
    font-size: 10px;
}

.property-actions {
    display: flex;
    gap: 10px;
}

.btn-view-details {
    flex: 1;
    padding: 10px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-view-details:hover {
    background: var(--primary-color);
    color: white;
}

.btn-book-inspection {
    flex: 1;
    padding: 10px;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-book-inspection:hover {
    background: transparent;
    color: var(--primary-color);
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: var(--bg-white);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ===== CTA Section ===== */
.listings-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-btn-primary {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.cta-btn-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.3);
}

/* ===== Footer (from index) ===== */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: none;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-transform: none;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-color);
}

/* ===== WhatsApp Floating Icon ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.whatsapp-icon-wrapper i {
    color: white;
    font-size: 35px;
    transition: all 0.3s ease;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.whatsapp-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: whatsapp-glow 2s infinite ease-in-out;
    z-index: -1;
}

@keyframes whatsapp-glow {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0; }
    100% { transform: scale(1); opacity: 0.5; }
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    background: white;
    color: #128C7E;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #25D366;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

.whatsapp-float:hover .whatsapp-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* ===== Modal Styles ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    overflow-y: auto;
}

.modal.active {
    display: block;
}

.modal-content {
    position: relative;
    background: var(--bg-white);
    width: 90%;
    max-width: 900px;
    margin: 50px auto;
    border-radius: var(--border-radius);
    padding: 40px;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    z-index: 10;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 20px 0;
}

.modal-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Property Modal */
.property-modal .modal-content {
    max-width: 1000px;
}

.property-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.property-modal-info {
    padding: 20px;
}

.property-modal-info h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.property-modal-info .price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 15px 0;
}

.property-modal-info .features-list {
    list-style: none;
    margin: 20px 0;
}

.property-modal-info .features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.property-modal-info .features-list i {
    color: var(--primary-color);
}

/* Booking Form */
.booking-form {
    padding: 20px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    text-transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(193, 154, 107, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    position: relative;
}

.btn-loader {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .listings-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: static;
        margin-bottom: 30px;
    }
    
    .header-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        transition: var(--transition);
        box-shadow: var(--shadow);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .nav-menu a {
        font-size: 18px;
        color: var(--text-dark);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .cta-button {
        display: none;
    }
    
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .listings-toolbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .property-modal-content {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .whatsapp-icon-wrapper i {
        font-size: 30px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 300px;
    }
    
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .property-actions {
        flex-direction: column;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
}


/* ===== Property Modal Button Styles ===== */
.property-modal .modal-footer {
    text-align: center;
    padding: 25px 20px 20px;
}

.property-modal .modal-footer .book-whatsapp {
    background: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 5px 20px rgba(193, 154, 107, 0.3);
    position: relative;
    overflow: hidden;
}

.property-modal .modal-footer .book-whatsapp i {
    font-size: 20px;
    transition: all 0.3s ease;
}

.property-modal .modal-footer .book-whatsapp:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(193, 154, 107, 0.4);
}

.property-modal .modal-footer .book-whatsapp:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #25D366;
}

/* Ripple effect on click */
.property-modal .modal-footer .book-whatsapp:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(193, 154, 107, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .property-modal .modal-footer .book-whatsapp {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
        gap: 8px;
    }
    
    .property-modal .modal-footer .book-whatsapp i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .property-modal .modal-footer .book-whatsapp {
        padding: 12px 20px;
        font-size: 13px;
    }
}


/* ===== Simple Bullet Style for Features List ===== */
.property-modal-info .features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.property-modal-info .features-list li {
    position: relative;
    padding: 8px 0 8px 30px;
    font-size: 16px;
    color: var(--text-dark);
    border-bottom: 1px dashed rgba(193, 154, 107, 0.2);
}

.property-modal-info .features-list li:last-child {
    border-bottom: none;
}

.property-modal-info .features-list li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 2px;
    line-height: 1;
}

/* Alternative checkmark bullet */
.property-modal-info .features-list.checkmark li::before {
    content: "✓";
    font-size: 18px;
    font-weight: bold;
}

/* Alternative diamond bullet */
.property-modal-info .features-list.diamond li::before {
    content: "♦";
    font-size: 18px;
}

/* Alternative arrow bullet */
.property-modal-info .features-list.arrow li::before {
    content: "→";
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .property-modal-info .features-list li {
        font-size: 14px;
        padding: 6px 0 6px 25px;
    }
    
    .property-modal-info .features-list li::before {
        font-size: 20px;
    }
}