/* Contact Page Styles */
.contact-stat {
    text-align: center;
}

.contact-stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.contact-stat-icon svg {
    width: 24px;
    height: 24px;
    color: #60A5FA;
}

.contact-stat-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: var(--font-display);
}

.contact-stat-desc {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 4px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleY(1);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(8px);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.email-icon {
    background: rgba(59, 130, 246, 0.1);
}

.phone-icon {
    background: rgba(147, 51, 234, 0.1);
}

.whatsapp-icon {
    background: rgba(37, 211, 102, 0.1);
}

.contact-card-icon svg {
    width: 32px;
    height: 32px;
}

.email-icon svg {
    color: #60A5FA;
}

.phone-icon svg {
    color: #C4B5FD;
}

.whatsapp-icon svg {
    color: #25D366;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-content {
    flex: 1;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.contact-card-desc {
    color: var(--gray-400);
    margin-bottom: 16px;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #60A5FA;
    transition: all 0.3s ease;
}

.contact-card-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.contact-card-link:hover svg {
    transform: translateX(4px);
}

.whatsapp-link {
    color: #25D366;
}

.whatsapp-card {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(37, 211, 102, 0.2);
}

.whatsapp-card::before {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.whatsapp-card:hover {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(37, 211, 102, 0.4);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.1);
}

/* Office Hours Card */
.office-hours-card {
    padding: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.office-hours-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(59, 130, 246, 0.2);
}

.hours-icon {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.hours-icon svg {
    width: 32px;
    height: 32px;
    color: #60A5FA;
}

.office-hours-card:hover .hours-icon {
    transform: scale(1.1);
}

.hours-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.hours-desc {
    color: var(--gray-400);
}

@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        padding: 24px;
    }
    
    .contact-card-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }
    
    .contact-card-icon svg {
        width: 28px;
        height: 28px;
    }
    
    .office-hours-card {
        padding: 32px 24px;
    }
}
