* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: #172033;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
    font-family: "DM Sans", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

input,
select,
textarea {
    font: inherit;
}

::selection {
    background: #b8844f;
    color: #ffffff;
}


/* =========================================================
   2. REUSABLE CONTAINER
========================================================= */

.section-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    margin-bottom: 12px;
    color: #b8844f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.center-heading {
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
}

.center-heading h2 {
    font-family: "Playfair Display", serif;
    color: #172033;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.12;
    letter-spacing: -1px;
}

.center-heading p {
    margin-top: 12px;
    color: #717b8e;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   3. BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: .3s ease;
}

.btn-primary {
    background: #b8844f;
    color: #ffffff;
}

.btn-primary:hover {
    background: #956b3f;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(184, 132, 79, .25);
}

.btn-light {
    background: #ffffff;
    color: #172033;
}

.btn-light:hover {
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,.45);
    color: #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #172033;
}

.btn-outline-dark {
    border: 1px solid #d8dce2;
    background: #ffffff;
    color: #172033;
}

.btn-outline-dark:hover {
    border-color: #b8844f;
    color: #b8844f;
}


/* =========================================================
   4. NAVIGATION
========================================================= */

.navbar {
    width: 100%;
    height: 78px;
    padding: 0 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid #f0f1f3;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #172033;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -.7px;
}

.logo span:not(.logo-icon) {
    color: #b8844f;
}

.logo-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #172033;
    color: #ffffff !important;
    font-size: 17px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 29px;
}

.nav-links a {
    position: relative;
    color: #4f5868;
    font-size: 14px;
    font-weight: 500;
    transition: .3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #b8844f;
    transition: .3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #172033;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 21px;
}

.contact-link {
    color: #172033;
    font-size: 14px;
    font-weight: 600;
}

.contact-link.active {
    color: #b8844f;
}

.mobile-menu {
    display: none;
    background: transparent;
    color: #172033;
    font-size: 22px;
}


/* =========================================================
   5. HOMEPAGE HERO
========================================================= */

.hero {
    min-height: 690px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background:
        url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2000&q=90")
        center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(11,18,30,.88),
        rgba(11,18,30,.48)
    );
}

.hero-content {
    width: min(1100px, calc(100% - 40px));
    margin: auto;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 30px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 13px;
}

.hero-badge i {
    color: #d7a96e;
}

.hero h1 {
    max-width: 800px;
    margin: 21px auto 15px;
    color: #ffffff;
    font-family: "Playfair Display", serif;
    font-size: clamp(45px, 6vw, 78px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.hero h1 span {
    color: #e2ae72;
}

.hero-content > p {
    max-width: 620px;
    margin: auto;
    color: rgba(255,255,255,.83);
    font-size: 17px;
}


/* =========================================================
   6. HOMEPAGE SEARCH
========================================================= */

.search-box {
    max-width: 1050px;
    margin: 42px auto 0;
    padding: 9px;
    border-radius: 17px;
    background: #ffffff;
    box-shadow: 0 22px 60px rgba(0,0,0,.25);
    text-align: left;
}

.search-tabs {
    display: flex;
    gap: 5px;
    padding: 3px 7px 10px;
}

.search-tab {
    padding: 8px 14px;
    border-radius: 7px;
    background: transparent;
    color: #657084;
    font-size: 13px;
    font-weight: 600;
}

.search-tab.active {
    background: #f2ece5;
    color: #9b7044;
}

.property-search {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr auto;
}

.search-field {
    min-height: 67px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-right: 1px solid #e8e8e8;
}

.search-field > i {
    color: #b8844f;
    font-size: 18px;
}

.search-field div {
    flex: 1;
}

.search-field label {
    display: block;
    color: #8891a1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.search-field select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: #263145;
    font-size: 13px;
    font-weight: 600;
}

.search-button {
    margin: 8px;
    padding: 0 27px;
    min-height: 50px;
    border-radius: 10px;
    background: #172033;
    color: #ffffff;
    font-weight: 600;
    transition: .3s ease;
}

.search-button:hover {
    background: #b8844f;
}

.hero-trust {
    margin-top: 27px;
    display: flex;
    justify-content: center;
    gap: 27px;
    flex-wrap: wrap;
}

.hero-trust div {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    font-size: 13px;
}

.hero-trust i {
    color: #d7a96e;
}


/* =========================================================
   7. STATS
========================================================= */

.stats-section {
    padding: 34px 0;
    background: #172033;
}

.stats-container {
    width: min(1100px, calc(100% - 40px));
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.13);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item h2 {
    color: #ffffff;
    font-size: 27px;
    line-height: 1.2;
}

.stat-item h2 span {
    color: #d7a96e;
}

.stat-item p {
    margin-top: 4px;
    color: #aeb6c4;
    font-size: 12px;
}


/* =========================================================
   8. FEATURED PROPERTIES
========================================================= */

.featured-section {
    padding: 105px 0;
    background: #ffffff;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}

.section-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(34px,4vw,48px);
    line-height: 1.12;
}

.section-heading p {
    margin-top: 10px;
    color: #717b8e;
    font-size: 15px;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #a97945;
    font-size: 14px;
    font-weight: 700;
}

.view-all i {
    transition: .3s ease;
}

.view-all:hover i {
    transform: translateX(5px);
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.property-card {
    overflow: hidden;
    border: 1px solid #eceef2;
    border-radius: 16px;
    background: #ffffff;
    transition: .35s ease;
}

.property-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(20,29,45,.1);
}

.property-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.06);
}

