/* =========================================================
   CONTACT PAGE - AS MASSAGE
   ========================================================= */


/* =========================================================
   ROOT
   ========================================================= */

:root {
    --contact-dark: #16273a;
    --contact-dark-2: #101d2b;
    --contact-green: #315074;
    --contact-tosca: #486ab5;
    --contact-lime: #b9ee45;
    --contact-bg: #f5f8f9;
    --contact-white: #ffffff;
    --contact-text: #242c35;
    --contact-muted: #787e84;
    --contact-border: #dce3e7;
    --contact-shadow: 0 20px 55px rgba(22, 39, 58, 0.09);
}


/* =========================================================
   BODY
   ========================================================= */

body {
    background: var(--contact-bg);
    color: var(--contact-text);
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--contact-border);
}


/* =========================================================
   NAV WRAP
   ========================================================= */

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--contact-dark);
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.logo span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--contact-dark);
    color: var(--contact-lime);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    position: relative;
    color: #656c73;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.main-nav a:hover {
    color: var(--contact-dark);
}

.main-nav a.active {
    color: var(--contact-dark);
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 3px;
    border-radius: 20px;
    background: var(--contact-lime);
}


/* =========================================================
   MOBILE NAV BUTTON
   ========================================================= */

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce3e7;
    border-radius: 12px;
    background: #ffffff;
    color: #16273a;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
}


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    display: flex;
    align-items: center;
    background: linear-gradient( 135deg, #16273a 0%, #28425e 55%, #486ab5 100%);
}


/* Decorative Circle */

.page-hero::before {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    top: -290px;
    right: -100px;
    border-radius: 50%;
    background: rgba(185, 238, 69, 0.15);
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    left: -170px;
    bottom: -230px;
    border-radius: 50%;
    background: rgba(72, 106, 181, 0.15);
}


/* Hero Content */

.page-hero .container {
    position: relative;
    z-index: 2;
    padding: 65px 0;
}

.page-hero .eyebrow {
    margin-bottom: 14px;
    color: var(--contact-lime);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 4px;
}

.page-hero h1 {
    color: var(--contact-white);
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 7vw, 76px);
    line-height: 1;
    letter-spacing: -2px;
}

.page-hero .container>p:last-child {
    max-width: 560px;
    margin-top: 17px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   GENERAL SECTION
   ========================================================= */

.section {
    padding: 85px 0;
}


/* =========================================================
   CONTACT GRID
   ========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    gap: 55px;
    align-items: start;
}


/* =========================================================
   CONTACT LEFT CONTENT
   ========================================================= */

.contact-grid>div:first-child {
    padding: 10px 0;
}

.contact-grid>div:first-child>.eyebrow {
    margin-bottom: 13px;
    color: var(--contact-tosca);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
}

.contact-grid>div:first-child>h2 {
    max-width: 500px;
    margin-bottom: 30px;
    color: var(--contact-dark);
    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.15;
}


/* =========================================================
   CONTACT ITEM
   ========================================================= */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    width: 100%;
    margin-bottom: 14px;
    padding: 19px;
    border: 1px solid var(--contact-border);
    border-radius: 17px;
    background: var(--contact-white);
    box-shadow: 0 7px 25px rgba(22, 39, 58, 0.035);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    border-color: #becad7;
    box-shadow: 0 15px 35px rgba(22, 39, 58, 0.08);
}


/* Icon */

.contact-item>span {
    width: 43px;
    height: 43px;
    min-width: 43px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--contact-dark);
    color: var(--contact-lime);
    font-size: 19px;
    line-height: 1;
}


/* Item Content */

.contact-item>div {
    min-width: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--contact-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-item p {
    margin: 0;
    color: var(--contact-muted);
    font-size: 12px;
    line-height: 1.7;
    word-break: normal;
}


/* =========================================================
   WHATSAPP BUTTON
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 13px;
    padding: 0 23px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
    background: var(--contact-lime);
    color: var(--contact-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(185, 238, 69, 0.28);
}


/* =========================================================
   MAP SECTION
   ========================================================= */

.map-section {
    width: 100%;
}

.map-placeholder {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    padding: 38px;
    display: flex;
    align-items: flex-end;
    border-radius: 25px;
    background: linear-gradient( 145deg, #16273a, #2a4562);
    box-shadow: var(--contact-shadow);
}


/* Map Decorative Pattern */

.map-placeholder::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(255, 255, 255, .025), 0 0 0 90px rgba(255, 255, 255, .02);
}

.map-placeholder::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    bottom: -100px;
    left: -80px;
    border-radius: 50%;
    background: rgba(72, 106, 181, 0.13);
}


