/* ===== 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 WITH ORIGINAL BRAND COLORS ===== */
.social-links {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #1a1a1a;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1;
    text-align: center;
}

.social-links a i {
    font-size: 1.6rem;
    color: white;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1;
    transition: all 0.3s ease;
}

/* Instagram - Original gradient look */
.social-links a:hover {
    transform: translateY(-6px) scale(1.05);
}

.social-links a:hover i {
    transform: scale(1.1);
}

/* Individual brand colors on hover */
.social-links a:nth-child(1):hover {
    background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    box-shadow: 0 8px 20px rgba(214, 36, 159, 0.4);
}

.social-links a:nth-child(1):hover i {
    color: white;
}

/* LinkedIn - Original blue */
.social-links a:nth-child(2):hover {
    background: #0077b5;
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
}

.social-links a:nth-child(2):hover i {
    color: white;
}

/* Facebook - Original blue */
.social-links a:nth-child(3):hover {
    background: #1877f2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.social-links a:nth-child(3):hover i {
    color: white;
}

/* WhatsApp - Original green */
.social-links a:nth-child(4):hover {
    background: #25D366;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.social-links a:nth-child(4):hover i {
    color: white;
}

/* Keep icons visible with brand colors even without hover - optional subtle tint */
.social-links a:nth-child(1) i {
    color: #d62976;
}

.social-links a:nth-child(2) i {
    color: #0077b5;
}

.social-links a:nth-child(3) i {
    color: #1877f2;
}

.social-links a:nth-child(4) i {
    color: #25D366;
}

/* On hover, icons become white with colored background */
.social-links a:hover i {
    color: white !important;
}

/* ===== 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;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .social-links a {
        width: 48px;
        height: 48px;
    }
    
    .social-links a i {
        font-size: 1.4rem;
    }
    
    .social-links {
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .social-links a {
        width: 44px;
        height: 44px;
    }
    
    .social-links a i {
        font-size: 1.3rem;
    }
    
    .social-links {
        gap: 14px;
    }
}