.verified-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 20px;
    background: #ffffff;
    color: #35725b;
    font-size: 11px;
    font-weight: 700;
}

.favorite-btn {
    position: absolute;
    top: 13px;
    right: 13px;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    background: #ffffff;
    color: #263145;
    font-size: 16px;
}

.property-info {
    padding: 21px;
}

.property-price {
    color: #a57543;
    font-size: 20px;
    font-weight: 700;
}

.property-price span {
    color: #8992a1;
    font-size: 12px;
    font-weight: 500;
}

.property-info h3 {
    margin-top: 7px;
    font-size: 17px;
    line-height: 1.35;
}

.property-location {
    margin-top: 8px;
    color: #7c8696;
    font-size: 13px;
}

.property-location i {
    margin-right: 4px;
    color: #b8844f;
}

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 14px;
    padding: 15px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
}

.property-features span {
    color: #667084;
    font-size: 11px;
}

.property-features i {
    margin-right: 4px;
    color: #a57543;
}

.property-link {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
}

.property-link i {
    color: #b8844f;
}


/* =========================================================
   9. LOCATIONS
========================================================= */

.locations-section {
    padding: 105px 0;
    background: #f6f7f8;
}

.location-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 18px;
}

.location-card {
    min-height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.location-card.large {
    grid-row: span 2;
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.location-card:hover img {
    transform: scale(1.08);
}

.location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8,13,23,.85),
        rgba(8,13,23,.08)
    );
}

.location-content {
    position: absolute;
    left: 22px;
    bottom: 20px;
    color: #ffffff;
}

.location-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 25px;
}

.location-content p {
    margin-top: 2px;
    color: rgba(255,255,255,.8);
    font-size: 12px;
}


/* =========================================================
   10. HOW IT WORKS — PREMIUM
========================================================= */

.how-it-works {
    position: relative;
    padding: 120px 0 125px;
    background: #f7f8fa;
    overflow: hidden;
}

.how-it-works::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -220px;
    right: -150px;
    border-radius: 50%;
    background: rgba(184,132,79,.07);
}

.how-it-works::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -180px;
    left: -120px;
    border-radius: 50%;
    background: rgba(23,32,51,.035);
}

.how-it-works .section-container {
    position: relative;
    z-index: 2;
}


/* HEADER */

.how-it-works .center-heading {
    max-width: 720px;
    margin-bottom: 65px;
}

.how-it-works .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 13px;
    margin-bottom: 17px;
    border-radius: 30px;
    background: #f1e8df;
    color: #a57543;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.how-it-works .section-tag::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #b8844f;
}

.how-it-works .center-heading h2 {
    max-width: 650px;
    margin: auto;
    font-size: clamp(38px,4.5vw,54px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.how-it-works .center-heading p {
    max-width: 600px;
    margin: 17px auto 0;
    color: #737d8d;
    font-size: 15px;
    line-height: 1.8;
}


/* STEPS */

.steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}


/* CONNECTING LINE */

.steps-grid::before {
    content: "";
    position: absolute;
    top: 47px;
    left: 9%;
    right: 9%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        #d6b28b 10%,
        #d6b28b 90%,
        transparent
    );
    z-index: 0;
}


