/* 
 * File: contact.css
 * Purpose: Styles for the "Reach Us" section on the index page.
 * Notes: Applies to the contact cards and social links.
 */

/* Contact card styling */
.contact-card {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Hover effect for contact cards */
.contact-card:hover {
    transform: translateY(-5px); /* Lift up */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); /* Stronger shadow */
}

/* Heading styling */
.contact-card h5 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: var(--teal); /* Teal color */
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Underline for headings */
.contact-card h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--teal);
    border-radius: 3px;
}

/* Contact link styling */
.contact-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    margin: 5px 0;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    background: rgba(0, 0, 0, 0.03); /* Light background */
    color: #333 !important;
}

/* Hover effect for contact links */
.contact-link:hover {
    background: var(--teal);
    color: white !important;
    transform: translateX(5px);
}

/* Icon in contact links */
.contact-link i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Social link styling */
.social-link {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    margin: 5px 0;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    background: rgba(0, 0, 0, 0.03);
    color: #333 !important;
}

/* Hover effect for social links */
.social-link:hover {
    transform: translateX(5px);
    color: white !important;
}

/* Specific hover colors for social platforms */
.social-link.facebook:hover {
    background: linear-gradient(45deg, #3b5998, #4267B2); /* Facebook blue */
}

.social-link.whatsapp:hover {
    background: linear-gradient(45deg, #25D366, #128C7E); /* WhatsApp green */
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); /* Instagram gradient */
}

/* Icon in social links */
.social-link i {
    margin-right: 10px;
    font-size: 1.1rem;
}