/* =========================================================
   TINK HOME — CONTACT
   ========================================================= */


/* =========================================================
   HERO
   Same visual structure as the À propos / Main hero
   ========================================================= */

.contact-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #10171b;
    color: #fff;
}


/* HERO IMAGE */

.contact-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    overflow: hidden;
}

.contact-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(0.45) saturate(0.76);
    transition: transform 1.2s ease;
}

.contact-hero:hover .contact-hero-image img {
    transform: scale(1.035);
}


/* HERO OVERLAY */

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.72),
        rgba(0, 0, 0, 0.25)
    );
}


/* HERO CONTENT */

.contact-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 140px 0 80px;
    color: #fff;
}

.contact-hero h1 {
    margin: 22px 0;
    font-family: var(--font-display);
    font-size: clamp(3.6rem, 8vw, 7.8rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
    font-weight: 600;
}

.contact-hero h1 em {
    font-style: normal;
    color: #c9c9c4;
}

.contact-hero .hero-intro {
    max-width: 560px;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
}


/* HERO NUMBER */

.contact-number {
    position: absolute;
    right: 0;
    bottom: 20px;
    z-index: 1;

    font-family: var(--font-display);
    font-size: clamp(100px, 16vw, 220px);
    font-weight: 800;
    line-height: 0.8;

    color: #fff;
    opacity: 0.10;
    pointer-events: none;
}


/* =========================================================
   CONTACT SECTION
   ========================================================= */

.contact-section {
    padding: 120px 0;
    background: #f5f3ef;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: start;
}


/* =========================================================
   CONTACT DETAILS
   ========================================================= */

.contact-details h2 {
    margin: 20px 0 25px;

    font-family: var(--font-display);
    font-size: clamp(38px, 4vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.contact-details h2 em {
    font-style: normal;
    font-weight: 400;
}

.detail-copy {
    max-width: 520px;
    margin: 0;

    font-size: 17px;
    line-height: 1.7;
    color: #666;
}


/* =========================================================
   CONTACT IMAGE
   ========================================================= */

.contact-image {
    position: relative;

    display: block;
    width: 100%;
    height: 230px;

    margin: 35px 0;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}

.contact-image:hover img {
    transform: scale(1.05);
    filter: brightness(0.9);
}


/* =========================================================
   CONTACT INFORMATION
   ========================================================= */

.contact-list {
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.contact-list > a,
.contact-list > div {
    display: block;

    padding: 22px 0;

    border-bottom: 1px solid rgba(0, 0, 0, 0.12);

    text-decoration: none;
}

.contact-list span {
    display: block;

    margin-bottom: 7px;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.12em;

    color: #888;
}

.contact-list strong {
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

.contact-list a strong {
    transition: opacity 0.3s ease;
}

.contact-list a:hover strong {
    opacity: 0.55;
}


/* =========================================================
   WHATSAPP BUTTON
   ========================================================= */

.whatsapp-large {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 35px;
    padding: 20px 24px;

    background: #222;
    color: #fff;

    text-decoration: none;
    font-weight: 600;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.whatsapp-large:hover {
    background: #333;
    transform: translateY(-2px);
}

.whatsapp-large span {
    font-size: 20px;
}


/* =========================================================
   FORM
   ========================================================= */

.contact-form-wrap {
    width: 100%;
}

.contact-form {
    padding: 50px;
    background: #fff;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.06);
}


/* FORM HEADING */

.form-heading {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-bottom: 45px;
}

.form-heading span {
    font-size: 12px;
    font-weight: 700;
    color: #999;
}

.form-heading h2 {
    margin: 0;

    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: -0.03em;
}


/* FORM LABELS */

.contact-form label {
    display: block;
    margin-bottom: 28px;
}

.contact-form label > span {
    display: block;

    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    color: #555;
}


/* FORM INPUTS */

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;

    padding: 15px 0;

    border: none;
    border-bottom: 1px solid #d5d2cd;

    background: transparent;

    font-family: var(--font-body);
    font-size: 16px;
    color: #222;

    outline: none;

    transition: border-color 0.3s ease;
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-bottom-color: #222;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form select {
    cursor: pointer;
}


/* =========================================================
   SUBMIT
   ========================================================= */

.form-submit {
    width: 100%;

    margin-top: 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-note {
    margin-top: 18px;

    font-size: 12px;
    line-height: 1.6;

    color: #999;
}

.form-status {
    margin-top: 10px;
}


/* =========================================================
   BOTTOM CTA
   ========================================================= */

.contact-bottom {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: #fff;
    background: #222;
}


/* BOTTOM IMAGE */

.contact-bottom-image {
    position: absolute;
    inset: 0;

    z-index: 0;

    display: block;
    overflow: hidden;
}

.contact-bottom-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 1s ease;
}

.contact-bottom:hover .contact-bottom-image img {
    transform: scale(1.03);
}


/* BOTTOM OVERLAY */

.contact-bottom::after {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.30)
    );
}


/* BOTTOM CONTENT */

.contact-bottom .container {
    position: relative;
    z-index: 2;
}

.contact-bottom h2 {
    margin: 20px 0;

    font-family: var(--font-display);
    font-size: clamp(45px, 6vw, 80px);

    line-height: 0.98;
    letter-spacing: -0.05em;
}

.contact-bottom h2 em {
    font-style: normal;
    font-weight: 400;
}

.contact-bottom p:last-child {
    max-width: 450px;

    font-size: 17px;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.75);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .contact-hero-inner {
        padding-top: 140px;
        padding-bottom: 70px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .contact-number {
        display: none;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .contact-hero-inner {
        padding-top: 120px;
        padding-bottom: 55px;
    }

    .contact-hero h1 {
        font-size: clamp(3.2rem, 15vw, 5rem);
    }

    .contact-hero .hero-intro {
        font-size: 1rem;
        line-height: 1.65;
    }

    .contact-image {
        height: 190px;
    }

    .contact-bottom {
        min-height: 430px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-heading h2 {
        font-size: 26px;
    }
}