/* ==================================================================
   HERO
================================================================== */

.hero {
    position: relative;
    max-height: 100vh;
    display: flex;
    align-items: center;

    background-image: url("../images/bannerImage.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(30, 30, 30, 0.82) 0%,
            rgba(37, 37, 37, 0.58) 45%,
            rgba(2, 26, 165, 0.25) 100%
        );
}

.hero-inner {
    position: relative;
    z-index: 2;

    width: min(100% - 32px, 1280px);
    margin-inline: auto;

    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;

    padding-block: clamp(48px, 8vw, 96px);
}

.hero-content {
    width: 100%;
    max-width: 650px;
    margin-top: clamp(20px, 3vw, 60px);
}

.hero-search {
    display: flex;
    width: 100%;
}

.hero h1 {
    margin: 0 0 20px;

    font-family: var(--font-display);
    color: var(--white-text);

    font-size: clamp(24px, 4vw, 42px);
    font-weight: 600;
    line-height: 1.08;
}

.hero p.lead {
    max-width: 500px;
    margin: 0 0 32px;

    color: #f1f1f1;

    font-size: clamp(12px, 1.4vw, 16px);
    line-height: 1.6;
}


/* ==================================================================
   SEARCH CARD
================================================================== */

.search-card {
    position: relative;
    width: 100%;

    padding: clamp(10px, 2vw, 20px);

    background: var(--paper);
    color: var(--ink);

    border-radius: 10px;

    box-shadow: var(--shadow-lg);
}

.tab-row {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 8px;

    font-family: var(--font-mono);
    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: 0.05em;

    overflow-x: auto;
    scrollbar-width: none;
}

.tab-row::-webkit-scrollbar {
    display: none;
}

.tab-row button,
.pill {
    flex-shrink: 0;

    padding: 8px 16px;

    border: 1px solid var(--primary-soft);
    border-radius: 10px;

    background: transparent;
    color: var(--muted);

    font-family: inherit;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.tab-row button:hover,
.pill:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-row button.active,
.pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}


/* ==================================================================
   SEARCH FIELD
================================================================== */

.search-field {
    display: flex;
    align-items: center;
    gap: 8px;

    width: 100%;

    padding: 10px 12px;
    margin-bottom: 12px;

    border: 1px solid var(--primary-soft);
    border-radius: 10px;

    background: var(--paper);
}

.search-field input {
    width: 100%;
    min-width: 0;

    padding: 0;

    border: none;
    outline: none;

    background: transparent;
    color: var(--ink);

    font-family: var(--font-body);
    font-size: 14px;
}

.search-field input::placeholder {
    color: var(--muted-2);
}

.search-field svg {
    width: 16px;
    height: 16px;

    flex-shrink: 0;

    color: var(--primary);
    fill: currentColor;
}


/* ==================================================================
   RANGE SLIDER
================================================================== */

.range-slider {
    width: 100%;
    margin-bottom: 4px;
}

.values {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 5px;
}

.values span {
    color: var(--muted);

    font-family: var(--font-mono);
    font-size: 13px;
}

.slider {
    position: relative;

    width: 100%;
    height: 24px;

    margin-bottom: 15px;
}

.slider-track {
    position: absolute;
    left: 0;
    top: 50%;

    width: 100%;
    height: 4px;

    transform: translateY(-50%);

    background: var(--primary);
    border-radius: 50px;
}

input[type="range"] {
    position: absolute;
    left: 0;
    top: 50%;

    width: 100%;
    height: 4px;

    margin: 0;

    transform: translateY(-50%);

    appearance: none;
    -webkit-appearance: none;

    background: transparent;

    pointer-events: none;

    outline: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;

    background: transparent;
    border: none;
}

input[type="range"]::-webkit-slider-thumb {
    width: 18px;
    height: 18px;

    margin-top: -7px;

    appearance: none;
    -webkit-appearance: none;

    border: 4px solid #fff;
    border-radius: 50%;

    background: var(--primary-dark);

    cursor: pointer;
    pointer-events: auto;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

input[type="range"]::-moz-range-track {
    height: 4px;

    background: transparent;
    border: none;
}

input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;

    border: 4px solid #fff;
    border-radius: 50%;

    background: var(--primary-dark);

    cursor: pointer;
    pointer-events: auto;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}


