/* ---- Contact Us Specific Styles ---- */

.xhp-contact__hero {
    background-size: cover;
    background-position: center;
    background-color: #0f2b4c;
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
}
.xhp-contact__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.xhp-contact__hero-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 2;
}
.xhp-contact__hero-content {
    max-width: 50%;
    text-align: left;
}
.xhp-contact__hero-desc {
    font-size: 20px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0;
}

.xhp-contact__main {
    padding: 60px 0 80px;
    background: #fff;
}
.xhp-contact__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}
.xhp-contact__grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
.xhp-contact__info {
    flex: 0 1 auto;
    min-width: 300px;
}
.xhp-contact__info-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}
.xhp-contact__info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}
.xhp-contact__info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.xhp-contact__info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: var(--xhp-accent);
    background: var(--xhp-accent-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.xhp-contact__info-icon svg {
    width: 22px;
    height: 22px;
}
.xhp-contact__info-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--xhp-primary);
    margin: 0 0 2px;
}
.xhp-contact__info-item p {
    font-size: 14px;
    color: #555;
    margin: 0;
}
.xhp-contact__info-item a {
    color: var(--xhp-accent);
    text-decoration: none;
    transition: color 0.2s;
}
.xhp-contact__info-item a:hover {
    color: var(--xhp-accent-hover);
    text-decoration: underline;
}

.xhp-contact__whatsapp {
    margin-top: 10px;
}
.xhp-btn--whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    border: none;
}
.xhp-btn--whatsapp:hover {
    background: #1DA851;
    color: #fff;
    transform: translateY(-2px);
}
.xhp-btn--whatsapp svg {
    width: 24px;
    height: 24px;
}

.xhp-contact__form-wrap {
    flex: 0 0 60%;
    max-width: 1000px;
}
.xhp-contact__form-box {
    background: var(--xhp-gray-light);
    padding: 40px 35px;
    border-radius: 8px;
}
.xhp-contact__form-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--xhp-primary);
    margin: 0 0 25px;
}
.xhp-contact__form-box .xhp-form-row--two {
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    margin-bottom: 16px;
}
.xhp-contact__form-box .xhp-form-row--two .xhp-form-field {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
    min-width: 0;
}
.xhp-contact__form-box .xhp-form-row--submit {
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .xhp-contact__grid {
        flex-direction: column;
        gap: 40px;
    }
    .xhp-contact__form-wrap {
        max-width: 100%;
        width: 100%;
    }
    .xhp-contact__hero-content {
        max-width: 70%;
    }
}
@media (max-width: 768px) {
    .xhp-contact__hero {
        min-height: 30vh;
    }
    .xhp-contact__hero-content {
        max-width: 100%;
    }
    .xhp-contact__hero-desc {
        font-size: 16px;
    }
    .xhp-contact__form-box {
        padding: 25px 20px;
    }
    .xhp-contact__form-box .xhp-form-row--two {
        flex-wrap: wrap;
    }
    .xhp-contact__form-box .xhp-form-row--two .xhp-form-field {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .xhp-contact__form-box .xhp-form-row--submit {
        flex-wrap: wrap;
        justify-content: center;
    }
    .xhp-contact__form-box .xhp-contact-status {
        margin-right: 0;
        width: 100%;
        text-align: center;
        margin-bottom: 6px;
    }
}
@media (max-width: 480px) {
    .xhp-contact__info-items {
        gap: 16px;
    }
    .xhp-contact__info-item {
        gap: 12px;
    }
}