.contact-section {
    max-width: 1200px;
    margin: 100px auto 150px auto;
    padding: 0 5vw;
}

.contact-subtitle {
    color: #94a3b8;
    font-size: 20px;
    margin-top: -30px;
    margin-bottom: 50px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-card i {
    font-size: 48px;
    color: transparent;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.contact-card h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card p {
    color: #94a3b8;
    font-size: 16px;
    margin: 0;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.1);
    transform: translateY(-8px);
}

.contact-card:hover i {
    transform: scale(1.1);
}

/* Form Styles */
.glass-form {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.custom-input {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    padding: 12px 16px;
    border-radius: 12px;
}

.custom-input:focus {
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15) !important;
    border-color: #6366f1 !important;
}

.custom-input::placeholder {
    color: #64748b;
}

.custom-btn {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border: none;
    color: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
    color: white;
}
