/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-page {
    background: #ffffff;

}


/* =====================================================
   HERO
===================================================== */

.contact-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 650px;
    overflow: hidden;
    background: #262626;
    color: #ffffff;

}


.contact-hero-content {
    max-width: 850px;

}


.contact-hero h1 {
    margin-top: 30px;
    font-family:
        'Playfair Display',
        serif;
    font-size: clamp(65px,
            9vw,
            135px);
    font-weight: 500;
    line-height: 0.88;
    letter-spacing: -0.07em;

}


.contact-hero h1 em {
    display: block;
    color: #c9a97a;
    font-style: normal;

}


.contact-hero p {
    max-width: 470px;
    margin-top: 40px;
    color: rgba(255,
            255,
            255,
            0.6);
    font-size: 14px;
    line-height: 1.9;

}


.contact-hero-number {
    position: absolute;
    right: 8%;
    bottom: 50px;
    color: rgba(255,
            255,
            255,
            0.1);
    font-family:
        'Playfair Display',
        serif;
    font-size: 180px;

}


/* =====================================================
   MAIN CONTACT SECTION
===================================================== */

.contact-main-section {
    padding: 150px 0;

}


.contact-main-grid {
    display: grid;
    grid-template-columns:
        0.8fr 1.2fr;
    gap: 120px;

}


.contact-information h2 {
    margin-top: 25px;
    font-family:
        'Playfair Display',
        serif;
    font-size: 75px;
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.06em;

}


.contact-information h2 em {
    color: #c9a97a;
    font-style: normal;

}


.contact-information>p {
    max-width: 420px;
    margin-top: 35px;
    color: #777777;
    font-size: 14px;
    line-height: 1.9;

}


/* =====================================================
   DETAILS
===================================================== */

.contact-details {
    margin-top: 60px;

}


.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #e6e6e6;

}


.contact-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #c9a97a;
    color: #c9a97a;

}


.contact-detail small {
    display: block;
    margin-bottom: 8px;
    color: #999999;
    font-size: 8px;
    letter-spacing: 0.15em;

}


.contact-detail a,

.contact-detail>div>span {
    color: #262626;
    font-size: 13px;
    line-height: 1.6;
    text-decoration: none;

}


.contact-detail a:hover {
    color: #c9a97a;

}


/* =====================================================
   SOCIALS
===================================================== */

.contact-socials {
    margin-top: 60px;

}


.contact-socials>span {
    color: #999999;
    font-size: 8px;
    letter-spacing: 0.15em;

}


.contact-socials>div {
    display: flex;
    gap: 10px;
    margin-top: 20px;

}


.contact-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #dddddd;
    color: #262626;
    font-size: 9px;
    text-decoration: none;
    transition:
        all 0.3s ease;

}


.contact-socials a:hover {
    border-color: #c9a97a;
    background: #c9a97a;
    color: #ffffff;

}


/* =====================================================
   FORM
===================================================== */

.contact-form-wrapper {
    padding: 55px;
    background: #f4f4f4;

}


.contact-form-header h2 {
    margin-top: 20px;
    font-family:
        'Playfair Display',
        serif;
    font-size: 42px;
    font-weight: 500;

}


.contact-form {
    margin-top: 45px;

}


.form-row {
    display: grid;
    grid-template-columns: repeat(2,
            1fr);
    gap: 20px;

}


.form-group {
    margin-bottom: 25px;

}


.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #555555;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;

}


.form-group input,

.form-group select,

.form-group textarea {
    width: 100%;
    padding: 17px 15px;
    border: 1px solid #dddddd;
    outline: none;
    background: #ffffff;
    color: #262626;
    font-family: inherit;
    font-size: 13px;
    transition:
        border-color 0.3s ease;

}


.form-group textarea {
    resize: vertical;

}


.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus {
    border-color: #c9a97a;

}


.contact-submit-button {
    display: inline-flex;
    align-items: center;
    gap: 25px;
    padding: 18px 28px;
    border: none;
    background: #262626;
    color: #ffffff;
    cursor: pointer;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

}


