/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}


html,
body {
    margin: 0;
    padding: 0;
}


body {
    font-family: Arial, Helvetica, sans-serif;

    background: #ffffff;

    color: #172033;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


button,
input {
    font-family: inherit;
}


button {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   MAIN MOBILE CANVAS
========================================================= */

.kotak-page {

    width: 100%;

    max-width: 580px;

    margin: 0 auto;

    min-height: 100vh;

    background: #f4f7fa;

    overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.brand-header {

    height: 54px;

    background: #f0f3fa;

    border-bottom: 1px solid #dfe3ea;

    display: flex;

    align-items: center;

    padding: 0 18px;
}


.brand-logo {

    display: flex;

    align-items: center;

    gap: 9px;
}


.brand-symbol {

    width: 32px;
    height: 32px;

    border-radius: 50%;

    background: #1e4330;

    color: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 11px;

    font-weight: 700;

    flex: 0 0 auto;
}


.brand-name {

    color: #222b36;

    font-size: 17px;

    font-weight: 700;
}


/* =========================================================
   PAGE TITLE
========================================================= */

.page-title {

    background: #ffffff;

    padding: 19px 18px 20px;
}


.page-title h1 {

    margin: 0;

    font-size: 25px;

    line-height: 1.15;

    color: #111820;

    font-weight: 700;
}


/* =========================================================
   PROPERTY SLIDER SECTION
========================================================= */

.property-slider-section {

    background: #f4f7fa;

    padding: 24px 18px 35px;
}


.property-slider {

    position: relative;

    width: 100%;

    overflow: visible;
}


/* =========================================================
   PROPERTY SLIDE
========================================================= */

.property-slide {

    display: none;

    width: 100%;
}


.property-slide.active {

    display: block;
}


/* =========================================================
   FEATURED IMAGE SWIPE AREA

   IMPORTANT:
   Property swipe ONLY works here.
========================================================= */

.property-image-wrap {

    width: 100%;

    height: 245px;

    overflow: hidden;

    border-radius: 15px;

    background: #dfe4e8;

    position: relative;

    cursor: grab;

    user-select: none;

    -webkit-user-select: none;

    -webkit-touch-callout: none;

    touch-action: pan-y;
}


.property-image-wrap.is-dragging {

    cursor: grabbing;
}


.property-image {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    user-select: none;

    -webkit-user-select: none;

    -webkit-user-drag: none;

    pointer-events: none;
}


/* =========================================================
   PROPERTY DOT CONTROLS

   DIRECTLY BELOW FEATURED IMAGE
========================================================= */

.property-slider-controls {

    width: 100%;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0;

    padding: 0;
}


.property-slider-dots {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    max-width: 100%;

    overflow: hidden;

    padding: 0 4px;
}


.property-slider-dot {

    width: 7px;

    height: 7px;

    padding: 0;

    margin: 0;

    border: 0;

    border-radius: 50%;

    background: #cfd5da;

    cursor: pointer;

    flex: 0 0 auto;

    transition:
        width 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;

    touch-action: manipulation;
}


.property-slider-dot.active {

    width: 22px;

    border-radius: 10px;

    background: #697580;
}


/* =========================================================
   PROPERTY HEADING
========================================================= */

.property-heading {

    padding: 8px 0 15px;
}


.property-heading h2 {

    margin: 0;

    color: #172033;

    font-size: 24px;

    line-height: 1.18;

    font-weight: 700;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {

    display: flex;

    align-items: center;

    gap: 11px;

    margin: 4px 0 15px;
}


.section-accent {

    width: 6px;

    height: 30px;

    background: #c2a177;

    border-radius: 0 5px 5px 0;

    flex: 0 0 auto;
}


.section-heading h3 {

    margin: 0;

    font-size: 21px;

    line-height: 1.2;

    color: #596676;
}


/* =========================================================
   BENEFITS CAROUSEL

   IMPORTANT:
   Swipe only works inside this area.
========================================================= */

.benefits-carousel {

    width: calc(100% + 18px);

    overflow: hidden;

    margin-bottom: 20px;

    cursor: grab;

    user-select: none;

    -webkit-user-select: none;

    touch-action: pan-y;
}


.benefits-carousel.is-dragging {

    cursor: grabbing;
}


.benefits-track {

    display: flex;

    gap: 12px;

    width: max-content;

    transform: translate3d(0, 0, 0);

    transition:
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);

    will-change: transform;
}


/* =========================================================
   BENEFIT CARDS

   1.5 CARDS VISIBLE
========================================================= */

.benefit-card {

    flex: 0 0 230px;

    min-height: 84px;

    background: #ffffff;

    border-radius: 13px;

    box-shadow:
        0 3px 14px rgba(0, 0, 0, 0.07);

    display: flex;

    align-items: center;

    padding: 14px 15px;

    overflow: hidden;
}


.benefit-card-content {

    width: 100%;

    min-width: 0;
}


.benefit-label {

    display: block;

    color: #283342;

    font-size: 16px;

    line-height: 1.18;

    margin-bottom: 6px;
}


.benefit-value {

    display: block;

    color: #172033;

    font-size: 15px;

    line-height: 1.25;

    font-weight: 700;

    word-break: break-word;
}


/* =========================================================
   PROPERTY DETAILS
========================================================= */

.property-details {

    background: #ffffff;

    border-radius: 13px;

    padding: 8px 16px;

    box-shadow:
        0 3px 13px rgba(0, 0, 0, 0.07);

    margin-bottom: 16px;
}


.detail-row {

    min-height: 45px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    border-bottom: 1px solid #edf0f3;
}


.detail-row:last-child {

    border-bottom: 0;
}


.detail-row span {

    color: #202b3a;

    font-size: 14px;
}


.detail-row strong {

    color: #111820;

    font-size: 14px;

    text-align: right;
}


/* =========================================================
   PROPERTY LINK
========================================================= */

.property-link {

    display: block;

    width: 100%;

    padding: 13px 16px;

    background: #ffffff;

    border: 1px solid #d3d8de;

    border-radius: 10px;

    text-align: center;

    text-decoration: none;

    color: #172033;

    font-size: 15px;

    font-weight: 700;

    margin-bottom: 18px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.property-link:active {

    background: #f1f3f5;
}


/* =========================================================
   MAP
========================================================= */

.property-map {

    width: 100%;

    height: 190px;

    background: #dfe3e6;

    border-radius: 13px;

    overflow: hidden;

    margin-bottom: 24px;

    touch-action: pan-x pan-y;
}


.property-map iframe {

    width: 100%;

    height: 100%;

    border: 0;
}


/* =========================================================
   ENQUIRY
========================================================= */

.enquiry-box {

    margin-top: 4px;
}


.enquiry-box h3 {

    margin: 0 0 13px;

    color: #111820;

    font-size: 23px;

    line-height: 1.2;
}


/* =========================================================
   MOBILE FIELD
========================================================= */

.mobile-field {

    width: 100%;

    height: 68px;

    background: #ffffff;

    border: 1px solid #c9cdd2;

    border-radius: 15px;

    display: flex;

    align-items: center;

    padding: 0 16px;

    margin-bottom: 12px;
}


.country-code {

    font-size: 20px;

    margin-right: 10px;
}


.country-prefix {

    font-size: 16px;

    color: #657080;

    padding-right: 10px;

    border-right: 1px solid #d0d3d7;
}


.mobile-field input {

    flex: 1;

    min-width: 0;

    border: 0;

    outline: 0;

    padding-left: 10px;

    font-size: 17px;

    color: #172033;

    background: transparent;
}


.mobile-field input::placeholder {

    color: #9da1a7;
}


/* =========================================================
   NAME
========================================================= */

.name-field {

    margin-bottom: 15px;
}


.name-field input {

    width: 100%;

    height: 58px;

    background: #ffffff;

    border: 1px solid #c9cdd2;

    border-radius: 13px;

    padding: 0 16px;

    font-size: 16px;

    outline: 0;
}


.name-field input:focus,
.mobile-field:focus-within {

    border-color: #8d98a5;
}


/* =========================================================
   CHECKBOX
========================================================= */

.checkbox-row {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 16px;

    font-size: 13px;

    line-height: 1.45;

    color: #151b24;

    cursor: pointer;
}


.checkbox-row input {

    appearance: none;

    width: 22px;

    height: 22px;

    min-width: 22px;

    border: 2px solid #747b83;

    background: #ffffff;

    border-radius: 2px;

    margin: 0;

    position: relative;

    cursor: pointer;
}


.checkbox-row input:checked {

    background: #2378cf;

    border-color: #2378cf;
}


.checkbox-row input:checked::after {

    content: "✓";

    position: absolute;

    left: 3px;

    top: -1px;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;
}


/* =========================================================
   SUBMIT
========================================================= */

.enquiry-submit {

    width: 100%;

    height: 54px;

    border: 0;

    border-radius: 10px;

    background: #dfe1e4;

    color: #9da0a5;

    font-size: 17px;

    font-weight: 600;

    cursor: not-allowed;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.enquiry-submit.enabled {

    background: #0877d1;

    color: #ffffff;

    cursor: pointer;
}


.enquiry-submit.enabled:active {

    background: #0767b5;
}


.enquiry-submit:disabled {

    cursor: not-allowed;
}


/* =========================================================
   FORM MESSAGE
========================================================= */

.form-message {

    text-align: center;

    font-size: 14px;

    margin-top: 12px;

    min-height: 20px;
}


.form-message.success {

    color: #16804b;
}


.form-message.error {

    color: #d52c42;
}


/* =========================================================
   NO PROPERTY
========================================================= */

.no-properties {

    background: #ffffff;

    border-radius: 14px;

    padding: 35px 20px;

    text-align: center;

    color: #66717e;
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .property-slider-section {

        padding-left: 14px;

        padding-right: 14px;
    }


    .property-image-wrap {

        height: 220px;
    }


    .property-heading h2 {

        font-size: 22px;
    }


    .benefit-card {

        flex-basis: 220px;
    }

}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 700px) {

    body {

        background: #ffffff;
    }


    .kotak-page {

        min-height: 100vh;

        border-left: 1px solid #dce1e5;

        border-right: 1px solid #dce1e5;
    }

}

/* =========================================================
   HONEYPOT FIELD
   Hidden from real users, available for bot detection
========================================================= */

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.hp-field input {
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
}

/* =========================================================
   F21 PROPERTIES - THANK YOU PAGE
========================================================= */

.thank-you-page {
    min-height: calc(100vh - 70px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 50px 20px 70px;

    background: #f7f6f2;
}


.thank-you-box {
    width: 100%;
    max-width: 620px;

    background: #ffffff;

    border: 1px solid rgba(194, 161, 119, 0.35);
    border-radius: 14px;

    padding: 48px 35px 42px;

    text-align: center;

    box-shadow: 0 8px 30px rgba(30, 67, 48, 0.08);
}


/* =========================================================
   SUCCESS ICON
========================================================= */

.thank-you-icon {
    width: 68px;
    height: 68px;

    margin: 0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1e4330;

    color: #c2a177;

    border: 2px solid #c2a177;

    font-size: 32px;
    font-weight: 700;
}


/* =========================================================
   HEADING
========================================================= */

.thank-you-box h1 {
    margin: 0 0 16px;

    color: #1e4330;

    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}


/* =========================================================
   MESSAGE
========================================================= */

.thank-you-main {
    margin: 0 0 8px;

    color: #222222;

    font-size: 17px;
    line-height: 1.6;
}


.thank-you-sub {
    margin: 0 0 30px;

    color: #666666;

    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   BUTTON
========================================================= */

.thank-you-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 28px;

    border-radius: 6px;

    background: #1e4330;

    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    border: 1px solid #1e4330;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.thank-you-button:hover {
    background: #c2a177;

    border-color: #c2a177;

    color: #1e4330;

    transform: translateY(-1px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .thank-you-page {
        min-height: calc(100vh - 60px);

        padding: 30px 15px 45px;
    }


    .thank-you-box {
        padding: 38px 22px 32px;

        border-radius: 12px;
    }


    .thank-you-icon {
        width: 60px;
        height: 60px;

        margin-bottom: 20px;

        font-size: 28px;
    }


    .thank-you-box h1 {
        font-size: 28px;

        margin-bottom: 14px;
    }


    .thank-you-main {
        font-size: 16px;
    }


    .thank-you-sub {
        font-size: 14px;

        margin-bottom: 25px;
    }


    .thank-you-button {
        width: 100%;

        padding: 0 20px;
    }

}