/* Standalone page styling for presentation/individual testing */
body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    font-family: 'Outfit', sans-serif;
}

/* Full-width full-bleed blue background banner wrapper */
.thank-you-banner-wrapper {
    width: 100%;
    background-color: var(--color-navy-deep, #074975);
    color: var(--color-white, #ffffff);
    box-shadow: 0 10px 30px rgba(7, 73, 117, 0.15);
    box-sizing: border-box;
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Container matching responsive width and paddings of .top-bar-container */
.thank-you-container {
    max-width: 1728px;
    width: 100%;
    margin: 0 auto;
    padding: 0 150px;
    box-sizing: border-box;
}

/* Layout for content inside container */
.thank-you-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.65625rem 0 2.15625rem 0;
    gap: 40px;
}

/* Content grouping */
.thank-you-text {
    display: flex;
    flex-direction: column;
    gap: 17px;
    padding-top: 0.75rem;
}

/* Styling matching typography */
.thank-you-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    line-height: 40px;
    letter-spacing: 0;
    margin: 0;
}

.thank-you-subtitle {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0;
    margin: 0;
    color: var(--color-white, #ffffff);
    padding-top: 7px;
}

.thank-you-desc {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

/* Close button container styling */
.thank-you-close-wrapper {
    margin-top: 4px;
}

/* Reusing and overriding search-close-btn for the banner context */
.thank-you-close-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0);
    border: none;
    border-radius: 8px;
    color: var(--color-white, #ffffff);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.thank-you-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.thank-you-close-btn:active {
    transform: translateY(0);
}

.thank-you-close-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease;
}

.thank-you-close-btn:hover svg {
    transform: rotate(90deg);
}

/* Micro-animations */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE STYLES MATCHING .top-bar-container BREAKPOINTS
   ────────────────────────────────────────────────────────── */

/* Desktop - Above 1540px */
@media (min-width: 1541px) {
    .thank-you-container {
        padding-left: clamp(6rem, 15.046vw, 16.25rem);
        padding-right: clamp(6rem, 15.046vw, 16.25rem);
    }
}

/* Desktop - 1281px to 1540px */
@media (min-width: 1281px) and (max-width: 1540px) {
    .thank-you-container {
        padding: 0 9.375rem;
    }
}

/* Desktop - 1025px to 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .thank-you-container {
        padding: 0 5rem;
    }
}

/* Tablet - 871px to 1024px */
@media (min-width: 871px) and (max-width: 1024px) {
    .thank-you-container {
        padding: 0 3.125rem;
    }
}

/* Tablet - 768px to 870px */
@media (min-width: 768px) and (max-width: 870px) {
    .thank-you-container {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

/* Mobile - 0px to 767.98px */
@media (max-width: 767.98px) {
    .thank-you-container {
        padding: 0 1rem;
    }

    .thank-you-title {
        font-size: 32px;
    }

    .thank-you-subtitle {
        font-size: 24px;
    }

    .thank-you-desc {
        font-size: 14px;
    }
}

/* Responsive Content Layout Adaptations */
@media (max-width: 900px) {
    .thank-you-banner-content {
        padding: 32px 0;
        flex-direction: column-reverse;
        align-items: flex-end;
        gap: 24px;
    }

    .thank-you-text {
        width: 100%;
    }

    .thank-you-close-wrapper {
        align-self: flex-end;
    }
}

/* ──────────────────────────────────────────────────────────
   WHAT HAPPENED NEXT SECTION
   ────────────────────────────────────────────────────────── */

.what-next-section {
    padding: 40px 0 24px 0;
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
    opacity: 0;
}

/* Horizontal Divider Lines */
.what-next-divider {
    width: 100%;
    height: 2px;
    background-color: var(--color-sky-cyan, #50D8FF);
    margin: 0;
    border: none;
}

.what-next-header {
    margin-top: 0;
    margin-bottom: 50px;
}

.what-next-title {
    color: #064974;
    leading-trim: both;
    text-edge: cap;
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.964px;
    text-transform: capitalize;
    margin: 0 0 24px 0;
}

.what-next-desc {
    color: #000;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 0;
}

/* Recommended Program Card */
.recommended-card {
    border-radius: 16px;
    background: #28323C;
    padding: 10px 10px 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(40, 50, 60, 0.08);
}

.recommended-card-info {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 0;
}

.recommended-badge {
    color: #F8F8F8;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16.5px;
    letter-spacing: 0.944px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.recommended-title {
    color: #F5F5F5;
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -0.554px;
    margin: 0 0 24px 0;
}

.recommended-desc {
    color: #D2D2D2;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 25.5px;
    letter-spacing: -0.234px;
    margin: 0 0 30px 0;
}

/* Ask Chatbot Pill Button */
.chatbot-btn {
    width: 181px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: var(--color-white, #ffffff);
    color: #000;
    border: none;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 19.5px;
    letter-spacing: -0.076px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chatbot-btn:hover {
    background-color: var(--color-surface-muted, #F0F1F2);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.chatbot-btn:active {
    transform: translateY(0);
}

.chatbot-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

/* Recommended Card Image */
.recommended-card-image {
    width: 404.652px;
    aspect-ratio: 404.652 / 288.361;
    min-height: 288.361px;
    flex-shrink: 0;
    max-width: 100%;
    display: flex;
}

.recommended-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE LAYOUT FOR WHAT HAPPENED NEXT
   ────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
    .recommended-card {
        padding: 32px;
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .what-next-section {
        padding: 40px 0 24px 0;
    }

    .recommended-card {
        flex-direction: column;
        align-items: stretch;
        padding: 32px 24px;
        gap: 32px;
    }

    .recommended-card-image {
        width: 100%;
        height: auto;
        min-height: unset;
        max-height: 320px;
        max-width: 100%;
        aspect-ratio: 404.652 / 288.361;
        overflow: hidden;
    }

    .recommended-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 767.98px) {
    .recommended-title {
        font-size: 28px;
    }

    .what-next-desc {
        font-size: 14px;
    }

    .recommended-badge {
        font-size: 14px;
    }

    .recommended-desc {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .what-next-title {
        font-size: 28px;
    }

    .recommended-title {
        font-size: 24px;
    }

    .recommended-desc {
        margin-bottom: 24px;
    }

    .chatbot-btn {
        /* width: 100%; */
        justify-content: center;
        padding: 12px 24px;
    }
}

/* ──────────────────────────────────────────────────────────
   PROGRAM INFORMATION SECTION
   ────────────────────────────────────────────────────────── */

.program-info-section {
    padding: 24px 0;
    background-color: #ffffff;
}

.program-info-header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 30px;
    width: 100%;
}

.program-info-header-line {
    flex-grow: 1;
    height: 1px;
    background: #ACB4BC;
}

.program-info-header-title {
    color: #28323C;
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.964px;
    text-transform: capitalize;
    white-space: nowrap;
    margin: 0;
}

.program-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

/* Base Card Style */
.program-info-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--Base-UI-Light-ffffff, #FFF);
    border: 1px solid var(--color-gray-ui, #DADEE0);
    border-radius: 8px;
    padding: 16px;
    text-decoration: none;
    box-shadow: 0 2px 16px 0 rgba(40, 50, 60, 0.16);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    position: relative !important;
    height: 275px;
}

.program-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(7, 73, 117, 0.08);
}

.program-info-card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 16px;
}

.program-info-card-title-text {
    color: var(--Primary-Two-007ACC, #007ACC);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    padding-right: 32px;
}

.program-info-card-arrow {
    color: var(--Primary-Two-007ACC, #007ACC);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
}

.program-info-card:hover .program-info-card-arrow {
    transform: translate(3px, -3px);
}

.program-info-card-arrow svg {
    width: 24px;
    height: 24px;
}

.program-info-card-desc {
    color: var(--Base-UI-Four-28323C, #28323C);
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Special 6th Card (Need Help) */
.program-info-card-help {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--color-gray-ui, #DADEE0);
    border: 1px solid var(--color-gray-ui, #DADEE0);
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 16px 0 rgba(40, 50, 60, 0.16);
    box-sizing: border-box;
    height: 275px;
}

.program-info-card-help-title {
    color: #000;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.program-info-card-help-desc {
    color: #000;
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    margin: 0 0 20px 0;
}

.program-info-chatbot-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 173px;
    gap: 8px;
    padding: 12px 24px;
    background: #000000;
    color: #FBFDFF;
    border: none;
    border-radius: 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 19.5px;
    letter-spacing: -0.076px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.program-info-chatbot-btn:hover {
    background: #222222;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.program-info-chatbot-btn:active {
    transform: translateY(0);
}

.program-info-chatbot-btn svg {
    width: 18px;
    height: 18px;
}

/* ──────────────────────────────────────────────────────────
   RESPONSIVE LAYOUT FOR PROGRAM INFORMATION
   ────────────────────────────────────────────────────────── */

@media (max-width: 1350px) {
    .program-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .program-info-grid {
        gap: 24px;
    }

    .program-info-card,
    .program-info-card-help {
        padding: 16px;
    }

    .program-info-card-title-text {
        padding-right: 24px;
    }
}

@media (max-width: 900px) {
    .program-info-section {
        padding: 24px 0;
    }

    .program-info-header-container {
        gap: 5px;
        margin-bottom: 30px;
    }

    .program-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 767.98px) {
    .program-info-header-title {
        font-size: 28px;
    }

    .program-info-card-title-text {
        font-size: 18px;
    }

    .program-info-card-desc {
        font-size: 14px;
    }

    .program-info-card-help-title {
        font-size: 18px;
    }

    .program-info-card-help-desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .program-info-header-title {
        white-space: normal;
        text-align: center;
    }

    .program-info-header-line {
        display: none;
    }
}

/* ──────────────────────────────────────────────────────────
   ADDITIONAL CONTACT INFORMATION SECTION
   ────────────────────────────────────────────────────────── */

.additional-contact-section {
    padding: 50px 0 30px 0;
    background-color: #ffffff;
}

.additional-contact-title {
    color: #064974;
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.964px;
    text-transform: capitalize;
    margin: 0 0 30px 0;
    text-align: left;
}

.additional-contact-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.additional-contact-campus {
    color: #000;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    text-transform: uppercase;
    margin: 0 0 12px 0;
}

.additional-contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.additional-contact-line {
    color: #000;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    margin: 0;
}

.additional-contact-line.phone-line a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.additional-contact-line.phone-line a:hover {
    color: var(--color-accent-blue, #007ACC);
    text-decoration: underline;
}

/* Responsive styles for Additional Contact Section */
@media (max-width: 767.98px) {
    .additional-contact-section {
        padding: 50px 0 30px 0;
    }

    .additional-contact-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .additional-contact-campus {
        font-size: 18px;
        margin: 0 0 12px 0;
    }

    .additional-contact-line {
        font-size: 14px;
        line-height: 26px;
    }
}

/*--------------------------------------------------------------
# Utility States
--------------------------------------------------------------*/

.uair-hidden {
	display: none !important;
}

.uair-text-center {
	text-align: center;
}

.uair-mb-0 {
	margin-bottom: 0 !important;
}

.uair-mt-0 {
	margin-top: 0 !important;
}

/*--------------------------------------------------------------
# Loading State
--------------------------------------------------------------*/

.uair-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    gap: 12px;
    min-height: 120px;
}

.uair-loading span {
    color: #000;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

.uair-loading .loading-dot {
    display: inline-block;
    animation: loadingDotJump 1.2s infinite ease-in-out;
}

.uair-loading .loading-dot:nth-child(1) {
    animation-delay: 0s;
}

.uair-loading .loading-dot:nth-child(2) {
    animation-delay: 0.15s;
}

.uair-loading .loading-dot:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes loadingDotJump {
    0%, 30%, 100% {
        transform: translateY(0);
    }
    15% {
        transform: translateY(-10px);
    }
}

.uair-loading-icon-wrapper {
    width: 36px;
    height: 36px;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    transform-style: preserve-3d;
}

.uair-loading-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-box: fill-box;
    transform-origin: 50% 50% 0;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    shape-rendering: geometricPrecision;
    animation: searchLoadingSpin 4.8s linear infinite;
}

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

.uair-loading-icon path {
    animation: unitekPulse 2.4s ease-in-out infinite;
}

.uair-loading-icon path:nth-child(1) {
    animation-delay: 0s;
}

.uair-loading-icon path:nth-child(2) {
    animation-delay: -1.8s;
}

.uair-loading-icon path:nth-child(3) {
    animation-delay: -1.2s;
}

.uair-loading-icon path:nth-child(4) {
    animation-delay: -0.6s;
}

@keyframes unitekPulse {
    0%, 100% {
        opacity: 1;
    }
    25% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.4;
    }
    75% {
        opacity: 0.7;
    }
}

/*--------------------------------------------------------------
# Empty / Error State
--------------------------------------------------------------*/

.uair-empty,
.uair-error {

	padding: 32px;
	margin: 32px 0;

	border: 1px solid #e5e7eb;
	border-radius: 12px;

	background: #fafafa;

	text-align: center;

}

.uair-empty p,
.uair-error p {

	margin: 0;

	font-size: 16px;
	line-height: 1.7;

	color: #4b5563;

}

.uair-error {

	border-color: #f5c2c7;

	background: #fff5f5;

}

.uair-error p {

	color: #842029;

}