/* Map Content */

.map-placeholder>div {
    position: relative;
    z-index: 2;
    max-width: 480px;
}

.map-placeholder .eyebrow {
    margin-bottom: 12px;
    color: var(--contact-lime);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 3px;
}

.map-placeholder h2 {
    margin-bottom: 10px;
    color: var(--contact-white);
    font-family: "Playfair Display", serif;
    font-size: 34px;
    line-height: 1.1;
}

.map-placeholder p {
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   GOOGLE MAP LINK
   ========================================================= */

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 18px;
    padding: 11px 16px;
    border: 1px solid rgba(185, 238, 69, 0.35);
    border-radius: 30px;
    background: rgba(185, 238, 69, 0.08);
    color: var(--contact-lime);
    font-size: 11px;
    font-weight: 800;
    transition: background 0.25s ease, transform 0.25s ease;
}

.text-link:hover {
    background: rgba(185, 238, 69, 0.15);
    transform: translateX(3px);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 55px 0 20px;
    background: var(--contact-dark-2);
    color: var(--contact-white);
}


/* =========================================================
   FOOTER GRID
   ========================================================= */

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
}


/* Footer Logo */

.footer-logo {
    color: white;
    margin-bottom: 13px;
}

.footer-logo span {
    background: rgba(255, 255, 255, .1);
    color: var(--contact-lime);
}

.footer-grid>div:first-child p {
    max-width: 280px;
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
    line-height: 1.7;
}


/* Footer Heading */

.footer-grid h4 {
    margin-bottom: 15px;
    color: var(--contact-lime);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* Footer Links */

.footer-grid>div:not(:first-child) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-grid>div:not(:first-child) a {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    transition: color 0.2s ease;
}

.footer-grid>div:not(:first-child) a:hover {
    color: var(--contact-lime);
}

.footer-grid>div:not(:first-child) p {
    margin-top: 5px;
    color: rgba(255, 255, 255, .45);
    font-size: 11px;
}


/* =========================================================
   FOOTER BOTTOM
   ========================================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .3);
    font-size: 10px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
    .nav-wrap {
        min-height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .nav-toggle {
        display: flex;
        position: relative;
        margin-left: auto;
    }
    .main-nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 5% 20px;
        background: #ffffff;
        border-bottom: 1px solid #dce3e7;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        z-index: 999;
    }
    .main-nav.show {
        display: flex;
    }
    .main-nav a {
        padding: 13px 0;
        color: #656c73;
        border-bottom: 1px solid #edf0f2;
    }
    .main-nav a:last-child {
        border-bottom: none;
    }
    .main-nav a.active {
        color: #16273a;
    }
    .main-nav a.active::after {
        display: none;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .map-placeholder {
        min-height: 360px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid>div:first-child {
        grid-column: 1 / -1;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {
    .container {
        width: min(92%, 500px);
    }
    .page-hero {
        min-height: 285px;
    }
    .page-hero .container {
        padding: 50px 0;
    }
    .page-hero h1 {
        font-size: 48px;
    }
    .page-hero .container>p:last-child {
        font-size: 12px;
    }
    .section {
        padding: 55px 0;
    }
    .contact-grid {
        gap: 30px;
    }
    .contact-grid>div:first-child>h2 {
        font-size: 32px;
        margin-bottom: 23px;
    }
    .contact-item {
        padding: 15px;
        gap: 12px;
        border-radius: 15px;
    }
    .contact-item>span {
        width: 39px;
        height: 39px;
        min-width: 39px;
        font-size: 16px;
    }
    .contact-item p {
        font-size: 11px;
    }
    .btn {
        width: 100%;
        margin-top: 10px;
    }
    .map-placeholder {
        min-height: 340px;
        padding: 25px;
        border-radius: 20px;
    }
    .map-placeholder h2 {
        font-size: 30px;
    }
    .map-placeholder p {
        font-size: 11px;
    }
    .text-link {
        font-size: 10px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-grid>div:first-child {
        grid-column: auto;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}