/* =========================================================
   PROPERTYPOINT.ID
   LANDING PAGE — MASTER STYLE
========================================================= */


/* =========================================================
   RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    color: #17212b;
    background: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   GLOBAL
========================================================= */

:root {

    --dark: #17212b;
    --dark-soft: #283542;

    --blue: #1769aa;
    --blue-dark: #0f4f83;
    --blue-light: #edf6fc;

    --text: #17212b;
    --text-soft: #687581;

    --border: #e5e9ed;

    --light: #f7f9fb;

    --white: #ffffff;

    --shadow:
        0 18px 45px rgba(
            23,
            33,
            43,
            0.08
        );

    --radius: 18px;

    --max-width: 1180px;
}


.container,
.hero-container,
.finder-container,
.why-container,
.social-container,
.final-cta-container,
.header-container,
.footer-container {

    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    margin: 0 auto;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

.eyebrow {

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.18em;

    color: var(--blue);

    margin-bottom: 16px;

    text-transform: uppercase;
}

h1,
h2,
h3 {

    line-height: 1.15;

    font-weight: 600;

    letter-spacing: -0.035em;
}

h1 {

    font-size: clamp(
        44px,
        5.2vw,
        72px
    );
}

h2 {

    font-size: clamp(
        32px,
        4vw,
        48px
    );
}

h3 {

    font-size: 22px;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 100;

    color: var(--white);
}

.header-container {

    min-height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* Brand */

.brand {

    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 21px;

    font-weight: 600;

    letter-spacing: -0.03em;
}

.brand img {

    width: 28px;

    height: 28px;

    object-fit: contain;
}

.brand-dot {

    color: #76b8e5;
}


/* Header CTA */

.header-chat {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 20px;

    border: 1px solid rgba(
        255,
        255,
        255,
        0.55
    );

    border-radius: 50px;

    font-size: 13px;

    font-weight: 600;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.header-chat:hover {

    background: var(--white);

    color: var(--dark);

    border-color: var(--white);
}


/* =========================================================
   HERO
========================================================= */

.hero-section {

    position: relative;

    min-height: 760px;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: var(--white);

    background:
        linear-gradient(
            90deg,
            rgba(
                8,
                19,
                29,
                0.92
            ) 0%,

            rgba(
                8,
                19,
                29,
                0.72
            ) 43%,

            rgba(
                8,
                19,
                29,
                0.25
            ) 75%,

            rgba(
                8,
                19,
                29,
                0.08
            ) 100%
        ),

        url("assets/images/hero.png")
        center / cover no-repeat;
}

.hero-section::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(
                0,
                0,
                0,
                0.18
            ),
            transparent 30%,
            rgba(
                0,
                0,
                0,
                0.22
            )
        );

    pointer-events: none;
}

.hero-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    align-items: center;

    min-height: 760px;
}

.hero-content {

    max-width: 650px;

    padding-top: 50px;
}

.hero-content .eyebrow {

    color: #8ec7ee;
}

.hero-content h1 {

    max-width: 680px;

    margin-bottom: 26px;
}

.hero-description {

    max-width: 570px;

    color: rgba(
        255,
        255,
        255,
        0.78
    );

    font-size: 17px;

    line-height: 1.75;

    margin-bottom: 34px;
}

.hero-cta {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 14px 22px;

    border-radius: 50px;

    background: var(--white);

    color: var(--dark);

    font-size: 14px;

    font-weight: 600;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-cta span {

    font-size: 20px;

    line-height: 1;

    transition:
        transform 0.25s ease;
}

.hero-cta:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(
            0,
            0,
            0,
            0.18
        );
}

.hero-cta:hover span {

    transform: translateX(4px);
}

.hero-image {

    display: none;
}


/* =========================================================
   FINDER
========================================================= */

.finder-section {

    padding: 115px 0 125px;

    background: var(--light);
}

.finder-container {

    position: relative;
}


/* Heading */

