:root {
    /* Brand */
    --color-primary: #f6a11e;
    --color-secondary: #111827; /* deep neutral (used for headings/icons) */

    /* Primary variants */
    --color-primary-50: #fff7e6;
    --color-primary-100: #ffe9bf;
    --color-primary-200: #ffd58a;
    --color-primary-300: #ffc155;
    --color-primary-400: #ffb22f;
    --color-primary-500: #f6a11e; /* primary */
    --color-primary-600: #e28f0b;
    --color-primary-700: #c67800;

    /* Secondary variants (neutral) */
    --color-secondary-50: #f9fafb;
    --color-secondary-100: #f3f4f6;
    --color-secondary-200: #e5e7eb;
    --color-secondary-300: #d1d5db;
    --color-secondary-400: #9ca3af;
    --color-secondary-500: #6b7280;
    --color-secondary-600: #4b5563;
    --color-secondary-700: #374151;
    --color-secondary-800: #1f2937;
    --color-secondary-900: #111827;

    /* Text */
    --color-text: #111111;
    --color-text-muted: #6b7280;
    --color-text-subtle: #374151;
    --color-text-inverse: #ffffff;

    /* Background */
    --color-bg: #ffffff;
    --color-bg-soft: #fafafa;
    --color-bg-tint: #fff7e6; /* warm tint */

    /* Borders */
    --color-border: #e5e7eb;
    --color-border-soft: #f1f5f9;

    /* Surfaces */
    --color-surface: #ffffff;
    --color-surface-hover: #f8fafc;

    /* Shadows (color tokens only) */
    --color-shadow: rgba(0, 0, 0, 0.1);
    --color-shadow-soft: rgba(0, 0, 0, 0.06);

    /* States */
    --color-focus: rgba(246, 161, 30, 0.35);
    --color-focus-ring: rgba(246, 161, 30, 0.18);

    --bg: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e5e7eb;

    --shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadowHover: 0 14px 40px rgba(15, 23, 42, 0.14);
    --radius: 18px;

    /* BRAND */
    --brand: #f6a11e;
    --brandBorder: rgba(246, 161, 30, 0.35);
    --brandShadow: rgba(246, 161, 30, 0.22);

    --badgeBg: #fff4e0;
    --badgeText: #a35a00;

    --gap: 16px; /* keep in sync with JS */
}

/* ================================
   GLOBAL BASE STYLES
   File: css/globals/base.css
=================================== */

html,
body {
    font-family: "Libre Franklin", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", Roboto, Arial, sans-serif;

    color: var(--color-text);
    background: var(--color-bg);
    margin: 0px;
    
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    font: inherit;
}

.section {
    display: Flex;
    justify-content: center;
}

/* ================= HEADER ================= */
.site-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--color-bg, #fff);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.site-header,
.header__inner{
  overflow: visible;
}

