/* ── View Transitions API — native cross-fade between page navigations ── */
@view-transition {
    navigation: auto;
}

::view-transition-old(root) {
    animation: 200ms ease-in both fade-out;
}

/* Delay new page reveal so images have more time to load before appearing */
::view-transition-new(root) {
    animation: 350ms ease-out both fade-in;
    animation-delay: 150ms;
}

@keyframes fade-out {
    from { opacity: 1; }
    to   { opacity: 0; }
}

@keyframes fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Universal font override — Poppins everywhere ── */
*, *::before, *::after {
    font-family: 'Poppins', sans-serif !important;
}

/* ── Font Awesome kit: restore icon font (Poppins override would hide glyphs) ── */
/* FA draws the glyph in ::before, so we must override *::before for icon elements */
i.fa-solid, i.fas, i.fa-regular, i.far, i.fa-light, i.fal, i.fa-thin, i.fat, i.fa-brands, i.fab,
i[class^="fa-"], i[class*=" fa-"] {
    font-family: "Font Awesome 6 Free" !important;
}
i.fa-solid::before, i.fas::before, i.fa-regular::before, i.far::before, i.fa-light::before, i.fal::before,
i.fa-thin::before, i.fat::before, i[class^="fa-"]::before, i[class*=" fa-"]::before {
    font-family: "Font Awesome 6 Free" !important;
}
i.fa-brands, i.fab {
    font-family: "Font Awesome 6 Brands" !important;
}
i.fa-brands::before, i.fab::before {
    font-family: "Font Awesome 6 Brands" !important;
}
i.fa-solid, i.fas, i.fa-solid::before, i.fas::before { font-weight: 900 !important; }
i.fa-thin, i.fat, i.fa-thin::before, i.fat::before { font-weight: 100 !important; }
i.fa-regular, i.far, i.fa-regular::before, i.far::before { font-weight: 400 !important; }
i.fa-light, i.fal, i.fa-light::before, i.fal::before { font-weight: 300 !important; }
i.fa-brands, i.fab, i.fa-brands::before, i.fab::before { font-weight: 400 !important; }

/* Hide processing alert globally (temporarily disabled) */
.alert--process { display: none !important; }

/* ── Teacher card: shared button base ────────────────────────────────────── */
.card-actions .btn-book,
.card-actions .btn-message {
    display: block;
    width: 100%;
    height: 51px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.03em;
    transition: background-color 0.2s, color 0.2s;
    border: none;
}

/* Trial button — gold (matches btn-yellow on profile) */
.card-actions .btn-book.btn-primary {
    background-color: #FACC15 !important;
    border: none !important;
    color: #234b3b !important;
}
.card-actions .btn-book.btn-primary:hover,
.card-actions .btn-book.btn-primary:focus {
    background-color: #234b3b !important;
    color: #ffffff !important;
}

/* Message / Contact button — white with green border (matches btn-white on profile) */
.card-actions .btn-message {
    background: #ffffff !important;
    border: 1px solid #0F4C3A !important;
    color: #0F4C3A !important;
}
.card-actions .btn-message:hover,
.card-actions .btn-message:focus {
    background-color: #234b3b !important;
    border-color: #234b3b !important;
    color: #ffffff !important;
}

/* Disabled state */
.card-actions .btn-book.disabled,
.card-actions .btn-book.btn-secondary.btn--disabled {
    background-color: #e5e7eb !important;
    border: none !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

.card-actions .btn-book:active,
.card-actions .btn-message:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
/* ─────────────────────────────────────────────────────────────────────────── */

/* =====================================================
   GLOBAL MODAL SYSTEM (cal-modal-overlay)
   Used for: Login, Message, and other overlays
   ===================================================== */
.cal-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.cal-modal-overlay.open { display: flex; }

.cal-modal-box {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    width: 90%;
    max-width: 820px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: calModalIn 0.25s ease;
    max-height: 90vh;
    overflow-y: auto;
}
@keyframes calModalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.cal-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}
.cal-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
    background: #F5F6F9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    flex-shrink: 0;
}
.cal-modal-close:hover { background: #0F4C3A; }
.cal-modal-close:hover svg path { stroke: #fff; }

.modal-btn-primary {
    width: 100%;
    height: 56px;
    background: #0F4C3A;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(15, 76, 58, 0.25);
    display: block;
    transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}
.modal-btn-primary:hover {
    background: #234b3b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 76, 58, 0.35);
}
.modal-btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(15, 76, 58, 0.2);
    background: #0a3329;
}

/* Ensure sticky header always renders above page content */
/* ================= HEADER — landing page style ================= */
.header { z-index: 200 !important; }

/* Hide the old green top bar */
.top-green-bar { display: none !important; }

/* Main nav bar */
.header-primary {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(253, 249, 246, 0.9) !important;
    border-bottom: 1px solid rgba(35, 75, 59, 0.08) !important;
    box-shadow: none !important;
    transition: all 0.4s ease;
}

.header-primary .container,
.header-primary .header-flex {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

/* ================= HEADER LANG/CURRENCY TOGGLE ================= */
.header-primary .header__action { align-items: center; }
.header-primary .lang {
    font-weight: 500;
    font-size: 14px;
    color: #2d2d2d;
}

.orl-lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1.5px solid rgba(35,75,59,0.25);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #2d2d2d;
    cursor: pointer;
    transition: all 0.2s ease;
}
.orl-lang-toggle:hover {
    border-color: #234b3b;
    color: #234b3b;
    background: rgba(35,75,59,0.05);
}
.orl-lang-toggle svg {
    flex-shrink: 0;
}

/* ================= HEADER NAV LINKS ================= */
.header-primary .menu__item a {
    color: #2d2d2d;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
}

.header-primary .menu__item a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #234b3b;
    transition: width 0.3s ease;
}

.header-primary .menu__item a:hover::after,
.header-primary .menu.nav--primary-offset ul .menu__item.has-current a::after {
    width: 100%;
}

.header-primary .menu.nav--primary-offset ul .menu__item a:hover,
.header-primary .menu.nav--primary-offset ul .menu__item.has-current a:hover {
    color: #234b3b !important;
}

.top-right-content {
    display: flex;
    align-items: center;
    gap: 18px;
}


.social-links {
    display: flex;
    gap: 14px;
}

.social-links img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}


/* SIGN UP BUTTON — green filled */
/* SIGN UP button — filled pill */
.btn-sign-up {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    height: auto;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    background-color: #234b3b;
    color: #ffffff;
    border: 2px solid #234b3b;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-sign-up:hover {
    background-color: #172f26 !important;
    border-color: #172f26 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(35,75,59,0.3);
}

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

/* LOG IN button — outline pill */
.btn-create-account {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    height: auto;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    background-color: transparent;
    color: #234b3b;
    border: 2px solid #234b3b;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-create-account:hover {
    background-color: #234b3b !important;
    border-color: #234b3b !important;
    color: #ffffff !important;
}

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

/* =====================
   HERO SECTION
===================== */
.hero {
    background: #fdf9f6;
    padding: 100px 48px 80px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* =====================
     HERO CONTAINER
  ===================== */
.hero-container {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* =====================
     LEFT CONTENT
  ===================== */
.hero-content {
    max-width: 600px;
}

/* TITLE EM — green italic with gold highlight */
.hero-title em {
    font-style: italic;
    color: #234b3b;
    position: relative;
}

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 12px;
    background: url('/application/views/images/line.png') center/100% 100% no-repeat;
}

/* BADGE PILL */
.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(35,75,59,0.08);
    border: 1px solid rgba(35,75,59,0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #234b3b;
    margin-bottom: 24px;
}

.hero-badge-pill::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #3a7a5e;
    border-radius: 50%;
    animation: heroPulse 2s infinite;
    flex-shrink: 0;
}

