/* ========================================
   FONTS
   ======================================== */

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../resources/Font/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('../resources/Font/PlusJakartaSans-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Material Symbols Outlined';
    src: url('../resources/Icons/Material_Symbols_Outlined/MaterialSymbolsOutlined-VariableFont_FILL,GRAD,opsz,wght.ttf') format('truetype');
    font-weight: 100 700;
    font-display: swap;
}

/* ========================================
   CSS CUSTOM PROPERTIES
   ======================================== */

:root {
    --black: #000000;
    --white: #FFFFFF;
    --gray: #5E5E5E;
    --blue: #1B4D9F;
    --light-blue: #AAC6F4;
    --yellow: #FCCC02;
    --faq-radius: 10px;
}

/* ========================================
   BASE
   ======================================== */

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    line-height: 137%;
    color: var(--black);
}

.text-yellow {
    color: var(--yellow);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, .h1 {
    font-size: 61px;
    font-weight: 700;
    line-height: 120%;
}

h2, .h2 {
    font-size: 49px;
    font-weight: 600;
    line-height: 120%;
}

h3, .h3 {
    font-size: 39px;
    font-weight: 400;
    line-height: 120%;
}

h4, .h4 {
    font-size: 31px;
    font-weight: 600;
    line-height: 120%;
}

h5, .h5 {
    font-size: 25px;
    font-weight: 400;
    line-height: 127%;
}

h6, .h6 {
    font-size: 20px;
    font-weight: 400;
    line-height: 149%;
}

.body-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 137%;
}

.body-bold {
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
}

.body-small {
    font-size: 13px;
    font-weight: 400;
    line-height: 120%;
}

.caption {
    font-size: 10px;
    font-weight: 400;
    line-height: 120%;
    font-variant: all-small-caps;
    letter-spacing: 1.3px;
}

.body-small-bold {
    font-size: 13px;
    font-weight: 400;
    line-height: 120%;
}

/* ========================================
   ICONS
   ======================================== */

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    padding: 20px 40px;
    border-radius: 4px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-yellow {
    background-color: var(--yellow);
    color: var(--black);
    border: none;
}

.btn-yellow:hover,
.btn-yellow:focus {
    background-color: var(--blue);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--black);
    border: none;
}

.btn-white:hover,
.btn-white:focus {
    background-color: var(--yellow);
    color: var(--black);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover,
.btn-outline-white:focus {
    background-color: var(--yellow);
    border-color: var(--yellow);
    color: var(--black);
}

/* ========================================
   HERO
   ======================================== */

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Homepage hero — full viewport, video background */
.hero-home {
    height: 100vh;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.35);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}

.hero-home .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.00) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-play-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 2;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--white);
    opacity: 0.6;
    transition: opacity 0.3s ease;
    width: 56px;
    height: 56px;
}

.hero-play-btn:hover {
    opacity: 1;
}

.hero-play-btn .material-symbols-outlined {
    font-size: 28px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-play-btn .progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.hero-play-btn .progress-ring__bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.25);
    stroke-width: 2;
}

.hero-play-btn .progress-ring__fill {
    fill: none;
    stroke: var(--white);
    stroke-width: 2;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

/* ========================================
   QUICK FACTS
   ======================================== */

.quick-facts-section {
    position: relative;
    isolation: isolate;
    background-color: #D5E4FC;
    padding: 80px 0;
}

.quick-facts-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        rgba(27, 77, 159, 0.18) 0%,
        transparent 52%
    );
    pointer-events: none;
    z-index: 0;
}

.quick-facts-section > .container {
    position: relative;
    z-index: 1;
}

.quick-facts-eyebrow {
    color: var(--blue);
}

.quick-facts-title {
    max-width: 800px;
}

.quick-facts-grid {
    margin-top: 60px;
    --bs-gutter-x: 36px;
    --bs-gutter-y: 36px;
}

.quick-facts-grid > [class*="col-"] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.quick-facts-section.is-visible .quick-facts-grid > [class*="col-"] {
    opacity: 1;
    transform: translateY(0);
}

.quick-facts-section.is-visible .quick-facts-grid > [class*="col-"]:nth-child(1) {
    transition-delay: 0.06s;
}

.quick-facts-section.is-visible .quick-facts-grid > [class*="col-"]:nth-child(2) {
    transition-delay: 0.18s;
}