.section-heading {

    max-width: 700px;

    margin-bottom: 48px;
}

.section-heading h2 {

    margin-bottom: 18px;
}

.section-heading > p:not(.eyebrow) {

    color: var(--text-soft);

    font-size: 16px;

    max-width: 620px;
}

.section-heading.centered {

    text-align: center;

    margin-left: auto;

    margin-right: auto;
}

.section-heading.centered > p:not(.eyebrow) {

    margin-left: auto;

    margin-right: auto;
}


/* =========================================================
   FINDER STEPS
========================================================= */

.finder-step {

    display: none;

    animation:
        finderFade 0.45s ease;
}

.finder-step.active {

    display: block;
}

@keyframes finderFade {

    from {

        opacity: 0;

        transform: translateY(14px);
    }

    to {

        opacity: 1;

        transform: translateY(0);
    }
}


/* =========================================================
   FINDER OPTIONS
========================================================= */

.finder-options {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 22px;
}


/* Basic option */

.option {

    position: relative;

    border: 1px solid var(--border);

    background: var(--white);

    border-radius: var(--radius);

    cursor: pointer;

    text-align: left;

    color: var(--text);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;

    appearance: none;

    -webkit-appearance: none;
}

.option:hover {

    transform: translateY(-5px);

    border-color: #b9d7eb;

    box-shadow: var(--shadow);
}

.option:focus-visible {

    outline: 3px solid rgba(
        23,
        105,
        170,
        0.22
    );

    outline-offset: 3px;
}


/* =========================================================
   IMAGE OPTIONS
========================================================= */

.image-option {

    min-height: 345px;

    display: flex;

    flex-direction: column;
}

.option-image {

    position: relative;

    width: 100%;

    height: 235px;

    overflow: hidden;

    background: #e9eef2;
}

.option-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(
                0,
                0,
                0,
                0.12
            )
        );

    pointer-events: none;
}

.option-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.55s ease;
}

.image-option:hover
.option-image img {

    transform: scale(1.045);
}


/* Content */

.option-content {

    position: relative;

    flex: 1;

    padding: 22px 25px 23px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.option-title {

    display: block;

    font-size: 21px;

    font-weight: 600;

    letter-spacing: -0.025em;

    margin-bottom: 5px;
}

.option-description {

    display: block;

    max-width: 85%;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.5;
}

.option-arrow {

    position: absolute;

    right: 23px;

    bottom: 23px;

    width: 36px;

    height: 36px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--blue-light);

    color: var(--blue);

    font-size: 18px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.option:hover
.option-arrow {

    transform: translateX(4px);

    background: var(--blue);

    color: var(--white);
}


/* Wide cards */

.option-wide {

    grid-column: span 2;

    min-height: 265px;

    display: grid;

    grid-template-columns:
        minmax(250px, 0.8fr)
        minmax(0, 1.2fr);
}

.option-wide .option-image {

    height: 100%;

    min-height: 265px;
}

.option-wide .option-content {

    padding: 35px 38px;
}

.option-wide .option-title {

    font-size: 25px;
}

.option-wide .option-description {

    max-width: 560px;

    font-size: 14px;

    margin-top: 4px;
}


/* =========================================================
   BACK BUTTON
========================================================= */

.back-button {

    border: 0;

    background: transparent;

    color: var(--blue);

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    padding: 0;

    margin-bottom: 24px;

    transition:
        transform 0.2s ease;
}

.back-button:hover {

    transform: translateX(-4px);
}


/* =========================================================
   RESULT
========================================================= */

.finder-result {

    display: none;

    padding: 75px 55px;

    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            #17212b,
            #243746
        );

    color: var(--white);

    animation:
        finderFade 0.45s ease;
}

.finder-result.active {

    display: block;
}

.result-content {

    max-width: 760px;
}

.finder-result .eyebrow {

    color: #8ec7ee;
}

.finder-result h2 {

    margin-bottom: 18px;
}