/* STEP CARD */

.step {
    position: relative;
    z-index: 1;
    min-height: 320px;
    padding: 38px 28px 30px;
    border: 1px solid #e7e9ed;
    border-radius: 20px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 8px 30px rgba(20,29,45,.035);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.step:hover {
    transform: translateY(-10px);
    border-color: #d6b58e;
    box-shadow: 0 25px 55px rgba(20,29,45,.11);
}


/* NUMBER */

.step-number {
    position: absolute;
    top: 19px;
    right: 21px;
    color: #eceef1;
    font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}


/* ICON */

.step-icon {
    position: relative;
    width: 68px;
    height: 68px;
    margin-bottom: 29px;

    display: grid;
    place-items: center;

    border: 6px solid #ffffff;
    border-radius: 20px;

    background: #172033;
    color: #e2ae72;

    font-size: 22px;

    box-shadow:
        0 0 0 1px #e0e3e7,
        0 12px 25px rgba(23,32,51,.12);

    transition: .35s ease;
}

.step:hover .step-icon {
    background: #b8844f;
    color: #ffffff;
    transform: rotate(-4deg) scale(1.05);
}


/* TITLE */

.step h3 {
    margin: 0;
    color: #172033;
    font-size: 18px;
    font-weight: 750;
    line-height: 1.35;
}


/* DESCRIPTION */

.step p {
    margin-top: 12px;
    color: #788294;
    font-size: 13px;
    line-height: 1.8;
}


/* BOTTOM LABEL */

.step::after {
    content: "EASY & SECURE";
    position: absolute;
    left: 28px;
    bottom: 25px;

    color: #b8844f;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;

    opacity: 0;
    transform: translateY(5px);
    transition: .3s ease;
}

.step:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.step:nth-child(1)::after {
    content: "01 · DISCOVER";
}

.step:nth-child(2)::after {
    content: "02 · EXPLORE";
}

.step:nth-child(3)::after {
    content: "03 · CONNECT";
}

.step:nth-child(4)::after {
    content: "04 · MOVE IN";
}


/* FINAL CARD */

.step:last-child {
    background: #172033;
    border-color: #172033;
}

.step:last-child .step-number {
    color: rgba(255,255,255,.08);
}

.step:last-child h3 {
    color: #ffffff;
}

.step:last-child p {
    color: #aeb7c5;
}

.step:last-child .step-icon {
    background: #b8844f;
    color: #ffffff;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.1),
        0 12px 30px rgba(0,0,0,.2);
}

.step:last-child::after {
    color: #e2ae72;
}


/* TRUST MESSAGE */

.how-it-works-trust {
    max-width: 650px;
    margin: 48px auto 0;
    padding: 16px 22px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border: 1px solid #e6e8eb;
    border-radius: 50px;
    background: #ffffff;

    color: #707a8a;
    font-size: 12px;
    text-align: center;
}

.how-it-works-trust i {
    color: #b8844f;
    font-size: 14px;
}


/* =========================================================
   11. WHY CHOOSE US
========================================================= */

.why-section {
    padding: 105px 0;
    background: #f6f7f8;
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 75px;
}

.why-image {
    min-height: 570px;
    position: relative;
}

.why-image > img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    border-radius: 20px;
}

.experience-card {
    position: absolute;
    right: -30px;
    bottom: 37px;
    padding: 21px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 14px;
    background: #172033;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(15,23,37,.25);
}

.experience-card strong {
    color: #e2ae72;
    font-family: "Playfair Display", serif;
    font-size: 31px;
}

.experience-card span {
    font-size: 11px;
    line-height: 1.4;
}

.why-content h2 {
    max-width: 500px;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px,4vw,48px);
    line-height: 1.12;
}

.why-content h2 span {
    color: #a57543;
}

.why-content > p {
    max-width: 520px;
    margin-top: 18px;
    color: #717b8e;
    font-size: 15px;
}

.benefit {
    margin-top: 24px;
    display: flex;
    gap: 15px;
}

.benefit-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f0e6dc;
    color: #a57543;
}

.benefit h3 {
    font-size: 15px;
}

.benefit p {
    margin-top: 3px;
    color: #7a8495;
    font-size: 13px;
}