.quick-facts-section.is-visible .quick-facts-grid > [class*="col-"]:nth-child(3) {
    transition-delay: 0.3s;
}

.quick-fact-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.quick-fact-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.quick-fact-suffix {
    display: inline-block;
}

.text-blue {
    color: var(--blue);
}

/* ========================================
   POPULAR SERVICES
   ======================================== */

.popular-services-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.popular-services-row {
    --bs-gutter-x: 80px;
}

.popular-services-row > [class*="col-"] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.popular-services-section.is-visible .popular-services-row > [class*="col-"] {
    opacity: 1;
    transform: translateY(0);
}

.popular-services-section.is-visible .popular-services-row > [class*="col-"]:first-child {
    transition-delay: 0.08s;
}

.popular-services-section.is-visible .popular-services-row > [class*="col-"]:last-child {
    transition-delay: 0.24s;
}

.popular-services-card {
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(10, 28, 58, 0.67) 29.81%, rgba(27, 77, 159, 0.67) 100%),
                url('../resources/Images/sten-rademaker-UZUzvJEvKnI-unsplash (1).jpg') lightgray 50% / cover no-repeat;
    padding: 60px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.popular-services-card-copy {
    margin-top: 24px;
    max-width: 500px;
}

.popular-services-card-btn {
    margin-top: auto;
}

.popular-services-eyebrow {
    color: var(--blue);
}

.popular-services-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-service-item {
    display: grid;
    grid-template-columns: 81px 1fr;
    gap: 20px;
    align-items: start;
}

