/* ============================================================
   BUCKETLIST PROPERTIES
   CONTACT PAGE
   ============================================================ */


/* ============================================================
   PAGE VARIABLES
   ============================================================ */

.contact-page {

    --contact-navy: #101828;
    --contact-navy-2: #17233a;
    --contact-navy-3: #22314d;

    --contact-gold: #c28a48;
    --contact-gold-dark: #a87336;
    --contact-gold-light: #f6eee4;

    --contact-text: #181818;
    --contact-text-light: #667085;

    --contact-border: #e3e3e3;

    --contact-background: #faf8f4;

    --contact-white: #ffffff;

    --contact-radius: 24px;

    width: 100%;

    overflow: hidden;

    background: #ffffff;

    color: var(--contact-text);

}


/* ============================================================
   COMMON
   ============================================================ */

.contact-page *,
.contact-floating-buttons * {

    box-sizing: border-box;

}


.contact-page-container {

    width: min(
        calc(100% - 64px),
        1360px
    );

    margin: 0 auto;

}


.contact-label {

    display: flex;

    align-items: center;

    gap: 14px;

    color: var(--contact-gold);

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.22em;

}


.contact-label-line {

    display: block;

    width: 28px;

    height: 1px;

    background: var(--contact-gold);

}


.contact-label-dark {

    color: var(--contact-gold);

}


/* ============================================================
   HERO
   ============================================================ */

.contact-hero {

    position: relative;

    padding: 38px 0 62px;

    background:
        radial-gradient(
            circle at 95% 10%,
            rgba(194, 138, 72, 0.20),
            transparent 32%
        ),
        linear-gradient(
            115deg,
            #101828 0%,
            #14223a 58%,
            #263650 100%
        );

    color: #ffffff;

}


.contact-breadcrumb {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 36px;

    font-size: 13px;

    color: rgba(255,255,255,0.72);

}


.contact-breadcrumb a {

    color: var(--contact-gold);

    text-decoration: none;

}


.contact-breadcrumb i {

    font-size: 16px;

    color: rgba(255,255,255,0.42);

}


.contact-hero-content {

    max-width: 810px;

}


.contact-hero h1 {

    margin: 20px 0 18px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(46px, 4.4vw, 70px);

    line-height: 1.05;

    letter-spacing: -0.035em;

    font-weight: 600;

    color: #ffffff;

}


.contact-hero h1 span {

    color: var(--contact-gold);

}


.contact-hero-content > p {

    max-width: 760px;

    margin: 0;

    color: rgba(255,255,255,0.82);

    font-size: 17px;

    line-height: 1.75;

    font-weight: 400;

}


/* ============================================================
   HERO BUTTONS
   ============================================================ */

.contact-hero-buttons {

    display: flex;

    flex-wrap: wrap;

    align-items: center;

    gap: 13px;

    margin-top: 32px;

}


.contact-action-btn {

    min-height: 54px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 0 23px;

    border-radius: 100px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;

}


.contact-action-btn:hover {

    transform: translateY(-2px);

}


.contact-action-btn i {

    font-size: 19px;

}


.contact-action-phone {

    background: var(--contact-gold);

    color: #ffffff;

}


.contact-action-phone:hover {

    background: var(--contact-gold-dark);

}


.contact-action-whatsapp {

    background: #25d366;

    color: #ffffff;

}


.contact-action-whatsapp:hover {

    background: #20bd5a;

}


.contact-action-email {

    border: 1px solid rgba(255,255,255,0.26);

    background: rgba(255,255,255,0.06);

    color: #ffffff;

}


/* ============================================================
   CONTACT MAIN SECTION
   ============================================================ */

.contact-content-section {

    padding: 68px 0 76px;

    background: #ffffff;

}


.contact-content-grid {

    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(350px, 0.95fr);

    gap: 30px;

    align-items: stretch;

}


/* ============================================================
   FORM CARD
   ============================================================ */

.contact-form-card {

    position: relative;

    overflow: hidden;

    padding: 40px 32px 34px;

    border: 1px solid var(--contact-border);

    border-radius: var(--contact-radius);

    background: #ffffff;

    box-shadow:
        0 22px 60px
        rgba(16,24,40,0.07);

}


.contact-form-top-line {

    position: absolute;

    top: 0;

    left: 28px;

    right: 28px;

    height: 4px;

    border-radius: 0 0 5px 5px;

    background: var(--contact-gold);

}


.contact-form-card h2 {

    margin: 14px 0 5px;

    color: var(--contact-navy);

    font-size: 28px;

    line-height: 1.25;

    font-weight: 500;

    letter-spacing: -0.025em;

}


.contact-form-description {

    margin: 0 0 30px;

    color: var(--contact-text-light);

    font-size: 14px;

    line-height: 1.65;

}


/* ============================================================
   FORM FIELDS
   ============================================================ */

.contact-form-fields {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px 16px;

}


.contact-field {

    display: flex;

    flex-direction: column;

    gap: 9px;

}