.finder-result p:not(.eyebrow) {

    color: rgba(
        255,
        255,
        255,
        0.72
    );

    max-width: 650px;

    font-size: 16px;
}

.result-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;
}

.btn-primary,
.btn-secondary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding: 0 22px;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.btn-primary {

    background: var(--blue);

    color: var(--white);
}

.btn-primary:hover {

    transform: translateY(-2px);

    background: var(--blue-dark);
}

.btn-secondary {

    border: 1px solid rgba(
        255,
        255,
        255,
        0.3
    );

    color: var(--white);
}

.btn-secondary:hover {

    transform: translateY(-2px);

    background: var(--white);

    color: var(--dark);
}

.start-over {

    margin-top: 25px;

    border: 0;

    background: transparent;

    color: rgba(
        255,
        255,
        255,
        0.55
    );

    cursor: pointer;

    font-size: 12px;

    text-decoration: underline;

    text-underline-offset: 4px;
}


/* =========================================================
   WHY PROPERTYPOINT
========================================================= */

.why-section {

    padding: 120px 0 125px;

    background: var(--white);
}

.why-grid {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap: 26px;
}

.why-card {

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: var(--white);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.why-card:hover {

    transform: translateY(-4px);

    box-shadow: var(--shadow);
}

.why-image {

    height: 270px;

    overflow: hidden;

    background: #e9eef2;
}

.why-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.why-card:hover
.why-image img {

    transform: scale(1.035);
}

.why-content {

    padding: 28px 30px 32px;
}

.why-number {

    display: block;

    color: var(--blue);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.15em;

    margin-bottom: 12px;
}

.why-content h3 {

    margin-bottom: 10px;
}

.why-content p {

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   SOCIAL / STAY CONNECTED
========================================================= */

.social-section {

    padding: 100px 0;

    background: var(--light);

    text-align: center;
}

.social-container {

    display: flex;

    flex-direction: column;

    align-items: center;
}

.social-container h2 {

    margin-bottom: 15px;
}

.social-container > p:not(.eyebrow) {

    color: var(--text-soft);

    max-width: 600px;

    font-size: 15px;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.social-links {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-top: 35px;
}

.social-link {

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid var(--border);

    border-radius: 50%;

    background: var(--white);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.social-link:hover {

    transform: translateY(-4px);

    border-color: #bdd8eb;

    box-shadow:
        0 10px 25px rgba(
            23,
            33,
            43,
            0.09
        );
}


/*
   IMPORTANT:
   Each logo is allowed to have a slightly
   different visual size because the PNG files
   have different internal transparent margins.
*/

.social-link img {

    display: block;

    width: 23px;

    height: 23px;

    object-fit: contain;

    filter: none;

    opacity: 1;
}


/* Individual visual adjustment */

.social-link:nth-child(1) img {

    width: 22px;

    height: 22px;
}

.social-link:nth-child(2) img {

    width: 24px;

    height: 24px;
}

.social-link:nth-child(3) img {

    width: 23px;

    height: 23px;
}

.social-link:nth-child(4) img {

    width: 25px;

    height: 25px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {

    padding: 115px 0;

    background:
        linear-gradient(
            135deg,
            #edf6fc,
            #f7f9fb
        );

    text-align: center;
}

.final-cta-container {

    display: flex;

    flex-direction: column;

    align-items: center;
}

.final-cta h2 {

    margin-bottom: 15px;
}

.final-cta p:not(.eyebrow) {

    color: var(--text-soft);

    margin-bottom: 30px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    background: var(--dark);

    color: var(--white);

    padding-top: 65px;
}

.footer-container {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        0.8fr;

    gap: 60px;

    padding-bottom: 55px;
}


/* Footer brand */

.footer-logo {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    font-size: 20px;

    font-weight: 600;

    letter-spacing: -0.03em;

    margin-bottom: 18px;
}

.footer-logo img {

    width: 27px;

    height: 27px;

    object-fit: contain;
}

.footer-brand > p {

    max-width: 400px;

    color: rgba(
        255,
        255,
        255,
        0.55
    );

    font-size: 13px;

    line-height: 1.7;
}

.footer-focus {

    margin-top: 14px;

    color: #80bce2 !important;

    font-size: 11px !important;

    font-weight: 700;

    letter-spacing: 0.13em;

    text-transform: uppercase;
}


/* Footer links */

.footer-links {

    display: flex;

    flex-direction: column;

    gap: 13px;
}

.footer-links a {

    width: fit-content;

    color: rgba(
        255,
        255,
        255,
        0.62
    );

    font-size: 13px;

    transition:
        color 0.2s ease;
}

.footer-links a:hover {

    color: var(--white);
}


/* Footer social */

.footer-social > p {

    color: rgba(
        255,
        255,
        255,
        0.55
    );

    font-size: 12px;

    margin-bottom: 16px;
}

.footer-social-icons {

    display: flex;

    align-items: center;

    gap: 10px;
}

.footer-social-icons a {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(
        255,
        255,
        255,
        0.16
    );

    border-radius: 50%;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.footer-social-icons a:hover {

    background: rgba(
        255,
        255,
        255,
        0.1
    );

    transform: translateY(-2px);
}

.footer-social-icons img {

    width: 17px;

    height: 17px;

    object-fit: contain;

    filter: none;

    opacity: 0.9;
}

.footer-social-icons a.email-icon img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    width: min(
        calc(100% - 48px),
        var(--max-width)
    );

    margin: 0 auto;

    padding: 20px 0 24px;

    border-top: 1px solid rgba(
        255,
        255,
        255,
        0.1
    );

    display: flex;

    justify-content: space-between;

    gap: 20px;
}

.footer-bottom p {

    color: rgba(
        255,
        255,
        255,
        0.38
    );

    font-size: 11px;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

    .hero-section {

        min-height: 700px;
    }

    .hero-container {

        min-height: 700px;

        grid-template-columns: 1fr;
    }

    .hero-content {

        max-width: 650px;

        padding-top: 70px;
    }

    .hero-section {

        background-position:
            62% center;
    }

    .finder-options {

        gap: 17px;
    }

    .option-wide {

        grid-template-columns:
            0.9fr
            1.1fr;
    }

    .why-grid {

        gap: 18px;
    }

    .footer-container {

        grid-template-columns:
            1.3fr
            1fr;
    }

    .footer-social {

        grid-column: span 2;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 650px) {

    /* Global */

    .container,
    .hero-container,
    .finder-container,
    .why-container,
    .social-container,
    .final-cta-container,
    .header-container,
    .footer-container {

        width:
            calc(100% - 32px);
    }


    /* Header */

    .header-container {

        min-height: 72px;
    }

    .brand {

        font-size: 18px;

        gap: 7px;
    }

    .brand img {

        width: 23px;

        height: 23px;
    }

    .header-chat {

        padding: 8px 15px;

        font-size: 11px;

        color: var(--dark);

        background: rgba(
            255,
            255,
            255,
            0.88
        );

        border-color: rgba(
            255,
            255,
            255,
            0.9
        );
    }


    /* Hero */

    .hero-section {

        min-height: 720px;

        background-position:
            66% center;
    }

    .hero-container {

        min-height: 720px;

        width:
            calc(100% - 32px);
    }

    .hero-content {

        padding-top: 70px;

        padding-bottom: 55px;
    }

    .hero-content h1 {

        font-size: 42px;

        line-height: 1.08;
    }

    .hero-description {

        font-size: 14px;

        line-height: 1.7;
    }


    /* Finder */

    .finder-section {

        padding: 78px 0 85px;
    }

    .section-heading {

        margin-bottom: 32px;
    }

    .section-heading h2 {

        font-size: 32px;
    }

    .section-heading > p:not(.eyebrow) {

        font-size: 14px;
    }

    .finder-options {

        grid-template-columns: 1fr;

        gap: 16px;
    }

    .image-option {

        min-height: 330px;
    }

    .option-image {

        height: 180px;
    }

    .option-wide {

        grid-column: span 1;

        min-height: 330px;

        display: flex;
    }

    .option-wide .option-image {

        height: 180px;

        min-height: 180px;
    }

    .option-wide .option-content {

        padding: 21px 24px 23px;
    }

    .option-wide .option-title {

        font-size: 21px;
    }

    .option-content {

        padding: 20px 22px 22px;
    }

    .option-title {

        font-size: 19px;
    }

    .option-description {

        font-size: 12px;
    }


    /* Result */

    .finder-result {

        padding: 45px 25px;

        border-radius: 20px;
    }

    .finder-result h2 {

        font-size: 31px;
    }

    .result-actions {

        flex-direction: column;

        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {

        width: 100%;
    }


    /* Why */

    .why-section {

        padding: 80px 0 85px;
    }

    .why-grid {

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .why-image {

        height: 230px;
    }

    .why-content {

        padding: 23px 24px 27px;
    }


    /* Social */

    .social-section {

        padding: 78px 0;
    }

    .social-container h2 {

        font-size: 34px;
    }

    .social-links {

        gap: 12px;

        margin-top: 27px;
    }

    .social-link {

        width: 58px;

        height: 58px;
    }

    .social-link img {

        width: 36px;

        height: 36px;

        object-fit: contain;

        display: block;
    }


    /* Individual mobile icon adjustment */

    .social-link:nth-child(1) img {

        width: 20px;

        height: 20px;
    }

    .social-link:nth-child(2) img {

        width: 22px;

        height: 22px;
    }

    .social-link:nth-child(3) img {

        width: 21px;

        height: 21px;
    }

    .social-link:nth-child(4) img {

        width: 22px;

        height: 22px;
    }


    /* Footer social */

    .footer-social-icons {

        gap: 10px;
    }

    .footer-social-icons a {

        width: 38px;

        height: 38px;
    }

    .footer-social-icons img {

        width: 17px;

        height: 17px;

        filter: none;
    }


    /* Final CTA */

    .final-cta {

        padding: 80px 0;
    }

    .final-cta h2 {

        font-size: 34px;
    }


    /* Footer */

    .site-footer {

        padding-top: 50px;
    }

    .footer-container {

        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 40px;
    }

    .footer-social {

        grid-column: auto;
    }

    .footer-bottom {

        width:
            calc(100% - 32px);

        flex-direction: column;

        gap: 7px;

        padding: 18px 0 22px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .hero-content h1 {

        font-size: 37px;
    }

    .hero-description {

        font-size: 13px;
    }

    .section-heading h2 {

        font-size: 29px;
    }

    .finder-result h2 {

        font-size: 28px;
    }

    .social-link {

        width: 46px;

        height: 46px;
    }

    .social-link img {

        width: 20px;

        height: 20px;
    }

    .social-link:nth-child(1) img {

        width: 19px;

        height: 19px;
    }

    .social-link:nth-child(2) img {

        width: 21px;

        height: 21px;
    }

    .social-link:nth-child(3) img {

        width: 20px;

        height: 20px;
    }

    .social-link:nth-child(4) img {

        width: 21px;

        height: 21px;
    }
}

/* =========================================================
   FINAL FOOTER ICON FIX
   ========================================================= */

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-icons a {
    width: 42px !important;
    height: 42px !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    padding: 0 !important;
    margin: 0 !important;

    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    border-radius: 50% !important;

    background: #ffffff !important;

    overflow: hidden;
    box-sizing: border-box;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.footer-social-icons a:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15);
}


/* LOGO DI DALAM LINGKARAN */

.footer-social-icons a img {
    display: block !important;

    width: 23px !important;
    height: 23px !important;

    min-width: 23px !important;
    min-height: 23px !important;

    max-width: none !important;
    max-height: none !important;

    object-fit: contain !important;

    margin: 0 !important;
    padding: 0 !important;

    opacity: 1 !important;
    filter: none !important;
}


/* EMAIL */

.footer-social-icons a.email-icon img {
    width: 24px !important;
    height: 24px !important;

    min-width: 24px !important;
    min-height: 24px !important;
}


/* MOBILE */

@media (max-width: 650px) {

    .footer-social-icons {
        gap: 10px;
    }

    .footer-social-icons a {
        width: 40px !important;
        height: 40px !important;
    }

    .footer-social-icons a img {
        width: 22px !important;
        height: 22px !important;

        min-width: 22px !important;
        min-height: 22px !important;
    }

    .footer-social-icons a.email-icon img {
        width: 23px !important;
        height: 23px !important;
    }
}

/* =========================================================
   FINAL SOCIAL ICON SIZE — FORCE
========================================================= */

.social-links .social-link img {
    width: 40px !important;
    height: 40px !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain !important;
    display: block !important;
}

/* =========================================================
   PROPERTY FINDER — OPTION ICONS
========================================================= */

.option-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.option-icon img {
    width: 98px;
    height: 98px;

    max-width: 98px;
    max-height: 98px;

    object-fit: contain;

    display: block;

    border-radius: 50%;
}

/* =========================================================
   PROPERTY FINDER — STEP 2 OPTION CARD
========================================================= */

#stepTwo .option {
    display: flex;
    align-items: center;

    gap: 22px;

    padding: 24px 24px;

    text-align: left;

    min-height: 146px;

    box-sizing: border-box;
}


/* =========================================================
   STEP 2 — ICON
========================================================= */

#stepTwo .option-icon {
    width: 98px;
    height: 98px;

    flex: 0 0 98px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 50%;
}


#stepTwo .option-icon img {
    width: 198px;
    height: 198px;

    max-width: 198px;
    max-height: 98px;

    object-fit: contain;

    display: block;

    border-radius: 50%;
}


/* =========================================================
   STEP 2 — CONTENT
========================================================= */

#stepTwo .option-content {
    flex: 1;

    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 5px;
}


/* =========================================================
   STEP 2 — TITLE
========================================================= */

#stepTwo .option-title {
    display: block;

    font-size: 26px;
    font-weight: 660;

    line-height: 1.25;
}


/* =========================================================
   STEP 2 — DESCRIPTION
========================================================= */

#stepTwo .option-description {
    display: block;

    font-size: 18px;
    line-height: 1.5;
}


/* =========================================================
   STEP 2 — ARROW
========================================================= */

#stepTwo .option-arrow {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================================
   PROPERTY FINDER — STEP 3 AREA
========================================================= */

#stepThree .finder-options {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


/* AREA CARD */

#stepThree .option {
    min-height: 0;

    display: flex;

    flex-direction: column;

    padding: 0;

    overflow: hidden;
}


/* AREA IMAGE */

#stepThree .option-image {
    width: 100%;

    height: 165px;

    overflow: hidden;

    background: #e9eef2;
}


