/* ============================================================
   Contact Us Page
   ============================================================ */

.huc-contact-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
}

/* ---- Left: info panel ---- */
.huc-contact-info {
    position: relative;
    flex: 1 1 60%;
    min-width: 0;
    padding: 3.5rem 4rem 3.5rem 2.75rem;
    border-radius: 24px;
    overflow: hidden;
    background: radial-gradient(circle at 15% 20%, rgba(var(--huc-orange-rgb), 0.16), transparent 45%),
        linear-gradient(135deg, #0c1119 0%, var(--huc-blue-clr) 55%, #0c1119 100%);
    color: var(--huc-white-clr);
}

.huc-contact-eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--huc-orange-clr);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.huc-contact-title {
    margin: 0 0 1rem;
    font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.375rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--huc-white-clr);
}

.huc-contact-title__highlight {
    color: var(--huc-orange-clr);
}

.huc-contact-desc {
    max-width: 30rem;
    margin: 0 0 2rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.huc-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.huc-contact-details__item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.huc-contact-details__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--huc-orange-clr);
    font-size: 1.125rem;
}

.huc-contact-details__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.9375rem;
}

.huc-contact-details__text strong {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8125rem;
    font-weight: 600;
}

.huc-contact-details__text a,
.huc-contact-details__text span {
    color: var(--huc-white-clr);
    font-weight: 700;
    text-decoration: none;
}

.huc-contact-details__text a:hover {
    color: var(--huc-orange-clr);
}

/* ---- Right: form card ---- */
.huc-contact-form-card {
    position: relative;
    flex: 0 0 auto;
    width: 460px;
    max-width: 100%;
    align-self: center;
    margin-left: -110px;
    padding: 2.25rem;
    border-radius: 20px;
    background-color: var(--huc-white-clr);
    box-shadow: 0 25px 60px rgba(var(--huc-blue-rgb), 0.18);
    z-index: 2;
}

.huc-contact-form-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.huc-contact-form-card__head h2 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--huc-darkGray-clr);
}

.huc-contact-form-card__deco {
    color: var(--huc-orange-clr);
    font-size: 1.375rem;
    transform: rotate(20deg);
}

.huc-contact-field {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1rem;
    border: 1px solid var(--huc-outline-stroke);
    border-radius: 10px;
    background-color: var(--huc-white-clr);
}

.huc-contact-field:focus-within {
    border-color: var(--huc-accent-clr);
    box-shadow: 0 0 0 3px rgba(var(--huc-accent-rgb), 0.1);
}

.huc-contact-field i {
    flex-shrink: 0;
    color: var(--huc-gray-clr);
    font-size: 0.9375rem;
}

.huc-contact-field--textarea {
    align-items: flex-start;
}

.huc-contact-field--textarea i {
    margin-top: 0.2rem;
}

.huc-contact-field input,
.huc-contact-field textarea {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.875rem;
    color: var(--huc-darkGray-clr);
    font-family: inherit;
}

.huc-contact-field textarea {
    resize: none;
}

.huc-contact-field input::placeholder,
.huc-contact-field textarea::placeholder {
    color: var(--huc-gray-clr);
}

.huc-contact-agree {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin: 0;
    font-size: 0.8125rem;
    color: var(--huc-gray-clr);
    cursor: pointer;
}

.huc-contact-agree input {
    margin-top: 0.2rem;
    accent-color: var(--huc-accent-clr);
}

.huc-contact-agree a {
    color: var(--huc-accent-clr);
    font-weight: 600;
    text-decoration: underline;
}

.huc-contact-agree a:hover {
    color: var(--huc-orange-clr);
}

.huc-contact-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem;
    border: none;
    border-radius: 10px;
    background-color: var(--huc-orange-clr);
    color: var(--huc-white-clr);
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color var(--transition-base), transform var(--transition-base);
}