/* =========================================================
   12. INNER PAGE HERO
========================================================= */

.about-hero,
.contact-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(8,22,42,.94),
            rgba(8,22,42,.58)
        ),
        url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?auto=format&fit=crop&w=2000&q=85")
        center / cover no-repeat;
}

.about-hero-content,
.contact-hero-content {
    max-width: 760px;
    padding: 100px 0;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.about-hero h1,
.contact-hero h1 {
    margin: 20px 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(45px,6vw,74px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.about-hero h1 span,
.contact-hero h1 span {
    display: block;
    color: #e2ae72;
}

.about-hero p,
.contact-hero p {
    max-width: 650px;
    color: rgba(255,255,255,.82);
    font-size: 18px;
    line-height: 1.8;
}


/* =========================================================
   13. ABOUT STORY
========================================================= */

.about-story {
    padding: 110px 0;
    background: #ffffff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.about-story-image {
    min-height: 570px;
    position: relative;
}

.about-story-image img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    border-radius: 22px;
}

.story-stat {
    position: absolute;
    right: -25px;
    bottom: 35px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    background: #172033;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.story-stat strong {
    color: #e2ae72;
    font-family: "Playfair Display", serif;
    font-size: 25px;
}

.story-stat span {
    color: #b9c0ca;
    font-size: 11px;
}

.about-story-content h2 {
    max-width: 600px;
    margin-bottom: 25px;
    color: #172033;
    font-family: "Playfair Display", serif;
    font-size: clamp(36px,4vw,52px);
    line-height: 1.1;
}

.about-story-content p {
    margin-top: 16px;
    color: #687386;
    font-size: 15px;
    line-height: 1.9;
}


/* =========================================================
   14. MISSION
========================================================= */

.mission-section {
    padding: 100px 0;
    background: #f6f7f8;
}

.mission-box {
    max-width: 850px;
    margin: auto;
    padding: 65px;
    border-radius: 24px;
    background: #172033;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 25px 60px rgba(16,24,38,.12);
}

.mission-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 25px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(216,169,110,.12);
    color: #e2ae72;
    font-size: 25px;
}

.mission-box .section-tag {
    color: #e2ae72;
}

.mission-box h2 {
    margin-bottom: 18px;
    font-family: "Playfair Display", serif;
    font-size: clamp(34px,4vw,48px);
    line-height: 1.15;
}

.mission-box p {
    max-width: 650px;
    margin: auto;
    color: #b8c0cb;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   15. WHAT WE DO
========================================================= */

.what-we-do {
    padding: 110px 0;
    background: #ffffff;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.about-service-card {
    padding: 30px 25px;
    border: 1px solid #e8eaed;
    border-radius: 17px;
    transition: .3s ease;
}

.about-service-card:hover {
    transform: translateY(-6px);
    border-color: #d6b58f;
    box-shadow: 0 18px 40px rgba(20,29,45,.08);
}

.about-service-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #f5ede5;
    color: #a57543;
    font-size: 20px;
}

.about-service-card h3 {
    margin-top: 22px;
    font-size: 17px;
}

.about-service-card p {
    margin-top: 10px;
    color: #778194;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   16. VALUES
========================================================= */

.values-section {
    padding: 110px 0;
    background: #f6f7f8;
}

.values-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 45px;
}

.values-header h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(36px,4vw,50px);
    line-height: 1.1;
}

.values-header > p {
    max-width: 400px;
    color: #717b8e;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.value-card {
    position: relative;
    min-height: 260px;
    padding: 30px 25px;
    overflow: hidden;
    border-radius: 17px;
    background: #ffffff;
    border: 1px solid #e9eaec;
}

.value-number {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #e8e9eb;
    font-family: "Playfair Display", serif;
    font-size: 35px;
    font-weight: 700;
}

.value-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #f5ede5;
    color: #a57543;
}

.value-card h3 {
    margin-top: 25px;
    font-size: 18px;
}

.value-card p {
    margin-top: 8px;
    color: #788294;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   17. PARTNERS
========================================================= */

.partner-section {
    padding: 110px 0;
    background: #ffffff;
}

.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 75px;
}

.partner-content h2 {
    max-width: 600px;
    margin: 12px 0 20px;
    font-family: "Playfair Display", serif;
    font-size: clamp(36px,4vw,52px);
    line-height: 1.1;
}

