/* Hire Us Section */
.hire-us-section {
    background-color: #0d0d0d;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('../img/crowd-bg.jpg');
    /* You might need a background image here or just dark color */
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    position: relative;
    border-top: 2px solid var(--secondary-color);
}

.hire-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hire-header .section-title {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hire-header .highlight {
    color: var(--primary-color);
    text-shadow: 2px 2px 0 #fff;
}

.hire-header .subtitle {
    font-size: 1.5rem;
    color: #ccc;
    font-weight: 300;
}

.hire-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.95);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

/* Form Styles */
.hire-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.form-group-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
}

.hire-form input,
.hire-form select,
.hire-form textarea {
    width: 100%;
    padding: 1rem;
    background: #111;
    border: 2px solid #333;
    color: #fff;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hire-form input:focus,
.hire-form select:focus,
.hire-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 10px rgba(255, 0, 153, 0.2);
}

.btn-submit {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    box-shadow: 0 0 15px rgba(255, 0, 153, 0.4);
    display: block;
    width: 100%;
}

.btn-submit:hover {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 0, 153, 0.8);
    transform: translateY(-3px);
}

/* Quick Contact */
.quick-contact {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 2rem;
}

.quick-contact p {
    color: #999;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

.btn-whatsapp i {
    margin-right: 10px;
    font-size: 1.3rem;
}

.contact-email {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    transition: color 0.3s;
}

.contact-email:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icons a {
    color: #666;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .hire-header .section-title {
        font-size: 2.5rem;
    }

    .form-group-row {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hire-content {
        padding: 2rem;
        width: 100%;
        /* Ensure full width usage */
    }
}

/* Recaptcha Centering */
.recaptcha-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
}