
   /* CONTACT PAGE STYLES */

.contact-hero {
    text-align: center;
    padding: 3rem 0;
    background-color: var(--dawn-pink-clr);
    margin-bottom: 3rem;
}

.contact-hero h1 {
    color: var(--dark-browm-clr);
    font-size: 3rem;
}

/* --- Contact Cards Grid --- */
.contact-grid-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--dawn-pink-clr);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.icon-circle i {
    font-size: 1.5rem;
    color: var(--orange-clr);
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-browm-clr);
}

.contact-card p {
    color: var(--gray-clr);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-link {
    text-decoration: none;
    color: var(--orange-clr);
    font-weight: bold;
    font-size: 1.1rem;
}

/* --- Split Section (Socials + Form) --- */
.contact-split {
    align-items: flex-start; 
    gap: 4rem;
}

.social-side, .form-side {
    flex: 1;
    min-width: 300px;
}

.big-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-btn i {
    font-size: 1.5rem;
    color: white;
}

/* Brand Colors for Socials */
.facebook { background-color: #1877F2; }
.instagram { background-color: #E4405F; }
.twitter { background-color: #1DA1F2; }

.social-btn:hover {
    transform: scale(1.1);
}

/* Form Box Styling */
.email-form-box {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.email-form-box h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}