#stepThree .option-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.55s ease;
}


#stepThree .option:hover
.option-image img {
    transform: scale(1.045);
}


/* AREA CONTENT */

#stepThree .option-content {
    position: relative;

    flex: 1;

    padding: 18px 22px 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


/* AREA TITLE */

#stepThree .option-title {
    display: block;

    font-size: 20px;

    font-weight: 600;

    line-height: 1.25;

    margin-bottom: 4px;
}


/* AREA DESCRIPTION */

#stepThree .option-description {
    display: block;

    max-width: 82%;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.5;
}


/* AREA ARROW */

#stepThree .option-arrow {
    position: absolute;

    right: 18px;

    bottom: 18px;

    width: 34px;

    height: 34px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--blue-light);

    color: var(--blue);

    font-size: 17px;
}


/* =========================================================
   STEP 3 — TABLET
========================================================= */

@media (max-width: 900px) {

    #stepThree .finder-options {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    #stepThree .option-image {
        height: 155px;
    }

}


/* =========================================================
   STEP 3 — MOBILE
========================================================= */

@media (max-width: 650px) {

    #stepThree .finder-options {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    #stepThree .option-image {
        height: 190px;
    }

    #stepThree .option-content {
        padding: 18px 21px 20px;
    }

    #stepThree .option-title {
        font-size: 19px;
    }

    #stepThree .option-description {
        font-size: 12px;
    }

}

