.contact-section-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.contact-hero-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.contact-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.contact-main-heading {
    font-size: 48px;
    font-weight: bold;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
}

.contact-sub-heading {
    font-size: 18px;
    margin: 0;
    font-weight: 300;
}

.contact-content-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: -50px auto 50px;
    padding: 0 20px;
    position: relative;
}

.contact-form-section {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 30px 0;
    color: #333;
}

.contact-form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-input-field {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.form-full-width {
    width: 100%;
}

.form-textarea-field {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
    font-family: Arial, sans-serif;
}

.form-checkbox-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-checkbox-input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.form-checkbox-label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.form-link-text {
    color: #007bff;
    text-decoration: none;
}

.form-link-text:hover {
    text-decoration: underline;
}

.form-required-note {
    font-size: 13px;
    color: #3159d7;
    margin: 0;
}

.form-submit-btn {
    padding: 12px 30px;
    background:  #3a5fb0;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.form-submit-btn:hover {
    background: #0056b3;
}

.contact-info-sidebar {
    width: 380px;
    flex-shrink: 0;
}

.contact-info-card {
    background: #3a5fb0;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon-box {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-info-text {
    flex: 1;
}

.contact-info-heading {
    font-size: 16px;
    font-weight: bold;
    color: white;
    margin: 0 0 5px 0;
}

.contact-info-details {
    font-size: 14px;
    color: white;
    margin: 0;
    line-height: 1.5;
}

.form-success-message {
    margin-top: 15px;
    color: #198754;
    font-size: 14px;
    text-align: center;
}


.form-error-message {
    margin-top: 15px;
    color: #dc3545;
    font-size: 14px;
    text-align: center;
}

.field-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

@media (max-width: 992px) {
    .contact-content-container {
        flex-direction: column;
        margin-top: -30px;
    }
    
    .contact-info-sidebar {
        width: 100%;
    }
    
    .contact-main-heading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .form-row-dual {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        padding: 25px;
    }
    
    .contact-hero-banner {
        height: 200px;
    }
    
    .contact-main-heading {
        font-size: 28px;
    }
    
    .contact-sub-heading {
        font-size: 14px;
    }
}