/* CamsTeacher - Main Stylesheet */
/* Matched to original WordPress/Beaver Builder design */

/* Lato font - self-hosted */
@font-face { font-family: 'Lato'; src: url('fonts/Lato-300.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: block; }
@font-face { font-family: 'Lato'; src: url('fonts/Lato-400.ttf') format('truetype'); font-weight: 400; font-style: normal; font-display: block; }
@font-face { font-family: 'Lato'; src: url('fonts/Lato-400-italic.ttf') format('truetype'); font-weight: 400; font-style: italic; font-display: block; }
@font-face { font-family: 'Lato'; src: url('fonts/Lato-700.ttf') format('truetype'); font-weight: 700; font-style: normal; font-display: block; }
@font-face { font-family: 'Lato'; src: url('fonts/Lato-900.ttf') format('truetype'); font-weight: 900; font-style: normal; font-display: block; }

:root {
    --primary: #1d93d1;
    --primary-hover: #000000;
    --teal: #0099cc;
    --text-dark: #313131;
    --text-gray: #666666;
    --bg-light: #f2f2f2;
    --bg-section: #5c5c5c;
    --white: #ffffff;
    --border: #e0e0e0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Lato', sans-serif;
    color: #313131;
    background: var(--bg-light);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    font-style: normal;
    word-wrap: break-word;
}

img { margin: 0 !important; max-width: 100%; height: auto; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--primary-hover); }

h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; }
h2 { padding-bottom: 15px; }
h3, h4, h5, h6 { padding-top: 15px; padding-bottom: 10px; }

p { padding-bottom: 15px; margin: 0; }

ul, ol { margin: 0; padding: 0 0 8px 0; }
li { margin: 0 0 6px 20px; }

/* === HEADER === */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.header-logo img { max-height: 50px; width: auto; }
.header-logo { margin-right: auto; }

.header-right { display: flex; align-items: center; gap: 15px; margin-left: 25px; }
.header-nav { display: flex; align-items: center; gap: 25px; }

.header-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
    margin: 0;
}

.header-nav ul li { margin: 0; }

.header-nav ul li a {
    color: var(--text-gray);
    font-weight: 400;
    font-size: 15px;
    transition: color 0.3s;
    text-decoration: none;
    padding: 8px 5px;
}

.header-nav ul li a:hover { color: var(--primary); }

.btn-login {
    display: inline-block;
    padding: 8px 18px;
    background: var(--teal);
    color: var(--white) !important;
    border-radius: 4px;
    font-weight: 400;
    font-size: 18px;
    transition: background 0.3s;
}

.btn-login:hover { background: var(--primary-hover); }
.btn-login.btn-logout {
    background: transparent;
    border: 2px solid #e74c3c;
    color: #e74c3c !important;
}
.btn-login.btn-logout:hover {
    background: #e74c3c;
    color: #fff !important;
}
.btn-login.btn-logout span { color: inherit; }

/* Member submenu bar */
.member-submenu {
    background: #1d93d1;
    text-align: center;
}
.member-submenu-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0;
}
.submenu-btn {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, color 0.2s;
    border-bottom: 3px solid transparent;
}
.submenu-btn:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.submenu-btn.active {
    color: #fff;
    border-bottom-color: #fff;
    background: rgba(0,0,0,0.1);
}

.login-short { display: none; }
@media (max-width: 960px) {
    .login-full { display: none; }
    .login-short { display: inline; }
}

/* Burger menu - hidden on desktop */
.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 24px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav - slide from left */
.nav-close, .nav-overlay { display: none; }

@media (max-width: 960px) {
    .burger-menu {
        display: block;
    }

    .header-nav {
        display: flex;
        position: fixed;
        top: 0;
        left: -280px;
        width: 260px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        z-index: 1002;
        padding: 60px 0 20px;
        box-shadow: 2px 0 8px rgba(0,0,0,0.15);
        transition: left 0.3s ease;
        overflow-y: auto;
    }

    .header-nav.open {
        left: 0;
    }

    .header-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .header-nav ul li {
        width: 100%;
    }

    .header-nav ul li a {
        display: block;
        padding: 15px 25px;
        font-size: 18px;
        font-weight: 400;
        color: #1d93d1;
    }

    .header-nav ul li a:hover {
        background: #f5f5f5;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 15px;
        left: 15px;
        background: none;
        border: none;
        font-size: 26px;
        color: #333;
        cursor: pointer;
        padding: 5px 10px;
        line-height: 1;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.3);
        z-index: 1001;
    }

    .nav-overlay.open {
        display: block;
    }
}

