/* ===== contact PAGE STYLES ===== */

/* contact Hero Section */
.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 !important;
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 2.8rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact {
    padding: 5rem 0;
}

.contact-info {
    background-color: #fdf2f8;
    border-radius: 1rem;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: #223366;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.2rem;
    color: #e41975;
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: #223366;
    margin-bottom: 0.3rem;
}

.contact-details p,
.contact-details a {
    color: #64748b;
    margin-bottom: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-details a:hover {
    color: #e41975;
}

.contact-form {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #223366;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.form-control {
    height: 50px;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: #e41975;
}

textarea.form-control {
    height: auto;
    min-height: 150px;
}

.submit-btn {
    background: linear-gradient(135deg, #fe6440 0%, #f62d67 50%, #e41975 100%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Social Media Links */
.social-links {
    margin-top: 2rem;
}

.social-links h5 {
    font-size: 1.1rem;
    color: #223366;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    color: #e41975;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
    background: linear-gradient(135deg, #fe6440 0%, #f62d67 50%, #e41975 100%);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact {
        padding: 3rem 0;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

    .contact-info {
        margin-bottom: 2rem;
    }
}