/* ==================================================================
   SEARCH GRID
================================================================== */

.search-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.select-base {
    width: 100%;
    min-width: 0;

    padding: 10px 15px;

    border: 1px solid var(--primary-soft);
    border-radius: 10px;

    outline: none;

    background: #fff;
    color: var(--muted);

    font-family: inherit;
    font-size: 14px;

    cursor: pointer;
}

.select-base:focus {
    border-color: var(--primary);
}

.btn-search {
    width: 100%;
    min-height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border: none;
    border-radius: 10px;

    background: var(--primary);
    color: #fff;

    font-family: var(--font-mono);
    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: 0.05em;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.btn-search:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-search svg {
    width: 14px;
    height: 14px;

    fill: currentColor;
}


/* ==================================================================
   HERO IMAGE
================================================================== */

.hero-image {
    position: relative;
    display: none;
}

.hero-image-frame {
    position: relative;

    overflow: hidden;

    border: 1px solid rgba(127, 184, 217, 0.3);
    border-radius: 10px;
}

.hero-image-frame img {
    display: block;

    width: 100%;
    height: clamp(380px, 40vw, 560px);

    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(18, 35, 61, 0.8),
            transparent 60%
        );
}

.hero-image-tags {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    color: #fff;

    font-family: var(--font-mono);
    font-size: 12px;
}

.hero-image-tags .ref,
.hero-image-tags .spec {
    padding: 6px 12px;

    border-radius: 10px;
}

.hero-image-tags .ref {
    background: rgba(18, 35, 61, 0.8);
    border: 1px solid rgba(127, 184, 217, 0.4);
}

.hero-image-tags .spec {
    background: var(--primary);
}


/* ==================================================================
   SECTION HEADERS
================================================================== */

.section {
    padding-block: clamp(30px, 4vw, 40px);
}

.section-head {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: clamp(24px, 4vw, 40px) 0;
}

.section-head .heading-section {
    text-align: center;
}

.section-head h2 {
    margin: 0;

    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 600;
}

.link-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;

    padding: 30px 0;

    color: var(--primary);

    font-family: var(--font-mono);
    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: 0.05em;

    transform-origin: center;

    transition:
        color 0.3s ease,
        transform 0.5s ease;
}

.link-more:hover {
    color: var(--navy);
    text-decoration: underline;
    transform: scale(1.06);
}

.link-more svg {
    width: 14px;
    height: 14px;

    fill: currentColor;
}


/* ==================================================================
   CITIES GRID
================================================================== */

.city-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: clamp(12px, 2vw, 20px);
}

.city-card {
    position: relative;

    display: block;

    width: 100%;
    height: clamp(190px, 18vw, 250px);

    overflow: hidden;

    border-radius: 10px;
}

.city-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.city-card:hover img {
    transform: scale(1.05);
}

.city-card-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(18, 35, 61, 0.9),
            rgba(18, 35, 61, 0.1) 60%,
            transparent
        );
}

.city-card-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 12px;

    color: #fff;
}

.city-card-text .name {
    font-family: var(--font-display);
    font-size: clamp(14px, 2vw, 20px);
    line-height: 1.2;
}

.city-card-text .count {
    color: var(--sky-text);

    font-family: var(--font-mono);
    font-size: 10px;
}




/* ==================================================================
   LISTINGS
================================================================== */

.listing-grid {
    display: grid;
    grid-template-columns:  repeat(4, minmax(0, 1fr));
    gap: clamp(12px, 1.8vw, 24px);
}

.listing-card {
    position: relative;

     display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--line);
    border-radius: 10px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.listing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.listing-image {
    position: relative;

    height: clamp(170px, 18vw, 210px);

    overflow: hidden;
}

.listing-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.listing-card:hover .listing-image img {
    transform: scale(1.05);
}

