/* =========================================================
   HYRO CONTACT PAGE
========================================================= */

.contact-page-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 95px;
    background:
        radial-gradient(circle at 88% 18%, rgba(139,92,246,.10), transparent 30%),
        radial-gradient(circle at 10% 85%, rgba(214,47,131,.08), transparent 28%),
        #ffffff;
}

.contact-page-hero-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.contact-page-copy h1 {
    margin: 12px 0 22px;
    color: #182033;
    font-size: clamp(44px,5vw,68px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.contact-page-copy h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(100deg,#d62f83,#865fea);
    -webkit-background-clip: text;
    background-clip: text;
}

.contact-page-copy p {
    max-width: 650px;
    color: #667085;
    font-size: 16px;
    line-height: 1.8;
}


/* CONTACT DETAILS */

.contact-page-details {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}

.contact-page-details article {
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e7ef;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(31,40,70,.06);
}

.contact-page-details strong {
    display: block;
    margin-bottom: 8px;
    color: #182033;
    font-size: 14px;
}

.contact-page-details a {
    color: #667085;
    font-size: 13px;
    word-break: break-word;
}

.contact-page-details a:hover {
    color: #d62f83;
}

.contact-page-details article:last-child {
    background: linear-gradient(145deg,#f2fff6,#ffffff);
    border-color: rgba(37,211,102,.28);
}

.contact-page-details article:last-child a {
    color: #159447;
    font-weight: 700;
}


/* CONTACT FORM AREA */

.contact-page-form-section {
    padding: 105px 0;
    background: linear-gradient(145deg,#faf9fd,#ffffff);
}

.contact-page-form-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 65px;
    align-items: start;
}

.contact-page-form-grid > div:first-child h2 {
    margin: 12px 0 20px;
    color: #182033;
    font-size: clamp(36px,4vw,50px);
    line-height: 1.1;
}

.contact-page-form-grid > div:first-child h2 span {
    display: block;
    color: #d62f83;
}

.contact-page-form-grid > div:first-child p {
    color: #667085;
    line-height: 1.8;
}


/* FORM CARD */

.contact-page-form {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 18px;
    padding: 32px;
    background: #ffffff;
    border: 1px solid #e4e6ee;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(31,40,70,.08);
}

.contact-page-form .form-group {
    display: flex;
    flex-direction: column;
}

.contact-page-form .form-group.full {
    grid-column: 1 / -1;
}

.contact-page-form label {
    margin-bottom: 8px;
    color: #182033;
    font-size: 13px;
    font-weight: 700;
}

.contact-page-form label span {
    color: #d62f83;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d7dae4;
    border-radius: 11px;
    background: #ffffff;
    color: #182033;
    font-family: "Century Gothic",CenturyGothic,AppleGothic,Arial,sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color .2s ease,box-shadow .2s ease,background .2s ease;
}

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

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
    border-color: #d62f83;
    box-shadow: 0 0 0 4px rgba(214,47,131,.08);
}


/* REQUIRED FIELDS */

.contact-page-form .required-field input,
.contact-page-form .required-field select {
    border-left: 4px solid #d62f83;
    background: #fffafd;
}


/* SUBMIT BUTTON */

.contact-page-form > button {
    grid-column: 1 / -1;
    min-height: 52px;
    margin-top: 5px;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(100deg,#d62f83,#a747d4);
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(214,47,131,.20);
}

.contact-page-form > button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(214,47,131,.26);
}


/* FINAL CTA */

.final-cta {
    margin-bottom: 70px;
}

.contact-whatsapp-btn {
    background: #25D366 !important;
    border: 1px solid #25D366 !important;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(37,211,102,.22);
}

.contact-whatsapp-btn:hover {
    background: #1ebe5d !important;
    border-color: #1ebe5d !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}


/* TABLET */

@media (max-width:980px) {

    .contact-page-hero-grid,
    .contact-page-form-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }
}


/* MOBILE */

@media (max-width:640px) {

    .contact-page-hero {
        padding: 78px 0 65px;
    }

    .contact-page-copy h1 {
        font-size: 42px;
    }

    .contact-page-details {
        grid-template-columns: 1fr;
    }

    .contact-page-form-section {
        padding: 70px 0;
    }

    .contact-page-form {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    .contact-page-form .form-group,
    .contact-page-form .form-group.full {
        grid-column: 1 / -1;
    }

    .final-cta {
        margin-bottom: 45px;
    }
}