/* =========================================================
   ENDE HOLIDAYS
   CONTACT PAGE — PREMIUM EDITORIAL
========================================================= */

.contact-page {

    --contact-gold: #e6a23c;
    --contact-gold-dark: #c98522;

    --contact-dark: #1d2925;
    --contact-green: #263b34;
    --contact-green-dark: #182721;

    --contact-text: #303936;
    --contact-muted: #7c8581;

    --contact-border: #e8ebe8;
    --contact-bg: #f8f8f5;
    --contact-white: #ffffff;

    background: #ffffff;

    padding: 0 0 110px;
}


/* =========================================================
   CONTAINER
========================================================= */

.contact-page .container {

    max-width: 1240px;

    margin: 0 auto;

    padding: 0 24px;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.contact-breadcrumb {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    padding: 28px 0 20px;

    color: var(--contact-muted);

    font-size: 13px;
}

.contact-breadcrumb a {

    color: #69736f;

    text-decoration: none;

    transition:
        color .25s ease;
}

.contact-breadcrumb a:hover {

    color: var(--contact-gold-dark);
}

.contact-breadcrumb span {

    color: #b6bcb8;
}

.contact-breadcrumb .current {

    color: var(--contact-dark);

    font-weight: 600;
}


/* =========================================================
   HERO
========================================================= */

.contact-hero {

    padding: 62px 0 70px;

    border-bottom: 1px solid
        var(--contact-border);
}

.contact-hero-inner {

    max-width: 800px;
}


/* =========================================================
   EYEBROW
========================================================= */

.contact-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: var(--contact-gold-dark);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .16em;

    text-transform: uppercase;
}

.contact-eyebrow span {

    display: block;

    width: 38px;

    height: 2px;

    background: var(--contact-gold);
}


/* =========================================================
   HERO TITLE
========================================================= */

