/* ===================================================================
 * Contact Page Styles - contact.css
 *
 * ------------------------------------------------------------------- */

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    padding: 0 2rem;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

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

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    fill: #ff6b35;
}

.contact-card h3 {
    font-size: 2.5rem !important;  /* Larger heading */
    margin-bottom: 1.5rem;
    color: #333;
}

.contact-card p {
    color: #666;
    line-height: 1.8;
    margin: 0.5rem 0;
    font-size: 1.9rem !important;  /* Larger paragraph text */
}

.contact-card a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 1.9rem !important;  /* Larger links */
}

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

.contact-header {
    text-align: center;
    padding: 4rem 2rem 2rem;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-header p {
    font-size: 2.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1.5rem;
    }

    .contact-header a {
        font-size: 1.5rem;
    }
}