@keyframes heroPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes heroFadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Staggered fade-in-up on hero load */
.hero-badge-pill {
    animation: heroFadeInUp 0.8s ease both;
}
.hero-title {
    animation: heroFadeInUp 0.8s 0.1s ease both;
}
.hero-para {
    animation: heroFadeInUp 0.8s 0.2s ease both;
}
.hero-btn-primary {
    animation: heroFadeInUp 0.8s 0.3s ease both;
}
.hero-media {
    animation: heroFadeInUp 0.8s 0.4s ease both;
}

/* TITLE */
.hero-title {
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}


.confidence-line {
    position: relative;
    display: inline-block;
}

.confidence-line::after {
    content: "";
    position: absolute;

    left: 66px;
    bottom: 3px;
    /* text ke niche gap */

    width: 100%;
    height: 12px;

    background: url("/my-images/line.png") no-repeat center;
    background-size: contain;
}


/* TEACHER BADGE */
.teacher-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 281px;
    height: 83px;

    background-color: #FDB913;
    /* yellow bg */
    border-radius: 10px;

    font-size: 54px;
    font-weight: 700;
    line-height: 1;
    color: #FFFFFF;

    transform: rotate(-2.79deg);

    margin: 0 6px;
    vertical-align: middle;
}



/* PARAGRAPH */
.hero-para {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: #6b6b6b;
    margin-top: 0;
    margin-bottom: 32px;
    max-width: 480px;
}

/* =====================
     HERO PRIMARY BUTTON (landing page style)
  ===================== */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #234b3b;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(35,75,59,0.25);
    transition: all 0.35s ease;
}

.hero-btn-primary:hover {
    background: #172f26;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(35,75,59,0.35);
}

.hero-btn-primary svg {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.hero-btn-primary:hover svg {
    transform: translateX(4px);
}

/* =====================
     BUTTON (legacy, kept for other pages)
  ===================== */
.hero-btn {
    width: fit-content;
    height: 74px;
    margin-top: 40px;

    background: #ffc21c;
    border: 2px solid transparent;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-left: 1.3rem;
    padding-right: 5rem;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.12s ease;
    color: #0c3b2e;

    &:hover {
        background: #ffe473;
        color: #000000;
        text-decoration: none;
        border: 2px solid transparent;
    }

    &:hover .btn-icon-circle {
        fill: #FFC21C;
    }

    &:hover .btn-icon-arrow {
        stroke: #0F4C3A;
    }

    &:active {
        transform: translateY(3px);
        box-shadow: 0 1px 4px rgba(0,0,0,0.18);
    }
}

.btn-icon {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    filter: drop-shadow(0px 0px 10px rgba(255,255,255,0.25));
}

.btn-icon-circle { transition: fill 0.18s ease; }
.btn-icon-arrow  { transition: stroke 0.18s ease; }

/* BUTTON TEXT */
.btn-text {
    font-size: 24px;
    font-weight: 600;

    white-space: nowrap;

}



/* =====================
     RIGHT IMAGE
  ===================== */
.hero-media {
    position: relative;
}

.hero-media img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.hero-media img:hover {
    transform: scale(1.015);
}

/* FLOATING BADGES */
.hero-float-badge {
    position: absolute;
    background: #ffffff;
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    z-index: 3;
    white-space: nowrap;
}

.hero-float-top {
    top: 16px;
    right: -16px;
    animation: heroFloat 4s ease-in-out infinite;
}

.hero-float-bottom {
    bottom: 12px;
    left: -24px;
    animation: heroFloat 4s ease-in-out infinite;
    animation-delay: 2s;
}

.hero-float-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.hero-float-icon--green { background: rgba(35,75,59,0.1); }
.hero-float-icon--gold  { background: rgba(212,168,83,0.15); }

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes heroFloatMobile {
    0%, 100% { transform: scale(0.5) translateY(0); }
    50%       { transform: scale(0.5) translateY(-8px); }
}

@media (max-width: 767px) {
    .hero-float-top {
        right: 24px;
        transform-origin: top right;
        animation-name: heroFloatMobile;
    }
    .hero-float-bottom {
        left: 24px;
        transform-origin: bottom left;
        animation-name: heroFloatMobile;
    }
}

/* =========================
   WHY ORELAO SECTION
========================= */
/* === ORLEAO WHY SECTION === */
.orl-why {
  padding: 100px 48px;
}

.orl-why-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.orl-why-tag {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #234b3b;
  margin-bottom: 16px;
}

.orl-why-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  color: #1a1a1a;
  letter-spacing: -1px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1.15;
  display: block;
}

.orl-why-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  color: #6b7280;
  max-width: 520px;
  line-height: 1.7;
  margin: 0 0 60px 0;
  padding: 0;
  display: block;
}

.orl-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.orl-why-card {
  background: #fdf9f6;
  border-radius: 20px;
  padding: 40px 32px;
  transition: all 0.4s ease;
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.orl-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #234b3b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.orl-why-card:hover::before {
  transform: scaleX(1);
}

.orl-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.orl-why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
  flex-shrink: 0;
}

.orl-why-icon--a { background: rgba(26,107,74,0.1); }
.orl-why-icon--b { background: rgba(212,168,83,0.12); }
.orl-why-icon--c { background: rgba(26,107,74,0.08); }

.orl-why-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  padding: 0;
  display: block;
}

.orl-why-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
  padding: 0;
  display: block;
}

@media (max-width: 768px) {
  .orl-why { padding: 60px 24px; }
  .orl-why-grid { grid-template-columns: 1fr; }
}













/* ================= POSSIBILITIES SECTION ================= */
.possibilities {
    padding: 100px 48px;
    background: #ffffff;
    text-align: center;
}

.possibilities-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.possibilities .section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #234b3b;
    margin-bottom: 16px;
}

.poss-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 0;
}

.poss-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.poss-card {
    border-radius: 24px;
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.poss-card:hover {
    transform: translateY(-8px);
}

.poss-card-bg {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    transition: transform 0.6s ease;
}

.poss-card:hover .poss-card-bg {
    transform: scale(1.05);
}

.poss-card.poss-a .poss-card-bg { background: linear-gradient(160deg, #234b3b, #172f26, #0f1f18); }
.poss-card.poss-b .poss-card-bg { background: linear-gradient(160deg, #d4a853, #b08530, #8a6520); }
.poss-card.poss-c .poss-card-bg { background: linear-gradient(160deg, #2d5f6e, #1a4050, #0f2d3a); }

.poss-card-img {
    width: calc(100% - 28px);
    flex: 1;
    object-fit: cover;
    object-position: center top;
    display: block;
    position: relative;
    z-index: 1;
    margin: 12px auto 0;
    border-radius: 18px;
}

.poss-card-text {
    position: relative;
    z-index: 2;
    padding: 24px 28px 32px;
    color: #ffffff;
}

.poss-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

.poss-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.75;
    width: auto;
}

@media (max-width: 768px) {
    .possibilities { padding: 60px 24px; }
    .poss-grid { grid-template-columns: 1fr; }
}


/* === ORLEAO HOW IT WORKS SECTION === */
.orl-how {
  padding: 100px 48px;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.orl-how::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(26,107,74,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.orl-how-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.orl-how-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d4a853;
  margin-bottom: 16px;
  display: block;
}

.orl-how-title {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.orl-how-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 60px 0;
  line-height: 1.6;
}

.orl-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.orl-step-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative;
}

.orl-step-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(26,107,74,0.4);
  transform: translateY(-4px);
}

.orl-step-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: rgba(255,255,255,0.08);
  margin-bottom: 20px;
  line-height: 1;
  display: block;
}

.orl-step-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px 0;
  padding: 0;
  display: block;
}

.orl-step-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin: 0;
  padding: 0;
  display: block;
}

@media (max-width: 992px) {
  .orl-steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .orl-how { padding: 60px 24px; }
  .orl-how-title { font-size: 34px; }
}

@media (max-width: 480px) {
  .orl-steps-grid { grid-template-columns: 1fr; }
  .orl-how-title { font-size: 28px; }
}


/* === ORLEAO CTA SECTION — Scoped to avoid theme collisions === */
.orleao-cta-wrap,
.orleao-cta-wrap *,
.orleao-cta-wrap *::before,
.orleao-cta-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.orleao-cta-wrap {
  padding: 100px 48px;
  max-width: 1280px;
  margin: 0 auto;
  font-family: 'Poppins', sans-serif;
}

.orleao-cta-wrap .orl-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.orleao-cta-wrap .orl-cta-card {
  border-radius: 24px;
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: block;
  width: 100%;
  text-align: left;
}

.orleao-cta-wrap .orl-cta-card:hover {
  transform: translateY(-4px);
}

.orleao-cta-wrap .orl-cta-card.orl-student {
  background: #234b3b;
  color: #ffffff;
  border: none;
}

.orleao-cta-wrap .orl-cta-card.orl-teacher {
  background: #f5ede0;
  color: #1a1a1a;
  border: 1px solid rgba(0,0,0,0.06);
}

.orleao-cta-wrap .orl-cta-card .orl-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 20px 0;
  padding: 0;
  display: block;
  line-height: 1.4;
  border: none;
  background: none;
  float: none;
  position: static;
  width: auto;
}

.orleao-cta-wrap .orl-cta-card.orl-student .orl-tag {
  color: #f0ddb0;
}

.orleao-cta-wrap .orl-cta-card.orl-teacher .orl-tag {
  color: #234b3b;
}

.orleao-cta-wrap .orl-cta-card .orl-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 0 0 16px 0;
  padding: 0;
  border: none;
  background: none;
  text-transform: none;
  color: inherit;
  float: none;
  position: static;
  width: auto;
  display: block;
}