.contact-hero h1 {

    margin: 0;

    color: var(--contact-dark);

    font-size: clamp(
        42px,
        5vw,
        68px
    );

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -.035em;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.contact-hero p {

    max-width: 700px;

    margin: 24px 0 0;

    color: var(--contact-muted);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.contact-layout {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        340px;

    gap: 60px;

    padding-top: 60px;
}


/* =========================================================
   MAIN
========================================================= */

.contact-main {

    min-width: 0;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.contact-section-label {

    margin-bottom: 12px;

    color: var(--contact-gold-dark);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .16em;

    text-transform: uppercase;
}


/* =========================================================
   COMPANY SECTION
========================================================= */

.contact-company {

    padding-bottom: 55px;

    border-bottom: 1px solid
        var(--contact-border);
}

.contact-company h2 {

    margin: 0 0 22px;

    color: var(--contact-dark);

    font-size: 34px;

    line-height: 1.2;

    letter-spacing: -.025em;
}


/* =========================================================
   CONTENT FROM DATABASE
========================================================= */

.contact-content {

    color: var(--contact-text);

    font-size: 15px;

    line-height: 1.9;
}

.contact-content p {

    margin: 0 0 18px;
}

.contact-content p:last-child {

    margin-bottom: 0;
}

.contact-content h2,
.contact-content h3,
.contact-content h4 {

    margin-top: 28px;

    margin-bottom: 12px;

    color: var(--contact-dark);
}

.contact-content ul,
.contact-content ol {

    margin: 15px 0;

    padding-left: 22px;
}

.contact-content li {

    margin-bottom: 8px;
}

.contact-content a {

    color: var(--contact-gold-dark);

    text-decoration: underline;

    text-underline-offset: 3px;
}

.contact-content img {

    max-width: 100%;

    height: auto;

    display: block;

    margin: 25px 0;
}

.contact-content-fallback {

    margin: 0;

    color: var(--contact-muted);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-information {

    padding-top: 55px;
}


/* =========================================================
   INFO GRID
========================================================= */

.contact-info-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;

    margin-top: 25px;
}


/* =========================================================
   INFO CARD
========================================================= */

.contact-info-card {

    display: flex;

    align-items: flex-start;

    gap: 16px;

    min-width: 0;

    padding: 22px;

    border: 1px solid
        var(--contact-border);

    background: #ffffff;

    transition:
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.contact-info-card:hover {

    border-color: #d9dfda;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px
        rgba(29,41,37,.06);
}


/* =========================================================
   INFO ICON
========================================================= */

.contact-info-icon {

    flex: 0 0 42px;

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f8f4eb;

    color: var(--contact-gold-dark);

    font-size: 18px;
}

.contact-info-icon span {

    line-height: 1;
}


/* =========================================================
   INFO TEXT
========================================================= */

.contact-info-card small {

    display: block;

    margin-bottom: 6px;

    color: var(--contact-gold-dark);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;
}

.contact-info-card p {

    margin: 0;

    color: var(--contact-text);

    font-size: 13px;

    line-height: 1.7;

    word-break: break-word;
}

.contact-info-card a {

    color: var(--contact-text);

    text-decoration: none;

    transition:
        color .25s ease;
}

.contact-info-card a:hover {

    color: var(--contact-gold-dark);
}


/* =========================================================
   MAP SECTION
========================================================= */

.contact-map-section {

    padding-top: 55px;
}


/* =========================================================
   MAP
========================================================= */

.contact-map {

    position: relative;

    width: 100%;

    height: 390px;

    margin-top: 25px;

    overflow: hidden;

    border: 1px solid
        var(--contact-border);

    background: #edf0ed;
}

.contact-map iframe {

    display: block;

    width: 100%;

    height: 100%;

    border: 0;
}


/* =========================================================
   SIDEBAR
========================================================= */

.contact-sidebar {

    display: flex;

    flex-direction: column;

    gap: 22px;

    align-self: start;
}


/* =========================================================
   WHATSAPP CTA
========================================================= */

.contact-whatsapp {

    position: relative;

    overflow: hidden;

    padding: 34px 30px;

    border-radius: 0;

    background:
        linear-gradient(
            145deg,
            var(--contact-green) 0%,
            var(--contact-green-dark) 100%
        );

    color: #ffffff;

    box-shadow:
        0 18px 45px
        rgba(24,39,33,.12);
}


/* =========================================================
   DECORATIVE CIRCLES
========================================================= */

.contact-whatsapp::before {

    content: "";

    position: absolute;

    width: 190px;

    height: 190px;

    right: -95px;

    top: -90px;

    border: 1px solid
        rgba(255,255,255,.08);

    border-radius: 50%;

    pointer-events: none;
}

.contact-whatsapp::after {

    content: "";

    position: absolute;

    width: 130px;

    height: 130px;

    right: -60px;

    bottom: -70px;

    border: 1px solid
        rgba(230,162,60,.12);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   WHATSAPP SYMBOL
========================================================= */

.contact-whatsapp-symbol {

    position: relative;

    z-index: 2;

    margin-bottom: 18px;

    color: var(--contact-gold);

    font-size: 23px;

    line-height: 1;
}


/* =========================================================
   SIDEBAR EYEBROW
========================================================= */

.contact-sidebar-eyebrow {

    position: relative;

    z-index: 2;

    margin-bottom: 10px;

    color: var(--contact-gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .16em;

    text-transform: uppercase;
}


/* =========================================================
   WHATSAPP TITLE
========================================================= */

.contact-whatsapp h2 {

    position: relative;

    z-index: 2;

    margin: 0 0 17px;

    color: #ffffff;

    font-size: 29px;

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -.025em;
}


/* =========================================================
   WHATSAPP DESCRIPTION
========================================================= */

.contact-whatsapp p {

    position: relative;

    z-index: 2;

    margin: 0 0 25px;

    color: rgba(255,255,255,.78);

    font-size: 13px;

    line-height: 1.75;
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.contact-whatsapp-button {

    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

    min-height: 48px;

    padding: 0 18px;

    border: 1px solid
        rgba(255,255,255,.18);

    background: #ffffff;

    color: var(--contact-dark);

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background .25s ease,
        color .25s ease,
        gap .25s ease;
}

.contact-whatsapp-button span {

    color: var(--contact-gold-dark);

    font-size: 17px;

    line-height: 1;

    transition:
        transform .25s ease;
}

.contact-whatsapp-button:hover {

    background: var(--contact-gold);

    color: #ffffff;

    gap: 14px;
}

.contact-whatsapp-button:hover span {

    color: #ffffff;

    transform: translateX(4px);
}


/* =========================================================
   WHATSAPP NUMBER
========================================================= */

.contact-whatsapp-number {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    gap: 5px;

    margin-top: 20px;

    padding-top: 17px;

    border-top: 1px solid
        rgba(255,255,255,.10);

    color: rgba(255,255,255,.55);

    font-size: 10px;

    letter-spacing: .05em;
}

.contact-whatsapp-number strong {

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;
}


/* =========================================================
   SOCIAL MEDIA
========================================================= */

.contact-social {

    padding: 28px;

    border: 1px solid
        var(--contact-border);

    background: #ffffff;
}

.contact-social h3 {

    margin: 0 0 20px;

    color: var(--contact-dark);

    font-size: 21px;

    line-height: 1.3;
}


/* =========================================================
   SOCIAL LIST
========================================================= */

.contact-social-list {

    display: flex;

    flex-direction: column;
}

.contact-social-list a {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 14px 0;

    border-top: 1px solid
        var(--contact-border);

    color: var(--contact-text);

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition:
        color .25s ease;
}

.contact-social-list a:first-child {

    border-top: 0;
}

.contact-social-list a span {

    color: var(--contact-gold-dark);

    font-size: 17px;

    transition:
        transform .25s ease;
}

.contact-social-list a:hover {

    color: var(--contact-gold-dark);
}

.contact-social-list a:hover span {

    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .contact-layout {

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .contact-sidebar {

        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        align-items: start;
    }


    .contact-whatsapp {

        grid-column: 1 / -1;
    }


    .contact-social {

        grid-column: 1 / -1;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .contact-page {

        padding-bottom: 70px;
    }


    .contact-page .container {

        padding: 0 18px;
    }


    /* Breadcrumb */

    .contact-breadcrumb {

        padding-top: 20px;

        font-size: 12px;

        gap: 7px;
    }


    /* Hero */

    .contact-hero {

        padding: 45px 0 48px;
    }


    .contact-hero h1 {

        font-size: 40px;
    }


    .contact-hero p {

        font-size: 15px;

        line-height: 1.7;
    }


    /* Layout */

    .contact-layout {

        padding-top: 42px;
    }


    /* Company */

    .contact-company {

        padding-bottom: 45px;
    }


    .contact-company h2 {

        font-size: 29px;
    }


    /* Info */

    .contact-information {

        padding-top: 45px;
    }


    .contact-info-grid {

        grid-template-columns: 1fr;

        gap: 14px;
    }


    .contact-info-card {

        padding: 19px;
    }


    /* Map */

    .contact-map-section {

        padding-top: 45px;
    }


    .contact-map {

        height: 300px;

        margin-top: 20px;
    }


    /* Sidebar */

    .contact-sidebar {

        display: flex;

        flex-direction: column;
    }


    .contact-whatsapp {

        width: 100%;

        padding: 30px 25px;
    }


    .contact-social {

        width: 100%;

        padding: 25px;
    }


    .contact-whatsapp h2 {

        font-size: 26px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .contact-hero h1 {

        font-size: 34px;
    }


    .contact-company h2 {

        font-size: 26px;
    }


    .contact-info-card {

        gap: 13px;
    }


    .contact-info-icon {

        flex-basis: 38px;

        width: 38px;

        height: 38px;

        font-size: 16px;
    }


    .contact-map {

        height: 260px;
    }


    .contact-whatsapp h2 {

        font-size: 24px;
    }

}