
/* Contact Page Styles */
.contact-page {
    padding-bottom: 80px;
}

.contact-hero {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 50px;
}

.contact-hero h1 {
    font-size: 36px;
    color: #333;
    font-weight: 700;
}

/* Reusing Home Contact Styles but making them more prominent */
.main-contact-section {
    margin-bottom: 80px;
}

.main-contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.main-contact-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.main-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.main-contact-icon {
    font-size: 40px;
    color: #000;
    margin-bottom: 20px;
}

.main-contact-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.main-contact-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.btn-contact {
    display: inline-block;
    padding: 10px 25px;
    background-color: #000;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-contact:hover {
    background-color: #333;
}

/* Other Emails Section */
.other-emails-section {
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 28px;
    color: #333;
}

.email-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.email-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.email-card:hover {
    border-color: #ccc;
    background-color: #fafafa;
}

.email-icon {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.email-details h4 {
    font-size: 14px;
    color: #888;
    margin-bottom: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.email-details a {
    font-size: 16px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.email-details a:hover {
    text-decoration: underline;
}