/* === HERO === */
.hero-section {
    background: var(--white);
    color: var(--text-dark);
    text-align: center;
    padding: 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: var(--bg-light);
    z-index: 0;
}

.hero-section > * {
    position: relative;
    z-index: 1;
}

.hero-section h3 {
    padding-top: 50px;
}

.hero-section h5,
.hero-streamate {
    padding-bottom: 0;
}

.hero-streamate {
    padding-bottom: 40px;
}

.hero-section h3 {
    font-size: 42px;
    font-weight: 900;
    line-height: 58.8px;
    color: var(--text-dark);
    padding-bottom: 10px;
}

.hero-separator {
    width: 80px;
    height: 2px;
    background: #1d93d1;
    margin: 0 auto 25px;
}

.hero-video {
    max-width: 960px;
    margin: 0 auto 20px;
    position: relative;
    padding: 10px;
    background-color: #ffffff;
    border: 2px solid #929497;
    border-radius: 0;
    overflow: hidden;
}

.hero-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    display: block;
}

.hero-video video {
    width: 100%;
    display: block;
}

video:focus, video:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* Shared video play overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-play-overlay svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
    transition: transform 0.2s ease;
}

.video-play-overlay:hover svg {
    transform: scale(1.1);
}

.video-wrap-playing .video-play-overlay {
    opacity: 0;
    pointer-events: none;
}

/* Shared subtitle buttons */
.video-subtitle-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 8px 0 4px;
}

.video-subtitle-buttons .sub-btn {
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px 14px;
    font-size: 13px;
    cursor: pointer;
    color: #333;
    transition: all 0.2s;
}

.video-subtitle-buttons .sub-btn:hover {
    background: #e0e0e0;
}

.video-subtitle-buttons .sub-btn.active {
    background: #1d93d1;
    color: #fff;
    border-color: #1d93d1;
}

.hero-section h5 {
    font-size: 26px;
    font-weight: 400;
    line-height: 36.4px;
    color: var(--text-gray);
    margin-top: 15px;
    padding-top: 0;
}

.hero-streamate { margin-top: 15px; }
.hero-streamate img { max-width: 250px; }

/* === WHY CHOOSE === */
.why-choose-section {
    background: var(--bg-light);
    padding: 60px 20px;
}

.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0;
    padding-top: 0;
}

.features-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 25px;
    border-radius: 0;
    transition: transform 0.3s;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.feature-card:hover { transform: translateY(-3px); }

.feature-card .icon {
    font-size: 100px;
    color: #1d93d1;
    margin-bottom: 15px;
    line-height: 1;
}

.feature-card h5 {
    font-size: 26px;
    font-weight: 900;
    color: var(--text-dark);
    padding-top: 5px;
    padding-bottom: 10px;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 18px;
    line-height: 1.45;
}

/* === GETTING STARTED / LOGIN === */
.getting-started-section {
    background: rgb(146, 148, 151);
    padding: 60px 20px;
    text-align: center;
}

.getting-started-section .section-title {
    color: var(--white);
}

.getting-started-section .gs-inner {
    max-width: 900px;
    margin: 0 auto;
    background: rgb(244, 244, 245);
    padding: 40px;
}

.getting-started-section .gs-inner.gs-logged-in {
    background: none;
}

.getting-started-section h5 {
    color: var(--text-dark);
    font-size: 26px;
    font-weight: 900;
}

.getting-started-section p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 23.2px;
}

.getting-started-section p a {
    color: var(--teal);
}

.login-box {
    max-width: 650px;
    margin: 20px auto;
    background: transparent;
    border-radius: 4px;
    padding: 0px;
    border-radius: 4px;
}

.login-form-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.login-captcha {
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
    height: 40px;
}

.login-captcha .cf-turnstile {
    transform: scale(0.65);
    transform-origin: top right;
}

.gs-video-button {
    text-align: center;
    padding: 20px 0;
    background: transparent;
}

