/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: #333333;
}

/* All Headings Use Sora Font */
h1, h2, h3, h4, h5, h6,
.contact-form-title,
.contact-info-title,
.info-card-title,
.footer-heading {
    font-family: 'Sora', sans-serif;
}

/* Contact Us Container */
.contact-us-container {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf0 100%);
}

/* Banner Section */
.contact-banner {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 300px;
    overflow: hidden;
    margin-top: 0; /* No margin since navbar is transparent initially */
}

.banner-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-content {
    text-align: center;
    color: white;
    z-index: 10;
}

.banner-title {
    font-family: 'Sora', sans-serif;
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Responsive Banner */
@media (max-width: 768px) {
    .contact-banner {
        height: 30vh;
        min-height: 200px;
        margin-top: 0;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-banner {
        height: 25vh;
        min-height: 180px;
        margin-top: 0;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 0.9rem;
    }
}

/* Additional form styling overrides */
.contact-form input,
.contact-form textarea,
.contact-form select {
    background: #ffffff !important;
    color: #333333 !important;
    border: 2px solid #e0e0e0 !important;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    background: #ffffff !important;
    color: #333333 !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666666 !important;
    opacity: 1 !important;
}
