/* ═══════════════════════════════════════
   FONTS — loaded via <link> in includes/header.php
   (Space Grotesk = display, Inter = body, IBM Plex Mono = data/labels)
═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   CSS VARIABLES — change these to reskin
   the entire site instantly
═══════════════════════════════════════ */
:root {
    --primary:        #1F6F5C;    /* deep jade — brand / trust color */
    --primary-dark:   #154F41;    /* hover state */
    --primary-light:  #E8F2EE;    /* light jade backgrounds */
    --accent:         #F0A23D;    /* marigold — used for highlights & the "verified" mark */
    --accent-dark:    #D78B25;
    --whatsapp:       #25d366;    /* whatsapp green */
    --whatsapp-dark:  #128c7e;
    --danger:         #C0472B;    /* taken / unavailable */

    --text-primary:   #18221E;
    --text-secondary: #5C685F;
    --text-light:     #98A199;

    --bg-white:       #ffffff;
    --bg-light:       #F3F1E9;
    --bg-dark:        #11201A;

    --border:         #E2DFD1;
    --border-dark:    #CCC7B3;

    --shadow-sm:      0 1px 3px rgba(17,30,22,0.08);
    --shadow-md:      0 6px 20px rgba(17,30,22,0.10);
    --shadow-lg:      0 16px 40px rgba(17,30,22,0.14);

    --radius-sm:      8px;
    --radius-md:      16px;
    --radius-lg:      28px;

    --font:           "Inter", -apple-system, sans-serif;
    --font-display:   "Space Grotesk", -apple-system, sans-serif;
    --font-mono:       "IBM Plex Mono", "SFMono-Regular", monospace;

    --transition:     all 0.2s ease;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* small mono "eyebrow" label used above section titles & headlines —
   the recurring data-stamp motif that ties the whole design together */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}

.eyebrow::before {
    content: "";
    width: 16px;
    height: 1px;
    background: var(--accent);
}

.eyebrow-light {
    color: var(--accent);
}

/* ═══════════════════════════════════════
   LAYOUT
═══════════════════════════════════════ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.main-content {
    min-height: calc(100vh - 70px);
}

.section {
    padding: 80px 0;
}

.section-sm {
    padding: 48px 0;
}

.section-alt {
    background: var(--bg-light);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.1rem;
    font-family: var(--font);
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.logo::after {
    content: "";
}

.logo-image{
    height: 35px;
    width: 35px;
    margin-right: 10px;
}

.logo-text{
    margin-top: 7px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.container > a{
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: var(--primary-light);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* light/inverted button — used on dark sections like the hero & CTA banner */
.btn-light {
    background: var(--bg-white);
    color: var(--primary);
}

.btn-light:hover {
    background: var(--accent);
    color: var(--bg-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.88rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--whatsapp);
    color: white !important;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark) !important;
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-list-your-property{
    margin: auto;
    min-width: 200px;
    justify-self: center;
}

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero {
    position: relative;
    background:
        linear-gradient(160deg, rgba(17,32,26,0.9) 0%, rgba(17,32,26,0.6) 55%, rgba(31,111,92,0.4) 100%),
        url('../images/hero-image.png') center / cover no-repeat;
    background-color: var(--bg-dark);
    color: white;
    padding: 110px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(240,162,61,0.5) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    opacity: 0.12;
    pointer-events: none;
}

.hero .container {
    position: relative;
}

.hero .eyebrow {
    color: var(--accent);
    justify-content: center;
    width: 100%;
}

.hero .eyebrow::before {
    display: none;
}