.popular-service-icon-box {
    width: 81px;
    height: 81px;
    border-radius: 4px;
    background-color: var(--light-blue);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popular-service-item p {
    margin-top: 8px;
}

.popular-service-item h5 {
    font-weight: 600;
}

.text-gray {
    color: var(--gray);
}

/* ========================================
   SCROLL REVEAL
   ======================================== */

.fade-in-section {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade-in-section,
    .fade-in-section.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ========================================
   NAPA CERTIFIED BANNER
   ======================================== */

.napa-certified-section {
    background-color: #f5f5f5;
    padding-bottom: 80px;
}

.napa-certified-banner {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background-color: var(--blue);
    padding: 60px;
}

.napa-certified-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 1.2px, transparent 1.2px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.napa-certified-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.napa-certified-content h4 {
    margin-top: 12px;
}

.napa-certified-content h6 {
    margin-top: 48px;
}

.napa-certified-badge {
    position: absolute;
    right: -72px;
    bottom: -122px;
    width: 430px;
    height: 430px;
    object-fit: cover;
    z-index: 1;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials-section {
    background-color: #E7E7E7;
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-eyebrow {
    color: var(--blue);
}

.testimonials-carousel {
    margin-top: 56px;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 36px;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px;
    flex: 0 0 clamp(290px, 42vw, 470px);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 36px;
}

.testimonial-card h4 {
    font-weight: 600;
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-meta p {
    margin-top: 6px;
}

.testimonials-nav {
    margin-top: 48px;
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.testimonials-nav-btn {
    border: none;
    border-radius: 4px;
    background-color: var(--white);
    color: var(--black);
    padding: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.testimonials-nav-btn:hover,
.testimonials-nav-btn:focus {
    background-color: var(--light-blue);
    color: var(--blue);
}

@media (max-width: 991.98px) {
    .napa-certified-banner {
        padding: 48px 32px 280px;
    }

    .napa-certified-content {
        max-width: 100%;
    }

    .napa-certified-badge {
        right: -72px;
        bottom: -122px;
        width: 430px;
        height: 430px;
        transform: none;
    }

    .testimonial-card {
        min-height: 340px;
    }
}

@media (max-width: 767.98px) {
    .napa-certified-banner {
        padding: 36px 28px 280px;
    }

    .napa-certified-badge {
        right: -72px;
        bottom: -122px;
        width: 430px;
        height: 430px;
    }

    .testimonial-card {
        flex-basis: 100%;
        min-height: auto;
    }

    .testimonials-nav {
        justify-content: center;
    }
}

/* Inner page hero — 40vh, image background with blue overlay */
.hero-inner {
    position: relative;
    height: 40vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: inherit;
    background-size: inherit;
    background-position: inherit;
    background-repeat: inherit;
    filter: grayscale(100%);
    z-index: 0;
}

.hero-inner .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(14, 40, 83, 0.82) 0%, rgba(14, 40, 83, 0.82) 100%);
    z-index: 1;
}

.hero-inner .container {
    position: relative;
    z-index: 2;
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar .nav-link {
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .nav-link span {
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
}

.navbar .nav-link span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--yellow);
    transition: width 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--yellow);
}

.navbar .nav-link:hover span::after,
.navbar .nav-link:focus span::after {
    width: 50%;
}

.navbar .nav-link.active {
    color: var(--yellow);
}

.navbar .nav-link.active span::after {
    width: 100%;
}

.navbar .nav-link.nav-link-disabled,
.navbar.scrolled .nav-link.nav-link-disabled {
    pointer-events: none;
    opacity: 0.6;
}

.navbar .nav-link.nav-link-disabled span::after,
.navbar.scrolled .nav-link.nav-link-disabled span::after {
    width: 0;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Scrolled state */
.navbar.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-link {
    color: var(--black);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link:focus {
    color: var(--blue);
}

.navbar.scrolled .nav-link:hover span::after,
.navbar.scrolled .nav-link:focus span::after {
    background-color: var(--blue);
}

.navbar.scrolled .nav-link.active {
    color: var(--blue);
}

.navbar.scrolled .nav-link.active span::after {
    background-color: var(--blue);
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile collapse menu gets a solid background */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--white);
        border-radius: 4px;
        padding: 1rem;
        margin-top: 0.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .navbar-collapse .nav-link {
        color: var(--black);
    }

    .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link:focus {
        color: var(--blue);
    }

    .navbar-collapse .nav-link.active {
        color: var(--yellow);
    }

    .navbar-collapse .nav-link.active span::after {
        background-color: var(--yellow);
    }
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    color: var(--white);
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../resources/Images/barthelemy-de-mazenod-DI7E79H3joQ-unsplash.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    z-index: 0;
}

.site-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 50, 103, 0.82) 0%, rgba(17, 50, 103, 0.82) 100%);
    z-index: 1;
}

.site-footer > * {
    position: relative;
    z-index: 2;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    align-self: stretch;
    padding-bottom: 40px;
}

.footer-tagline {
    margin-top: 16px;
}

.footer-contact {
    gap: 20px;
}

.footer-contact a {
    transition: opacity 0.3s ease;
}

.footer-contact a:hover {
    opacity: 0.8;
}

.footer-divider {
    color: var(--white);
    opacity: 0.4;
    font-size: 20px;
    line-height: 1;
}

.footer-col-title {
    text-decoration: none;
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
    padding-bottom: 6px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 75%;
    height: 2px;
    background-color: var(--yellow);
}

.footer-columns {
    column-gap: 0;
}

.footer-columns > [class*="col"] + [class*="col"] {
    padding-left: 32px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links li,
.footer-links li a {
    font-size: 13px;
    font-weight: 400;
    line-height: 120%;
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links li a:hover,
.footer-links li a:focus {
    opacity: 1;
}

.footer-powered a {
    background-color: var(--white);
    border-radius: 4px;
    padding: 10px;
}

.footer-powered span {
    color: var(--black);
    opacity: 1;
}

.footer-powered img {
    width: 44px;
    height: auto;
}

.footer-hr {
    border-color: var(--white);
    opacity: 1;
    margin: 30px 0 20px;
}

.footer-copyright {
    margin-bottom: 0;
}

/* ========================================
   BANNER
   ======================================== */

.cta-banner {
    padding: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.80) 10.1%, rgba(0, 0, 0, 0.00) 100%),
                url('../resources/Images/mathias-reding-uik6NOy5QrE-unsplash.jpg') lightgray 50% / cover no-repeat;
}

.cta-banner-inner {
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-banner-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.cta-banner .btn-yellow:hover,
.cta-banner .btn-yellow:focus {
    background-color: var(--white);
    color: var(--black);
}

.cta-banner-careers {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.80) 10.1%, rgba(0, 0, 0, 0.00) 100%),
                url('../resources/Images/angry-_-kat-KlOw94HiuGc-unsplash.jpg') lightgray 50% / cover no-repeat;
    margin-bottom: 80px;
}

.cta-banner-careers-inner {
    gap: 40px;
    align-items: flex-end;
}

.cta-banner-careers .cta-banner-copy {
    max-width: 620px;
    gap: 24px;
}

.cta-banner-careers-logo {
    width: 290px;
    height: auto;
    max-width: 100%;
}

/* ========================================
   CONTACT FORM
   ======================================== */

.contact-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.contact-main-row > [class*="col-"] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.contact-section.is-visible .contact-main-row > [class*="col-"] {
    opacity: 1;
    transform: translateY(0);
}

.contact-section.is-visible .contact-main-row > [class*="col-"]:first-child {
    transition-delay: 0.08s;
}

.contact-section.is-visible .contact-main-row > [class*="col-"]:last-child {
    transition-delay: 0.24s;
}

.contact-details {
    margin-top: 20px;
}

.contact-detail-label {
    color: var(--gray);
}

.contact-form {
    width: 100%;
}

.form-divider {
    border-bottom: 2px solid var(--blue);
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.form-divider h6 {
    color: var(--blue);
}

.contact-label {
    display: block;
    margin-bottom: 12px;
}

.contact-input,
.contact-select,
.contact-textarea {
    width: 100%;
    border: none;
    border-radius: 8px;
    background-color: #E7E7E7;
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 137%;
    padding: 10px 14px;
    outline: none;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #7b7b7b;
    opacity: 1;
}

.contact-input-wrap {
    position: relative;
}

.contact-input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #5e5e5e;
    pointer-events: none;
    display: inline-flex;
}

.contact-select {
    appearance: none;
    padding-right: 44px;
    color: var(--black);
}

.contact-select:required:invalid {
    color: #7b7b7b;
}

.contact-select option[value=""] {
    color: #7b7b7b;
}

.contact-select option {
    color: var(--black);
}

.contact-textarea {
    min-height: 180px;
    resize: vertical;
}

.vehicle-type-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vehicle-chip {
    border: none;
    border-radius: 999px;
    background-color: #E7E7E7;
    color: #7b7b7b;
    font-size: 16px;
    font-weight: 400;
    line-height: 137%;
    padding: 8px 16px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.vehicle-chip:hover {
    background-color: #d7d7d7;
    color: #4f4f4f;
}

.vehicle-chip:active {
    background-color: #c7c7c7;
    color: #3f3f3f;
}

.vehicle-chip.is-selected {
    background-color: var(--blue);
    color: var(--white);
}

.contact-submit-btn {
    width: 100%;
    border-radius: 4px;
    background-color: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    min-height: 59px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus {
    background-color: #163f83;
    border-color: #163f83;
    color: var(--white);
}

.contact-submit-btn:disabled {
    background-color: #bcbcbc;
    border-color: #bcbcbc;
    color: #f3f3f3;
    cursor: not-allowed;
}

.contact-submit-btn:disabled:hover,
.contact-submit-btn:disabled:focus {
    background-color: #bcbcbc;
    border-color: #bcbcbc;
    color: #f3f3f3;
}

.contact-submit-btn .btn-spinner,
.contact-submit-btn .btn-success-icon,
.contact-submit-btn .btn-success-text {
    display: none;
}

.contact-submit-btn.is-loading {
    background-color: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    cursor: wait;
}

.contact-submit-btn.is-loading .btn-label {
    display: none;
}

.contact-submit-btn.is-loading .btn-spinner {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: btn-spin 0.7s linear infinite;
}

.contact-submit-btn.is-success {
    background-color: #1a9b4c;
    border-color: #1a9b4c;
    color: var(--white);
}

.contact-submit-btn.is-success .btn-label {
    display: none;
}

.contact-submit-btn.is-success .btn-success-icon {
    display: inline-flex;
    align-items: center;
}

.contact-submit-btn.is-success .btn-success-text {
    display: none;
}

.contact-submit-btn.is-success.show-confirmed-text .btn-success-icon {
    display: none;
}

.contact-submit-btn.is-success.show-confirmed-text .btn-success-text {
    display: inline-flex;
    align-items: center;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

.contact-submit-note {
    color: var(--gray);
}

/* ========================================
   FAQ
   ======================================== */

.faq-section {
    background-color: #f5f5f5;
    padding: 80px 0;
}

.faq-main-row > [class*="col-"] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.faq-section.is-visible .faq-main-row > [class*="col-"] {
    opacity: 1;
    transform: translateY(0);
}

.faq-section.is-visible .faq-main-row > [class*="col-"]:first-child {
    transition-delay: 0.08s;
}

.faq-section.is-visible .faq-main-row > [class*="col-"]:last-child {
    transition-delay: 0.24s;
}

.faq-cta-banner {
    margin-bottom: 80px;
}

.faq-eyebrow {
    color: var(--blue);
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-category {
    display: block;
    width: 100%;
    padding: 8px 14px;
    border-radius: 4px;
    color: var(--black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 137%;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-category:hover,
.faq-category:focus {
    background-color: #d9e4f8;
    color: var(--blue);
}

.faq-category.active {
    background-color: #cddaf2;
    color: var(--blue);
}

.faq-contact-card {
    background-color: #dedede;
    border-radius: 10px;
    padding: 24px;
}

.faq-contact-card .btn {
    padding: 14px 28px;
}

.faq-contact-card .btn-primary {
    background-color: var(--blue);
    border-color: var(--blue);
}

.faq-contact-card .btn-primary:hover,
.faq-contact-card .btn-primary:focus {
    background-color: #163f83;
    border-color: #163f83;
}

.faq-accordion .accordion-item {
    border: none;
    background: transparent;
    border-radius: var(--faq-radius);
    margin-bottom: 18px;
    overflow: hidden;
}

.faq-accordion {
    margin: 0 auto;
}

.faq-question {
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: var(--faq-radius);
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
}

.faq-question > span:first-child {
    flex: 1;
    display: block;
}

.faq-question::after {
    display: none;
}

.faq-question:not(.collapsed) {
    color: var(--black);
    background-color: transparent;
    box-shadow: none;
    border-radius: var(--faq-radius) var(--faq-radius) 0 0;
}

.faq-question.collapsed:hover,
.faq-question.collapsed:focus-visible {
    box-shadow: inset 0 0 0 1.5px var(--blue);
    border-radius: var(--faq-radius);
}

.faq-accordion .accordion-item:first-of-type .accordion-button,
.faq-accordion .accordion-item:last-of-type .accordion-button.collapsed,
.faq-accordion .accordion-item .accordion-button.collapsed {
    border-radius: var(--faq-radius);
}

.faq-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1.5px solid var(--blue);
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.faq-icon svg {
    position: absolute;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon-plus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-icon-minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-question:hover .faq-icon,
.faq-question:focus-visible .faq-icon {
    background-color: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

.faq-question:not(.collapsed) .faq-icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-question:not(.collapsed) .faq-icon-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-accordion .accordion-body {
    padding: 0 24px 24px;
    background-color: transparent;
    border-radius: 0 0 var(--faq-radius) var(--faq-radius);
}

.faq-accordion .accordion-item:has(.accordion-collapse.show) {
    background-color: #dedede;
}

.faq-accordion .accordion-body h6 {
    max-width: 92%;
}

@media (max-width: 991.98px) {
    .contact-section {
        padding: 64px 0;
    }

    .faq-section {
        padding: 64px 0;
    }

    .faq-cta-banner {
        margin-bottom: 64px;
    }

    .faq-contact-card {
        margin-bottom: 12px;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 48px 0;
    }

    .faq-section {
        padding: 48px 0;
    }

    .faq-cta-banner {
        margin-bottom: 48px;
    }

    .faq-question {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .cta-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-banner-careers-inner {
        gap: 24px;
    }
}

@media (max-width: 991.98px) {
    .footer-top {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-contact {
        align-self: stretch;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .footer-powered {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        margin-top: 24px;
    }
}

@media (max-width: 767.98px) {
    .footer-columns > [class*="col"] + [class*="col"] {
        padding-left: calc(var(--bs-gutter-x) * 0.5);
    }

    .footer-columns > .col-6,
    .footer-columns > .col-md-4 {
        width: 100%;
        flex: 0 0 100%;
    }

    .footer-columns > .col-md-4 {
        margin-bottom: 20px;
    }

    .footer-columns > .col-md-4:last-of-type {
        margin-bottom: 0;
    }

    .footer-contact {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 12px;
        width: 100%;
    }

    .footer-contact a {
        justify-content: flex-start;
        text-align: left;
    }

    .footer-divider {
        display: none;
    }
}
