.contact-hero {
    text-align: center;
    padding: 100px 10%;
    background: linear-gradient(rgba(46, 26, 71, 0.6), rgba(46, 26, 71, 0.5)),
        url('contact.jpg') center/cover;

    color: white;
}

.contact-hero h1 {
    font-size: 48px;
    font-family: "Playfair Display";
    margin-bottom: 10px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
}


/* Contact Wrapper */
.contact-wrapper {
    display: flex;
    gap: 50px;
    padding: 80px 10%;
    background: #F8F5FA;
    border-radius: 18px;
    max-width: 1200px;
    margin: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-left,
.contact-right {
    flex: 1;
}

.contact-left h2 {
    font-size: 28px;
    color: #2E1A47;
    margin-bottom: 15px;
}

/* Form */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #DDD;
    border-radius: 8px;
    background: #fff;
    font-size: 15px;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #6B5B95;
    box-shadow: 0 0 6px #4B3C75 ;
}

.contact-form button {
    background: linear-gradient(135deg, #4B3C75, #4B3C75);
    padding: 14px 35px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.contact-form button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}


/* Contact Info */
.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 12px;
    color: #2E1A47;
}

.contact-info i {
    background: #F0E8F5;
    color: #822880;
    padding: 10px;
    border-radius: 50%;
    font-size: 18px;
}

@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
        padding: 50px 5%;
    }

    .contact-hero h1 {
        font-size: 36px;
    }
}


/* Map */
.contact-map iframe {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-wrapper {
        flex-direction: column;
    }
}


/* FOOTER */
.footer-section {
    background-color: #2E1A47;
    color: #ffffff;
    padding: 70px 20px;
    /* Adjusted padding */
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-about,
.footer-links,
.footer-contact {
    flex: 1 1 280px;
}

.footer-about h3 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 600;
    background: linear-gradient(90deg, #B8A1D9, #6B5B95);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 5px;
}

.footer-about span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: #B8A1D9;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.footer-about p {
    line-height: 1.7;
    color: #EDE6F7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #B8A1D9;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #B8A1D9;
}

.footer-contact p,
.footer-contact a {
    color: #EDE6F7;
    font-size: 15px;
    line-height: 1.6;
    word-break: break-word;
    /* Prevents overflow */
}

.footer-social a {
    margin-right: 12px;
    font-size: 22px;
    color: #ffffff;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #B8A1D9;
    transform: scale(1.15);
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #4A3D5F;
    color: #CFC9DD;
    font-size: 14px;
}