.contact-field-full {

    grid-column: 1 / -1;

}


.contact-field label {

    color: #475467;

    font-size: 12px;

    line-height: 1.45;

    font-weight: 600;

}


.contact-field input,
.contact-field select,
.contact-field textarea {

    width: 100%;

    border: 1px solid #dfe3e8;

    background: #ffffff;

    color: var(--contact-navy);

    outline: none;

    border-radius: 13px;

    font-family: "Inter", sans-serif;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

}


.contact-field input,
.contact-field select {

    height: 56px;

    padding: 0 16px;

}


.contact-field textarea {

    min-height: 128px;

    padding: 15px 16px;

    resize: vertical;

    line-height: 1.6;

}


.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {

    border-color: var(--contact-gold);

    box-shadow:
        0 0 0 4px
        rgba(194,138,72,0.10);

}


/* ============================================================
   SELECT
   ============================================================ */

.contact-select-wrap {

    position: relative;

}


.contact-select-wrap select {

    appearance: none;

    -webkit-appearance: none;

    padding-right: 46px;

    cursor: pointer;

}


.contact-select-wrap > i {

    position: absolute;

    top: 50%;

    right: 16px;

    transform: translateY(-50%);

    pointer-events: none;

    color: var(--contact-navy);

    font-size: 18px;

}


/* ============================================================
   SEND BUTTON
   ============================================================ */

.contact-submit-button {

    width: 100%;

    min-height: 58px;

    margin-top: 24px;

    border: none;

    outline: none;

    border-radius: 100px;

    background:
        linear-gradient(
            90deg,
            var(--contact-navy),
            var(--contact-navy-3)
        );

    color: #ffffff;

    font-family: "Inter", sans-serif;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.09em;

    cursor: pointer;

    box-shadow:
        0 14px 32px
        rgba(16,24,40,0.16);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

}


.contact-submit-button:hover {

    transform: translateY(-2px);

    box-shadow:
        0 18px 38px
        rgba(16,24,40,0.23);

}


/* ============================================================
   CONTACT DETAILS CARD
   ============================================================ */

.contact-details-card {

    padding: 31px;

    border-radius: var(--contact-radius);

    color: #ffffff;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(194,138,72,0.22),
            transparent 40%
        ),
        linear-gradient(
            150deg,
            var(--contact-navy) 0%,
            #1a2942 100%
        );

    box-shadow:
        0 24px 60px
        rgba(16,24,40,0.17);

}


.contact-details-heading {

    margin-bottom: 10px;

    color: var(--contact-gold);

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 0.17em;

}


.contact-detail-item {

    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 16px;

    padding: 18px 0;

    border-bottom:
        1px solid
        rgba(255,255,255,0.12);

}


.contact-detail-last {

    border-bottom: 0;

}


.contact-detail-icon {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background:
        rgba(255,255,255,0.08);

    color: var(--contact-gold);

    font-size: 22px;

}


.contact-detail-information {

    min-width: 0;

}


.contact-detail-label {

    display: block;

    margin: 2px 0 7px;

    color:
        rgba(255,255,255,0.60);

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 0.09em;

}


.contact-detail-main {

    display: block;

    color: #ffffff;

    font-size: 16px;

    line-height: 1.5;

    font-weight: 600;

    text-decoration: none;

}


.contact-detail-small {

    margin-top: 4px;

    color:
        rgba(255,255,255,0.72);

    font-size: 12px;

    line-height: 1.6;

}


.contact-detail-small a {

    color: inherit;

    text-decoration: none;

}


/* ============================================================
   WHATSAPP LARGE
   ============================================================ */

.contact-whatsapp-large {

    width: 100%;

    min-height: 56px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    margin-top: 20px;

    border-radius: 12px;

    background: #25d366;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition:
        background 0.2s ease,
        transform 0.2s ease;

}


.contact-whatsapp-large:hover {

    background: #20bd5a;

    transform: translateY(-2px);

}


.contact-whatsapp-large i {

    font-size: 19px;

}


/* ============================================================
   OFFICE SECTION
   ============================================================ */

.contact-office-section {

    padding: 72px 0 85px;

    background: var(--contact-background);

    border-top: 1px solid #f0ede7;

}


.contact-office-title {

    margin: 14px 0 30px;

    color: var(--contact-navy);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(38px, 3.3vw, 52px);

    line-height: 1.12;

    font-weight: 600;

    letter-spacing: -0.035em;

}


.contact-office-title span {

    color: var(--contact-gold);

}


.contact-office-address {

    margin-bottom: 24px;

}


.contact-office-address strong {

    display: block;

    margin-bottom: 5px;

    color: var(--contact-navy);

    font-size: 16px;

    font-weight: 600;

}


.contact-office-address p {

    margin: 0;

    color: #344054;

    font-size: 15px;

    line-height: 1.7;

}


/* ============================================================
   MAP
   ============================================================ */