.listing-tag {
    position: absolute;
    top: 12px;
    left: 12px;

    padding: 4px 10px;

    background: var(--primary);
    color: #fff;

    border-radius: 10px;

    font-family: var(--font-mono);
    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.listing-body {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: clamp(14px, 2vw, 18px);
}

.listing-body h3 {
    margin: 0 0 4px;

    font-family: var(--font-display);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.3;
}

.listing-loc {
    display: flex;
    align-items: center;
    gap: 5px;

    margin-bottom: 12px;

    color: var(--muted);

    font-size: 12px;
}

.listing-loc svg {
    width: 14px;
    height: 14px;

    flex-shrink: 0;
}


/* ==================================================================
   LISTING SPECS
================================================================== */

.listing-specs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;

    padding-top: 12px;

    border-top: 1px dashed var(--line);

    color: var(--muted);

    font-family: var(--font-mono);
    font-size: 11px;
}

.config-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;

    width: 100%;
}

.config-area,
.config-type,
.config-bathrooms,
.config-date {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    white-space: nowrap;
}

.config-area svg,
.config-type svg,
.config-bathrooms svg,
.config-date svg {
    width: 14px;
    height: 14px;

    flex-shrink: 0;
}

.listing-price {
    margin-top: 12px;

    color: var(--navy-deep);

    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
}


/* ==================================================================
   WHY US / STATS
================================================================== */

.why-section {
    padding-block: clamp(56px, 7vw, 100px);

    background: var(--blue-background);
    color: var(--paper);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: clamp(20px, 5vw, 50px);
}

.why-grid h2 {
    margin: 0 0 24px;

    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(127, 184, 217, 0.4);
    border-radius: 2px;

    color: var(--blueprint-line);
}

.feature-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.feature-item h3 {
    margin: 0 0 4px;

    font-family: var(--font-display);
    font-size: 16px;
}

.feature-item p {
    margin: 0;

    color: var(--sky-text-2);

    font-size: 14px;
    line-height: 1.6;
}


/* ==================================================================
   STATS
================================================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    align-content: start;
}

.stat-card {
    padding: clamp(16px, 2vw, 22px);
    background: #15172b;
    border: 1px solid rgba(127, 184, 217, 0.25);
    border-radius: 10px;
    text-align: center;
}

.stat-value {
    color: #fff;
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
}

.stat-value .unit {
    color: var(--sky-text-4);
    font-size: 20px;
}

.stat-label {
    margin-top: 8px;
    color: var(--sky-text-3);
    font-family: var(--font-mono);
    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: 0.05em;

    line-height: 1.3;
}

.stats-image {
    grid-column: 1 / -1;
    margin-top: 8px;
    overflow: hidden;
    border-radius: 10px;
}

.stats-image img {
    display: block;

    width: 100%;
    height: clamp(220px, 30vw, 360px);

    object-fit: cover;
}


/* ==================================================================
   TESTIMONIALS
================================================================== */

.testimonial-grid {
    display: grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));

    gap: clamp(16px, 2vw, 24px);
}

.testimonial-card {
    padding: clamp(18px, 3vw, 28px);

    background: var(--paper);

    border: 1px solid var(--line);
    border-radius: 10px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card svg.quote-icon {
    width: 20px;
    height: 20px;

    margin-bottom: 12px;

    color: var(--primary-dark);

    fill: currentColor;
}

.testimonial-card p {
    margin: 0 0 20px;

    color: var(--ink);

    font-size: 14px;
    line-height: 1.6;
}

.testimonial-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    font-family: var(--font-mono);
    font-size: 12px;
}

.testimonial-foot .t-name {
    color: var(--navy-deep);

    font-family: var(--font-display);
    font-size: 16px;
}

.testimonial-foot .t-role {
    color: var(--muted);
}

.testimonial-foot .t-stars {
    color: var(--primary);
}


/* ==================================================================
   CONTACT
================================================================== */

.contact-section {
    padding-block: clamp(46px, 6vw, 80px);
    background: var(--paper-warm);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(36px, 6vw, 70px);
    align-items: stretch;
}

.contact-grid h2 {
    margin: 0 0 12px;
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
}

.contact-grid p.lead {
    max-width: 420px;

    margin: 0 0 32px;

    color: var(--muted);

    font-size: 14px;
    line-height: 1.6;
}

.contact-grid img {
    display: block;

    width: 100%;
    height: clamp(220px, 25vw, 320px);

    object-fit: cover;

    border-radius: 10px;
}


/* ==================================================================
   CONTACT FORM
================================================================== */