/* =========================================================
   JOIN THE PROPERTYPOINT NETWORK
========================================================= */

.join-section {
    padding: 85px 0;
    background: var(--white);
}


.join-container {
    width: min(
        calc(100% - 48px),
        1050px
    );

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 420px);

    align-items: center;

    gap: 55px;

    padding: 0;
}


/* =========================================================
   JOIN CONTENT
========================================================= */

.join-content {
    max-width: 560px;
}


.join-content h2 {
    font-size: clamp(
        32px,
        3.5vw,
        44px
    );

    line-height: 1.15;

    margin-bottom: 10px;
}


.join-content h3 {
    font-size: 21px;

    font-weight: 600;

    color: var(--blue);

    margin-bottom: 20px;
}


.join-description {
    color: var(--text-soft);

    font-size: 15px;

    line-height: 1.75;

    max-width: 520px;

    margin-bottom: 25px;
}


/* =========================================================
   JOIN BENEFITS
========================================================= */

.join-benefits {
    display: flex;

    flex-wrap: wrap;

    gap: 9px;

    margin-bottom: 28px;
}


.join-benefits span {
    display: inline-flex;

    align-items: center;

    padding: 7px 13px;

    border-radius: 50px;

    background: var(--blue-light);

    color: var(--blue);

    font-size: 11px;

    font-weight: 600;
}