.orleao-cta-wrap .orl-cta-card .orl-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 32px 0;
  padding: 0;
  opacity: 0.8;
  border: none;
  background: none;
  color: inherit;
  float: none;
  position: static;
  width: auto;
  display: block;
  max-width: none;
  text-transform: none;
  letter-spacing: normal;
}

.orleao-cta-wrap .orl-cta-card .orl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  position: static;
  float: none;
  width: auto;
  max-width: none;
}

.orleao-cta-wrap .orl-cta-card .orl-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}

.orleao-cta-wrap .orl-cta-card.orl-student .orl-btn {
  background: #ffffff;
  color: #234b3b;
}

.orleao-cta-wrap .orl-cta-card.orl-student .orl-btn:hover {
  background: #f0ddb0;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.orleao-cta-wrap .orl-cta-card.orl-teacher .orl-btn {
  background: #234b3b;
  color: #ffffff;
}

.orleao-cta-wrap .orl-cta-card.orl-teacher .orl-btn:hover {
  background: #172f26;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(35,75,59,0.3);
}

@media (max-width: 768px) {
  .orleao-cta-wrap {
    padding: 60px 24px;
  }
  .orleao-cta-wrap .orl-cta-grid {
    grid-template-columns: 1fr;
  }
  .orleao-cta-wrap .orl-cta-card {
    padding: 40px 28px;
  }
  .orleao-cta-wrap .orl-cta-card .orl-heading {
    font-size: 26px;
  }
}



/* =====================
   FRONT HEADER – Dashboard-style message & notification icons
   ===================== */