.header__inner{
  max-width: 1300px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* logo */
.header__logo img{
  height: 55px;
  width: auto;
  display: block;
}

/* burger */
.header__burger{
  width:42px;
  height:42px;
  border:0;
  background:transparent;
  display:none; /* desktop hidden */
  cursor:pointer;
  padding:8px;
  border-radius:10px;

  /* important */
  flex-direction:column;
  justify-content:center;
  align-items:center;
}
.header__burger span{
  display:block;
  width:22px;        /* IMPORTANT */
  height:2px;
  background:#111;
  margin:4px 0;
  border-radius:99px;
}

/* desktop nav */
.header__nav{
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: 18px;
  flex: 1;
  min-width: 0;
}

.header__nav .nav-item{
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* links */
.header__link,
.header__nav .nav-link{
  background: transparent;
  border: 0;
  padding: 8px 0;
  cursor: pointer;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  position: relative;
  white-space: nowrap;
      display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 8px;
}

.header__nav .nav-link:hover{
  color: var(--color-primary, #F6A11E);
}

/* dropdown positioning under each menu item */
.header__nav .nav-item .dropdown{
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 2000;
  min-width: 260px;
}

/* "open" state controlled by JS data-open */
.header__nav .nav-item.has-dd .dropdown{
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  padding: 10px;
  margin-top: 10px;
}

.dropdown::before{
  content:"";
  position:absolute;
  top:-8px;
  left:34px;
  width:14px;
  height:14px;
  background: var(--color-surface);
  border-left:1px solid var(--color-border-soft);
  border-top:1px solid var(--color-border-soft);
  transform: rotate(45deg);
}

.header__nav .nav-item.has-dd[data-open="true"] .dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* simple dropdown list */
.dd-list{
  display: flex;
  flex-direction: column;
  padding: 4px 0;
  gap: 4px;
}
.dd-item{
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
}
.dd-item:hover{
  background: var(--color-surface-hover);
  color: var(--color-primary);
}

/* Courses mega dropdown bits (optional) */
.courses-dd .two-selects{
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  flex-direction: column;
  padding: 4px;
}
.courses-dd .select-like{
  flex: 1;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 10px;
  padding: 12px 12px;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  user-select: none;
  color: var(--color-text);
}
.courses-dd .select-like:hover{
  border-color: rgba(246,161,30,.55);
  box-shadow: 0 0 0 4px rgba(246,161,30,.12);
}

.select-like.active{
  color: var(--color-primary);
  background: rgba(246,161,30,.08);
  border-color: var(--color-focus);
}

.courses-dd .subpanel{
  display: none;
  background: #fff;
  border-radius: 10px;
  padding: 6px 0;
  position: absolute;
    top: 12px;
    left: calc(100% + 2px);
    width: 260px;
    border: 1px solid var(--color-border-soft);
    box-shadow: 0 12px 30px var(--color-shadow);
}

.subpanel::before{
  content:"";
  position:absolute;
  top:22px;
  left:-7px;
  width:14px;
  height:14px;
  background: var(--color-surface);
  border-left:1px solid var(--color-border-soft);
  border-bottom:1px solid var(--color-border-soft);
  transform: rotate(45deg);
}
.courses-dd[data-panel="type"] .panel-type{ display: block; }
.courses-dd[data-panel="field"] .panel-field{ display: block; }

.courses-dd .subpanel a{
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  border-radius: 8px;
}
.courses-dd .subpanel a:hover{
  background: rgba(246,161,30,.10);
   color: var(--color-primary);
}

/* Right actions */
.header__actions{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  flex-wrap: nowrap;
  margin-left: auto;
}



.header__actions > *{
  flex: 0 0 auto;
}

/* icon button */
.header__iconbtn{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* divider */
.header__divider{
  width: 1px;
  height: 26px;
  background: rgba(0,0,0,.10);
}

/* user dropdown */
.user-dd{
  position: relative;
  height: 42px;
  align-items: center;
}
.header__userBtn{
  border: 0;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.user-dropdown{
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .18s ease;
  z-index: 2000;
  margin-top: 12px;
}
.user-dd[data-open="true"] .user-dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 5px;
  text-decoration: none;
  font-weight: 400;
  color: #4D5C6D;
  transition: background .2s ease;
  font-size: 14px;
}
.user-dropdown a:hover{
  background: rgba(246,161,30,.10);
  color: var(--color-primary);
}

.user-icon {
  width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #888;
}

.user-dropdown a:hover .user-icon {
  color: var(--color-primary);
}

.user-dropdown .logout {
  border-top: 1px solid rgba(0,0,0,.06);
  margin-top: 6px;
}

/* CTA */
.header__cta{
  text-decoration: none;
  background: var(--color-primary, #F6A11E);
  color: #fff;
  font-weight: 800;
  padding: 10px 16px;
  border-radius: 999px;
  white-space: nowrap;
  border: 0;
  cursor: pointer;
}

.signIn {
   
    color: #black;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 500;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
    display: none;
}

.signUp {
    background: var(--color-primary);
    color: var(--color-text-inverse);
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 500;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
    display: none;
    /*box-shadow: 0 6px 14px rgba(246, 161, 30, .25);*/
}

/* Desktop-only blocks */
.header__desktopOnly{ display: flex; }

.chev{
  width:7px;
  height:7px;
  display:inline-block;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform: rotate(45deg);
  margin-top:-2px;
  opacity:.8;
}

.my-course-btn{
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding:10px 16px;
  border-radius:999px;
  font-weight:400;
  border:0;
  cursor:pointer;
  white-space:nowrap;
  box-shadow: 0 6px 14px rgba(246,161,30,.25);
  display: none;
}
.cta:hover{ filter: brightness(.98); }

.icon-btn{
  width:38px;
  height:38px;
  border-radius:10px;
  display:grid;
  place-items:center;
  border:1px solid transparent;
  background: transparent;
  cursor:pointer;
  color: var(--color-secondary-900);
}
.icon-btn:hover{
  border-color: var(--color-border);
  background: var(--color-bg-soft);
}
.divider{
  width:1px;
  height:26px;
  background: var(--color-border);
}

.user-btn{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:10px;
  border:1px solid transparent;
  cursor:pointer;
  background: var(--color-bg);
  font-weight:400;
  color: var(--color-text);
  display: none;
}
.user-btn:hover{
  border-color: var(--color-border);
  background: var(--color-bg-soft);
}

/* ================= MOBILE BREAKPOINT ================= */
@media (max-width: 980px){
  .header__burger{
    display:flex;   /* IMPORTANT — not inline-block */
  }
  .header__nav{ display: none; }
  .header__desktopOnly{ display: none !important; }

  .header__inner{
    justify-content: space-between;
  }

  .header__logo{
    margin: 0 auto;
  }
  
  .signIn {
   
    padding: 7px 10px;
}

.signUp {
    padding: 7px 10px;
    /*box-shadow: 0 6px 14px rgba(246, 161, 30, .25);*/
}

.header__inner {
    padding: 12px 8px;
    gap: 8px;
}
}

/* ================= DRAWER ================= */
.drawer{
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}
.drawer.is-open{
  pointer-events: auto;
}

.drawer__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .2s ease;
}
.drawer.is-open .drawer__overlay{
  opacity: 1;
}

/* panel (MUST remain absolute for slide) */
.drawer__panel{
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: min(88vw, 360px);
  background: #fff;
  transform: translateX(-105%);
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
}
.drawer.is-open .drawer__panel{
  transform: translateX(0);
}

/* top profile bar */
.drawer__top{
  padding: 16px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.drawer__profile{
  display: flex;
  align-items: center;
  gap: 12px;
  display: none;
}

.mobile_logo {
    display: none;
}
.drawer__avatar{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #e9e9e9;
}
.drawer__name{
  font-weight: 600;
  color: #111;
  line-height: 1.1;
}
.drawer__account{
  font-size: 12px;
  color: rgba(0,0,0,.55);
  text-decoration: none;
}
.drawer__close{
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  border-radius: 10px;
}

/* nav scroll */
.drawer__nav{
  padding: 10px 0;
  overflow: auto; /* allows full expansion without overlap */
  -webkit-overflow-scrolling: touch;
}

/* items */
.drawer__item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: #111;
  font-weight: 400;
}
.drawer__item:hover{
  background: rgba(0,0,0,.03);
}

.drawer__icon{
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* accordion container */
.drawer__acc{
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

/* accordion button */
.drawer__accBtn{
  width: 100%;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  color: #111;
}

.drawer__left{
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 400;
}

/* chevron */
.drawer__chev{
  transition: transform .2s ease;
  color: #111;
}

/* MAIN panel (IMPORTANT: no fixed max-height here; JS sets it) */
.drawer__accPanel,
.drawer__subAccPanel{
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
  background: #fff;
}

/* open state: only rotate chevron, do NOT cap height */
.drawer__acc.is-open .drawer__chev{
  transform: rotate(180deg);
}

.drawer__acc.is-open > .drawer__accPanel{
  max-height: 2000px; /* big enough */
}

/* nested accordion (Choose Course Type / Choose Field) */
.drawer__subAcc{
  border-top: 1px solid rgba(0,0,0,.05);
}

.drawer__subAccBtn{
  width: 100%;
  padding: 12px 16px 12px 52px;
  border: 0;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  color: #111;
}

.drawer__subAccPanel{
  max-height: 0;
  overflow: hidden;
  transition: max-height .22s ease;
  background: #fff;
}

/* sub links */
.drawer__subItem,
.drawer__subLink{
  display: block;
  padding: 12px 16px 12px 72px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
}
.drawer__subItem:hover,
.drawer__subLink:hover{
  background: rgba(246,161,30,.10);
}

/* active highlight */
.drawer__accBtn.is-active,
.drawer__item.is-active{
  color: var(--color-primary, #F6A11E);
}
.drawer__accBtn.is-active .drawer__icon,
.drawer__item.is-active .drawer__icon{
  color: var(--color-primary, #F6A11E);
}

 


/* ================================
   HERO SLIDE ANIMATION (RTL)
=================================== */









/* big rounded feel at bottom like screenshot */
/*.hero__inner::after{*/
/*  content:"";*/
/*  position:absolute;*/
/*  left:0; right:0;*/
/*  bottom:-90px;*/
/*  height: 180px;*/
/*  background: rgba(255,255,255,.55);*/
/*  border-radius: 999px;*/
/*  filter: blur(0px);*/
/*}*/


.user-dd {
  position: relative;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1000;
  min-width: 180px;
}

/* ===== Mobile drawer nested accordion (Choose Course Type/Field) ===== */

.drawer__subAcc{
  border-top: 1px solid rgba(0,0,0,.06);
}

.drawer__subAccBtn{
  width: 100%;
  border: 0;
  background: transparent;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #111;
  font-weight: 600;
}

.drawer__subIcon{
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: #111;
}

.drawer__subAccBtn .drawer__left{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.drawer__subAccBtn .drawer__chev{
  display: inline-flex;
  transition: transform .2s ease;
  color: #777;
}

.drawer__subAcc.is-open .drawer__subAccBtn .drawer__chev{
  transform: rotate(180deg);
  color: var(--color-primary, #f6a11e);
}

.drawer__subAcc.is-open > .drawer__subAccPanel{
  max-height: 1200px; /* big enough */
}

.drawer__acc.is-open .drawer__chev{
  transform: rotate(180deg);
}

/* Panel animation */
.drawer__subAccPanel{
  max-height: 0px;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 0;
}

/* Links inside */
.drawer__subLink{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 54px; /* indent like screenshot */
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.drawer__subLink:hover{
  background: rgba(0,0,0,.03);
}

/* square checkbox look */
.drawer__box{
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(0,0,0,.25);
  border-radius: 3px;
  background: transparent;
  flex: 0 0 auto;
}



/* Responsive */
@media (max-width: 1100px){
  .hero__content{ padding-left: 40px; }
  .hero__title{ font-size: 52px; }
  .hero__visual{ width: 480px; right: 24px; }
}

@media (max-width: 900px){
  .hero__inner{
    padding-bottom: 170px;
  }

  .hero__visual{
    position: static;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 0 16px 10px;
  }

  .hero__content{
    padding: 58px 20px 20px;
    max-width: 100%;
    text-align: center;
  }
   .hero-dots {
        justify-content: center;
    }
  

  .hero__stats{
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 32px);
  }
}

@media (max-width: 520px){
  .hero__title{ font-size: 40px; }
  .hero__subtitle{ font-size: 16px; }
  .hero__stats{ grid-template-columns: 1fr; }
}

.drawer__svg{
  width: 20px;
  height: 20px;
  display: block;
}

.drawer__icon{
  width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111; /* uses currentColor */
}

.drawer__subItem {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px 12px 52px;
  text-decoration: none;
  color: #111;
  font-weight: 400;
}

.drawer__subIcon {
  width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
}

.mobile_register {
    display: none;
}

.header--scrolled {
  box-shadow: 
    0 1px 0 0 rgba(139, 141, 157, .05),
    0 5px 10px -7px rgba(65, 71, 108, .25);
  transition: box-shadow 0.25s ease;
}
/* =========================
   SEARCH POPUP
========================= */
.searchPopup{
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.searchPopup.is-open{
   display: block;
}

.searchPopup__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25);
  pointer-events: auto;
}

.searchPopup.is-open .searchPopup__overlay{
  opacity: 1;
}

.searchPopup__panel{
  position: relative;
  width: 100%;
  z-index: 2;
}

.searchPopup__inner {
    width: min(1300px, calc(100% - 32px));
    margin: 0px auto 0 auto;
}

.searchPopup__bar{
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.searchPopup__input{
  border: 0;
  outline: 0;
  flex: 1;
  font-size: 18px;
  padding: 10px 8px;
}

.searchPopup__iconBtn,
.searchPopup__closeBtn{
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 999px;
  color: #111;
}

.searchPopup__iconBtn:hover,
.searchPopup__closeBtn:hover{
  background: rgba(0,0,0,.06);
}

.searchPopup__results{
  margin-top: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  overflow: hidden;
  max-height: 60vh;
  overflow-y: auto;
  display: none;
}

.searchPopup__results.is-visible{
  display: block;
}

.searchItem{
  display: block;
  padding: 14px 16px;
  text-decoration: none;
  color: #111;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-weight: 600;
}

.searchItem:last-child{
  border-bottom: 0;
}

.searchItem:hover{
  background: rgba(246,161,30,.10);
}

.searchEmpty{
  padding: 14px 16px;
  color: rgba(0,0,0,.60);
  font-weight: 600;
}

/* Mobile spacing */
@media (max-width: 980px){
  .searchPopup__inner{
    width: calc(100% - 20px);
    margin-top: 0px;
  }

  .searchPopup__input{
    font-size: 16px;
  }
}

.lls-container {
    width: min(1200px, calc(100% - 48px));
    margin: 30px auto;
}

h1.entry-title {
    line-height: 133%;
    font-weight: 700;
}

.entry-title {
    font-size: 1.75rem;
    color: var(--color-secondary-900);
    margin: 0;
}

.entry-content p {
    word-wrap: break-word;
        line-height: 1.6875rem;
        font-size: 16px;
        color:var(--color-text-muted);;
}

.entry-content h2, h3, h4 {
    font-size: 24px;
           margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}
ul li {
    line-height: 1.6875rem;
        font-size: 16px;
        color:var(--color-text-muted);
        margin-bottom: 8px;
    
}

ol li {
    line-height: 1.6875rem;
        font-size: 16px;
        color:var(--color-text-muted);
        margin-bottom: 8px;
    
}

.wp-block-heading {
    font-weight: normal;
}



@media (max-width: 640px) {
    .lls-container {
        width: min(1200px, calc(100% - 28px));
    }
}
.site-footer {
    background: #3d3b3b;
    color: var(--color-text-inverse);
}

.footer-inner {
    max-width: 1330px;
    margin: 0 auto;
    padding: 60px 16px;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 1fr;
    gap: 48px;
}

/* Logo */
.footer-logo img {
    height: 74px;
    width: auto;
    display: block;
    margin-bottom: 22px;
}

.footer-brand {
    padding: 0px 45px 0px 0px;
}

/* Typography */
.footer-heading {
    margin: 0 0 18px;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-text-inverse);
}

.footer-title {
    margin: 0 0 16px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    color: var(--color-text-inverse);
}

/* Contact lines */
.footer-line {
    display: flex;
    gap: 7px;
    align-items: flex-start;
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.6;
}
.footer-line:hover {
    color: var(--color-primary);
}
.footer-line.no-hover:hover {
    color: rgba(255, 255, 255, 0.92);
}

.fi {
    width: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

/* Separators */
.footer-sep {
    height: 2px;
    width: 220px;
    background: var(--color-primary);
    margin: 24px 0;
    opacity: 0.85;
}

.footer-dashed {
    height: 1px;
    width: 260px;
    border-bottom: 2px dashed var(--color-primary);
    margin: 22px 0 18px;
    opacity: 0.8;
}

/* Useful links */
.footer-links {
    display: grid;
    gap: 14px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 500;
}
.footer-links a:hover {
    color: var(--color-primary);
}

/* Hiring */
.footer-hiring {
    display: inline-block;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 800;
    color: var(--color-primary);
}
.footer-hiring:hover {
    filter: brightness(0.98);
    text-decoration: underline;
}

/* Subscribe */
.footer-subscribe {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 22px;
}

.footer-subscribe input {
    flex: 1;
    height: 46px;
    padding: 0 14px;
    border-radius: 4px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--color-text-inverse);
    outline: none;
}
.footer-subscribe input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.footer-subscribe input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px var(--color-focus-ring);
}

.footer-subscribe button {
    height: 46px;
    padding: 0 10px;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 800;
    background: var(--color-primary);
    color: var(--color-text-inverse);
}
.footer-subscribe button:hover {
    filter: brightness(0.98);
}

/* Social icons */
.footer-social {
    display: flex;
    gap: 14px;
    margin: 22px 0 18px;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #ffffff;
    color: #3d3b3b;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.25s ease;
}

.social-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-btn:hover {
    background: var(--color-primary);
    color: var(--color-text-inverse);
    transform: translateY(-2px);
}

/* Policy links */
.footer-policy {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 0px 6px;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.6;
}
.footer-policy a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
}
.footer-policy a:hover {
    color: var(--color-primary);
}
.footer-policy .dot {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 980px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 46px 16px;
    }
    .footer-sep,
    .footer-dashed {
        width: 100%;
        max-width: 320px;
    }
}


/* =========================
   WhatsApp Floating Widget
========================= */
.waWidget {
  position: fixed;
  left: 22px;
  bottom: 40px;
  z-index: 999999; /* keep above FAQ etc. */
  pointer-events: none; /* enable only when needed via children */
  font-family: inherit;
}

/* Floating button */
.waWidget__fab {
  pointer-events: auto;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  display: grid;
  place-items: center;

  background: #f6a11e00;
  /*color: var(--color-text-inverse);*/

  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}

.waWidget__fab:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadowHover);
}

.waWidget__fab img {
  width: 60px;
  height: 60px;
  fill: currentColor;
}

/* Overlay to close on outside click */
.waWidget__overlay {
 pointer-events: none;
}

/* Popup */
.waWidget__popup {
  position: absolute;
  left: 0;
  bottom: 84px;
  width: min(350px, calc(100vw - 44px));
  border-radius: 18px;
  overflow: hidden;

  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadowHover);

  transform: translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

/* Header */
.waWidget__header {
  display: flex;
  align-items: center;
  gap: 20px 12px;
  padding: 14px 14px;
  background: #095E54;
  color: var(--color-text-inverse);
}

.waWidget__avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--color-secondary-700);
  border: 2px solid rgba(255,255,255,.18);
  flex: 0 0 auto;
}

.waWidget__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.waWidget__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.waWidget__name {
  font-weight: 800;
  font-size: 16px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.waWidget__role {
  font-weight: 600;
  font-size: 13px;
  opacity: .9;
}

.waWidget__close {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.12);
  color: var(--color-text-inverse);
  cursor: pointer;
  display: grid;
  place-items: center;
}

.waWidget__close:hover {
  background: rgba(255,255,255,.18);
}

/* Body */
.waWidget__body {
  position: relative;
  padding: 14px;
  background-image: url("https://www.lawctopuslawschool.com/wp-content/uploads/2024/07/whatsapp-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.waWidget__body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(230, 221, 212, 0.91); /* #E6DDD4 at 0.91 */
  z-index: 0;
}

/* Keep content above overlay */
.waWidget__msg {
  position: relative;
  z-index: 1;
}

.waWidget__msg {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: 14px;
  padding: 12px 12px 10px;
  max-width: 78%;
}

.waWidget__msgName {
  font-weight: 800;
  font-size: 13px;
  color: var(--color-text-subtle);
  margin-bottom: 6px;
}

.waWidget__msgText {
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.4;
}

.waWidget__msgTime {
  margin-top: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: right;
}

/* Footer */
.waWidget__footer {
  padding: 12px 14px 14px;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-soft);
}

.waWidget__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
 gap: 10px;
  background: #4FCE5D;
  color: var(--color-text-inverse);

  box-shadow: 0 10px 20px var(--brandShadow);
  transition: transform .15s ease, filter .2s ease;
}




.waWidget__ctaIcon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.waWidget__cta:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

/* OPEN STATE */
.waWidget.is-open .waWidget__popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/*.waWidget.is-open .waWidget__overlay {*/
/*  pointer-events: auto;*/
/*}*/

/* Mobile: keep within screen */
@media (max-width: 520px) {
  .waWidget {
    left: 14px;
    bottom: 14px;
  }
  .waWidget__popup {
    bottom: 78px;
  }
}

/* =========================
   AI Floating Button (Right)
========================= */
.aiWidget__fab {
  position: fixed;
  right: 22px;
  bottom: 40px;
  z-index: 999998;

  width: 60px;
  height: 60px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: #ffffff00;
  border: 1px solid var(--color-border);

  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .2s ease;

  cursor: pointer;
  display: none;
}

.aiWidget__fab:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadowHover);
}

.aiWidget__fab img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

@media (max-width: 520px) {
.aiWidget__fab {
    right: 14px;
    bottom: 14px;
}
}