@import url('https://pro.fontawesome.com/releases/v6.0.0-beta1/css/all.css');
@import url('https://fonts.googleapis.com/css2?family=Muli:wght@300;400;500;600&display=swap');
@import url(https://fonts.googleapis.com/css?family=Oswald:300,400,700);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900,200italic,300italic,400italic,600italic,700italic,900italic);
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.btn-primary, .bg-primary, .alert-primary, .badge.bg-primary,
.text-bg-primary {
    color: #ffffff !important;
    background-color: #3A6B8A !important;
    border-color: #2a4f6a !important;
}
.text-primary { color: #3A6B8A !important; }

.btn-danger, .bg-danger, .alert-danger, .badge.bg-danger,
.text-bg-danger {
    color: #ffffff !important;
    background-color: #9B3A3A !important;
    border-color: #7a2a2a !important;
}
.text-danger { color: #9B3A3A !important; }

.btn-success, .bg-success, .alert-success, .badge.bg-success,
.text-bg-success {
    color: #ffffff !important;
    background-color: #5C7A5E !important;
    border-color: #4a6349 !important;
}
.text-success { color: #3d5e3f !important; }

.btn-warning, .bg-warning, .alert-warning, .badge.bg-warning,
.text-bg-warning {
    color: #1A1816 !important;
    background-color: #C4884A !important;
    border-color: #a0674b !important;
}
.text-warning { color: #8a5a1a !important; }

.btn-info, .bg-info, .alert-info, .badge.bg-info,
.text-bg-info {
    color: #ffffff !important;
    background-color: #4A7A8A !important;
    border-color: #3a6070 !important;
}
.text-info { color: #4A7A8A !important; }

.btn-secondary, .bg-secondary, .alert-secondary, .badge.bg-secondary,
.text-bg-secondary {
    color: #ffffff !important;
    background-color: #7A7368 !important;
    border-color: #615c53 !important;
}
.text-secondary { color: #5a544a !important; }

.btn-light, .bg-light, .alert-light, .badge.bg-light,
.text-bg-light {
    color: #2C2A26 !important;
    background-color: #FFFDF9 !important;
    border-color: rgba(60,50,40,0.2) !important;
}
.text-light { color: #8a8478 !important; }

.btn-dark, .bg-dark, .alert-dark, .badge.bg-dark,
.text-bg-dark {
    color: #ffffff !important;
    background-color: #1A1816 !important;
    border-color: #0a0908 !important;
}
.text-dark { color: #1A1816 !important; }

.text-muted { color: #9a9390 !important; }

.btn-outline-primary {
    color: #3A6B8A !important;
    border-color: #3A6B8A !important;
}
.btn-outline-primary:hover, .btn-outline-primary:active, .btn-outline-primary.active {
    color: #ffffff !important;
    background-color: #3A6B8A !important;
    border-color: #3A6B8A !important;
}

.btn-outline-danger {
    color: #9B3A3A !important;
    border-color: #9B3A3A !important;
}
.btn-outline-danger:hover, .btn-outline-danger:active, .btn-outline-danger.active {
    color: #ffffff !important;
    background-color: #9B3A3A !important;
    border-color: #9B3A3A !important;
}

.btn-outline-success {
    color: #5C7A5E !important;
    border-color: #5C7A5E !important;
}
.btn-outline-success:hover, .btn-outline-success:active, .btn-outline-success.active {
    color: #ffffff !important;
    background-color: #5C7A5E !important;
    border-color: #5C7A5E !important;
}

.btn-outline-secondary {
    color: #7A7368 !important;
    border-color: #7A7368 !important;
}
.btn-outline-secondary:hover, .btn-outline-secondary:active, .btn-outline-secondary.active {
    color: #ffffff !important;
    background-color: #7A7368 !important;
    border-color: #7A7368 !important;
}

.btn-outline-warning {
    color: #8a5a1a !important;
    border-color: #C4884A !important;
}
.btn-outline-warning:hover, .btn-outline-warning:active, .btn-outline-warning.active {
    color: #1A1816 !important;
    background-color: #C4884A !important;
    border-color: #C4884A !important;
}

.btn-outline-info {
    color: #4A7A8A !important;
    border-color: #4A7A8A !important;
}
.btn-outline-info:hover, .btn-outline-info:active, .btn-outline-info.active {
    color: #ffffff !important;
    background-color: #4A7A8A !important;
    border-color: #4A7A8A !important;
}

body {
    margin: 0;
    font-family: 'Muli', sans-serif;
    line-height: 1.6;
    color: #2C2A26;
    background-color: #F5F2EE;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9; 
}

#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; 
    overflow: hidden;
}

iframe#video-background,
#video-background iframe {
    width: 100%;
    height: 100%;
    pointer-events: none; 
}

.page-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

header {
    position: sticky;
    top: 0;
    z-index: 1000; 
    padding: 1rem 0;
    background-color: #2b2f34;
}

.content-wrapper {
    flex: 1; 
    padding: 20px;
    position: relative;
    
}

.program-name-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 36px 24px 32px;
    background: var(--boh-bg-near-black);
    text-align: center;
    position: relative;
}
.program-name-share {
    position: absolute;
    top: 12px;
    right: 12px;
}
.program-name-rule {
    width: 60px;
    height: 2px;
    background: var(--boh-gold);
    border-radius: 1px;
}
.program-name-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 3.6rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--boh-text-on-dark);
    margin: 0;
    line-height: 1.1;
}
.program-name-motto {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.35rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--boh-gold);
    margin: 0;
}
.program-name-tagline {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--boh-text-on-dark);
    opacity: 0.7;
    margin: 0;
}
@media (max-width: 767px) {
    .program-name-heading { font-size: 2.4rem; letter-spacing: 3px; }
    .program-name-motto { font-size: 1.1rem; letter-spacing: 3px; }
}

.hero-section {
    text-align: center;
    padding: 10px 20px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.6); 
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hero-section p a {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color:#fff;
}

.hero-section .phone {
    font-size: 1.5rem;
    font-weight: bold;
}

footer {
    background-color: #2b2f34;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
    z-index: 10; 
    position: relative; 
    bottom: 0;
    width: 100%;
}

.footer .horizontal-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
}

.footer .horizontal-menu li a {
    color: #FCEAA9;
    text-decoration: none;
    font-weight: 500;
}

.footer .horizontal-menu li a:hover {
    color: #E5EFF1;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-section .phone {
        font-size: 1.3rem;
    }

    .description-section {
        padding: 30px 15px;
        margin: 15px auto;
    }

    .footer .horizontal-menu {
        flex-direction: column;
        gap: 10px;
    }
}

.color1 {color: #E2B6CF;} 
.color2 {color: #DAB894;} 
.color3 {color: #709775;} 
.color4 {color: #A0674B;} 
.color5 {color: #C4A46A} 
.color6 {color: #8B9A46;} 
.color7 {color: #6B4F4F;} 
.color8{color: #4C6A92;} 
.color9{color: #3A5A40;} 
.color10{color: #C08497;} 
.gr {color: #60605f;}

.bgcolor1 {background-color: #E2B6CF;} 
.bgcolor2 {background-color: #DAB894;} 
.bgcolor3 {background-color: #709775;} 
.bgcolor4 {background-color: #A0674B;} 
.bgcolor5 {background-color: #C4A46A} 
.bgcolor6 {background-color: #8B9A46;} 
.bgcolor7 {background-color: #6B4F4F;} 
.bgcolor8{background-color: #4C6A92;} 
.bgcolor9{background-color: #3A5A40;} 
.bgcolor10{background-color: #C08497;} 
.bggr {background-color: #60605f;}

.margin-top-10 {padding-top:10px;}
.margin-bot-10 {padding-bottom:10px;}

#parallax h1 {font-family:'Oswald', sans-serif; font-size:24px; font-weight:400; text-transform: uppercase; color:black; padding:0; margin:0;}
#parallax h2 {font-family:'Oswald', sans-serif; font-size:70px; letter-spacing:10px; text-align:center; color:white; font-weight:400; text-transform:uppercase; z-index:10; opacity:.9;}
#parallax h3 {font-family:'Oswald', sans-serif; font-size:18px; line-height:0; font-weight:400; letter-spacing:8px; text-transform: uppercase; color:white; margin-bottom: 30px;}
#parallax p {font-family:'Source Sans Pro', sans-serif; font-weight:400; font-size:1em; line-height:24px;}
.first-character {font-weight:400; float: left; font-size: 84px; line-height: 64px; padding-top: 4px; padding-right: 8px; padding-left: 3px; font-family: 'Source Sans Pro', sans-serif;}

#parallax .title {background: white; padding: 60px; margin:0 auto; text-align:center;}
#parallax .title h1 {font-size:35px; letter-spacing:8px;}

#parallax .block {color: #60605f; background: white; padding: 60px; width:820px; margin:0 auto; text-align:justify;}
#parallax .block-gray {background: #f2f2f2;padding: 60px;}
#parallax .section-overlay-mask {position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: black; opacity: 0.70;}

#parallax .parallax-one {padding-top: 20px; padding-bottom: 20px; overflow: hidden; position: relative; width: 100%; background-attachment: fixed; background-size: cover; -moz-background-size: cover; -webkit-background-size: cover; background-repeat: no-repeat; background-position: top center;}
#parallax .pillar-parallax {padding-top: 100px; padding-bottom: 100px; overflow: hidden; position: relative; width: 100%; background-attachment: fixed; background-size: cover; -moz-background-size: cover; -webkit-background-size: cover; background-repeat: no-repeat; background-position: center center;}

#parallax .line-break {border-bottom:1px solid black; width: 150px; margin:0 auto;}

@media screen and (max-width: 959px) and (min-width: 768px) {
    #parallax .block {padding: 40px; width:620px;}
}
@media screen and (max-width: 767px) {
    #parallax .block {padding: 30px; width:420px;}
    #parallax h2 {font-size:30px;}
    #parallax .block {padding: 30px;}
    #parallax .parallax-one, #parallax .pillar-parallax {padding-top:60px; padding-bottom:60px;}
    
    #parallax .pillar-parallax {background-attachment: scroll; background-size: cover; background-position: center center;}
}
@media screen and (max-width: 479px) {
    #parallax .block {padding: 30px 15px; width:290px;}
    #parallax .parallax-one, #parallax .pillar-parallax {padding-top:40px; padding-bottom:40px;}
}

.block {
    width: 80%; 
    margin: 20px auto; 
    padding: 20px;
    background-color: #2b2f34; 
    color: #fff; 
    font-size: 1em; 
    border-radius: 8px; 
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
}

@media (max-width: 768px) {
    .block {
        width: 90%; 
        padding: 15px; 
        font-size: 0.9em; 
    }
}

@media (max-width: 480px) {
    .block {
        width: 95%; 
        padding: 10px; 
        font-size: 0.8em; 
    }
}

#description .block {color: #2b2f34; background: white; padding: 60px; width:820px; margin:0 auto; text-align:justify;}
#description h1 {font-family: "Poppins", "Roboto", Arial, sans-serif; font-size:22px; font-weight:400; text-transform: uppercase; color:#2b2f34; padding:0; margin:0;}
#description h2 {font-family: "Poppins", "Roboto", Arial, sans-serif; font-size:20px; letter-spacing:normal; text-align:center; color:#2b2f34; font-weight:400; text-transform:none; z-index:10; opacity:1; margin: 20px;}
#description p {font-family: "Poppins", "Roboto", Arial, sans-serif; font-weight:200; font-size: 1em; letter-spacing:normal; line-height:24px; color:#2b2f34;}

@media screen and (max-width: 959px) and (min-width: 768px) {
    #description .block {padding: 40px; width:620px;}
}
@media screen and (max-width: 767px) {
    #description .block {padding: 30px; width:420px;}
    #description .block {padding: 30px;}
}
@media screen and (max-width: 479px) {
    #description .block {padding: 30px 15px; width:290px;}
}

.traumaComponent{
    color:deepskyblue;
    font-size: larger;
    font-weight: 400;
}

.countdown-section {
    background: var(--boh-bg-dark);
    text-align: center;
    padding: 40px 24px 36px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.countdown-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--boh-gold);
    margin-bottom: 20px;
}

.countdown-display {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
}

.countdown-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3.8rem;
    font-weight: 300;
    color: var(--boh-text-on-dark);
    line-height: 1;
    letter-spacing: 2px;
}

.countdown-unit-label {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(240, 236, 230, 0.6);
    margin-top: 6px;
}

.countdown-sep {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--boh-gold);
    opacity: 0.4;
    line-height: 1.1;
    padding-top: 4px;
}

.countdown-sublabel {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(240, 236, 230, 0.6);
    margin-bottom: 20px;
}

.prelaunch-wipe-note {
    max-width: 540px;
    margin: 0 auto;
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--boh-text-muted);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 16px;
}

.conf-line-info {
    margin-top: 16px;
}

@media (max-width: 480px) {
    .countdown-number  { font-size: 2.4rem; }
    .countdown-unit    { min-width: 50px; }
    .countdown-sep     { font-size: 2rem; }
}

.welcome-section {
    background: var(--boh-bg-dark);
    padding: 72px 24px;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.welcome-inner {
    max-width: 820px;
    margin: 0 auto;
}

.welcome-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 2.4rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--boh-text-on-dark);
    text-align: center;
    margin-bottom: 32px;
}

.welcome-block {
    border-left: 3px solid transparent;
    padding-left: 20px;
    text-align: left;
}

.welcome-block + .welcome-block {
    margin-top: 24px;
}

.welcome-accent { display: none; }

.welcome-block--teal  { border-left-color: #6BBDD4; }
.welcome-block--amber { border-left-color: var(--boh-amber); }

.welcome-body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.08rem;
    line-height: 1.9;
    color: rgba(240, 236, 230, 0.75);
    margin: 0;
}

.welcome-block--teal  .welcome-body strong { color: #6BBDD4; font-weight: 600; font-style: italic; }
.welcome-block--amber .welcome-body strong { color: var(--boh-amber); font-weight: 600; font-style: italic; }

.welcome-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.welcome-value {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 12px 18px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.95rem;
    color: rgba(255,253,249,0.75);
    flex: 1 1 340px;
    max-width: 400px;
}

.welcome-value-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.welcome-cover {
    margin-top: 44px;
    text-align: center;
}

.welcome-cover-line {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.08rem;
    line-height: 1.9;
    color: rgba(240, 236, 230, 0.75);
    max-width: 640px;
    margin: 0 auto 20px;
}

@media (max-width: 600px) {
    .welcome-heading {
        font-size: 1.7rem;
        letter-spacing: 2px;
    }
    .welcome-value {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.not-company-section {
    background: #F5F0E8;
    padding: 64px 24px;
    border-top: 1px solid rgba(60,50,40,0.1);
    border-bottom: 1px solid rgba(60,50,40,0.1);
}

.not-company-inner {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.not-company-block {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.not-company-accent {
    flex-shrink: 0;
    width: 3px;
    border-radius: 2px;
    align-self: stretch;
}

.not-company-block--blue  .not-company-accent { background: var(--boh-blue); }
.not-company-block--amber .not-company-accent { background: var(--boh-amber); }
.not-company-block--teal  .not-company-accent { background: var(--boh-teal); }

.not-company-text { flex: 1; }

.not-company-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--boh-text-heading);
    margin-bottom: 10px;
}

.not-company-block--blue  .not-company-heading { color: var(--boh-blue); }
.not-company-block--amber .not-company-heading { color: var(--boh-amber-dark); }
.not-company-block--teal  .not-company-heading { color: var(--boh-teal); }

.not-company-body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--boh-text-body);
    margin: 0;
}

.not-company-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.not-company-link-btn {
    flex: 1 1 auto;
    text-align: center;
    padding: 10px 18px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    text-decoration: none;
    transition: filter 0.15s;
}

.not-company-link-btn:hover { filter: brightness(1.12); text-decoration: none; }

.not-company-link-btn--blue   { background: var(--boh-blue);   color: #fff; }
.not-company-link-btn--teal   { background: var(--boh-purple); color: #fff; }
.not-company-link-btn--sage   { background: var(--boh-sage);   color: #fff; }
.not-company-link-btn--amber  { background: var(--boh-amber);  color: #fff; }

@media (max-width: 600px) {
    .not-company-block { gap: 16px; }
    .not-company-heading { font-size: 1rem; }
    .not-company-link-btn { flex: 1 1 100%; }
}

.trauma-cards-learn-more {
    text-align: center;
    padding: 32px 24px 8px;
}

.start-section {
    background: #f5f1ec;
    padding: 72px 24px;
    position: relative;
    z-index: 2;
}

.start-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.start-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #2b2f34;
    margin-bottom: 12px;
}

.start-subheading {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.05rem;
    color: #60605f;
    margin-bottom: 48px;
    line-height: 1.6;
}

.start-paths {
    display: flex;
    align-items: stretch;
    gap: 0;
    justify-content: center;
}

.start-path {
    flex: 1;
    max-width: 380px;
    background: #ffffff;
    border: 1px solid #e0dbd4;
    border-radius: 4px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.start-path-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #C4A46A;
    flex-shrink: 0;
}

.start-path-icon {
    font-size: 2.4rem;
    line-height: 1;
}

.start-path h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2b2f34;
    margin: 0;
}

.start-path p {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 0.98rem;
    line-height: 1.75;
    color: #60605f;
    margin: 0;
    flex-grow: 1;
}

.btn-path {
    display: inline-block;
    margin-top: 8px;
    padding: 11px 28px;
    border-radius: 3px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    background: #2b2f34;
    color: #ffffff;
    transition: background 0.2s;
}

.btn-path:hover {
    background: #3d4349;
    color: #ffffff;
    text-decoration: none;
}

.btn-path-gold {
    background: #C4A46A;
}

.btn-path-gold:hover {
    background: #8f7350;
}

@media (max-width: 700px) {
    .start-paths {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .start-path {
        max-width: 100%;
        width: 100%;
    }
    .start-path-divider {
        padding: 16px 0;
    }
}

#reportStepType > .text-muted,
#reportStepFields > .text-muted {
    color: var(--boh-text-muted) !important;
    font-size: 0.9rem;
}

.report-type-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.report-type-option {
    display: block;
    text-align: left;
    background: #ffffff;
    border: 1px solid var(--boh-border-strong);
    border-radius: 8px;
    padding: 14px 18px;
    cursor: pointer;
    color: var(--boh-text-body);
    font-size: 0.95rem;
    line-height: 1.45;
    transition: border-color 0.15s, background 0.15s;
    width: 100%;
}

.report-type-option strong {
    display: block;
    color: var(--boh-text-heading);
    font-weight: 600;
    margin-bottom: 0;
}

.report-type-option .small,
.report-type-option small,
.report-type-option span {
    display: block;
    color: var(--boh-text-muted);
    font-size: 0.82rem;
    line-height: 1.4;
}

.report-type-option:hover {
    border-color: var(--boh-blue);
    background: rgba(58,107,138,0.05);
}

#reportBackBtn {
    color: var(--boh-blue) !important;
    text-decoration: none;
    font-size: 0.88rem;
    padding: 0 !important;
}

#reportBackBtn:hover {
    color: var(--boh-blue-dark) !important;
}

#reportStepFields > p > #reportTypeLabel {
    color: var(--boh-text-heading);
}

.report-who-results {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-top: 6px;
}

.report-who-option {
    text-align: left;
    background: #ffffff;
    border: 1px solid var(--boh-border);
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    color: var(--boh-text-body);
    font-size: 0.9rem;
    transition: background 0.12s, border-color 0.12s;
    width: 100%;
}

.report-who-option:hover {
    background: rgba(58,107,138,0.06);
    border-color: var(--boh-blue);
}

#reportWhoChosen {
    color: var(--boh-sage-dark) !important;
    font-weight: 500;
}

#reportItDisclaimer {
    background: rgba(58,107,138,0.05);
    border: 1px solid rgba(58,107,138,0.25) !important;
    border-radius: 6px;
    padding: 16px 18px;
}

#reportItDisclaimer p {
    color: var(--boh-text-body);
    font-size: 0.88rem;
    line-height: 1.65;
}

#reportItDisclaimer strong {
    color: var(--boh-text-heading);
}

#reportItIdentityNote {
    font-size: 0.88rem;
    line-height: 1.6;
}

.report-done {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--boh-text-body);
}

.report-it-tech {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px 14px;
}
.report-it-tech-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.report-it-tech-row label {
    color: var(--boh-text-body);
    font-size: 0.88rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
}
.report-it-tech-row .report-it-years {
    width: 80px;
    flex: 0 0 80px;
}

#reportNoNamesNote {
    color: var(--boh-amber-dark) !important;
    background: rgba(196,136,74,0.08);
    border-left: 3px solid var(--boh-amber);
    border-radius: 0 4px 4px 0;
    padding: 8px 12px;
    font-size: 0.85rem !important;
    line-height: 1.55;
}

#reportNoNamesNote strong {
    color: var(--boh-amber-dark);
}

#reportNoShowField .text-muted {
    color: var(--boh-text-muted) !important;
    font-size: 0.83rem !important;
    margin-top: 4px;
}

#reportEvidenceField .text-muted {
    color: var(--boh-text-muted) !important;
    font-size: 0.82rem !important;
}

.coming-soon-wrap {
    max-width: 520px;
    margin: 80px auto 120px;
    padding: 0 16px;
    text-align: center;
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.coming-soon-wrap h1 {
    color: #3A6B8A;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.coming-soon-wrap p {
    color: #555;
    line-height: 1.6;
}

.coming-soon-wrap .btn {
    margin-top: 12px;
}

.prelaunch-wipe-note {
    max-width: 540px;
    margin: 10px auto 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #f0e8da;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 8px;
    padding: 10px 14px;
}

@media (max-width: 767px) {
    .modal-dialog {
        margin: 0.5rem auto;
        max-height: calc(100dvh - 1rem);
        display: flex;
        flex-direction: column;
    }
    .modal-content {
        max-height: calc(100dvh - 1rem);
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    .modal-body {
        overflow-y: auto;
        flex: 1 1 auto;
        -webkit-overflow-scrolling: touch;
    }
}

footer {
    z-index: 1 !important;
}

.card-header {
    color: #2C2A26;
}

*{
  font-family: "Poppins", "Roboto", Arial, sans-serif;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.dropdown-menu{
    &.show{
        -webkit-animation: fadeIn 0.3s alternate;
         animation: fadeIn 0.3s alternate;
    }
}

@media (max-width: 991.98px) {
    
    .navbar {
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }
    .navbar > .container-fluid {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
    
    .navbar-brand {
        flex: 0 1 auto;
    }
    .navbar-toggler {
        flex: 0 0 auto;
    }
    
    .navbar-collapse {
        flex-basis: 100%;
        order: 3;
    }
    
    .hamburger-toggle {
        width: 36px !important;
        height: 36px !important;
    }
    
    .navbar-collapse {
        max-height: calc(100svh - 52px);
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-item.dropdown.dropdown-mega .mega-content .row > [class*="col-"] {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }
    
    .nav-item.dropdown.dropdown-mega .dropdown-menu {
        width: 100% !important;
        left: 0 !important;
    }
    .nav-item.dropdown.dropdown-mega .mega-content {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

@media (min-width: 992px) {
    .nav-item.dropdown.dropdown-mega {
        position: static;
    }
    .nav-item.dropdown.dropdown-mega .dropdown-menu {
        width: fit-content;
        min-width: 0;
        top: auto;
        left: 0;
    }
}

.navbar-toggler{
    border: none;
    padding: 0;
    outline: none;
    &:focus{
        box-shadow: none;
    }
    .hamburger-toggle{
        position: relative;
        display: inline-block;
        width: 50px;
        height: 50px;
        z-index: 11;
        color: white;
        .hamburger {
            position: absolute;
            transform: translate(-50%, -50%) rotate(0deg);
            left: 50%;
            top: 50%;
            width: 50%;
            height: 50%;
            pointer-events: none;
            span {
                width: 100%;
                height: 4px;
                position: absolute;
                background: white;
                border-radius: 2px;
                z-index: 1;
                transition: transform 0.2s cubic-bezier(0.77,0.2,0.05,1.0), background 0.2s cubic-bezier(0.77,0.2,0.05,1.0), all 0.2s ease-in-out;
                left: 0px;
                &:first-child{
                    color: white;
                    top: 10%;
                    transform-origin: 50% 50%;
                    transform: translate(0% -50%) !important;
                }
                &:nth-child(2){
                    color: white;
                    top: 50%;
                    transform: translate(0,-50%);
                }
                &:last-child{
                    color: white;
                    left: 0px;
                    top: auto;
                    bottom: 10%;
                    transform-origin: 50% 50%;
                }
            }
            &.active{
                span {
                    position: absolute;
                    margin: 0;
                    &:first-child{
                        top: 45%;
                        transform: rotate(45deg);
                    }
                    &:nth-child(2){
                        left: 50%;
                        width: 0px;
                    }
                    &:last-child{
                        top: 45%;
                        transform: rotate(-45deg);
                    }
                }
            }
        }
    }
}

.icons{
  display: inline-flex;
  margin-left: auto;
  a{
    transition: all 0.2s ease-in-out;
    padding: 0.2rem 0.4rem;
    color: #ccc !important;
    text-decoration: none;
    &:hover{
      color: white;
      text-shadow: 0 0 30px white;
    }
  }
}

.card img{
    width: 100%;
}

#footer ul {
  margin: 0px;
  padding: 0px;
}
#footer .footer-section {
  background: #151414;
  position: relative;
}
#footer .copyright-area{
  background: #202020;
  padding: 25px 0;
}
#footer .copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #A89F94;
}
#footer .copyright-text p a{
  color: #C4884A;
}
#footer .footer-menu li {
  display: inline-block;
  margin-left: 20px;
}
#footer .footer-menu li:hover a{
  color: #ECC4A8;
}
#footer .footer-menu li a {
  font-size: 14px;
  color: #A89F94;
}

.upcoming-meeting-item {
    padding: 8px 10px !important;
    background: transparent !important;
    border-color: var(--boh-border) !important;
    color: var(--boh-text-body) !important;
}

.upcoming-meeting-item:hover {
    background: var(--boh-bg-light) !important;
}

.upcoming-meeting-item strong {
    font-size: 0.88rem;
    color: var(--boh-text-heading);
    display: block;
    line-height: 1.3;
}

.upcoming-meeting-time {
    font-size: 0.78rem;
    color: var(--boh-text-muted);
    display: block;
    margin-top: 2px;
}

.upcoming-meeting-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
    color: #1A1816;
}

.upcoming-meeting-badge.conference-line-meeting {
    background: #C8C0DF;   
    color: #2a1f4a;
}

.upcoming-meeting-badge.zoom-meeting {
    background: #B8DDE6;   
    color: #0e3a47;
}

.upcoming-meeting-badge.in-person-meeting {
    background: #ECC4A8;
    color: #4a2010;
}

.upcoming-meeting-badge.hybrid-meeting {
    background: #E8D9B0;
    color: #4a3010;
}

.upcoming-meeting-badge.default-event {
    background: #ddd;
    color: #333;
}

.boh-msg-badge {
    position: absolute;
    top: 2px;
    right: 0;
    background: var(--boh-red, #9B3A3A);
    color: #fff;
    font-size: 0.62rem;
    min-width: 1.05rem;
    line-height: 1.05rem;
    padding: 0 0.25rem;
    border-radius: 999px;
}

.boh-member-link {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
}

.boh-member-link:hover,
.boh-member-link:focus {
    text-decoration-style: solid;
}

.boh-member-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--boh-border-strong, #ccc);
    margin-right: 0.2rem;
}

.boh-member-dot-on { background: var(--boh-sage-dark, #5a7d5a); }

.boh-member-modal .boh-member-actions .btn {
    min-height: 44px;
}

@media (max-width: 575.98px) {
    .boh-member-modal .modal-dialog {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    .boh-member-modal .modal-content {
        border-radius: 16px 16px 0 0;
    }
}
