/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    --bg-dark: #0a0c10;
    --bg-card: #10141f;
    --bg-input: #161c2b;
    --border-color: rgba(233, 182, 70, 0.15);
    --border-hover: rgba(233, 182, 70, 0.35);
    
    --gold-primary: #e9b646;
    --gold-light: #f9d976;
    --gold-gradient: linear-gradient(135deg, #f9d976 0%, #e9b646 100%);
    --gold-gradient-hover: linear-gradient(135deg, #ffffff 0%, #e9b646 100%);
    
    --text-white: #ffffff;
    --text-muted: #8f9cae;
    --text-dark: #1a202c;
    
    --font-heading: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --container-width: 1200px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

select, input, button {
    font-family: inherit;
    color: inherit;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gold {
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 12, 16, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    width: 46px;
    height: 46px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.font-gold {
    color: var(--gold-primary);
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-link:hover {
    color: var(--text-white);
}

/* Buttons */
.cta-button-gold {
    background: var(--gold-gradient);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(233, 182, 70, 0.3);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 182, 70, 0.5);
}

.cta-button-outline {
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    background: transparent;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button-outline:hover {
    background: var(--gold-gradient);
    color: var(--text-dark);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(233, 182, 70, 0.3);
}

.cta-button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 85vh;
}

.hero-background-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(233, 182, 70, 0.08) 0%, rgba(10, 12, 16, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    max-width: 800px;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ==========================================================================
   SECTIONS GENERAL
   ========================================================================== */
section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 50px;
    max-width: 600px;
}

.section-header.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ==========================================================================
   CATALOG & FILTERS
   ========================================================================== */
.catalog-section {
    background-color: rgba(255, 255, 255, 0.01);
}

.filters-bar-wrapper {
    background: rgba(16, 20, 31, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 20px;
    margin-bottom: 40px;
}

.filters-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 16px;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.filter-group select {
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23e9b646' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.filter-group select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 8px rgba(233, 182, 70, 0.15);
}

.filter-group select option {
    background-color: var(--bg-card);
    color: var(--text-white);
}

.btn-clear-filters {
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    height: 48px;
    width: 48px;
    transition: var(--transition-smooth);
}

.btn-clear-filters:hover {
    background-color: rgba(233, 182, 70, 0.1);
    border-color: var(--gold-primary);
}

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.grid-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 0;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Property Card */
.property-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.property-img-wrapper {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.property-card:hover .property-img {
    transform: scale(1.05);
}

.property-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold-gradient);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-ref {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(10, 12, 16, 0.75);
    backdrop-filter: blur(5px);
    color: var(--text-white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.property-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.property-features {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.feature-value {
    color: var(--text-white);
    font-weight: 600;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.property-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-primary);
}

/* No results state */
.no-results-container {
    text-align: center;
    padding: 60px 24px;
    border-radius: var(--border-radius-md);
    background-color: var(--bg-card);
    border: 1px dashed var(--border-color);
}

.no-results-icon {
    color: var(--gold-primary);
    margin-bottom: 20px;
    opacity: 0.7;
}

.no-results-container h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.no-results-container p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ==========================================================================
   FEATURES / STATS SECTION
   ========================================================================== */
.features-section {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.features-info .section-text {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon-wrapper {
    background-color: rgba(233, 182, 70, 0.1);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-primary);
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.feature-desc h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.feature-desc p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.features-stats-box {
    position: relative;
    padding: 10px;
}

.stats-glass {
    background: rgba(16, 20, 31, 0.65);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-primary);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 30px auto;
    width: 60px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background-color: rgba(255, 255, 255, 0.005);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: 10px;
    right: 24px;
    font-size: 6rem;
    color: rgba(233, 182, 70, 0.05);
    font-family: Georgia, serif;
    line-height: 1;
}

.stars {
    color: var(--gold-primary);
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.quote {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.client-info {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-details {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
}

.client-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   MODAL / LEAD CAPTURE
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 7, 10, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(16, 20, 31, 0.9);
    border: 1px solid var(--border-hover);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
    line-height: 1;
}

.modal-close-btn:hover {
    color: var(--text-white);
}

.modal-body {
    padding: 40px;
}

.modal-header-info {
    margin-bottom: 24px;
    text-align: center;
}

.modal-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.modal-header-info h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.modal-ref {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.modal-visual-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
}

.modal-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
}

.modal-property-meta {
    display: flex;
    flex-direction: column;
}

.modal-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.modal-property-location {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Form in Modal */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input {
    background-color: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 8px rgba(233, 182, 70, 0.2);
}

.full-width {
    width: 100%;
}

.form-privacy-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
    margin-top: 8px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
    background-color: #06080c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 80px;
}

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

.footer-brand .logo-wrapper {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--gold-primary);
}

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-contact .contact-details {
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 30px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.social-icon:hover {
    background-color: var(--gold-primary);
    color: var(--text-dark);
    border-color: transparent;
    transform: translateY(-2px);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 24px;
    right: 24px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulseWhatsApp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-stats-box {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 900px) {
    .filters-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .btn-clear-filters {
        grid-column: span 2;
        width: 100%;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .main-nav {
        display: flex;
        gap: 0;
    }
    
    .main-nav .nav-link {
        display: none;
    }
    
    .main-nav .cta-button-outline {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .hero-section {
        padding-top: 150px;
        padding-bottom: 80px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-ctas a {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.85rem;
    }
    
    .modal-body {
        padding: 24px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .filters-bar {
        grid-template-columns: 1fr;
    }
    
    .btn-clear-filters {
        grid-column: span 1;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
}
