/* Contact Page Styles */
.contact-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.contact-hero {
    padding: 60px 20px 40px;
    text-align: center;
    color: white;
}

.contact-hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
}

.contact-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .contact-hero-title {
        font-size: 1.8rem;
    }
}

.contact-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-card-icon.building { background: #e8f5e9; color: #4caf50; }
.contact-card-icon.address { background: #e3f2fd; color: #2196f3; }
.contact-card-icon.phone { background: #fff3e0; color: #ff9800; }
.contact-card-icon.email { background: #fce4ec; color: #e91e63; }
.contact-card-icon.wechat { background: #e8f5e9; color: #07c160; }
.contact-card-icon.hours { background: #f3e5f5; color: #9c27b0; }

.contact-card-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px;
}

.contact-card-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.contact-card-content a {
    color: #667eea;
    text-decoration: none;
}

.contact-card-content a:hover {
    text-decoration: underline;
}
