/* Custom HireHub CSS - Resolving Alignment & Spacing */

.hh-contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 80vh;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hh-contact-card {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1000px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hh-sidebar {
    flex: 1;
    padding: 40px;
}

.hh-form-container {
    flex: 2;
    padding: 40px;
}

/* Resolution: Enforcing 2rem margin on the container class */
.col-md-12 {
    margin-bottom: 2rem !important;
    width: 100%;
    display: block;
}

.hh-sidebar h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hh-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 1rem;
    display: block;
}

/* Resolution: Normalizing Select Height to match Input Height */
/* Standard inputs usually result in ~46px to 48px height with 12px padding */
.hh-select-field {
    height: 48px; 
    line-height: 1.5;
    background-color: white;
}

.hh-phone-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.hh-col-3 { flex: 0 0 30%; }
.hh-col-9 { flex: 0 0 70%; }

.hh-btn {
    background-color: #f97316;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    transition: background 0.3s ease;
}

.hh-captcha-container {
    margin-bottom: 2rem;
}

.hh-contact-info p {
    margin-bottom: 15px;
    color: #ffffff;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .hh-contact-card { flex-direction: column; }
    .hh-phone-row { flex-direction: column; }
}

.send_message {
    margin-top: 1rem;
}