/* Enhanced Request Talent Page Styles */

/* Enhanced Page Hero */
.page-hero.request-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--brand-navy);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--navy-darker) 0%, 
        rgba(35, 26, 112, 0.8) 50%, 
        rgba(41, 171, 226, 0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 4rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(41, 171, 226, 0.2);
    border: 2px solid var(--brand-cyan);
    color: var(--brand-cyan);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    animation: pulse 1.5s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: var(--brand-white);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

.hero-title .text-cyan {
    color: var(--brand-cyan);
    text-shadow: 0 0 30px rgba(41, 171, 226, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--brand-white);
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s;
    animation-fill-mode: both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--brand-white);
    animation: fadeInUp 0.8s ease 0.6s;
    animation-fill-mode: both;
}

.hero-feature i {
    font-size: 1.5rem;
    color: var(--brand-cyan);
}

.hero-feature span {
    font-weight: 600;
    font-size: 1.125rem;
}

.hero-cta {
    animation: fadeInUp 0.8s ease 0.8s;
    animation-fill-mode: both;
}

.btn-scroll {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: var(--brand-white);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(41, 171, 226, 0.3);
}

.btn-scroll:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(41, 171, 226, 0.4);
}

.btn-scroll i {
    animation: bounce 2s ease-in-out infinite;
}

.hero-urgent {
    margin-top: 1.5rem;
    color: var(--brand-white);
    font-size: 1.125rem;
    opacity: 0.9;
}

.hero-urgent strong {
    color: var(--brand-cyan);
    font-size: 1.25rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(5px); }
    60% { transform: translateY(3px); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-hero.request-hero {
        min-height: 80vh;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
    
    .hero-feature {
        font-size: 1rem;
    }
    
    .hero-feature i {
        font-size: 1.25rem;
    }
    
    .btn-scroll {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Urgent Banner Enhancement */
.urgent-banner {
    background: var(--gradient-primary);
    color: var(--brand-white);
    padding: 1rem 0;
    text-align: center;
    position: sticky;
    top: 70px;
    z-index: 900;
    box-shadow: 0 4px 20px var(--navy-alpha-30);
    animation: slideDown 0.5s ease;
}

.urgent-banner p {
    margin: 0;
    color: var(--brand-white);
    font-weight: 700;
    font-size: 1.125rem;
}

.urgent-banner i {
    color: var(--brand-cyan);
    margin-right: 0.75rem;
    animation: pulse 1s ease infinite;
}

/* Form Section Enhancement */
.form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(241, 245, 249, 0.5) 100%);
}

.form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Form Styling Enhancement */
.request-form {
    background: var(--brand-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 50px var(--navy-alpha-20);
    position: relative;
    overflow: hidden;
}

.request-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.form-section-title {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--brand-cyan);
    position: relative;
}

.form-section-title h2 {
    font-size: 1.75rem;
    color: var(--brand-navy);
    margin: 0;
}

.form-section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--brand-navy);
    transition: width 0.3s ease;
}

.form-section-title:hover::after {
    width: 150px;
}

/* Form Groups Enhancement */
.form-group {
    margin-bottom: 2rem;
    position: relative;
}

label {
    display: block;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: var(--brand-cyan);
    font-weight: 700;
}

/* Input Styling Enhancement */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

input:hover,
select:hover,
textarea:hover {
    border-color: var(--cyan-alpha-50);
    background: var(--brand-white);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--brand-cyan);
    box-shadow: 0 0 0 4px var(--cyan-alpha-20);
    transform: translateY(-2px);
    background: var(--brand-white);
}

input.error,
select.error,
textarea.error {
    border-color: var(--brand-navy);
    background: rgba(35, 26, 112, 0.05);
}

.error-message {
    position: absolute;
    bottom: -20px;
    left: 0;
    color: var(--brand-navy);
    font-size: 0.875rem;
    font-weight: 600;
}

.helper-text {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    font-style: italic;
}

/* Checkbox and Radio Enhancement */
.checkbox-group,
.radio-group {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.checkbox-item,
.radio-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.checkbox-item:hover,
.radio-item:hover {
    background: var(--cyan-alpha-10);
}

input[type="checkbox"],
input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--brand-cyan);
    cursor: pointer;
}

/* Button Styling Enhancement */
.btn-submit {
    background: var(--gradient-primary);
    color: var(--brand-white);
    padding: 1rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 5px 25px var(--navy-alpha-30);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--navy-alpha-40);
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Info Sidebar Enhancement */
.info-sidebar {
    position: sticky;
    top: 150px;
}

.info-card {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px var(--navy-alpha-10);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.info-card h3 {
    color: var(--brand-navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card h3 i {
    color: var(--brand-cyan);
    font-size: 1.5rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.info-card li i {
    color: var(--brand-cyan);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Contact Card Enhancement */
.contact-card {
    background: var(--gradient-primary-dark);
    color: var(--brand-white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.contact-card h3 {
    color: var(--brand-white);
    margin-bottom: 1rem;
}

.contact-info {
    margin: 1.5rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--brand-white);
}

.contact-item i {
    color: var(--brand-cyan);
    font-size: 1.25rem;
}

.contact-item a {
    color: var(--brand-white);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--brand-cyan);
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, var(--brand-cyan) 0%, var(--cyan-darker) 100%);
    color: var(--brand-white);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 25px var(--cyan-alpha-30);
    animation: slideInRight 0.5s ease;
}

.success-message i {
    font-size: 2rem;
}

/* Loading State */
.btn-submit:disabled {
    background: var(--navy-alpha-50);
    cursor: not-allowed;
    transform: none;
}

.btn-submit:disabled:hover {
    transform: none;
    box-shadow: 0 5px 25px var(--navy-alpha-30);
}

/* Button Variants */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--brand-white);
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px var(--navy-alpha-30);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--navy-alpha-40);
    color: var(--brand-white);
}

.btn-block {
    width: 100%;
    text-align: center;
    display: block;
}

/* Process Mini Steps */
.process-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.process-step-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    position: relative;
}

.process-step-mini:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--brand-cyan);
    opacity: 0.3;
}

.step-number-mini {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: var(--brand-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 3px 15px var(--navy-alpha-30);
}

.process-step-mini span {
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
}

/* Sidebar Image */
.sidebar-image {
    margin-top: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--navy-alpha-20);
}

.sidebar-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    background: var(--gradient-primary);
    padding: 1rem;
    text-align: center;
}

.image-caption p {
    margin: 0;
    color: var(--brand-white);
    font-weight: 600;
}

/* Enhanced Checkbox Styles */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--brand-cyan);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--brand-cyan);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--brand-white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .info-sidebar {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 3rem 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .request-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group,
    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}