/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 60px 0 80px;
}

.contact-section .section-subtitle,
.contact-section>h2 {
    display: block;
    width: 100%;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 32px;
    align-items: start;
}

.contact-info p {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.contact-info i {
    width: 32px;
    color: var(--yellow);
    font-size: 1.4rem;
}

/* ===== SOCIAL ICONS ===== */
.social-links {
    display: flex;
    gap: 24px;
    margin-top: 32px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #1a1a1a;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s ease;
    line-height: 1;
    text-align: center;
}

.social-links a i {
    font-size: 1.4rem;
    color: white;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.social-links a:hover {
    background: var(--yellow);
    transform: translateY(-4px);
}

.social-links a:hover i {
    color: #000000;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: #0a0a0a;
    padding: 32px;
    border-radius: 28px;
}

.form-group {
    margin-bottom: 20px;
}

input,
textarea {
    width: 100%;
    padding: 14px 18px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    color: white;
    font-size: 1rem;
    transition: 0.2s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--yellow);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    background: var(--yellow);
    color: black;
    font-weight: 700;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
}

.form-submit:hover {
    background: #e0a800;
    color: black;
}