.huc-contact-submit:hover {
    background-color: var(--huc-orange-dark-clr);
    transform: translateY(-1px);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .huc-contact-wrap {
        flex-direction: column;
    }

    .huc-contact-info {
        padding: 3rem 2rem;
        border-radius: 20px 20px 0 0;
    }

    .huc-contact-form-card {
        width: 100%;
        margin-left: 0;
        margin-top: -2.5rem;
        border-radius: 20px;
    }
}

@media (max-width: 575.98px) {
    .huc-contact-info {
        padding: 2.25rem 1.25rem;
        border-radius: 16px 16px 0 0;
    }

    .huc-contact-title {
        text-align: left;
    }

    .huc-contact-form-card {
        padding: 1.5rem;
        margin-top: -1.5rem;
        border-radius: 16px;
    }

    .huc-contact-form-card__head h2 {
        font-size: 1.125rem;
    }
}

/* ============================================================
   Get in Touch — channel cards
   ============================================================ */

.huc-contact-channels-head {
    text-align: center;
    margin-bottom: 2.5rem;
}

.huc-contact-channels-head h2 {
    position: relative;
    display: inline-block;
    margin: 0 0 0.9rem;
    padding-bottom: 0.75rem;
    font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
    font-weight: 800;
    color: var(--huc-darkGray-clr);
}

.huc-contact-channels-head h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    border-radius: 999px;
    background-color: var(--huc-orange-clr);
}

.huc-contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.huc-contact-channel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    padding: 0 1.25rem 1.75rem;
    border-right: 1px solid var(--huc-outline-stroke);
}

.huc-contact-channel:last-child {
    border-right: none;
}

.huc-contact-channel__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 0.4rem;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--huc-orange-clr) 14%, var(--huc-white-clr));
    color: var(--huc-orange-clr);
    font-size: 1.5rem;
}

.huc-contact-channel__icon--whatsapp {
    background-color: var(--huc-green-clr);
    color: var(--huc-white-clr);
}

.huc-contact-channel h3 {
    margin: 0;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--huc-darkGray-clr);
}

.huc-contact-channel p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--huc-gray-clr);
}

.huc-contact-channel__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: auto;
    padding: 0.5rem 0.75rem;
    border-radius: 999px;
    background-color: var(--huc-orange-clr);
    color: var(--huc-white-clr);
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.huc-contact-channel__btn:hover {
    opacity: 0.85;
    color: var(--huc-white-clr);
    transform: translateY(-1px);
}

.huc-contact-channel__btn--whatsapp {
    background-color: var(--huc-green-clr);
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .huc-contact-channels-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 2rem;
    }

    .huc-contact-channel {
        border-right: none;
        border-bottom: 1px solid var(--huc-outline-stroke);
        padding-bottom: 1.5rem;
    }

    .huc-contact-channel:nth-child(3n) {
        border-right: none;
    }

    .huc-contact-channel:nth-last-child(-n+3) {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .huc-contact-channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .huc-contact-channel:nth-last-child(-n+3) {
        border-bottom: 1px solid var(--huc-outline-stroke);
        padding-bottom: 1.5rem;
    }

    .huc-contact-channel:nth-last-child(-n+2) {
        border-bottom: none;
        padding-bottom: 0;
    }

    .huc-contact-channel__icon {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
}

/* ============================================================
   "Let's Build Something Amazing Together" CTA banner
   ============================================================ */

.huc-contact-cta-card {
    display: flex;
    align-items: stretch;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(var(--huc-blue-rgb), 0.1);
}

.huc-contact-cta-left {
    position: relative;
    flex: 1 1 58%;
    min-width: 0;
    padding: 3rem 3rem 3.5rem;
    overflow: hidden;
    background: radial-gradient(circle at 85% 15%, rgba(var(--huc-orange-rgb), 0.18), transparent 45%),
        linear-gradient(120deg, #0c1119 0%, var(--huc-blue-clr) 60%, #0c1119 100%);
    color: var(--huc-white-clr);
}

.huc-contact-cta-left h2 {
    max-width: 26rem;
    margin: 0 0 1rem;
    font-size: clamp(1.4rem, 1.1rem + 1.3vw, 2rem);
    font-weight: 800;
    line-height: 1.3;
}

.huc-contact-cta-left h2 span {
    color: var(--huc-orange-clr);
}

.huc-contact-cta-left p {
    max-width: 22rem;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.huc-contact-cta-deco {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-top: 2rem;
    border-radius: 50%;
    background-color: rgba(var(--huc-orange-rgb), 0.16);
    color: var(--huc-orange-clr);
    font-size: 1.375rem;
    transform: rotate(-15deg);
}

.huc-contact-cta-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex: 1 1 42%;
    gap: 2rem 1.5rem;
    padding: 3rem 2.25rem;
    background-color: var(--huc-lightGray-clr);
}

.huc-contact-cta-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.huc-contact-cta-feature i {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--huc-orange-clr);
    font-size: 1.375rem;
}

.huc-contact-cta-feature h4 {
    margin: 0 0 0.15rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--huc-darkGray-clr);
}