.partner-content > p {
    max-width: 560px;
    color: #717b8e;
    line-height: 1.8;
}

.partner-benefits {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.partner-benefits div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #445066;
    font-size: 14px;
}

.partner-benefits i {
    color: #b8844f;
}

.partner-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 22px;
}


/* =========================================================
   18. VISION
========================================================= */

.vision-section {
    padding: 110px 0;
    background: #172033;
    color: #ffffff;
}

.vision-content {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.vision-content .section-tag {
    color: #e2ae72;
}

.vision-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(38px,5vw,58px);
    line-height: 1.1;
}

.vision-content > p {
    max-width: 680px;
    margin: 20px auto 0;
    color: #b6bec9;
    line-height: 1.8;
}

.vision-stats {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
}

.vision-stats div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 20px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.vision-stats div:last-child {
    border-right: none;
}

.vision-stats strong {
    color: #e2ae72;
    font-family: "Playfair Display", serif;
    font-size: 30px;
}

.vision-stats span {
    color: #c0c7d0;
    font-size: 12px;
}


/* =========================================================
   19. ABOUT CTA
========================================================= */

.about-cta {
    padding: 110px 0;
    background: #ffffff;
    text-align: center;
}

.about-cta-content {
    max-width: 750px;
    margin: auto;
}

.about-cta h2 {
    margin: 15px 0;
    font-family: "Playfair Display", serif;
    color: #172033;
    font-size: clamp(40px,5vw,58px);
    line-height: 1.1;
}

.about-cta p {
    color: #717b8e;
}

.about-cta-buttons {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 13px;
}


/* =========================================================
   20. CONTACT
========================================================= */

.contact-hero {
    background:
        linear-gradient(
            90deg,
            rgba(8,22,42,.94),
            rgba(8,22,42,.58)
        ),
        url("https://images.unsplash.com/photo-1560185008-b033106af5c3?auto=format&fit=crop&w=2000&q=85")
        center / cover no-repeat;
}

.contact-main {
    padding: 105px 0;
    background: #f6f7f8;
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: start;
    gap: 80px;
}

.contact-information h2,
.contact-form-header h2 {
    margin: 10px 0 18px;
    color: #172033;
    font-family: "Playfair Display", serif;
    font-size: clamp(36px,4vw,48px);
    line-height: 1.1;
}

.contact-information > p {
    max-width: 500px;
    margin-bottom: 32px;
    color: #687386;
    font-size: 15px;
    line-height: 1.8;
}

.contact-info-card {
    padding: 19px 0;
    display: flex;
    align-items: center;
    gap: 17px;
    border-bottom: 1px solid #dedfe2;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: #f0e5d8;
    color: #b8844f;
    font-size: 19px;
}

.contact-info-card div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contact-info-card span {
    color: #8a919c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info-card a,
.contact-info-card strong {
    color: #172033;
    font-size: 16px;
    font-weight: 700;
}

.contact-info-card a:hover {
    color: #b8844f;
}

.contact-info-card small {
    color: #89919e;
    font-size: 12px;
}


/* =========================================================
   21. CONTACT FORM
========================================================= */

.contact-form-container {
    padding: 48px;
    border: 1px solid #e5e7ea;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(16,36,62,.08);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header p {
    color: #717b8e;
    font-size: 14px;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    width: 100%;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #27364c;
    font-size: 13px;
    font-weight: 700;
}

.form-group label span {
    color: #999fa8;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #dfe2e6;
    border-radius: 10px;
    outline: none;
    background: #fafbfc;
    color: #172033;
    padding: 14px 15px;
    font-size: 14px;
    transition: .25s ease;
}

.form-group input {
    height: 52px;
}

.form-group select {
    height: 52px;
    cursor: pointer;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a4aab3;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #b8844f;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(184,132,79,.1);
}

.contact-submit {
    width: 100%;
    min-height: 54px;
}

.form-note {
    margin-top: 13px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #8b929c;
    font-size: 12px;
}

.form-note i {
    color: #61816b;
}


/* =========================================================
   22. QUICK HELP
========================================================= */

.quick-help {
    padding: 105px 0;
    background: #ffffff;
}

.quick-help-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.quick-help-card {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 17px;
    border: 1px solid #e5e7ea;
    border-radius: 16px;
    background: #ffffff;
    transition: .3s ease;
}

.quick-help-card:hover {
    transform: translateY(-6px);
    border-color: #d5b089;
    box-shadow: 0 15px 35px rgba(20,29,45,.08);
}

.quick-help-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #f5ede5;
    color: #b8844f;
}