.contact-submit-button span {
    color: #c9a97a;
    font-size: 18px;

}


/* =====================================================
   MAP
===================================================== */

.contact-map-section {
    padding-bottom: 150px;

}


.contact-map-wrapper {
    min-height: 450px;

}


.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
    background:
        linear-gradient(135deg,
            #e9e9e9,
            #f4f4f4);

}


.map-placeholder-content {
    text-align: center;

}


.map-pin {
    display: block;
    margin-bottom: 20px;
    color: #c9a97a;
    font-size: 40px;

}


.map-placeholder h3 {
    font-family:
        'Playfair Display',
        serif;
    font-size: 28px;
    font-weight: 500;

}


.map-placeholder p {
    margin-top: 10px;
    color: #777777;
    font-size: 13px;

}


.map-placeholder a {
    display: inline-block;
    margin-top: 25px;
    color: #262626;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;

}


/* =====================================================
   FAQ
===================================================== */

.contact-faq-section {
    padding: 150px 0;
    background: #f4f4f4;

}


.contact-faq-header {
    max-width: 700px;

}


.contact-faq-header h2 {
    margin-top: 25px;
    font-family:
        'Playfair Display',
        serif;
    font-size: clamp(55px,
            7vw,
            95px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.06em;

}


.contact-faq-header h2 em {
    color: #c9a97a;
    font-style: normal;

}


.contact-faq-grid {
    display: grid;
    grid-template-columns: repeat(3,
            1fr);
    gap: 20px;
    margin-top: 80px;

}


.contact-faq-item {
    padding: 35px;
    border: 1px solid #dddddd;
    background: #ffffff;

}


.contact-faq-item>span {
    color: #c9a97a;
    font-family:
        'Playfair Display',
        serif;
    font-size: 32px;

}


.contact-faq-item h3 {
    margin-top: 50px;
    font-family:
        'Playfair Display',
        serif;
    font-size: 27px;
    font-weight: 500;

}


.contact-faq-item p {
    margin-top: 20px;
    color: #777777;
    font-size: 12px;
    line-height: 1.8;

}


/* =====================================================
   FINAL CTA
===================================================== */

.contact-final-cta {
    padding: 150px 0;
    text-align: center;

}


.contact-final-cta h2 {
    max-width: 900px;
    margin: 25px auto 40px;
    font-family:
        'Playfair Display',
        serif;
    font-size: clamp(55px,
            8vw,
            110px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.06em;

}


.contact-final-cta h2 em {
    color: #c9a97a;
    font-style: normal;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .contact-information {
        max-width: 650px;
    }

    .contact-faq-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {
    .contact-hero {
        min-height: 550px;
    }

    .contact-hero h1 {
        font-size: 62px;
    }

    .contact-main-section,
    .contact-faq-section,
    .contact-final-cta {
        padding: 90px 0;
    }

    .contact-map-section {
        padding-bottom: 90px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-information h2 {
        font-size: 58px;
    }

}





.contact-alert {
    margin-bottom: 30px;
    padding: 18px 20px;
    font-size: 13px;
    line-height: 1.6;

}


.contact-alert-success {
    border-left: 3px solid #c9a97a;
    background: #ffffff;
    color: #262626;

}


.contact-alert-error {
    border-left: 3px solid #a33a3a;
    background: #fff5f5;
    color: #8a2d2d;

}


.contact-alert-error p {
    margin: 0 0 5px;

}


.contact-alert-error p:last-child {
    margin-bottom: 0;

}





/* =====================================================
   ATLAS SWEETALERT
===================================================== */

.atlas-swal-popup {
    border-radius: 0 !important;
    padding: 40px !important;

}


.atlas-swal-title {
    font-family:
        'Playfair Display',
        serif !important;
    font-size: 32px !important;
    font-weight: 500 !important;
    letter-spacing: -0.03em;

}


.atlas-swal-button {
    border-radius: 0 !important;
    padding: 14px 28px !important;
    font-family: inherit !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase;

}


.swal2-html-container {
    font-size: 13px !important;
    line-height: 1.8 !important;

}