.hero h1 {
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero p {
    font-family: var(--font);
    font-size: 1.15rem;
    color: rgba(255,255,255,0.82);
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid white;
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: white;
    color: var(--primary);
}

/* ═══════════════════════════════════════
   SEARCH BAR — styled like a boarding-pass /
   ticket counter: labelled fields + a torn
   stub on the right holding the search action
═══════════════════════════════════════ */
.search-bar {
    position: relative;
    background: white;
    border-radius: var(--radius-md);
    padding: 22px 22px 22px 26px;
    display: flex;
    align-items: flex-end;
    gap: 18px;
    max-width: 780px;
    margin: 44px auto 0;
    box-shadow: var(--shadow-lg);
    flex-wrap: wrap;
    text-align: left;
}

.search-field {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-field label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.search-bar select,
.search-bar input {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--text-primary);
    background: var(--bg-white);
}

.search-bar select:focus,
.search-bar input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-bar button {
    padding: 13px 28px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.search-bar button:hover {
    background: var(--primary-dark);
}

/* the perforated divider that separates the "fields" from the search stub,
   like the tear-line on a ticket */
@media (min-width: 640px) {
    .search-bar button {
        position: relative;
        margin-left: 4px;
    }
    .search-bar button::before {
        content: "";
        position: absolute;
        left: -14px;
        top: -22px;
        bottom: -22px;
        width: 0;
        border-left: 2px dashed var(--border);
    }
}

/* ═══════════════════════════════════════
   STATS / FEATURES STRIP
═══════════════════════════════════════ */
.stats-strip {
    background: var(--bg-dark);
    color: white;
    padding: 44px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stats-strip .stat-item {
    position: relative;
}

.stats-strip .stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -12px;
    top: 4px;
    bottom: 4px;
    width: 0;
    border-right: 1px dashed rgba(255,255,255,0.18);
}

.stat-item h3 {
    font-family: var(--font-mono);
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--accent);
}

.stat-item p {
    font-family: var(--font);
    opacity: 0.78;
    font-size: 0.92rem;
}

/* ═══════════════════════════════════════
   PROPERTY CARDS — styled like a boarding
   pass: photo + details, then a dashed tear
   line, then the rent "stub"
═══════════════════════════════════════ */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.property-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.property-card-image {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: var(--bg-light);
}

.property-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card:hover .property-card-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--bg-dark);
    color: white;
    padding: 4px 11px;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* the "available / taken" mark reads like a stamped seal rather than a flat pill */
.property-badge-available,
.property-badge-unavailable {
    background: var(--bg-white);
    border: 1.5px dashed var(--primary);
    color: var(--primary);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.property-badge-unavailable {
    border-color: var(--danger);
    color: var(--danger);
}

.property-card-body {
    padding: 20px;
}

.property-card-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.property-card-body h3 a:hover {
    color: var(--primary);
}

.property-location {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.property-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.property-tag {
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 3px 10px;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: 1px solid var(--border);
}

.property-card-footer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-top: none;
}

.property-card-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 0;
    border-top: 2px dashed var(--border-dark);
}

.property-rent {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
}

/* ═══════════════════════════════════════
   HOW IT WORKS — a real 4-step sequence,
   shown as a route with dashed connectors
═══════════════════════════════════════ */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 32px 22px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 38px;
    left: calc(100% - 6px);
    width: calc(24px + 12px);
    height: 0;
    border-top: 2px dashed var(--border-dark);
}

.process-num {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-dark);
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.process-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.process-step h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.process-step p {
    font-family: var(--font);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .process-step:not(:last-child)::after {
        display: none;
    }
}

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
    position: relative;
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: 64px 48px;
    text-align: center;
    color: white;
    overflow: hidden;
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1.5px dashed rgba(240,162,61,0.35);
}

.cta-banner .eyebrow {
    justify-content: center;
    width: 100%;
}

.cta-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-banner p {
    font-family: var(--font);
    opacity: 0.85;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.cta-banner-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   FILTERS SIDEBAR
═══════════════════════════════════════ */
.listings-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

.filters-sidebar {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    position: sticky;
    top: 90px;
}

.filters-sidebar h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: var(--font);
    color: var(--text-primary);
    background: var(--bg-white);
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.filter-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background: var(--primary-dark);
}

.filter-reset {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.filter-reset:hover {
    color: var(--primary);
}

/* ═══════════════════════════════════════
   FORMS
═══════════════════════════════════════ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--text-primary);
    background: var(--bg-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
    background: var(--bg-dark);
    color: #C9CFC9;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 14px;
}

.footer-col p {
    font-family: var(--font);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #9BA59C;
}

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 500;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-family: var(--font);
    font-size: 0.9rem;
    color: #9BA59C;
}

.footer-col ul li a:hover {
    color: white;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    position: relative;
    border-top: 1px dashed rgba(255,255,255,0.16);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: #6E786F;
}

/* ═══════════════════════════════════════
   ALERTS & MESSAGES
═══════════════════════════════════════ */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ═══════════════════════════════════════
   BREADCRUMBS
═══════════════════════════════════════ */
.breadcrumb{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
    margin-top: 20px;
    font-family: var(--font-display);
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-strip .stat-item:nth-child(2)::after {
        display: none;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .listings-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
    }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════ */
@media (max-width: 840px) {
    .hero {
        padding: 80px 0 64px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-light{
        width: 250px;
        justify-content: center;
        padding: 10px 20px;
    }

    .hero-whatsapp{
        width: 250px !important;
        margin: 0px 0px 0px !important;
    }

    .section {
        padding: 56px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .search-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .search-bar button::before {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 25px 30px;
        gap: 12px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        transition: 0.35s ease;
        display: flex;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        display: block;
        padding: 14px 18px;
        border-radius: 10px;
        font-size: 1rem;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: var(--primary-light);
        color: var(--primary);
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-strip .stat-item::after {
        display: none;
    }

    .btn-list-your-property{
        width: 100%;
        justify-self: center;
    }
}