/* =========================================================
   JOIN BUTTON
========================================================= */

.join-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    min-height: 46px;

    padding: 0 20px;

    border-radius: 50px;

    background: var(--dark);

    color: var(--white);

    font-size: 12px;

    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.join-button span {
    font-size: 18px;

    line-height: 1;

    transition:
        transform 0.25s ease;
}


.join-button:hover {
    transform: translateY(-2px);

    background: var(--blue);

    box-shadow:
        0 10px 25px
        rgba(
            23,
            33,
            43,
            0.14
        );
}


.join-button:hover span {
    transform: translateX(4px);
}


/* =========================================================
   JOIN IMAGE
========================================================= */

.join-image {
    width: 100%;

    max-width: 420px;

    height: 330px;

    overflow: hidden;

    border-radius: 20px;

    background: #e9eef2;

    box-shadow:
        0 18px 45px
        rgba(
            23,
            33,
            43,
            0.10
        );
}


.join-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.55s ease;
}


.join-image:hover img {
    transform: scale(1.035);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .join-section {
        padding: 75px 0;
    }


    .join-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 360px);

        gap: 35px;
    }


    .join-image {
        height: 290px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .join-section {
        padding: 75px 0 80px;
    }


    .join-container {
        width:
            calc(100% - 32px);

        grid-template-columns: 1fr;

        gap: 32px;
    }


    .join-content {
        max-width: none;
    }


    .join-content h2 {
        font-size: 32px;
    }


    .join-content h3 {
        font-size: 19px;
    }


    .join-description {
        font-size: 14px;
    }


    .join-benefits {
        gap: 7px;
    }


    .join-button {
        width: 100%;

        min-height: 48px;
    }


    .join-image {
        width: 100%;

        max-width: none;

        height: 260px;

        border-radius: 18px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .join-content h2 {
        font-size: 29px;
    }


    .join-image {
        height: 235px;
    }

}

/* =========================================================
   JOIN US — ANCHOR POSITION
========================================================= */

#join-us {
    scroll-margin-top: 30px;
}