/* Contact Page Styles */
.contact-hero {
    min-height: 100vh;
    padding: 10rem 2rem 4rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInUp 1s ease;
}

.contact-header h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.contact-header p {
    font-size: 1.3rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-content {
    animation: fadeInUp 1s ease 0.2s both;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.phone-icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.1));
    border: 2px solid rgba(99, 102, 241, 0.3);
    color: #6366f1;
}

.whatsapp-icon {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), rgba(37, 211, 102, 0.1));
    border: 2px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.email-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e4e7eb;
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #6366f1;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #8b5cf6;
    transform: translateX(5px);
}

[dir="rtl"] .contact-link:hover {
    transform: translateX(-5px);
}

.card-description {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Social Section */
.social-section {
    margin-bottom: 4rem;
}

.social-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-card svg {
    transition: transform 0.3s ease;
}

.social-card span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e4e7eb;
}

.social-card.facebook {
    border-color: rgba(24, 119, 242, 0.3);
}

.social-card.facebook:hover {
    border-color: rgba(24, 119, 242, 0.6);
    box-shadow: 0 20px 60px rgba(24, 119, 242, 0.3);
    transform: translateY(-10px);
}

.social-card.facebook svg {
    color: #1877f2;
}

.social-card.linkedin {
    border-color: rgba(10, 102, 194, 0.3);
}

.social-card.linkedin:hover {
    border-color: rgba(10, 102, 194, 0.6);
    box-shadow: 0 20px 60px rgba(10, 102, 194, 0.3);
    transform: translateY(-10px);
}

.social-card.linkedin svg {
    color: #0a66c2;
}

.social-card.github {
    border-color: rgba(255, 255, 255, 0.2);
}

.social-card.github:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.social-card.github svg {
    color: #e4e7eb;
}

.social-card:hover svg {
    transform: scale(1.2) rotate(5deg);
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-actions .btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: rgba(99, 102, 241, 0.1);
    color: #e4e7eb;
    border: 2px solid rgba(99, 102, 241, 0.3);
}

.btn-secondary:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero {
        padding: 8rem 1.5rem 3rem;
    }

    .contact-header h1 {
        font-size: 2.5rem;
    }

    .contact-header p {
        font-size: 1.1rem;
    }

    .contact-cards,
    .social-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .quick-actions {
        flex-direction: column;
        width: 100%;
    }

    .quick-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 2rem;
    }
}