/* ===================================
   CONTACT SECTION STYLES
   ===================================
*/

.contact {
    position: relative;
    padding: 120px 60px 100px;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.95)), url('/assets/images/background_contact (2).png') no-repeat center/cover;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.12), transparent 55%);
    pointer-events: none;
}

.contact-header {
    max-width: 720px;
    margin: 0 auto 60px;
}

.contact-header p {
    color: #d1d5db;
    font-size: 18px;
}

.contact-recruitment {
    margin-top: 10px;
    font-size: 16px;
    color: #f5f5f5;
    letter-spacing: 0.02em;
}

.contact-grid {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    text-align: left;
}

.contact-info-card h3 {
    margin-top: 0;
    color: #ffd700;
    font-size: 20px;
}

.contact-info-card p {
    color: #e5e7eb;
    line-height: 1.6;
}

.contact-info-card ul {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info-card ul li {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: #f3f4f6;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.contact-info-card ul li span {
    color: #9ca3af;
    font-weight: 500;
}

.contact-info-card ul li a {
    color: #f9fafb;
    text-decoration: none;
}

.contact-subsection {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-subsection h4 {
    margin: 0 0 6px;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffd700;
}

.contact-subsection p {
    margin: 0;
    color: #d1d5db;
    line-height: 1.5;
}

.contact-form {
    padding: 35px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 900px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-size: 14px;
    color: #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact input,
.contact textarea,
.contact select {
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #ffd700 50%), linear-gradient(135deg, #ffd700 50%, transparent 50%);
    background-position: calc(100% - 24px) calc(50% - 3px), calc(100% - 18px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

.contact input:focus,
.contact textarea:focus,
.contact select:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

.contact textarea {
    resize: vertical;
    min-height: 160px;
}

.full-width {
    grid-column: span 2;
}

.form-actions {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact button {
    padding: 16px 40px;
    background: #ffd700;
    color: #0a0a0a;
    font-weight: bold;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}

.contact button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 30px rgba(255, 215, 0, 0.35);
}

.contact-feedback {
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.contact-feedback[hidden] {
    display: none !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-form {
        order: 2;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 80px 25px;
    }

    .contact-form {
        grid-template-columns: minmax(0, 1fr);
        padding: 30px 20px;
    }

    .full-width,
    .form-actions {
        grid-column: span 1;
    }

    .contact button {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 60px 15px;
    }

    .contact-header p {
        font-size: 16px;
    }

    .contact-info-card {
        padding: 20px;
    }
}