.btn-access-videos {
    display: inline-block;
    padding: 16px 40px;
    background: #1d93d1;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    border: 1px solid #1187c5;
    border-radius: 30px;
    transition: all 0.3s;
}

.btn-access-videos:hover {
    background: #1578ab;
    color: #ffffff;
}

.login-form-inline input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 18px;
}

.login-form-inline .btn-submit {
    padding: 14px 35px;
    background: var(--teal);
    color: var(--white);
    border: none;
    border-radius: 3px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
}

.login-form-inline .btn-submit:hover { background: var(--primary-hover); }

/* === FAQ === */
.faq-section {
    background: rgb(244, 244, 245);
    padding: 60px 20px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-card {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 12px;
    border-radius: 4px;
    border: 1px solid var(--border);
    align-items: center;
}

.faq-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

.faq-card img {
    width: 293px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
}

.faq-card .faq-text {
    max-width: 560px;
}

.faq-card .faq-text h6 {
    font-size: 21px;
    font-weight: 900;
    line-height: 29.4px;
    margin-bottom: 40px;
    color: var(--text-dark);
    padding: 0;
    line-height: 1.4;
}

.faq-card .faq-text h6 a.faq-title-link {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-decoration: none;
}

.faq-card .faq-text h6 a.faq-title-link:hover {
    color: inherit;
    text-decoration: none;
}

.faq-card .faq-text a {
    color: rgba(29, 147, 209, 0.8);
    font-weight: 400;
    font-size: 16px;
    line-height: 23.2px;
}

/* === WHAT NOW / CTA === */
.whatnow-section {
    color: rgb(49, 49, 49);
    padding: 60px 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, var(--white) 80%, #2a2a2a 80%);
    padding-bottom: 120px;
}

.whatnow-section h2 {
    color: #1d93d1;
    font-size: 55px;
    font-weight: 900;
    line-height: 77px;
}

.whatnow-section p {
    color: rgb(49, 49, 49);
    max-width: 816px;
    margin: 10px auto;
    font-size: 18px;
    line-height: 26.1px;
}

.whatnow-section h4 {
    color: #1d93d1;
    font-size: 34px;
    font-weight: 900;
    line-height: 47.6px;
    margin-top: 30px;
    padding-bottom: 5px;
}

.whatnow-section .form-subheading {
    color: rgb(49, 49, 49);
    font-size: 18px;
}

.whatnow-cta-box {
    max-width: 900px;
    margin: 40px auto 0;
    border: 2px solid #1d93d1;
    background: var(--white);
    padding: 40px 40px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.whatnow-cta-box h4 {
    margin-top: 0;
}

/* === CONTACT FORM === */
.contact-form-card {
    max-width: 100%;
    margin: 25px auto 0;
    background: var(--white);
    padding: 0;
    border-radius: 0;
    border: none;
    text-align: left;
}

.contact-form-card label {
    display: block;
    font-weight: 400;
    margin-bottom: 6px;
    color: rgb(49, 49, 49);
    font-size: 18px;
}

.whatnow-section .contact-form-card label {
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-form-card .required::after {
    content: " *";
    color: #d32f2f;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 6px 12px;
    margin-bottom: 15px;
    border: 1px solid #e6e6e6;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    background: #fcfcfc;
    color: rgb(49, 49, 49);
    height: 30px;
    box-sizing: border-box;
}

.whatnow-section .contact-form-card input,
.whatnow-section .contact-form-card textarea {
    height: 34px;
}

.contact-form-card textarea { resize: vertical; min-height: 74px; height: auto; }

.contact-form-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form-card .btn-submit {
    display: block;
    margin: 30px auto 0;
    padding: 10px 30px;
    background: #1d93d1;
    color: var(--white);
    border: 1px solid #1d93d1;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-form-card .btn-submit:hover {
    background: #1a7fb5;
    border-color: #1a7fb5;
}

.contact-form-card .disclaimer {
    font-size: 18px;
    color: rgb(49, 49, 49);
    margin-bottom: 12px;
    padding-bottom: 0;
}

.whatnow-section .contact-form-card .disclaimer {
    font-size: 14px;
    line-height: 20.3px;
}

.whatnow-section .contact-form-card .btn-submit {
    font-size: 16px;
}

/* === FOOTER === */
.site-footer {
    background: #2a2a2a;
    padding: 45px 20px;
    border-top: none;
}

.site-footer, .site-footer p { color: #f0f0f0; }
.site-footer a { color: #f0f0f0; }
.site-footer a:hover { color: var(--white); }
.site-footer h5 { color: var(--white); }

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-info h5 { font-size: 22px; font-weight: 700; padding-top: 0; }

.footer-contact-social { margin-top: 10px; }
.footer-contact-social div { margin-bottom: 6px; }
.footer-contact-social a { color: #f5f5f5; font-size: 16px; white-space: nowrap; }
.footer-contact-social a:hover { color: var(--white); }
.footer-contact-social i { margin-right: 6px; color: var(--teal); }
.footer-contact-social .fuel_marker { display: inline !important; }

.footer-links { margin-top: 15px; }
.footer-links a { display: block; margin-bottom: 5px; color: #e8e8e8; font-size: 18px; }
.footer-links a:hover { color: var(--white); }

.footer-logo img { max-height: 50px; }

.footer-bottom {
    background: #2a2a2a;
    text-align: center;
    padding: 15px 20px;
    border-top: none;
    font-size: 13px;
    color: #ccc;
}

/* === WHY CHOOSE US PAGE === */
.wcu-hero {
    background: #f5f5f5;
    padding: 60px 20px 0;
    text-align: center;
}

.wcu-separator {
    width: 32px;
    border-top: 4px solid #1d93d1;
    margin: 15px auto 20px;
}

.wcu-intro {
    max-width: 900px;
    margin: 20px auto;
    font-size: 24px;
    line-height: 1.6;
    color: rgb(49, 49, 49);
}

.wcu-images-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px auto;
    max-width: 900px;
    flex-wrap: wrap;
}

.wcu-images-row img {
    max-width: 900px;
    width: 100%;
    height: auto;
}

.wcu-content-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}

.wcu-body-text {
    flex: 1;
    text-align: left;
    font-size: 18px;
    line-height: 1.7;
    color: rgb(49, 49, 49);
}

.wcu-body-text p {
    margin-bottom: 15px;
}

.wcu-side-image {
    flex: 0 0 300px;
}

.wcu-side-image img {
    width: 100%;
    height: auto;
}

/* Overlap image between sections */
.wcu-overlap-image {
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 30px 0;
    background: linear-gradient(to bottom, var(--white) 50%, var(--white) 50%);
}

/* First overlap (hero gray → truth white) */
.wcu-hero + .wcu-overlap-image {
    background: linear-gradient(to bottom, #f5f5f5 50%, var(--white) 50%);
}

/* Second overlap (recipient white → cta gray) */
.wcu-recipient + .wcu-overlap-image {
    background: linear-gradient(to bottom, var(--white) 50%, #f5f5f5 50%);
}

.wcu-overlap-image img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
}

/* Truth / Learn HOW */
.wcu-truth {
    background: var(--white);
    padding: 50px 20px;
    text-align: center;
    width: 100%;
}

.wcu-truth h5,
.wcu-truth h2 {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.wcu-truth h5 {
    font-size: 26px;
    font-weight: 400;
    color: rgb(49, 49, 49);
    margin-bottom: 10px;
}

.wcu-truth h2 {
    font-size: 42px;
    font-weight: 900;
    color: #1d93d1;
}

/* Purpose - blue box floating between sections */
.wcu-purpose {
    background: linear-gradient(to bottom, var(--white) 50%, #f5f5f5 50%);
    padding: 40px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.wcu-purpose-box {
    background: linear-gradient(135deg, #1d93d1, #1578ab);
    border-radius: 0;
    padding: 40px 50px;
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
}

.wcu-purpose h6 {
    font-size: 21px;
    font-weight: 400;
    color: var(--white);
    margin: 0;
    padding: 0;
}

.wcu-purpose h3 {
    font-size: 34px;
    font-weight: 900;
    color: var(--white);
    margin: 0;
    padding: 0;
}

/* Free Coaching */
.wcu-free-coaching {
    background: #f5f5f5;
    padding: 0 20px 0;
    text-align: center;
}

.wcu-offering {
    font-size: 21px;
    color: rgb(49, 49, 49);
    margin-bottom: 10px;
}

.wcu-free-heading {
    font-size: 42px;
    font-weight: 900;
    color: #1d93d1;
    margin-bottom: 20px;
}

.wcu-coaching-text {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 18px;
    line-height: 1.7;
    color: rgb(49, 49, 49);
}

.wcu-cta-link {
    display: inline-block;
    font-size: 26px;
    font-weight: 900;
    color: #1d93d1;
    margin-bottom: 40px;
}

.wcu-cta-link:hover {
    text-decoration: none;
}

.wcu-icons-section {
    background: #f5f5f5;
    padding: 50px 20px;
}

.wcu-features-row {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: nowrap;
    max-width: 1200px;
    margin: 0 auto;
}

.wcu-feature-item {
    text-align: center;
    width: 200px;
}

.wcu-feature-item img {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
    border-radius: 50%;
    border: 3px solid #1d93d1 !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0;
    background: transparent;
}

.wcu-feature-item h5 {
    white-space: nowrap;
    font-size: 21px;
    font-weight: 900;
    color: rgb(49, 49, 49);
    line-height: 1.4;
}

.wcu-feature-item h5 strong {
    font-weight: 900;
}

/* Recipient (white) */
.wcu-recipient {
    background: var(--white);
    padding: 60px 20px 30px;
    text-align: center;
}

.wcu-recipient p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 26px;
    line-height: 1.5;
    color: rgb(49, 49, 49);
}

/* CTA Section (gray) */
.wcu-cta-section {
    background: #f5f5f5;
    padding: 50px 20px;
    text-align: center;
}

.wcu-cta-intro {
    max-width: 900px;
    margin: 0 auto;
    font-size: 26px;
    color: rgb(49, 49, 49);
}

/* Blue banner between sections */
.wcu-banner-section {
    background: linear-gradient(to bottom, #f5f5f5 50%, var(--white) 50%);
    padding: 30px 20px;
    text-align: center;
}

.wcu-blue-banner {
    background: linear-gradient(135deg, #1d93d1, #1578ab);
    padding: 50px 40px;
    max-width: 900px;
    margin: 0 auto;
    color: var(--white);
}

.wcu-blue-banner .wcu-banner-sub {
    font-size: 26px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 15px;
}

.wcu-blue-banner h3 {
    font-size: 34px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.4;
}

/* Video Section */
.wcu-video-container {
    background: linear-gradient(to bottom, var(--white) 450px, #f5f5f5 250px);
}

.wcu-video-section {
    background: transparent;
    padding: 60px 20px 60px;
    text-align: center;
}

.wcu-video-section h2 {
    font-size: 55px;
    font-weight: 900;
    color: #1d93d1;
    margin-bottom: 10px;
}

.wcu-video-section p {
    font-size: 24px;
    color: rgb(49, 49, 49);
    margin-bottom: 30px;
}

.wcu-video-wrap {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 10px;
    background-color: #ffffff;
    border: 2px solid #929497;
    position: relative;
}

.wcu-video-wrap video {
    width: 100%;
    border-radius: 0;
}

/* Bottom CTA on Why Choose Us */
.wcu-whatnow {
    background: linear-gradient(to bottom, #f5f5f5 75%, #2a2a2a 75%);
    padding: 40px 20px 120px;
    text-align: center;
}

.wcu-whatnow h4 {
    font-size: 34px;
    font-weight: 900;
    color: #1d93d1;
    margin-bottom: 30px;
}

/* === RESPONSIVE === */
@media (max-width: 960px) {
    .features-grid { grid-template-columns: 1fr; }
    .faq-card { flex-direction: column; }
    .faq-card img { width: 100%; height: auto; }
    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .contact-form-card .form-row { grid-template-columns: 1fr; }
    .login-form-inline { flex-direction: column; }
    /* Home hero */
    .hero-section h3 { font-size: 22px; }
    .hero-section h5 { font-size: 16px; }
    .hero-video { padding: 5px; }

    /* Home Why Choose section */
    .feature-card .icon i { font-size: 3.5rem; }
    .feature-card h5 { font-size: 18px; }
    .feature-card p { font-size: 15px; }

    /* Home What Now */
    .whatnow-section h2 { font-size: 24px; }
    .whatnow-section h4 { font-size: 18px; }
    .whatnow-section p { font-size: 16px; }

    /* === WCU Mobile === */

    /* Hero / Intro */
    .wcu-hero { padding: 40px 15px 0; }
    .wcu-intro { font-size: 18px; line-height: 1.5; margin: 15px auto; }

    /* Content row: side-by-side → stacked */
    .wcu-content-row {
        flex-direction: column;
        gap: 20px;
    }
    .wcu-side-image { flex: 0 0 auto; text-align: center; width:100%}
    .wcu-side-image img { max-width: 250px; }
    .wcu-body-text { font-size: 16px; }

    /* Overlap images smaller */
    .wcu-overlap-image img { width: 200px; height: 200px; }
    .wcu-overlap-image { padding: 20px 0; }

    /* Truth section */
    .wcu-truth { padding: 30px 15px; }
    .wcu-truth h5 { font-size: 20px; }
    .wcu-truth h2 { font-size: 28px; }

    /* Purpose blue box */
    .wcu-purpose { padding: 20px 15px; }
    .wcu-purpose-box { padding: 25px 20px; }
    .wcu-purpose h6 { font-size: 17px; }
    .wcu-purpose h3 { font-size: 24px; }

    /* Free Coaching */
    .wcu-free-coaching { padding: 0 15px; }
    .wcu-free-heading { font-size: 28px; }
    .wcu-offering { font-size: 17px; }
    .wcu-coaching-text { font-size: 16px; }
    .wcu-cta-link { font-size: 20px; }

    /* Icons row → vertical stack */
    .wcu-icons-section { padding: 30px 15px; }
    .wcu-features-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .wcu-feature-item {
        width: 100%;
        max-width: 280px;
    }
    .wcu-feature-item img { width: 120px; height: 120px; }
    .wcu-feature-item h5 {
        white-space: normal;
        font-size: 18px;
    }

    /* Recipient */
    .wcu-recipient p { font-size: 16px; }

    /* CTA */
    .wcu-cta-intro { font-size: 16px; }

    /* Banner */
    .wcu-blue-banner { padding: 30px 20px; }
    .wcu-blue-banner h3 { font-size: 22px; }
    .wcu-blue-banner .wcu-banner-sub { font-size: 16px; }

    /* Video */
    .wcu-video-section h2 { font-size: 22px; }
    .wcu-video-section p { font-size: 16px; }
    .wcu-video-wrap { padding: 5px; margin-bottom: 40px; }

    /* What Now */
    .wcu-whatnow { padding: 30px 15px; }
}

/* === FAQ VIDEO PAGE === */
.faq-page-section {
    padding: 40px 20px 20px;
    background: var(--white);
}

.faq-page-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.faq-page-label {
    font-size: 21px;
    font-weight: 400;
    color: #1d93d1;
    line-height: 29.4px;
    margin: 0 0 10px;
    letter-spacing: 0.15em;
    text-align: center;
}

.faq-page-separator {
    border-top: 2px solid #929497;
    margin: 0 auto 25px;
    max-width: 100%;
}

.faq-page-title {
    font-size: 42px;
    font-weight: 900;
    color: #313131;
    line-height: 50.4px;
    margin: 0 auto 35px;
    text-align: center;
}

.faq-page-section .faq-video-wrap {
    margin: 0 0 15px;
    padding: 0;
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
}

.faq-page-section .faq-video-wrap video {
    width: 100%;
    display: block;
}

/* faq video overlay now uses shared .video-play-overlay */

/* Transcript Accordion */
.faq-transcript-accordion {
    border: 1px solid #d6d6d6;
    margin: 0 0 30px;
    text-align: left;
}

.faq-transcript-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    user-select: none;
}

.faq-transcript-label {
    font-size: 18px;
    font-weight: 400;
    color: #1d93d1;
    line-height: 26.1px;
}

.faq-transcript-icon::after {
    content: '+';
    font-size: 18px;
    color: #1d93d1;
    font-weight: 400;
}

.faq-transcript-accordion.open .faq-transcript-icon::after {
    content: '\2212';
}

.faq-transcript-content {
    display: none;
    padding: 0 30px 10px 15px;
}

.faq-transcript-accordion.open .faq-transcript-content {
    display: block;
}

.faq-transcript-content p {
    font-size: 18px;
    font-weight: 400;
    color: #313131;
    line-height: 26.1px;
    margin: 0;
    padding: 0 0 15px;
}

.faq-transcript-content p:last-child {
    padding-bottom: 0;
}

/* Carousel Section */
.faq-carousel-section {
    padding: 40px 20px 200px;
    background: #f2f2f2;
}

.faq-carousel-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.faq-carousel-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
}

.faq-carousel-arrow svg {
    width: 30px;
    height: 30px;
    fill: #1d93d1;
}

.faq-carousel-arrow:hover svg {
    fill: #1577a8;
}

.faq-carousel-viewport {
    overflow: hidden;
    flex: 1;
}

.faq-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.faq-carousel-card {
    flex: none;
    text-decoration: none;
    color: #313131;
    display: block;
    height: 350px;
    overflow: hidden;
    border: 1px solid #d6d6d6;
    background: #fff;
}

.faq-carousel-card.active {
    border-color: transparent;
    border-bottom: 3px solid #1d93d1;
    box-shadow: none;
}

.faq-carousel-image img {
    width: 100%;
    display: block;
}

.faq-carousel-title {
    font-size: 20px;
    font-weight: 900;
    color: #313131;
    line-height: 26px;
    margin: 0;
    padding: 20px 30px 10px 15px;
}

.faq-carousel-card:hover .faq-carousel-title {
    color: #1d93d1;
}

.faq-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.faq-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-carousel-dot.active {
    background: #333;
    width: 10px;
    height: 10px;
}

@media (max-width: 900px) {
    .faq-page-title { font-size: 30px; line-height: 38px; }
}

@media (max-width: 600px) {
    .faq-page-title { font-size: 24px; line-height: 32px; }
}

/* === BOUNCE-IN ANIMATION === */
@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
    0% { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }
    20% { transform: scale3d(1.1, 1.1, 1.1); }
    40% { transform: scale3d(0.9, 0.9, 0.9); }
    60% { opacity: 1; transform: scale3d(1.03, 1.03, 1.03); }
    80% { transform: scale3d(0.97, 0.97, 0.97); }
    100% { opacity: 1; transform: scale3d(1, 1, 1); }
}

.bounce-in {
    opacity: 0;
}

.bounce-in.animated {
    animation: bounceIn 0.75s ease both;
}

/* ===== Legal Pages ===== */
.legal-page {
    background: #fff;
    padding: 60px 20px 80px;
}
.legal-page .legal-content {
    max-width: 900px;
    margin: 0 auto;
}
.legal-page h1 {
    font-size: 55px;
    font-weight: 900;
    color: #313131;
    margin: 0 0 30px;
}
.legal-page h4 {
    font-size: 34px;
    font-weight: 900;
    color: #313131;
    line-height: 1.4;
    margin: 30px 0 15px;
}
.legal-page p {
    font-size: 18px;
    font-weight: 400;
    color: #313131;
    line-height: 1.45;
    margin: 0 0 15px;
}
.legal-page a {
    color: #1d93d1;
    text-decoration: none;
}
.legal-page a:hover {
    text-decoration: underline;
}
.legal-page ul {
    margin: 0 0 15px 20px;
    padding: 0;
}
.legal-page li {
    font-size: 16px;
    color: #313131;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* FUEL CMS inline editing bar - ensure visibility */
#__fuel_edit_bar__ {
    z-index: 99999 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 52px !important;
    background: #1a1a1a !important;
    opacity: 1 !important;
    border-bottom: 1px solid #333 !important;
}
#__fuel_edit_bar__ * {
    margin: revert !important;
    padding: revert !important;
    box-sizing: content-box !important;
}
#__fuel_edit_bar__ .buttonbar {
    background: #1a1a1a !important;
    height: 52px !important;
    padding: 0 10px !important;
}
#__fuel_edit_bar__ .ico {
    display: block !important;
    padding-left: 24px !important;
    background-position: 5px 2px !important;
    background-repeat: no-repeat !important;
    background-image: url(/fuel/modules/fuel/assets/images/fuel_icons.png) !important;
    min-width: 16px !important;
    min-height: 16px !important;
    line-height: 20px !important;
}
#__fuel_edit_bar__ .ico_fuel { background-position: 7px -587px !important; }
#__fuel_edit_bar__ .ico_edit { background-position: 7px -1364px !important; }
#__fuel_edit_bar__ .ico_publish { background-position: 7px -1068px !important; }
#__fuel_edit_bar__ .ico_cache { background-position: 7px -1105px !important; }
#__fuel_edit_bar__ ul { list-style: none !important; display: flex !important; align-items: center !important; height: 52px !important; flex-wrap: wrap !important; margin-top: -10px !important; }
#__fuel_edit_bar__ li { display: inline-block !important; margin: 0 5px !important; }
#__fuel_edit_bar__ a, #__fuel_edit_bar__ label { color: #ccc !important; font-size: 12px !important; text-decoration: none !important; }
#__fuel_edit_bar__ a:hover { color: #fff !important; }
#__fuel_edit_bar__ select { font-size: 12px !important; background: #333 !important; color: #ccc !important; border: 1px solid #555 !important; padding: 2px 5px !important; border-radius: 3px !important; }
/* Push page content down to make room for the bar */
body.__fuel_inline__ {
    padding-top: 52px !important;
}
.__fuel_edit__ {
    z-index: 99998 !important;
}
/* Prevent FUEL JS from hiding markers via :hidden check */
.__fuel_marker__ {
    display: inline !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    font-size: 1px !important;
    line-height: 1px !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    vertical-align: middle !important;
}

/* ===== Video.js Custom Styling ===== */
/* Blue control bar matching site logo (#29ABE2) */
.video-js .vjs-control-bar {
    background: #29ABE2;
    height: 3.5em;
    font-size: 1.1em;
}
/* White controls - vertically centered */
.video-js .vjs-control-bar .vjs-control {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.video-js .vjs-play-progress,
.video-js .vjs-volume-level {
    background: #fff;
}
.video-js .vjs-load-progress {
    background: rgba(255,255,255,0.3);
}
.video-js .vjs-load-progress div {
    background: rgba(255,255,255,0.2);
}
.video-js .vjs-slider {
    background: rgba(255,255,255,0.25);
}
/* Bigger buttons (30% larger) */
.video-js .vjs-control-bar .vjs-control .vjs-icon-placeholder::before {
    font-size: 2.0em;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-js .vjs-big-play-button {
    border-color: #29ABE2;
    background: rgba(41,171,226,0.8);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin-top: -40px;
    margin-left: -40px;
}
.video-js .vjs-big-play-button .vjs-icon-placeholder::before {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 56px;
}
.video-js:hover .vjs-big-play-button {
    background: rgba(41,171,226,0.95);
}
/* Hide "captions settings" item in the CC menu */
.video-js .vjs-texttrack-settings {
    display: none !important;
}
/* Progress bar time tooltip */
.video-js .vjs-time-tooltip {
    background: #29ABE2;
    color: #fff;
}
/* Captions menu styling */
.vjs-menu-button-popup .vjs-menu {
    position: absolute;
    bottom: 0;
    width: 12em;
    left: -4em;
    height: 0em;
    margin-bottom: 1.5em;
    border-top-color: rgba(43, 51, 63, 0.7);
}
.vjs-menu-button-popup .vjs-menu .vjs-menu-content {
    background-color: #2B333F;
    background-color: rgba(43, 51, 63, 0.7);
    position: absolute;
    width: 100%;
    bottom: 2em;
    max-height: 15em;
    right: 0em;
}
.video-js .vjs-menu li {
    color: #fff;
}
.video-js .vjs-menu li.vjs-selected {
    background: rgba(255,255,255,0.3);
    color: #fff;
}
.video-js .vjs-menu li:hover {
    background: rgba(255,255,255,0.2);
}
/* Progress bar vertical alignment */
.video-js .vjs-progress-control {
    display: flex;
    align-items: center;
    height: 100%;
}
.video-js .vjs-time-control {
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 1;
}
.video-js .vjs-volume-panel {
    display: flex;
    align-items: center;
    height: 100%;
}
/* Remove black background/borders from Video.js */
.video-js {
    background-color: transparent;
}
.video-js .vjs-tech {
    object-fit: contain;
}