.contact-form {
    position: relative;

    display: flex;
    flex-direction: column;
    gap: 16px;

    padding: clamp(18px, 3vw, 28px);

    background: #fff;

    border: 1px solid var(--line);
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 16px;
}

.form-field label {
    display: block;

    margin-bottom: 4px;

    color: var(--muted);

    font-family: var(--font-mono);
    font-size: 11px;

    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-field input,
.form-field select {
    width: 100%;
    min-width: 0;

    padding: 10px 12px;

    border: 1px solid var(--line);
    border-radius: 10px;

    outline: none;

    background: #fff;
    color: var(--ink);

    font-family: inherit;
    font-size: 14px;
}

.form-field input:focus,
.form-field select:focus {
    border-color: var(--primary);
}

.btn-submit {
    width: 100%;

    padding: 12px;

    border: none;
    border-radius: 10px;

    background: var(--primary);
    color: #fff;

    font-family: var(--font-mono);
    font-size: 12px;

    text-transform: uppercase;
    letter-spacing: 0.05em;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ==================================================================
   TABLET
   768px - 1023px
================================================================== */

@media (min-width: 768px) and (max-width: 1023px) {

    /* ==============================================================
       HERO
    ============================================================== */

    .hero {
        min-height: 100vh;
        max-height: none;
        align-items: center;
    }

    .hero-inner {
        width: min(100% - 40px, 900px);
        grid-template-columns: 1fr;
        gap: 32px;
        padding-block: 100px 60px;
    }

    .hero-content {
        max-width: 700px;
        margin-top: 30px;
    }

    .hero h1 {
        font-size: clamp(32px, 5vw, 42px);
    }

    .hero p.lead {
        max-width: 600px;
        font-size: 15px;
    }


    /* ==============================================================
       SEARCH CARD
    ============================================================== */

    .search-card {
        padding: 18px;
    }

    .search-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }


    /* ==============================================================
       HERO IMAGE
    ============================================================== */

    .hero-image {
        display: block;
    }

    .hero-image-frame img {
        height: 400px;
    }


    /* ==============================================================
       SECTION
    ============================================================== */

    .section {
        padding-block: 40px;
    }

    .section-head {
        margin: 30px 0;
    }


    /* ==============================================================
       CITIES
    ============================================================== */

    .city-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .city-card {
        height: 220px;
    }


    /* ==============================================================
       LISTINGS
    ============================================================== */

    .listing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .listing-image {
        height: 210px;
    }

    .listing-body {
        padding: 16px;
    }


    /* ==============================================================
       WHY US
    ============================================================== */

    .why-section {
        padding-block: 70px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .why-grid h2 {
        font-size: 34px;
    }

    .feature-list {
        gap: 20px;
    }


    /* ==============================================================
       STATS
    ============================================================== */

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .stats-image img {
        height: 280px;
    }


    /* ==============================================================
       TESTIMONIALS
    ============================================================== */

    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .testimonial-card {
        padding: 22px;
    }


    /* ==============================================================
       CONTACT
    ============================================================== */

    .contact-section {
        padding-block: 60px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .contact-grid img {
        height: 280px;
    }

    .contact-form {
        padding: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}



/* ==================================================================
   MOBILE
   0px - 767px
================================================================== */

@media (max-width: 767px) {

    /* ==============================================================
       HERO
    ============================================================== */

    .hero {
        min-height: 100dvh;
        max-height: none;
        display: flex;
        align-items: center;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }

    .hero-inner {
        width: calc(100% - 32px);

        grid-template-columns: 1fr;

        gap: 24px;

        padding-block: 100px 40px;
    }

    .hero-content {
        width: 100%;
        max-width: none;
        margin-top: 20px;
    }

    .hero h1 {
        margin-bottom: 16px;
        font-size: clamp(24px, 6vw, 32px);
        line-height: 1.12;
    }

    .hero p.lead {
        max-width: none;

        margin-bottom: 16px;

        font-size: 12px;
        line-height: 1.6;
    }


    /* ==============================================================
       SEARCH CARD
    ============================================================== */

    .search-card {
        width: 100%;
        box-sizing: border-box;

        padding: 12px;

        border-radius: 8px;
    }

    /* Tabs scroll horizontally */
    .tab-row {
        width: 100%;
        gap: 4px;
        margin-bottom: 8px;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .tab-row button,
    .pill {
        padding: 7px 12px;

        font-size: 11px;

        white-space: nowrap;
    }


    /* ==============================================================
       SEARCH FIELD
    ============================================================== */

    .search-field {
        padding: 10px;

        margin-bottom: 10px;
    }

    .search-field input {
        font-size: 13px;
    }


    /* ==============================================================
       RANGE SLIDER
    ============================================================== */

    .values span {
        font-size: 11px;
    }

    .slider {
        height: 28px;
        margin-bottom: 12px;
    }

    input[type="range"] {
        height: 4px;
        padding: 10px 0px;
    }

    /* ==============================================================
       SEARCH GRID
    ============================================================== */

    .search-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .select-base {
        padding: 10px 12px;
        font-size: 13px;
    }

    .btn-search {
        min-height: 44px;
    }


    /* ==============================================================
       HERO IMAGE
    ============================================================== */

    .hero-image {
        display: none;
    }


    /* ==============================================================
       SECTION
    ============================================================== */

    .section {
        padding-block: 30px;
    }

    .section-head {
        margin: 24px 0;
    }

    .section-head .heading-section {
        text-align: center;
    }

    .section-head h2 {
        font-size: clamp(24px, 7vw, 30px);
    }

    .link-more {
        padding: 20px 0;
    }


    /* ==============================================================
       CITIES
    ============================================================== */

    .city-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .city-card {
        height: 200px;
    }

    .city-card-text {
        padding: 12px;
    }

    .city-card-text .name {
        font-size: 18px;
    }


    /* ==============================================================
       LISTINGS
    ============================================================== */

    .listing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .listing-image {
        height: 220px;
    }

    .listing-body {
        padding: 16px;
    }

    .listing-body h3 {
        font-size: 18px;
    }

    .listing-loc {
        font-size: 12px;
    }

    .listing-specs {
        gap: 8px;
    }

    .config-item {
        gap: 8px;
    }

    .listing-price {
        font-size: 14px;
    }


    /* ==============================================================
       WHY US
    ============================================================== */

    .why-section {
        padding-block: 50px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-grid .eyebrow{
        display: flex;
        justify-content: center;
    } 

    .why-grid h2 {
        margin-bottom: 20px;
        text-align: center;
        font-size: clamp(26px, 7vw, 32px);
    }

    .feature-list {
        gap: 20px;
    }

    .feature-item {
        gap: 12px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon svg {
        width: 16px;
        height: 16px;
    }

    .feature-item h3 {
        font-size: 15px;
    }

    .feature-item p {
        font-size: 13px;
    }


    /* ==============================================================
       STATS
    ============================================================== */

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .stat-card {
        padding: 14px 10px;
    }

    .stat-value {
        font-size: 24px;
    }

    .stat-value .unit {
        font-size: 16px;
    }

    .stat-label {
        font-size: 10px;
    }

    .stats-image {
        margin-top: 4px;
    }

    .stats-image img {
        height: 220px;
    }


    /* ==============================================================
       TESTIMONIALS
    ============================================================== */

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .testimonial-card {
        padding: 18px;
    }

    .testimonial-card p {
        font-size: 13px;
        line-height: 1.6;
    }

    .testimonial-foot {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .testimonial-foot .t-name {
        font-size: 15px;
    }


    /* ==============================================================
       CONTACT
    ============================================================== */

    .contact-section {
        padding-block: 45px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-grid .eyebrow{
        display: flex;
        justify-content: center;
    }

    .contact-grid h2 {
        text-align: center;
        font-size: clamp(26px, 7vw, 32px);
    }

    .contact-grid p.lead {
        max-width: none;
        text-align: center;
        margin-bottom: 24px;
        font-size: 12px;
    }

    .contact-grid img {
        height: 220px;
    }


    /* ==============================================================
       CONTACT FORM
    ============================================================== */

    .contact-form {
        padding: 18px;

        gap: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .form-field label {
        font-size: 10px;
    }

    .form-field input,
    .form-field select {
        padding: 10px;

        font-size: 13px;
    }

    .btn-submit {
        padding: 12px;
    }
}