.quick-help-card h3 {
    margin-bottom: 3px;
    color: #172033;
    font-size: 16px;
}

.quick-help-card p {
    color: #818a97;
    font-size: 12px;
    line-height: 1.5;
}

.quick-help-card > i {
    margin-left: auto;
    color: #b8844f;
}


/* =========================================================
   23. FAQ
========================================================= */

.contact-faq {
    padding: 105px 0;
    background: #f6f7f8;
}

.faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.faq-intro h2 {
    margin-top: 10px;
    font-family: "Playfair Display", serif;
    font-size: clamp(35px,4vw,48px);
    line-height: 1.1;
}

.faq-intro p {
    max-width: 400px;
    margin-top: 15px;
    color: #717b8e;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid #e1e3e6;
    border-radius: 12px;
    background: #ffffff;
}

.faq-item summary {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    list-style: none;
    color: #172033;
    font-size: 14px;
    font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary i {
    color: #b8844f;
    transition: .3s ease;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 20px 20px;
    color: #747e8e;
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   24. CONTACT CTA
========================================================= */

.contact-cta {
    padding: 105px 0;
    background: #ffffff;
    text-align: center;
}

.contact-cta-content {
    max-width: 750px;
    margin: auto;
}

.contact-cta h2 {
    margin: 15px 0;
    color: #172033;
    font-family: "Playfair Display", serif;
    font-size: clamp(40px,5vw,58px);
    line-height: 1.1;
}

.contact-cta p {
    color: #717b8e;
}

.contact-cta-buttons {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 13px;
}


/* =========================================================
   25. GENERIC PAGE SECTIONS
========================================================= */

.page-section {
    padding: 105px 0;
}

.page-light {
    background: #ffffff;
}

.page-grey {
    background: #f6f7f8;
}

.page-dark {
    background: #172033;
    color: #ffffff;
}


/* =========================================================
   26. FOOTER
========================================================= */

.footer {
    padding: 70px 0 0;
    background: #101826;
    color: #ffffff;
}

.footer-container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
    padding-bottom: 55px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer .logo {
    color: #ffffff;
}

.footer-brand > p {
    max-width: 290px;
    margin-top: 17px;
    color: #8f98a8;
    font-size: 13px;
}

.social-links {
    margin-top: 21px;
    display: flex;
    gap: 9px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid #2d3747;
    border-radius: 9px;
    color: #c5cbd4;
    transition: .3s ease;
}

.social-links a:hover {
    border-color: #b8844f;
    background: #b8844f;
    color: #ffffff;
}

.footer h4 {
    margin-bottom: 19px;
    color: #ffffff;
    font-size: 14px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a,
.footer-contact p {
    color: #929cab;
    font-size: 13px;
    transition: .3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.footer-contact i {
    margin-top: 4px;
    color: #d7a96e;
}

.footer-bottom {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #263141;
    color: #7e8998;
    font-size: 12px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}


/* =========================================================
   27. TABLET
========================================================= */

@media (max-width: 1050px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .property-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .about-services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .quick-help-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: repeat(2,1fr);
    }

    .contact-grid {
        gap: 45px;
    }

    .about-story-grid,
    .partner-grid {
        gap: 45px;
    }
}


/* =========================================================
   28. SMALL LAPTOP / TABLET
========================================================= */

@media (max-width: 850px) {

    .property-search {
        grid-template-columns: 1fr 1fr;
    }

    .search-field:nth-child(2) {
        border-right: none;
    }

    .search-button {
        grid-column: span 2;
    }

    .why-container,
    .about-story-grid,
    .partner-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .why-image {
        max-width: 650px;
        width: 100%;
    }

    .contact-form-container {
        width: 100%;
    }

    .about-story-content,
    .partner-content {
        max-width: 700px;
    }

    .story-stat {
        right: 20px;
    }

    .partner-image img {
        height: 450px;
    }

    .faq-grid {
        gap: 45px;
    }

    .vision-stats {
        gap: 10px;
    }
}


/* =========================================================
   29. MOBILE
========================================================= */

@media (max-width: 650px) {

    .section-container {
        width: min(100% - 30px, 1180px);
    }

    .navbar {
        height: 68px;
        padding: 0 18px;
    }

    .logo {
        font-size: 20px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 15px;
    }


    /* HERO */

    .hero {
        min-height: auto;
    }

    .hero-content {
        padding: 85px 0 55px;
    }

    .hero h1 {
        font-size: 45px;
        letter-spacing: -1px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .search-box {
        margin-top: 32px;
        padding: 8px;
    }

    .property-search {
        grid-template-columns: 1fr;
    }

    .search-field,
    .search-field:nth-child(2) {
        min-height: 62px;
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .search-button {
        grid-column: auto;
        min-height: 54px;
    }

    .hero-trust {
        gap: 11px 18px;
    }


    /* STATS */

    .stats-container {
        grid-template-columns: repeat(2,1fr);
        gap: 23px 0;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }


    /* GENERAL SECTIONS */

    .featured-section,
    .locations-section,
    .how-it-works,
    .why-section {
        padding: 75px 0;
    }


    /* PROPERTY */

    .property-grid {
        grid-template-columns: 1fr;
    }


    /* LOCATIONS */

    .location-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .location-card,
    .location-card.large {
        grid-row: auto;
        height: 240px;
    }


    /* HOW IT WORKS */

    .how-it-works {
        padding: 80px 0 85px;
    }

    .how-it-works .center-heading {
        margin-bottom: 40px;
    }

    .how-it-works .center-heading h2 {
        font-size: 37px;
        letter-spacing: -1px;
    }

    .how-it-works .center-heading p {
        font-size: 14px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .steps-grid::before {
        display: none;
    }

    .step {
        min-height: 275px;
        padding: 30px 24px 35px;
    }

    .step-number {
        font-size: 34px;
    }

    .step-icon {
        width: 62px;
        height: 62px;
        margin-bottom: 23px;
    }

    .step h3 {
        font-size: 17px;
    }

    .step p {
        font-size: 13px;
    }

    .step::after {
        opacity: 1;
        transform: none;
    }

    .how-it-works-trust {
        margin-top: 30px;
        border-radius: 14px;
        padding: 15px;
    }


    /* WHY */

    .why-container {
        grid-template-columns: 1fr;
    }

    .why-image,
    .why-image > img {
        min-height: 420px;
        height: 420px;
    }

    .experience-card {
        right: 15px;
        bottom: 20px;
    }


    /* INNER HERO */

    .about-hero,
    .contact-hero {
        min-height: 450px;
    }

    .about-hero-content,
    .contact-hero-content {
        padding: 70px 0;
    }

    .about-hero h1,
    .contact-hero h1 {
        font-size: 45px;
        letter-spacing: -1px;
    }

    .about-hero p,
    .contact-hero p {
        font-size: 15px;
    }


    /* ABOUT */

    .about-story-grid,
    .partner-grid {
        grid-template-columns: 1fr;
    }

    .about-story-image {
        min-height: 420px;
    }

    .about-story-image img {
        height: 420px;
    }

    .story-stat {
        right: 15px;
        bottom: 20px;
    }

    .mission-box {
        padding: 40px 25px;
    }

    .about-services-grid {
        grid-template-columns: 1fr;
    }

    .values-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        min-height: 220px;
    }

    .partner-grid {
        gap: 40px;
    }

    .partner-image img {
        height: 400px;
    }

    .vision-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vision-stats div {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.12);
        padding-bottom: 18px;
    }

    .vision-stats div:last-child {
        border-bottom: none;
    }


    /* CONTACT */

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 28px 20px;
        border-radius: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-information h2,
    .contact-form-header h2 {
        font-size: 36px;
    }

    .quick-help-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-cta-buttons,
    .about-cta-buttons {
        flex-direction: column;
    }

    .contact-cta-buttons .btn,
    .about-cta-buttons .btn {
        width: 100%;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
    }

    .footer-bottom div {
        flex-wrap: wrap;
    }
}


/* =========================================================
   30. VERY SMALL PHONES
========================================================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 39px;
    }

    .how-it-works .center-heading h2 {
        font-size: 33px;
    }

    .step {
        padding: 27px 20px 32px;
    }

    .contact-form-container {
        padding: 24px 16px;
    }

    .mission-box {
        padding: 35px 20px;
    }
}