.contact-map {

    position: relative;

    width: 100%;

    height: 475px;

    overflow: hidden;

    border-radius: 22px;

    border: 1px solid #dedede;

    background: #ededed;

    box-shadow:
        0 18px 50px
        rgba(16,24,40,0.08);

}


.contact-map iframe {

    display: block;

    width: 100%;

    height: 100%;

    border: 0;

}


.contact-open-map {

    position: absolute;

    z-index: 10;

    top: 14px;

    left: 14px;

    min-height: 42px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    padding: 0 14px;

    border-radius: 7px;

    border: 1px solid #dcdcdc;

    background: #ffffff;

    color: #1d2939;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    box-shadow:
        0 5px 18px
        rgba(16,24,40,0.15);

}


.contact-open-map:hover {

    color: var(--contact-gold-dark);

}


/* ============================================================
   FLOATING BUTTONS
   ============================================================ */

.contact-floating-buttons {

    position: fixed;

    z-index: 200;

    right: 26px;

    bottom: 28px;

    display: flex;

    flex-direction: column;

    gap: 12px;

}


.contact-floating-btn {

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: 0;

    border-radius: 50%;

    color: #ffffff;

    font-size: 27px;

    cursor: pointer;

    box-shadow:
        0 13px 32px
        rgba(16,24,40,0.22);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

}


.contact-floating-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 16px 38px
        rgba(16,24,40,0.28);

}


.contact-floating-whatsapp {

    background: #25d366;

    text-decoration: none;

}


.contact-floating-chat {

    background: var(--contact-navy);

}


/* ============================================================
   TABLET
   ============================================================ */

@media (max-width: 1100px) {

    .contact-content-grid {

        grid-template-columns:
            minmax(0, 1.3fr)
            minmax(320px, 0.85fr);

        gap: 24px;

    }

}


@media (max-width: 900px) {

    .contact-content-grid {

        grid-template-columns: 1fr;

    }


    .contact-details-card {

        width: 100%;

    }


    .contact-map {

        height: 420px;

    }

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 680px) {

    .contact-page-container {

        width: calc(100% - 30px);

    }


    /* Hero */

    .contact-hero {

        padding: 25px 0 43px;

    }


    .contact-breadcrumb {

        margin-bottom: 27px;

        font-size: 12px;

    }


    .contact-label {

        gap: 10px;

        font-size: 11px;

        letter-spacing: 0.18em;

    }


    .contact-label-line {

        width: 22px;

    }


    .contact-hero h1 {

        margin-top: 16px;

        font-size: 39px;

        line-height: 1.07;

    }


    .contact-hero-content > p {

        font-size: 15px;

        line-height: 1.7;

    }


    .contact-hero-buttons {

        display: grid;

        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 27px;

    }


    .contact-action-btn {

        width: 100%;

        min-height: 52px;

    }


    /* Content */

    .contact-content-section {

        padding: 38px 0 44px;

    }


    .contact-form-card {

        padding:
            34px 18px
            22px;

        border-radius: 18px;

    }


    .contact-form-top-line {

        left: 18px;

        right: 18px;

    }


    .contact-form-card h2 {

        font-size: 25px;

        line-height: 1.25;

    }


    .contact-form-description {

        margin-bottom: 23px;

    }


    .contact-form-fields {

        grid-template-columns: 1fr;

        gap: 18px;

    }


    .contact-field-full {

        grid-column: auto;

    }


    .contact-field input,
    .contact-field select {

        height: 54px;

    }


    .contact-field textarea {

        min-height: 135px;

    }


    .contact-submit-button {

        min-height: 56px;

        margin-top: 20px;

    }


    /* Details */

    .contact-details-card {

        padding: 24px 18px;

        border-radius: 18px;

    }


    .contact-detail-item {

        grid-template-columns:
            44px 1fr;

        gap: 13px;

        padding: 17px 0;

    }


    .contact-detail-icon {

        width: 44px;

        height: 44px;

        font-size: 20px;

    }


    .contact-detail-main {

        font-size: 14px;

    }


    /* Office */

    .contact-office-section {

        padding: 43px 0 58px;

    }


    .contact-office-title {

        margin-bottom: 23px;

        font-size: 36px;

    }


    .contact-office-address p {

        font-size: 14px;

    }


    .contact-map {

        height: 340px;

        border-radius: 17px;

    }


    .contact-open-map {

        top: 11px;

        left: 11px;

        min-height: 39px;

        padding: 0 11px;

        font-size: 12px;

    }


    /* Floating */

    .contact-floating-buttons {

        right: 14px;

        bottom: 18px;

        gap: 9px;

    }


    .contact-floating-btn {

        width: 50px;

        height: 50px;

        font-size: 24px;

    }

}


/* ============================================================
   VERY SMALL MOBILE
   ============================================================ */

@media (max-width: 400px) {

    .contact-hero h1 {

        font-size: 34px;

    }


    .contact-form-card h2 {

        font-size: 23px;

    }


    .contact-office-title {

        font-size: 32px;

    }

}