/* Enhanced Contact/Application Sections */

.application-section,
.contact-cta-section {
    margin-top: 80px;
    padding: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.application-wrapper {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 32px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.application-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.15), transparent 70%);
    pointer-events: none;
}

.application-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.application-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.application-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.modern-input,
.modern-select,
.modern-textarea {
    width: 100%;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 16px;
    transition: all 0.3s;
}

.modern-input:focus,
.modern-select:focus,
.modern-textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.modern-input::placeholder,
.modern-textarea::placeholder {
    color: var(--text-muted);
}

.modern-textarea {
    resize: vertical;
    min-height: 140px;
    font-family: var(--font-main);
}

.modern-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%2300f5ff' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.submit-btn {
    padding: 20px 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
    box-shadow: 0 8px 24px rgba(0, 245, 255, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 245, 255, 0.4);
}

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

.direct-contact {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.direct-contact p {
    color: var(--text-muted);
    font-size: 15px;
}

.email-highlight {
    color: var(--accent-blue);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.email-highlight:hover {
    color: var(--accent-purple);
}

/* Responsive */
@media (max-width: 768px) {
    .application-wrapper {
        padding: 50px 30px;
    }

    .application-title {
        font-size: 32px;
    }

    .application-subtitle {
        font-size: 17px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        width: 100%;
    }
}