.huc-contact-cta-feature p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--huc-gray-clr);
}

/* ---- Responsive ---- */
@media (max-width: 767.98px) {
    .huc-contact-cta-card {
        flex-direction: column;
        border-radius: 20px;
    }

    .huc-contact-cta-left,
    .huc-contact-cta-right {
        flex: 1 1 auto;
        width: 100%;
    }

    .huc-contact-cta-left {
        padding: 2.25rem 1.5rem 2.5rem;
    }

    .huc-contact-cta-right {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
}

@media (max-width: 420px) {
    .huc-contact-channels-grid {
        grid-template-columns: 1fr;
    }

    .huc-contact-channel {
        border-bottom: 1px solid var(--huc-outline-stroke);
        padding-bottom: 1.5rem;
    }

    .huc-contact-channel:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* ============================================================
   "Still have questions?" call bar
   ============================================================ */

.huc-contact-callbar {
    padding: 0 0 4rem;
    background-color: var(--huc-bg-clr);
}

.huc-contact-callbar-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    background-color: var(--huc-lightGray-clr);
    border: 1px solid var(--huc-outline-stroke);
}

.huc-contact-callbar-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.huc-contact-callbar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--huc-white-clr);
    color: var(--huc-accent-clr);
    font-size: 1.25rem;
}

.huc-contact-callbar-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.huc-contact-callbar-text strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--huc-darkGray-clr);
}

.huc-contact-callbar-text span {
    font-size: 0.8125rem;
    color: var(--huc-gray-clr);
}

.huc-contact-callbar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.huc-contact-callbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity var(--transition-base), transform var(--transition-base),
        background-color var(--transition-base), color var(--transition-base);
}

.huc-contact-callbar-btn:hover {
    transform: translateY(-1px);
}

.huc-contact-callbar-btn--call {
    background-color: var(--huc-accent-clr);
    color: var(--huc-white-clr);
    border: 1px solid var(--huc-accent-clr);
}

.huc-contact-callbar-btn--call:hover {
    opacity: 0.9;
    color: var(--huc-white-clr);
}

.huc-contact-callbar-btn--whatsapp {
    background-color: var(--huc-white-clr);
    color: var(--huc-green-clr);
    border: 1px solid var(--huc-green-clr);
}

.huc-contact-callbar-btn--whatsapp:hover {
    background-color: var(--huc-green-clr);
    color: var(--huc-white-clr);
}

/* ---- Responsive ---- */
@media (max-width: 575.98px) {
    .huc-contact-callbar-card {
        padding: 1.25rem;
    }

    .huc-contact-callbar-info {
        width: 100%;
    }

    .huc-contact-callbar-actions {
        width: 100%;
    }

    .huc-contact-callbar-btn {
        flex: 1 1 auto;
        justify-content: center;
    }
}
