.contact-hero {
    padding-top: 80px;
    text-align: center;
    background-color: #33145E;
}

.contact-hero h1{
    font-size: 36px;
    line-height: 45px;
}

.contact-hero .page-header-content{
    margin-bottom: 0;
}

.contact-hero .page-description{
    margin-bottom: 0;
}
.contact-hero.page-intro-section::before{
    display: none;
}
/* Contact Form Section */
.contact-form-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #33145E;
}

.contact-form-container {
    background-color: #000000;
    border-radius: 16px;
    padding: 32px 24px;
    max-width: 770px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 54px;
}

.contact-form-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-content textarea {
    height: 280px;
    resize: vertical;
}

.privacy-notice {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 300;
    font-size: 10px;
    line-height: 13px;
    color: #5b5b5b;
    margin: 0;
}

.privacy-link {
    font-weight: 400;
    color: #ffffff;
    text-decoration: underline;
}

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

.contact-us-submit-button {
    padding-top: 14px;
    padding-bottom: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-form-section {
    padding-left: 0px;
    padding-right: 0px;
  }
    .contact-form-row {
        flex-direction: column;
        gap: 16px;
    }

    .contact-form-container {
        padding: 24px 16px;
    }

    .textarea-container {
        height: 200px;
    }
}


/* Loading Overlay Styles */
.vai-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    border-radius: 16px;
}

.vai-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top: 4px solid #ffffff;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Response Screen Styles */
.vai-response-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.vai-response-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 480px;
    padding: 24px;
}

.vai-response-icon {
    margin-bottom: 24px;
}

.vai-response-title {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 35px;
    color: #ffffff;
    margin-bottom: 16px;
}

.vai-response-message {
    font-family: 'Lexend Deca', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #a6a4a4;
    margin-bottom: 32px;
}

.vai-response-button {
    width: 100%;
    max-width: 320px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.vai-success .vai-response-title {
    color: #2FBF71;
}

.vai-error .vai-response-title {
    color: #FF5252;
}

/* Ensure form container has position relative for absolute positioning of overlay */
.contact-form-container {
    position: relative;
}

@media screen and (max-width: 1200px) {
  .contact-form-container{
    max-width: 100%;
    margin: 0 auto;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .vai-response-content {
        padding: 16px;
    }

    .vai-response-title {
        font-size: 24px;
        line-height: 30px;
    }

    .vai-response-message {
        font-size: 14px;
        line-height: 20px;
    }

    .contact-hero {
      padding-top: 40px;
    }
}