.orl-front-header {
    display: flex;
    align-items: center;
    gap: 8px;
}
.orl-front-header .orl-dw { position: relative; }
.orl-front-header .orl-icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #707B88;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    text-decoration: none;
    font-size: 1rem;
}
.orl-front-header .orl-icon-btn:hover {
    color: #0F4C3A;
    border-color: #0F4C3A;
    background: #F9FAFB;
}
.orl-front-header .orl-notif-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #0F4C3A;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 10px;
    border: 2px solid #fff;
    min-width: 18px;
    text-align: center;
    pointer-events: none;
    line-height: 1.4;
}
.orl-front-header .orl-dropdown-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    width: 240px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid #E5E7EB;
    overflow: hidden;
    animation: orlSlideDown 0.2s ease-out;
    z-index: 1200;
}
.orl-front-header .orl-dropdown-menu.show { display: block; }
@keyframes orlSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.orl-front-header .msg-dd-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 20px; border-bottom: 1px solid #F3F4F6;
}
.orl-front-header .msg-dd-header h3 { font-size: 1.05rem; font-weight: 700; margin: 0; color: #111827; }
.orl-front-header .msg-dd-actions { display: flex; align-items: center; gap: 14px; }
.orl-front-header .msg-dd-actions a,
.orl-front-header .msg-dd-actions i { color: #707B88; cursor: pointer; font-size: 0.9rem; transition: 0.2s; text-decoration: none; }
.orl-front-header .msg-dd-actions a:hover,
.orl-front-header .msg-dd-actions i:hover { color: #111827; }
.orl-front-header .msg-dd-search { padding: 12px 20px 8px; position: relative; }
.orl-front-header .msg-dd-search input {
    width: 100%; padding: 9px 9px 9px 36px; border: 1px solid #E5E7EB;
    border-radius: 8px; font-size: 0.88rem; outline: none; background: #fff;
    font-family: inherit; box-sizing: border-box;
}
.orl-front-header .msg-dd-search input:focus { border-color: #0F4C3A; }
.orl-front-header .msg-dd-search > i {
    position: absolute; left: 33px; top: 50%; transform: translateY(-50%);
    color: #707B88; font-size: 0.82rem; pointer-events: none;
}
.orl-front-header .msg-dd-tabs { display: flex; padding: 0 20px; border-bottom: 1px solid #F3F4F6; gap: 25px; }
.orl-front-header .msg-dd-tab {
    padding: 9px 0; font-size: 0.88rem; color: #707B88; cursor: pointer;
    font-weight: 500; border-bottom: 2px solid transparent; transition: 0.2s; margin-bottom: -1px;
}
.orl-front-header .msg-dd-tab.active { color: #111827; border-bottom-color: #0F4C3A; font-weight: 700; }
.orl-front-header .msg-dd-list { max-height: 340px; overflow-y: auto; }
.orl-front-header .msg-dd-item {
    display: flex; gap: 12px; padding: 12px 20px; border-bottom: 1px solid #F9FAFB;
    cursor: pointer; transition: background 0.2s; align-items: flex-start;
}
.orl-front-header .msg-dd-item:hover { background: #F9FAFB; }
.orl-front-header .msg-dd-avatar { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.orl-front-header .msg-dd-avatar--init {
    background: #0F4C3A; color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem; border-radius: 8px; width: 44px; height: 44px; flex-shrink: 0;
}
.orl-front-header .msg-dd-content { flex: 1; min-width: 0; }
.orl-front-header .msg-dd-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 3px; }
.orl-front-header .msg-dd-name {
    font-weight: 600; font-size: 0.88rem; color: #111827;
    display: flex; align-items: center; gap: 5px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.orl-front-header .msg-dd-time { font-size: 0.72rem; color: #707B88; white-space: nowrap; flex-shrink: 0; margin-left: 8px; }
.orl-front-header .msg-dd-preview { font-size: 0.82rem; color: #707B88; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.orl-front-header .msg-dd-item.unread .msg-dd-preview { color: #111827; font-weight: 600; }
.orl-front-header .msg-dd-dot { display: inline-block; width: 7px; height: 7px; background: #0F4C3A; border-radius: 50%; flex-shrink: 0; }
.orl-front-header .msg-dd-empty { padding: 30px; text-align: center; color: #707B88; font-size: 0.9rem; }
.orl-front-header .thread-menu-wrap { position: relative; margin-left: auto; flex-shrink: 0; align-self: center; }
.orl-front-header .thread-menu-btn {
    background: none; border: none; cursor: pointer; color: #707B88;
    width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; font-size: 0.8rem; transition: 0.2s; opacity: 0; padding: 0;
}
.orl-front-header .msg-dd-item:hover .thread-menu-btn { opacity: 1; }
.orl-front-header .thread-menu-btn:hover { background: #F3F4F6; color: #111827; }
.orl-front-header .thread-menu-dd {
    display: none; position: absolute; right: 0; top: 32px;
    background: #fff; border: 1px solid #E5E7EB; border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1); min-width: 130px; z-index: 400; overflow: hidden;
}
.orl-front-header .thread-menu-dd.show { display: block; }
.orl-front-header .thread-menu-item {
    display: flex; align-items: center; gap: 8px; padding: 10px 14px;
    font-size: 0.85rem; color: #111827; cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.orl-front-header .thread-menu-item:hover { background: #F9FAFB; }
.orl-front-header .thread-menu-item i { color: #707B88; font-size: 0.8rem; }
.orl-front-header .msg-dd-chat, .orl-header .msg-dd-chat { display: none; flex-direction: column; height: 420px; }
.orl-front-header .msg-dd-chat-header, .orl-header .msg-dd-chat-header {
    display: flex; align-items: center; gap: 12px; padding: 14px 20px;
    border-bottom: 1px solid #F3F4F6; background: #fff; flex-shrink: 0;
}
.orl-front-header .msg-dd-chat-back, .orl-header .msg-dd-chat-back { cursor: pointer; color: #707B88; font-size: 1rem; transition: 0.2s; flex-shrink: 0; }
.orl-front-header .msg-dd-chat-back:hover, .orl-header .msg-dd-chat-back:hover { color: #0F4C3A; }
.orl-front-header .msg-dd-chat-title, .orl-header .msg-dd-chat-title { font-weight: 700; font-size: 0.95rem; color: #111827; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.orl-front-header .msg-dd-chat-body, .orl-header .msg-dd-chat-body {
    flex: 1; overflow-y: auto; padding: 14px 16px; background: #F9FAFB;
    display: flex; flex-direction: column; gap: 8px;
}
.orl-front-header .msg-dd-chat-footer, .orl-header .msg-dd-chat-footer {
    display: flex; align-items: center; gap: 10px; padding: 12px 16px;
    border-top: 1px solid #E5E7EB; background: #fff; flex-shrink: 0;
}
.orl-front-header .msg-dd-chat-input, .orl-header .msg-dd-chat-input {
    flex: 1; padding: 9px 14px; border: 1px solid #E5E7EB; border-radius: 20px;
    outline: none; font-size: 0.88rem; font-family: inherit;
}
.orl-front-header .msg-dd-chat-input:focus, .orl-header .msg-dd-chat-input:focus { border-color: #0F4C3A; }
.orl-front-header .msg-dd-chat-send, .orl-header .msg-dd-chat-send {
    background: #0F4C3A; color: #fff; border: none; width: 36px; height: 36px;
    border-radius: 50%; cursor: pointer; display: flex; align-items: center;
    justify-content: center; transition: 0.2s; flex-shrink: 0;
}
.orl-front-header .msg-dd-chat-send:hover, .orl-header .msg-dd-chat-send:hover { transform: scale(1.05); }
.orl-front-header .msg-dd-attach-btn, .orl-header .msg-dd-attach-btn {
    cursor: pointer; color: #707B88; width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: 0.2s; flex-shrink: 0;
}
.orl-front-header .msg-dd-attach-btn:hover, .orl-header .msg-dd-attach-btn:hover { background: #F3F4F6; color: #0F4C3A; }
.orl-front-header .msg-dd-input-wrap, .orl-header .msg-dd-input-wrap { flex: 1; display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.orl-front-header .msg-dd-attach-preview, .orl-header .msg-dd-attach-preview {
    display: flex; align-items: center; gap: 6px; padding: 4px 10px;
    background: #F0FDF4; border: 1px solid #BBF7D0; border-radius: 6px; font-size: 0.78rem; color: #111827;
}
.orl-front-header .msg-dd-attach-preview span, .orl-header .msg-dd-attach-preview span { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.orl-front-header .msg-dd-attach-clear, .orl-header .msg-dd-attach-clear { cursor: pointer; color: #707B88; flex-shrink: 0; transition: 0.2s; }
.orl-front-header .msg-dd-attach-clear:hover, .orl-header .msg-dd-attach-clear:hover { color: #EF4444; }
.orl-front-header .chat-bubble-file, .orl-header .chat-bubble-file {
    display: flex; align-items: center; gap: 6px; padding: 5px 8px;
    background: rgba(255,255,255,0.18); border-radius: 6px; font-size: 0.8rem; margin-top: 4px;
}
.orl-header .chat-bubble-row.received { display: flex; align-items: flex-end; gap: 8px; }
.orl-header .msg-dd-bubble-avatar-wrap { flex-shrink: 0; width: 28px; height: 28px; }
.orl-header .msg-dd-bubble-avatar-wrap img.msg-dd-bubble-avatar {
    width: 28px; height: 28px; border-radius: 50%; object-fit: cover; display: block;
}
.orl-header .msg-dd-bubble-avatar-init {
    width: 28px; height: 28px; border-radius: 50%; background: #0F4C3A; color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700;
}
.orl-header .msg-dd-chat-timezone {
    font-size: 11px; color: #94A3B8; margin-left: 4px;
}

/* =====================
     FOOTER
  ===================== */
/* =====================
     FOOTER
  ===================== */
.footer {
    background: #1a1a1a;
    color: rgba(255,255,255,0.5);
    padding: 72px 48px 36px;
    width: 100%;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .orl-footer-logo-link img {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 300px;
    color: rgba(255,255,255,0.5);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #d4a853;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s;
}

.footer-socials a:hover {
    border-color: #d4a853;
    color: #d4a853;
    background: rgba(212,168,83,0.1);
}

@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .footer { padding: 48px 24px 24px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}



/* ===============================
   BANNER SECTION
================================ */
.mission-banner {
    width: 100%;
    height: 420px;
    background: url("/my-images/abouts/About.png") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ===============================
   CONTENT WRAPPER
================================ */
.banner-content {
    max-width: 734px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;

    align-items: center;
}

/* ===============================
   HEADING
================================ */
.banner-content h1 {
    font-size: 54px;
    line-height: 66px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.banner-content h1 span {
    color: #FDB913;
    display: block;
}

/* ===============================
   BREADCRUMB
================================ */
.breadcrumb {
    margin-top: 20px;
    font-size: 16px;
}

.breadcrumb a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 400;
}

.breadcrumb span {
    color: #FDB913;
    margin: 0 10px;
}


/* =========================
   ABOUT SECTION
========================= */
.about-section {
    background: #F0F4F5;
    padding: 100px 0;
    font-family: 'Poppins', sans-serif;
}

.about-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 100px;
    align-items: center;
}

/* =========================
   LEFT IMAGES
========================= */
.about-images {
    position: relative;
    width: 600px;
}

.about-images img {
    width: 100%;
    border-radius: 24px;
}

.img-main {
    position: relative;
    z-index: 1;
}

.img-overlap {
    position: absolute;
    bottom: -80px;
    right: -60px;
    width: 320px;
    box-shadow: 0 6px 19px rgba(0, 0, 0, 0.25);
}

/* =========================
   RIGHT CONTENT
========================= */
.about-content {
    max-width: 633px;
}

/* BADGE */
.about-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 127px;
    height: 38px;
    background: #4A8881;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* TITLE */
.about-title {
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 22px;
}

/* PARAGRAPH */
.about-para {
    font-size: 17px;
    line-height: 30px;
    font-weight: 400;
    color: #2D2C2C;

}

/* SUBTITLE */
.about-subtitle {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 24px 106px 24px;
}

.quote-icon {
    width: 20px;
    height: auto;
}

/* =========================
   BUTTON
========================= */
.about-btn {
    margin-top: 28px;
    width: 203px;
    height: 50px;
    background: #F8C62F;
    color: #0F4C3A;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;

    position: relative;

    display: flex;
    align-items: center;

    padding-left: 22px;
    /* text ka fixed start */
    padding-right: 18px;
    /* icon space */

    text-decoration: none;
    box-shadow: 4px 6px 0 #03594E;
}

/* TEXT — NEVER MOVE */
.about-btn .btn-text {
    white-space: nowrap;
}

/* ICON — ALWAYS RIGHT */
.about-btn img {
    position: absolute;
    right: 0px;
    width: 48px;

    filter: drop-shadow(0 0 19px rgba(0, 0, 0, 0.25));
}

/* =====================
   APPLY TO TEACH PAGE
   Form floats over the full-width background image/color.
   No split-screen layout.
===================== */

/* Fade-up animation for the form container */
@keyframes teachFormFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.teacherrequest-index .section--hero {
    background-size: cover;
    background-position: center top;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Dark overlay over the full section — photo bleeds through the whole width */
.teacherrequest-index .section--hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

/* Override the theme 2-column grid — only the form is on this page */
.teacherrequest-index .hero-panel {
    display: block;
}

/* Form column: left-aligned, max 500px, 5% from the left edge */
.teacherrequest-index .hero-panel__content {
    max-width: 500px;
    margin-left: 5%;
}

/* ---- Form container ---- */
.teacherrequest-index .hero-form {
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: teachFormFadeUp 0.5s ease both;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #111827;
}

/* ---- Title ---- */
.teacherrequest-index .hero-form__head h1,
.teacherrequest-index .hero-form__head h2,
.teacherrequest-index .hero-form__head h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    text-align: center;
}

/* ---- Body text ---- */
.teacherrequest-index .hero-form p,
.teacherrequest-index .hero-form label,
.teacherrequest-index .hero-form span {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #111827;
}

/* ---- Links ---- */
.teacherrequest-index .hero-form .link,
.teacherrequest-index .hero-form a {
    color: #0F4C3A;
    font-weight: 600;
    text-decoration: underline;
    font-family: 'Poppins', sans-serif;
}

/* ---- Inputs ---- */
.teacherrequest-index .hero-form .form-control,
.teacherrequest-index .hero-form input[type="email"],
.teacherrequest-index .hero-form input[type="password"],
.teacherrequest-index .hero-form input[type="text"] {
    height: 52px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #111827;
    transition: border-color 0.2s, background 0.2s;
}

/* Filled/active state */
.teacherrequest-index .hero-form .form-control:not(:placeholder-shown),
.teacherrequest-index .hero-form input[type="email"]:not(:placeholder-shown),
.teacherrequest-index .hero-form input[type="password"]:not(:placeholder-shown),
.teacherrequest-index .hero-form input[type="text"]:not(:placeholder-shown) {
    background: #EFF6FF;
}

/* Focus state */
.teacherrequest-index .hero-form .form-control:focus,
.teacherrequest-index .hero-form input[type="email"]:focus,
.teacherrequest-index .hero-form input[type="password"]:focus,
.teacherrequest-index .hero-form input[type="text"]:focus {
    border-color: #0F4C3A;
    background: #EFF6FF;
    outline: none;
    box-shadow: none;
}

/* ---- Primary submit button ---- */
.teacherrequest-index .hero-form button.btn--primary[name="btn_submit"],
.teacherrequest-index .hero-form .btn--primary.btn--block {
    height: 56px;
    border-radius: 14px;
    background: #0F4C3A;
    box-shadow: 0 4px 12px rgba(15, 76, 58, 0.25);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    border: none;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.teacherrequest-index .hero-form button.btn--primary[name="btn_submit"]:hover,
.teacherrequest-index .hero-form .btn--primary.btn--block:hover {
    background: #234b3b;
    box-shadow: 0 8px 20px rgba(15, 76, 58, 0.35);
    transform: translateY(-2px);
}

.teacherrequest-index .hero-form button.btn--primary[name="btn_submit"]:active,
.teacherrequest-index .hero-form .btn--primary.btn--block:active {
    background: #0a3329;
    box-shadow: 0 2px 6px rgba(15, 76, 58, 0.2);
    transform: translateY(1px);
}

/* ---- Password visibility toggle (inline icon inside input) ---- */
.teacherrequest-index .hero-form .password-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    background: transparent;
    color: #6B7280;
    transition: color 0.2s;
}

.teacherrequest-index .hero-form .password-toggle:hover {
    color: #0F4C3A;
    background: transparent;
}

.teacherrequest-index .hero-form .password-toggle svg,
.teacherrequest-index .hero-form .password-toggle i,
.teacherrequest-index .hero-form .password-toggle img {
    width: 20px;
    height: 20px;
    display: block;
}

/* =====================================================================
   TEACHER PROFILE PAGE  (v2 — new card layout)
   Body class: .teachers-view
   All rules scoped under .teachers-view.
===================================================================== */

/* ---- Page wrapper ---- */
.teachers-view .tp-wrap {
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    font-family: 'Poppins', sans-serif;
}

/* ---- Two columns ---- */
.teachers-view .tp-main {
    width: 850px;
    flex-shrink: 0;
}
.teachers-view .sidebar {
    width: 400px;
    max-width: 400px;
    flex-shrink: 0;
    position: sticky;
    top: 150px;
    z-index: 10;
}

/* Responsive: stack at 1280px */
@media (max-width: 1280px) {
    .teachers-view .tp-wrap {
        flex-direction: column;
        align-items: center;
    }
    .teachers-view .tp-main,
    .teachers-view .sidebar {
        width: 100%;
        max-width: 850px;
    }
    .teachers-view .sidebar {
        position: static;
    }
}

/* ---- Card ---- */
.teachers-view .tp-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 22px;
    padding: 30px 25px;
    margin-bottom: 24px;
}

/* ---- Section header (green bar + title) ---- */
.teachers-view .section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.teachers-view .section-bar {
    width: 4px;
    height: 22px;
    background: #0F4C3A;
    border-radius: 30px;
    flex-shrink: 0;
}
.teachers-view .tp-section-title {
    font-weight: 700;
    font-size: 18px;
    color: #0F4C3A;
    margin: 0;
    line-height: 22px;
    letter-spacing: -0.03em;
}

/* ---- Profile header grid ---- */
.teachers-view .profile-header-grid {
    display: flex;
    gap: 26px;
}

/* Photo column */
.teachers-view .photo-col {
    position: relative;
    flex-shrink: 0;
    align-self: flex-start;
}
.teachers-view .profile-rect-img {
    width: 200px;
    height: 265px;
    object-fit: cover;
    border: 3px solid #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.teachers-view .profile-rect-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Online dot — mirrors teacher card ::after approach */
.teachers-view .photo-col::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #9ca3af;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.teachers-view .photo-col.teacher-online::after {
    background: #22c55e;
}

/* Info column */
.teachers-view .profile-info-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 5px;
    min-width: 0;
}

/* Name + action buttons row */
.teachers-view .name-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}
.teachers-view .teacher-name {
    font-weight: 700;
    font-size: 26px;
    color: #0F4C3A;
    line-height: 1.2;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}
.teachers-view .verified-badge-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
.teachers-view .verified-tooltip {
    position: absolute;
    bottom: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    background: #111827;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    padding: 4px 8px;
    border-radius: 5px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.15s;
}
.teachers-view .verified-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #111827;
}
.teachers-view .verified-badge-wrap:hover .verified-tooltip { opacity: 1; }

.teachers-view .teacher-headline {
    font-size: 15px;
    font-weight: 500;
    color: #4B5563;
    margin: 0 0 8px 0;
    line-height: 1.4;
}
.teachers-view .profile-action-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.teachers-view .profile-icon-btn {
    background: transparent;
    color: #6B7280;
    border: none;
    padding: 4px;
    border-radius: 0;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: color 0.2s;
}
.teachers-view .profile-icon-btn:hover { background: transparent; color: #374151; }
.teachers-view .profile-icon-btn:disabled { opacity: 0.5; pointer-events: none; }
.teachers-view .profile-icon-btn.is--active { color: #e05252; }
.teachers-view .profile-action-btns .dropdown-toggle::after { display: none; }

/* Rating row */
.teachers-view .rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.teachers-view .rating-score {
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.teachers-view .star-icon { color: #FACC15; font-size: 18px; }

/* Stats row */
.teachers-view .stats-row {
    display: flex;
    gap: 15px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #777E88;
    flex-wrap: wrap;
    align-items: center;
}
.teachers-view .stat-bold { font-weight: 600; color: #0F4C3A; }
.teachers-view .flag-icon {
    width: 21px;
    height: 21px;
    vertical-align: middle;
    margin-right: 5px;
    border-radius: 0;
}

/* Language badges */
.teachers-view .lang-row {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.teachers-view .lang-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    background: #F5F6F9;
    border-radius: 6px;
    height: 32px;
}
.teachers-view .lang-name {
    font-weight: 700;
    font-size: 13px;
    color: #777E88;
    text-transform: uppercase;
}
.teachers-view .lang-level {
    background: #FFFFFF;
    border: 1px solid rgba(15, 76, 58, 0.2);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    color: #0F4C3A;
}

/* Pills row */
.teachers-view .pills-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.teachers-view .pill {
    background: #F5F6F9;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #777E88;
}

/* About sub-section */
.teachers-view .tp-about { margin-top: 30px; }
.teachers-view .body-text {
    color: #707B88;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Video player */
.teachers-view .video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    height: auto;
    margin-top: 20px;
    cursor: pointer;
}
.teachers-view .video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.teachers-view .play-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 64px;
    height: 64px;
    background: #0F4C3A;
    border-radius: 50%;
    border: 2px solid #0c0c0c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    font-size: 24px;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 2;
}
.teachers-view .video-container:hover .play-btn {
    background-color: #b8e3cd;
    color: #0F4C3A;
    transform: scale(1.1);
}
.teachers-view .tp-video-embed { position: absolute; inset: 0; }
.teachers-view .tp-video-embed iframe { width: 100%; height: 100%; display: block; }

/* ---- Teaching expertise accordion ---- */
.teachers-view .tp-accordion-item {
    border: none;
    border-bottom: 1px solid #F5F6F9;
}
.teachers-view .tp-accordion-item:last-child { border-bottom: none; }
.teachers-view .tp-accordion-item .accordion-button {
    font-weight: 600;
    color: #111827;
    background: none;
    font-size: 15px;
    box-shadow: none;
    padding: 14px 0;
}
.teachers-view .tp-accordion-item .accordion-button:not(.collapsed) {
    color: #0F4C3A;
    background: none;
    box-shadow: none;
}
.teachers-view .tp-accordion-item .accordion-body { padding: 0; }

/* ---- Qualifications tabs ---- */
.teachers-view .teach-qual-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.teachers-view .t-tab-btn {
    padding: 11px 22px;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    transition: background 0.2s, color 0.2s;
}
.teachers-view .t-tab-active {
    background: #0F4C3A;
    color: white;
    font-weight: 700;
    border: none;
}
.teachers-view .t-tab-inactive {
    border: 1px solid #0F4C3A;
    color: #0F4C3A;
    background: white;
    font-weight: 400;
}
.teachers-view .qual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.teachers-view .qual-item { display: flex; flex-direction: column; gap: 10px; }
.teachers-view .degree-title {
    font-weight: 600;
    font-size: 18px;
    color: #000;
    line-height: 140%;
    margin: 0;
}
.teachers-view .uni-name { font-weight: 400; font-size: 15px; color: #707B88; margin: 0; }
.teachers-view .year-tag {
    background: rgba(15, 76, 58, 0.1);
    border-radius: 6px;
    padding: 4px 6px;
    color: #0F4C3A;
    font-size: 12px;
    font-weight: 500;
    width: fit-content;
    display: inline-block;
}
@media (max-width: 600px) {
    .teachers-view .qual-grid { grid-template-columns: 1fr; }
}

/* ---- Availability card ---- */
.teachers-view .btn-view-calendar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0F4C3A;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    margin-top: 20px;
    transition: background 0.2s;
}
.teachers-view .btn-view-calendar:hover { background: #234b3b; }

/* ---- Availability custom calendar ---- */

/* Two-column wrapper */
.teachers-view .calendar-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.teachers-view .cal-left {
    flex: 1.5;
    background: #F9FAFB;
    padding: 20px;
    border-radius: 12px;
    min-width: 240px;
}
.teachers-view .cal-right {
    flex: 1;
    min-width: 200px;
}

/* Month navigation row */
.teachers-view .av-cal-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.teachers-view .av-month-label {
    font-weight: 700;
    font-size: 15px;
    color: #111827;
}
.teachers-view .cal-nav-btn {
    background: #F5F6F9;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0F4C3A;
    padding: 0;
    transition: all 0.2s;
}
.teachers-view .cal-nav-btn svg { width: 14px; height: 14px; }
.teachers-view .cal-nav-btn:hover:not(:disabled) {
    background: #0F4C3A;
    color: #fff;
}
.teachers-view .cal-nav-btn:hover:not(:disabled) svg path { stroke: white; }
.teachers-view .cal-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Day grid (includes cal-head header row) */
.teachers-view .cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    text-align: center;
}
.teachers-view .cal-head {
    font-size: 12px;
    color: #9CA3AF;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.teachers-view .day {
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    border-radius: 8px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    margin: 0 auto;
    user-select: none;
    box-sizing: border-box !important;
    padding: 0 !important;
}
.teachers-view .day:hover { background: #e5e7eb; }
.teachers-view .day.active {
    background: #1F4E3D;
    color: white !important;
    font-weight: 700;
}
.teachers-view .day.disabled {
    color: #D1D5DB;
    pointer-events: none;
    cursor: default;
}
.teachers-view .day.has-slots { color: #0F4C3A; font-weight: 600; }
.teachers-view .day.no-slots { color: #9CA3AF; cursor: default !important; }
.teachers-view .day.no-slots:hover { background: none; }

/* Timezone banner */
.teachers-view .tz-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ECFDF5;
    border: 1px solid rgba(35, 75, 59, 0.25);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    color: #234b3b;
    margin-bottom: 14px;
}

/* Time slots: 2-column grid */
.teachers-view .time-slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.teachers-view .slot {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    background: #fff;
    color: #111827;
    transition: border-color 0.15s, color 0.15s;
}
.teachers-view .slot:hover { border-color: #0F4C3A; color: #0F4C3A; }
.teachers-view .slot.slot-selected {
    background: #0F4C3A;
    color: #fff;
    border-color: #0F4C3A;
}
.teachers-view .slot-empty {
    grid-column: span 2;
    text-align: center;
    color: #9CA3AF;
    font-size: 13px;
    padding: 20px 10px;
    border: 1px dashed #E5E7EB;
    border-radius: 8px;
}

@media (max-width: 700px) {
    .teachers-view .calendar-wrapper { flex-direction: column; }
    .teachers-view .cal-left { min-width: 0; width: 100%; padding: 12px; box-sizing: border-box; overflow: hidden; }
    .teachers-view .cal-grid { gap: 4px; }
    .teachers-view .day {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1;
        line-height: normal !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 12px;
    }
    .teachers-view .time-slots { grid-template-columns: 1fr; }
    .teachers-view .slot-empty { grid-column: span 1; }
}

/* ---- Reviews card ---- */
.teachers-view .tp-rating-overview {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.teachers-view .tp-rating-big { text-align: center; min-width: 80px; }
.teachers-view .tp-rating-number { font-size: 40px; font-weight: 700; color: #0F4C3A; line-height: 1; }
.teachers-view .tp-rating-label { font-size: 12px; color: #777E88; margin-top: 4px; }
.teachers-view .tp-rating-bars { flex: 1; min-width: 200px; }
.teachers-view .tp-rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}
.teachers-view .tp-bar-key { font-size: 13px; color: #0F4C3A; font-weight: 600; min-width: 30px; }
.teachers-view .tp-bar-track { flex: 1; height: 6px; background: #F5F6F9; border-radius: 4px; overflow: hidden; }
.teachers-view .tp-bar-fill { height: 100%; background: #FACC15; border-radius: 4px; }
.teachers-view .tp-bar-pct { font-size: 12px; color: #9CA3AF; min-width: 34px; text-align: right; }
.teachers-view .tp-reviews-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}
.teachers-view .tp-reviews-count { font-size: 14px; color: #777E88; }
.teachers-view .tp-sort-select {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #111827;
    outline: none;
}

/* Reviews list loaded by JS */
.teachers-view .review-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #F5F6F9;
}
.teachers-view #listing-reviews .review-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
.teachers-view .review-profile { display: flex; gap: 12px; align-items: flex-start; flex-shrink: 0; }
.teachers-view .review-profile .avtar--round { width: 51px; height: 51px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.teachers-view .review-profile .avtar--round img { width: 100%; height: 100%; object-fit: cover; }
.teachers-view .review-profile .avtar--round .avtar__initials {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 700; background: #ECFDF5; color: #0F4C3A;
}
.teachers-view .review-profile .user-info h6 { font-size: 15px; font-weight: 600; color: #111827; margin: 0 0 2px; }
.teachers-view .review-profile .user-info p { font-size: 12px; color: #9CA3AF; margin: 0; }
.teachers-view .review-content { flex: 1; min-width: 0; }
.teachers-view .review-content__head h6 { font-size: 14px; font-weight: 600; color: #111827; margin: 4px 0; }
.teachers-view .review-content__body p { font-style: italic; font-size: 14px; color: #707B88; line-height: 1.6; margin: 0; }
.teachers-view .reviews-wrapper__foot .btn--show,
.teachers-view .reviews-wrapper__foot .btn--grey {
    display: block; width: 100%; height: 51px;
    border: 1px solid #0F4C3A; border-radius: 12px; background: #fff;
    font-weight: 700; font-size: 14px; color: #0F4C3A;
    cursor: pointer; text-transform: uppercase; letter-spacing: 0.05em; transition: background 0.2s;
}
.teachers-view .reviews-wrapper__foot .btn--show:hover,
.teachers-view .reviews-wrapper__foot .btn--grey:hover { background: #f0fdf4; }

/* ---- Sidebar: price card ---- */
.teachers-view .price-card {
    background: #FFFFFF;
    border: 1px solid #DEDEDE;
    box-shadow: 0 11px 23px rgba(0, 0, 0, 0.15);
    border-radius: 22px;
    padding: 20px 25px;
    width: 100%;
}
.teachers-view .price-header-row {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.teachers-view .label-grey {
    font-size: 11px;
    font-weight: 500;
    color: #A5A8AF;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.teachers-view .price-large { font-size: 34px; font-weight: 600; color: #000; line-height: 1; }
.teachers-view .price-small { font-size: 20px; font-weight: 400; color: #CED2D8; line-height: 1; }

/* Language/slot pricing table in sidebar */
.teachers-view .tp-price-table { margin-bottom: 20px; }
.teachers-view .tp-price-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #0F4C3A;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.teachers-view .tp-price-table-header select {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 5px 10px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    color: #111827;
    outline: none;
}
.teachers-view .tp-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #F5F6F9;
}
.teachers-view .tp-price-row:last-child { border-bottom: none; }
.teachers-view .tp-lang-name { font-size: 14px; font-weight: 500; color: #111827; }
.teachers-view .tp-slot-price {
    font-size: 14px;
    font-weight: 600;
    color: #0F4C3A;
    cursor: pointer;
    transition: color 0.2s;
}
.teachers-view .tp-slot-price:hover { color: #234b3b; text-decoration: underline; }

/* Qualifications badge */
.teachers-view .tefl-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #777E88;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 20px;
    margin-top: 10px;
}

/* Sidebar action buttons */
.teachers-view .btn-full {
    display: block;
    width: 100%;
    height: 51px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.2s, color 0.2s;
    letter-spacing: 0.03em;
}
.teachers-view .btn-yellow { background: #FFC21E; border: none; color: #0F4C3A; }
.teachers-view .btn-yellow:hover { background-color: #234b3b; color: #FFFFFF; }
.teachers-view .btn-white { background: #fff; border: 1px solid #0F4C3A; color: #0F4C3A; }
.teachers-view .btn-white:hover { background-color: #234b3b; color: #FFFFFF; border-color: #234b3b; }
.teachers-view .btn-full.disabled { opacity: 0.5; pointer-events: none; }
.teachers-view .btn-yellow:active,
.teachers-view .btn-white:active { transform: translateY(1px); box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15); }

.teachers-view .sidebar-footer {
    font-size: 13px;
    color: #777E88;
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}

/* ---- Mobile ---- */
@media (max-width: 767px) {
    .teachers-view .profile-header-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .teachers-view .name-actions-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    .teachers-view .stats-row,
    .teachers-view .lang-row,
    .teachers-view .pills-row { justify-content: center; }
    .teachers-view .photo-col { align-self: center; }
}

/* =====================================================
   Teacher Message Modal (profile + find-a-teacher)
   ===================================================== */
.tp-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.tp-modal-overlay.open { display: flex; }

.tp-modal-box {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: tpModalIn 0.25s ease;
}
@keyframes tpModalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.tp-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #E5E7EB;
    background: #F5F6F9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    margin-left: auto;
}
.tp-modal-close:hover { background: #0F4C3A; }
.tp-modal-close:hover svg path { stroke: #fff; }

.tp-msg-photo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.tp-msg-textarea-wrap {
    border: 2px solid #0F4C3A;
    border-radius: 12px;
    overflow: hidden;
}
.tp-msg-prefix {
    background: #ECFDF5;
    padding: 12px 16px;
    font-size: 14px;
    color: #0F4C3A;
    font-weight: 500;
    border-bottom: 1px solid rgba(15, 76, 58, 0.15);
}
.tp-msg-textarea {
    width: 100%;
    height: 130px;
    border: none;
    padding: 12px 16px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #111827;
    resize: none;
    outline: none;
    background: #fff;
    display: block;
    box-sizing: border-box;
}

.tp-modal-btn {
    width: 100%;
    height: 56px;
    background: #0F4C3A;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(15, 76, 58, 0.25);
    display: block;
    transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
}
.tp-modal-btn:hover {
    background: #234b3b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 76, 58, 0.35);
}
.tp-modal-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(15, 76, 58, 0.2);
    background: #0a3329;
}


/* ── Mobile public header overrides ──────────────────────────────── */
@media (max-width: 767px) {
    /* Glassy bottom bar */
    .header-controls {
        background: rgba(255, 255, 255, 0.72) !important;
        backdrop-filter: blur(16px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.4) !important;
        box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.08) !important;
    }
    /* Hide top hamburger on home page */
    .toggle--nav {
        display: none !important;
    }
}

/* ── Hide login/signup icons on desktop, show only in mobile bottom bar ── */
.mobile-only-icon { display: none; }
@media (max-width: 767px) {
    .mobile-only-icon { display: inline-block; }
}

/* ── Mobile bottom bar icon + label color ─────────────────────────── */
@media (max-width: 767px) {
    .mobile-action,
    .btn--search {
        color: #234b3b !important;
    }
    .mobile-action i,
    .mobile-action .mobile-action-label,
    .btn--search .mobile-action-label {
        color: #234b3b !important;
    }
    .mobile-action i {
        font-size: 1.7rem !important;
    }
}

/* ── Sign up button: remove green box on mobile bottom bar ────────── */
@media (max-width: 767px) {
    .btn-sign-up.mobile-action {
        background-color: transparent !important;
        color: #234b3b !important;
    }
}

/* ── Fix FA solid icons in mobile bottom bar (theme forces font-weight:normal) ── */
@media (max-width: 767px) {
    .mobile-action i.fa-solid,
    .mobile-action i.fas {
        font-weight: 900 !important;
    }
}

/* ── Hide login/signup from top header on mobile (bottom bar handles them) ── */
@media (max-width: 767px) {
    .header-controls__item.header-action {
        display: none !important;
    }
}

/* ── Hero section responsive ── */
@media (max-width: 767px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 20px;
    }
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    .hero-badge-pill {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-media {
        display: flex;
        justify-content: center;
    }
    .hero-media img {
        width: 65%;
        max-width: 260px;
        margin: 0 auto;
    }
}

/* ── Bottom bar hide-on-scroll behaviour ─────────────────────────────── */
@media (max-width: 767px) {
    .orl-front-bottom-nav {
        transition: transform 0.3s ease;
    }
    .orl-front-bottom-nav.is-hidden {
        transform: translateY(calc(100% + 4px));
        box-shadow: none;
    }
    /* Use opacity for .header-controls — transform causes header compositing conflict */
    .header-controls {
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .header-controls.is-hidden {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/* ── Mobile-only bottom nav bar ──────────────────────────────────────── */
.orl-front-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(20px) saturate(200%);
    -webkit-backdrop-filter: blur(20px) saturate(200%);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.06);
    padding: 0 0.5rem;
    justify-content: space-around;
    align-items: center;
}
@media (max-width: 767px) {
    .orl-front-bottom-nav { display: flex; }
    .orl-fbn-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0.5rem 0.25rem;
        font-size: 11px;
        color: #234b3b;
        text-decoration: none;
        gap: 4px;
    }
    .orl-fbn-item i { font-size: 1.7rem; }
    .orl-fbn-photo {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        object-fit: cover;
        display: block;
        flex-shrink: 0;
    }
    .orl-fbn-lang-btn {
        background: none;
        border: none;
        cursor: pointer;
        font-family: inherit;
    }
    .orl-fbn-lang-static { opacity: 0.5; }
}

/* ── Language picker popup ───────────────────────────────────────────── */
.orl-fbn-lang-picker {
    display: none;
    position: fixed;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 10px;
    z-index: 1100;
    min-width: 160px;
    flex-direction: column;
    gap: 4px;
}
.orl-fbn-lang-picker.show { display: flex; }
.orl-fbn-lang-opt {
    background: none;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}
.orl-fbn-lang-opt:hover,
.orl-fbn-lang-opt.active { background: #0F4C3A; color: #fff; }

/* ── Teachers pages: cream background ───────────────────────────────── */
body.teachers-index,
body.teachers-view {
    background-color: #fdf9f6 !important;
}
body.teachers-index #body,
body.teachers-view #body {
    background-color: #fdf9f6 !important;
}

/* ── Teachers page: filter/sort bar above teacher cards ─────────────── */
.teachers .page-header,
.teachers #STICKY {
    position: relative;
    z-index: 100;
}

/* ── Teachers page: disable sticky on filter bar ────────────────────── */
.teachers #STICKY {
    position: static !important;
    top: auto !important;
}

/* ── Teachers page: un-float the sort/filter bar on mobile ──────────── */
@media (max-width: 767px) {
    .teachers .sorting-options {
        position: static !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        background-color: #0F4C3A !important;
        color: #fff !important;
        border-radius: 50px !important;
        max-width: 320px !important;
        margin: 8px auto !important;
        display: flex !important;
        align-items: center !important;
        overflow: hidden !important;
    }
    .teachers .sorting-options__item {
        border-right: 1px solid rgba(255,255,255,0.2) !important;
        flex: 1 !important;
    }
    .teachers .sorting-options__item:last-child {
        border-right: none !important;
    }
    .teachers .sorting-action__trigger,
    .teachers .btn--filters {
        color: #fff !important;
        padding: 10px 16px !important;
        justify-content: center !important;
    }
    .teachers .sorting-action__label,
    .teachers .sorting-action__value {
        color: #fff !important;
    }
    .teachers .sorting-options .svg-icon path {
        fill: #fff !important;
    }
}




/* ── Trial credit notice in booking modal ── */
.trial-credit-notice {
    font-size: 0.8rem;
    color: #065F46;
    background: #D1FAE5;
    border-radius: 8px;
    padding: 6px 12px;
    text-align: center;
    margin: 0 0 10px;
}

/* ══════════════════════════════════════════════════════════
   ORLEAO TOAST NOTIFICATION SYSTEM
   Replaces #app-alert. Container: #toastContainer
   ══════════════════════════════════════════════════════════ */
.orl-toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
    z-index: 9999;
    width: 340px;
    pointer-events: none;
}

.orl-toast-container > * { pointer-events: auto; }

.orl-toast {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 14px 14px 16px;
    background: #FFFFFF;
    border: 1px solid #E8E4DE;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(26,23,20,0.10), 0 2px 8px rgba(26,23,20,0.04);
    position: relative;
    overflow: hidden;
    transform-origin: bottom right;
}

/* Left accent bar */
.orl-toast::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    border-radius: 0 3px 3px 0;
}

/* Bottom timer bar */
.orl-toast::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    height: 2px;
    width: 100%;
    transform-origin: left;
}

.orl-toast.orl-toast--running::after {
    animation: orlToastShrink var(--orl-duration) linear forwards;
}

.orl-toast.orl-toast--paused::after {
    animation-play-state: paused;
}

@keyframes orlToastShrink {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}

.orl-toast.orl-toast--entering {
    animation: orlToastEnter 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes orlToastEnter {
    from { opacity: 0; transform: translateY(12px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.orl-toast.orl-toast--exiting {
    animation: orlToastExit 0.25s ease forwards;
}

@keyframes orlToastExit {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to   { opacity: 0; transform: translateY(-8px) scale(0.96); }
}

/* Type colors — accent bar */
.orl-toast.orl-toast--success::before { background: #1B7A5A; }
.orl-toast.orl-toast--error::before   { background: #C4603A; }
.orl-toast.orl-toast--warning::before { background: #8B6914; }
.orl-toast.orl-toast--info::before    { background: #2D6A9F; }

/* Type colors — timer bar */
.orl-toast.orl-toast--success::after  { background: #C2E5D3; }
.orl-toast.orl-toast--error::after    { background: #F5D4C7; }
.orl-toast.orl-toast--warning::after  { background: #F0DFA0; }
.orl-toast.orl-toast--info::after     { background: #B8D4EC; }

/* Icon */
.orl-toast__icon {
    width: 26px; height: 26px;
    border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.orl-toast__icon svg { width: 13px; height: 13px; }

.orl-toast.orl-toast--success .orl-toast__icon { background: #E8F5EE; color: #1B7A5A; }
.orl-toast.orl-toast--error .orl-toast__icon   { background: #FFF0EB; color: #C4603A; }
.orl-toast.orl-toast--warning .orl-toast__icon { background: #FFF8E6; color: #8B6914; }
.orl-toast.orl-toast--info .orl-toast__icon    { background: #EBF3FA; color: #2D6A9F; }

/* Text */
.orl-toast__body { flex: 1; min-width: 0; padding-top: 2px; }

.orl-toast__msg {
    font-size: 13.5px;
    font-weight: 500;
    color: #1A1714;
    line-height: 1.35;
}

.orl-toast__sub {
    font-size: 12.5px;
    font-weight: 400;
    color: #6B6560;
    margin-top: 2px;
    line-height: 1.35;
}

/* Close button */
.orl-toast__close {
    width: 22px; height: 22px;
    border: none; background: transparent;
    border-radius: 5px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #9C958E;
    transition: all 0.12s ease;
    flex-shrink: 0;
}

.orl-toast__close:hover { background: #FAF8F5; color: #6B6560; }
.orl-toast__close svg { width: 11px; height: 11px; }

@media (max-width: 480px) {
    .orl-toast-container {
        bottom: 16px;
        left: 16px;
        right: 16px;
        width: auto;
    }
}

