/** NEW TPL CSS**/
.booking-block .serv-hero{
  padding: 0 0 20px 0;
}
     /* ═══════════════════════════════════════════
       GLOBAL DESIGN SYSTEM
    ═══════════════════════════════════════════ */
    :root {
      /* ─── Core palette ─── */
      --cream: #faf6f0;
      --warm-white: #fffdf9;
      --sand: #f0e8da;
      --clay: #d4a574;
      --clay-light: rgba(212, 165, 116, 0.12);
      --clay-glow: rgba(212, 165, 116, 0.25);
      --sage: #7a9b8a;
      --sage-deep: #5c8270;
      --sage-light: rgba(122, 155, 138, 0.1);
      --charcoal: #2c2a26;
      --charcoal-deep: #1a1916;
      --text-body: #5a564e;
      --text-muted: #9b9588;
      --border: rgba(44, 42, 38, 0.07);

      /* ─── Header / footer dark ─── */
      --bg-dark: #0e0d0b;
      --bg-dark-header: rgba(14, 13, 11, 0.92);
      --text-light: #f0ece4;
      --text-light-muted: #8a8579;
      --border-light: rgba(240, 236, 228, 0.08);
      --glass: rgba(240, 236, 228, 0.04);
      --accent: rgb(104, 182, 146);
      --accent-dim: rgba(104, 182, 146, 0.08);

      /* ─── Typography ─── */
      --font-display: 'Lora', Georgia, serif;
      --font-body: "Poppins", sans-serif;

      /* ─── Spacing ─── */
      --header-height: 72px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      overflow-x: hidden;
    }

    /* ═══════════════════════════════════════════
       HEADER
    ═══════════════════════════════════════════ */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: var(--header-height);
      background: var(--bg-dark-header);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--border-light);
      z-index: 1050;
      display: flex;
      align-items: center;
      padding: 0 28px;
    }

    .site-header .header-inner {
      width: 100%;
      max-width: 1440px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    /* ─── Logo ─── */
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo__mark {
      width: 38px;
      height: 38px;
      background: var(--accent);
      border-radius: 10px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .logo__mark::after {
      content: '';
      position: absolute;
      width: 16px;
      height: 16px;
      background: var(--bg-dark);
      border-radius: 4px;
      transform: rotate(45deg);
      top: 6px;
      left: 6px;
    }

    .logo:hover .logo__mark {
      transform: rotate(-8deg) scale(1.05);
    }

    .logo__text {
      font-family: var(--font-body);
      font-weight: 800;
      font-size: 1.25rem;
      letter-spacing: -0.02em;
      color: var(--text-light);
    }

    .logo__text span { color: var(--accent); }

    /* ─── Search ─── */
    .search-wrap {
      flex: 1;
      max-width: 520px;
      margin: 0 auto;
      position: relative;
    }

    .search-wrap .bi-search {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 0.95rem;
      color: var(--text-light-muted);
      pointer-events: none;
      transition: color 0.2s ease;
    }

    .search-wrap .form-control {
      height: 44px;
      padding: 0 52px 0 42px;
      background: var(--glass);
      border: 1px solid var(--border-light);
      border-radius: 100px;
      color: var(--text-light);
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 400;
      transition: all 0.3s ease;
    }

    .search-wrap .form-control::placeholder {
      color: var(--text-light-muted);
      font-weight: 300;
    }

    .search-wrap .form-control:focus {
      background: rgba(240, 236, 228, 0.07);
      border-color: rgba(228, 255, 26, 0.3);
      box-shadow: 0 0 0 3px rgba(228, 255, 26, 0.06);
      color: var(--text-light);
    }

    .search-keys {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      gap: 3px;
      pointer-events: none;
    }

    .search-keys kbd {
      padding: 3px 7px;
      font-size: 0.68rem;
      font-weight: 600;
      color: var(--text-light-muted);
      background: rgba(240, 236, 228, 0.06);
      border: 1px solid var(--border-light);
      border-radius: 6px;
      font-family: var(--font-body);
      line-height: 1;
    }

    /* ─── Header actions ─── */
    .header-actions {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

    /* ─── Language Dropdown ─── */
    .lang-dropdown .dropdown-toggle {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 14px;
      background: var(--glass);
      border: 1px solid var(--border-light);
      border-radius: 100px;
      color: var(--text-light);
      font-family: var(--font-body);
      font-size: 0.82rem;
      font-weight: 500;
      transition: all 0.25s ease;
      white-space: nowrap;
    }

    .lang-dropdown .dropdown-toggle::after {
      border-top-color: var(--text-light-muted);
      margin-left: 4px;
      vertical-align: 0.12em;
    }

    .lang-dropdown .dropdown-toggle:hover,
    .lang-dropdown .dropdown-toggle:focus,
    .lang-dropdown.show .dropdown-toggle {
      background: rgba(240, 236, 228, 0.07);
      border-color: rgba(228, 255, 26, 0.25);
      color: var(--text-light);
      box-shadow: none;
    }

    .lang-dropdown .dropdown-menu {
      min-width: 180px;
      background: rgba(20, 20, 18, 0.97);
      backdrop-filter: blur(20px);
      border: 1px solid var(--border-light);
      border-radius: 12px;
      padding: 6px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      margin-top: 8px !important;
    }

    .lang-dropdown .dropdown-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 12px;
      border-radius: 8px;
      color: var(--text-light-muted);
      font-size: 0.85rem;
      font-weight: 400;
      transition: all 0.15s ease;
    }

    .lang-dropdown .dropdown-item:hover,
    .lang-dropdown .dropdown-item:focus {
      background: var(--accent-dim);
      color: var(--text-light);
    }

    .lang-dropdown .dropdown-item.active,
    .lang-dropdown .dropdown-item:active {
      background: var(--accent-dim);
      color: var(--accent);
      font-weight: 500;
    }

    .lang-flag { font-size: 1.1rem; line-height: 1; }

    /* ─── Menu Toggle ─── */
    .menu-toggle {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--glass);
      border: 1px solid var(--border-light);
      border-radius: 12px;
      cursor: pointer;
      padding: 0;
      transition: all 0.3s ease;
    }

    .menu-toggle:hover,
    .menu-toggle:focus {
      background: var(--accent-dim);
      border-color: rgba(228, 255, 26, 0.2);
      box-shadow: none;
    }

    .menu-toggle__lines {
      display: flex;
      flex-direction: column;
      gap: 5px;
      width: 20px;
      pointer-events: none;
    }

    .menu-toggle__lines span {
      display: block;
      height: 2px;
      background: var(--text-light);
      border-radius: 2px;
      transition: all 0.35s cubic-bezier(0.76, 0, 0.24, 1);
    }

    .menu-toggle__lines span:nth-child(1) { width: 100%; }
    .menu-toggle__lines span:nth-child(2) { width: 65%; }
    .menu-toggle__lines span:nth-child(3) { width: 85%; }

    .menu-toggle:hover .menu-toggle__lines span { background: var(--accent); }
    .menu-toggle:hover .menu-toggle__lines span:nth-child(2) { width: 100%; }

    /* ═══════════════════════════════════════════
       OFFCANVAS (Bootstrap overrides)
    ═══════════════════════════════════════════ */
    .offcanvas.offcanvas-end {
      width: 400px;
      max-width: 90vw;
      background: rgba(14, 14, 12, 0.98);
      backdrop-filter: blur(30px);
      border-left: 1px solid var(--border-light);
      color: var(--text-light);
    }

    .offcanvas-backdrop.show { opacity: 0.6; }

    .offcanvas .offcanvas-header {
      padding: 20px 28px;
      border-bottom: 1px solid var(--border-light);
    }

    .offcanvas .offcanvas-title {
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-light-muted);
    }

    .offcanvas .btn-close-custom {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--glass);
      border: 1px solid var(--border-light);
      border-radius: 10px;
      color: var(--text-light-muted);
      padding: 0;
      transition: all 0.2s ease;
    }

    .offcanvas .btn-close-custom:hover {
      color: var(--accent);
      border-color: rgba(228, 255, 26, 0.2);
    }

    .offcanvas .offcanvas-body { padding: 20px 28px; }

    /* ─── Offcanvas Nav ─── */
    .oc-nav {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .oc-nav__link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 12px;
      text-decoration: none;
      color: var(--text-light);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 1.15rem;
      letter-spacing: -0.01em;
      border-radius: 10px;
      position: relative;
      transition: all 0.2s ease;
    }

    .oc-nav__link::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%) scaleY(0);
      width: 3px;
      height: 24px;
      background: var(--accent);
      border-radius: 3px;
      transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .oc-nav__link:hover {
      background: var(--accent-dim);
      padding-left: 20px;
      color: var(--text-light);
    }

    .oc-nav__link:hover::before { transform: translateY(-50%) scaleY(1); }

    .oc-nav__link .bi {
      font-size: 0.9rem;
      color: var(--text-light-muted);
      transition: all 0.2s ease;
    }

    .oc-nav__link:hover .bi {
      color: var(--accent);
      transform: translateX(3px);
    }

    .oc-label {
      display: block;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--text-light-muted);
      padding: 24px 12px 10px;
    }

    .oc-footer {
      padding: 24px 28px;
      border-top: 1px solid var(--border-light);
      margin-top: auto;
    }

    .oc-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 24px;
      background: var(--accent);
      color: var(--bg-dark);
      font-family: var(--font-body);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.02em;
      text-decoration: none;
      border-radius: 12px;
      transition: all 0.25s ease;
      width: 100%;
    }

    .oc-cta:hover {
      filter: brightness(1.1);
      transform: translateY(-1px);
      box-shadow: 0 8px 30px rgba(228, 255, 26, 0.2);
      color: var(--bg-dark);
    }
  /* ═══════════════════════════════
      SERVICES SUB-NAV
    ═══════════════════════════════ */
    .oc-subnav {
      list-style: none;
      padding: 0;
      margin: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
      border-radius: 8px;
    }

    /* Reveal on hover / focus */
    .oc-nav__item:hover .oc-subnav,
    .oc-nav__item:focus-within .oc-subnav {
      max-height: 500px;
      padding: 6px 0 6px 14px;
    }

    .oc-subnav__item {
      padding: 0;
    }

    .oc-subnav__btn {
      display: block;
      width: 100%;
      padding: 12px 12px;
      background: transparent;
      border: none;
      color: var(--text-muted);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      font-weight: 400;
      text-align: left;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.15s ease;
    }

    .oc-subnav__btn:hover {
      background: var(--accent-dim);
      color: var(--text-primary);
      padding-left: 18px;
    }
    /* ═══════════════════════════════════════════
       HERO SECTION
    ═══════════════════════════════════════════ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: calc(var(--header-height) + 60px) 0 80px;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 15% 50%, var(--clay-light), transparent),
        radial-gradient(ellipse 60% 80% at 85% 30%, var(--sage-light), transparent),
        radial-gradient(circle at 50% 100%, rgba(212, 165, 116, 0.06), transparent 60%);
      pointer-events: none;
      z-index: 0;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.3;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }

    .hero > .container { position: relative; z-index: 1; }

    .hero__row {
      display: flex;
      align-items: center;
      gap: 60px;
    }

    /* ─── Content ─── */
    .hero__content {
      flex: 1;
      min-width: 0;
    }

    .hero__tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: var(--sage-light);
      border: 1px solid rgba(122, 155, 138, 0.15);
      border-radius: 100px;
      font-family: var(--font-body);
      font-size: 0.78rem;
      font-weight: 600;
      color: var(--sage-deep);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 28px;
      animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
    }

    .hero__tag ion-icon { font-size: 0.9rem; }

    .hero__title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(2.6rem, 5vw, 4rem);
      line-height: 1.12;
      letter-spacing: -0.02em;
      color: var(--charcoal);
      margin-bottom: 10px;
      animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
    }

    .hero__title em {
      font-style: italic;
      color: var(--sage-deep);
      position: relative;
    }

    .hero__title em::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 4px;
      width: 100%;
      height: 8px;
      background: var(--clay-glow);
      border-radius: 4px;
      z-index: -1;
    }

    .hero__subtitle {
      font-family: var(--font-display);
      font-weight: 400;
      font-style: italic;
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      color: var(--clay);
      margin-bottom: 22px;
      animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
    }

    .hero__desc {
      font-size: 1.02rem;
      line-height: 1.75;
      color: var(--text-body);
      max-width: 520px;
      margin-bottom: 36px;
      animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
    }

    /* ─── Buttons ─── */
    .hero__actions {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
    }

    .hero__btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 32px;
      background: var(--sage-deep);
      color: #fff;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.92rem;
      text-decoration: none;
      border-radius: 100px;
      border: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(92, 130, 112, 0.25);
    }

    .hero__btn-primary:hover {
      background: var(--sage);
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(92, 130, 112, 0.3);
      color: #fff;
    }

    .hero__btn-primary ion-icon {
      font-size: 1.1rem;
      transition: transform 0.2s ease;
    }

    .hero__btn-primary:hover ion-icon { transform: translateX(3px); }

    .hero__btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 28px;
      background: transparent;
      color: var(--charcoal);
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 0.92rem;
      text-decoration: none;
      border-radius: 100px;
      border: 1.5px solid var(--border);
      transition: all 0.3s ease;
    }

    .hero__btn-secondary:hover {
      background: var(--charcoal);
      color: var(--cream);
      border-color: var(--charcoal);
    }

    .hero__btn-secondary ion-icon { font-size: 1.1rem; }

   /* ═══════════════════════════════════════════
      HERO VISUAL — REDESIGNED
   ═══════════════════════════════════════════ */
   .hero__visual {
   flex: 1;
   min-width: 0;
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   min-height: 560px;
   }

   /* ─── Organic blob background ─── */
   .hero__blob {
   position: absolute;
   border-radius: 50%;
   z-index: 0;
   filter: blur(1px);
   }

   .hero__blob--1 {
   width: 340px;
   height: 340px;
   top: -20px;
   right: -30px;
   background: linear-gradient(135deg, var(--sand) 0%, rgba(212, 165, 116, 0.15) 100%);
   animation: blobFloat 8s ease-in-out infinite alternate;
   }

   .hero__blob--2 {
   width: 180px;
   height: 180px;
   bottom: 20px;
   left: -50px;
   background: linear-gradient(135deg, var(--sage-light), rgba(122, 155, 138, 0.08));
   animation: blobFloat 6s ease-in-out 1s infinite alternate-reverse;
   }

   .hero__blob--3 {
   width: 100px;
   height: 100px;
   top: 60px;
   left: 20px;
   background: linear-gradient(135deg, var(--clay-light), rgba(212, 165, 116, 0.06));
   animation: blobFloat 7s ease-in-out 0.5s infinite alternate;
   }

   @keyframes blobFloat {
   from { transform: translate(0, 0) scale(1); }
   to { transform: translate(8px, -12px) scale(1.04); }
   }

   /* ─── Main photo ─── */
   .hero__photo-main {
   position: relative;
   width: 360px;
   height: 460px;
   border-radius: 999px 999px 32px 32px;
   overflow: hidden;
   box-shadow:
      0 30px 80px rgba(44, 42, 38, 0.12),
      0 0 0 6px var(--cream),
      0 0 0 7px var(--border);
   animation: fadeScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
   z-index: 2;
   }

   .hero__photo-main img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   }

   /* ─── Secondary photo ─── */
   .hero__photo-secondary {
   position: absolute;
   bottom: 10px;
   left: -30px;
   width: 190px;
   height: 240px;
   border-radius: 20px;
   overflow: hidden;
   border: 4px solid var(--cream);
   box-shadow: 0 20px 50px rgba(44, 42, 38, 0.12);
   animation: fadeScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
   z-index: 3;
   }

   .hero__photo-secondary img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   }

   /* ═══════════════════════════════════════════
      FLOATING CARDS — 3 BUBBLES
   ═══════════════════════════════════════════ */
   .hero__card {
   position: absolute;
   background: var(--warm-white);
   border: 1px solid var(--border);
   border-radius: 18px;
   padding: 14px 18px;
   display: flex;
   align-items: center;
   gap: 12px;
   box-shadow:
      0 8px 32px rgba(44, 42, 38, 0.08),
      0 1px 3px rgba(44, 42, 38, 0.04);
   z-index: 5;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   }

   .hero__card:hover {
   transform: translateY(-4px);
   box-shadow:
      0 16px 48px rgba(44, 42, 38, 0.12),
      0 2px 6px rgba(44, 42, 38, 0.06);
   }

   .hero__card-icon {
   width: 46px;
   height: 46px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 14px;
   font-size: 1.25rem;
   flex-shrink: 0;
   }

   .hero__card-text {
   font-size: 0.76rem;
   color: var(--text-muted);
   line-height: 1.35;
   font-family: var(--font-body);
   }

   .hero__card-text strong {
   display: block;
   font-size: 0.88rem;
   color: var(--charcoal);
   font-weight: 600;
   margin-bottom: 1px;
   }

   /* ─── Card 1: Speech Therapy — top right ─── */
   .hero__card--speech {
   top: 80px;
   right: 10px;
   animation: cardEnter 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
   }

   .hero__card--speech .hero__card-icon {
   background: var(--sage-light);
   color: var(--sage-deep);
   }

   /* ─── Card 2: ABA Therapy — bottom right ─── */
   .hero__card--aba {
   bottom: 80px;
   right: -24px;
   animation: cardEnter 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both;
   }

   .hero__card--aba .hero__card-icon {
   background: var(--clay-light);
   color: var(--clay);
   }

   /* ─── Card 3: Myofunctional — mid left ─── */
   .hero__card--myo {
   top: 43%;
   left: 14px;
   transform: translateY(-50%);
   animation: cardEnterLeft 0.7s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
   }

   .hero__card--myo .hero__card-icon {
   background: linear-gradient(135deg, rgba(180, 140, 200, 0.12), rgba(180, 140, 200, 0.06));
   color: #9b7fb8;
   }

   /* ─── Subtle connector dots ─── */
   .hero__card::before {
   content: '';
   position: absolute;
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: var(--sage-deep);
   }

   .hero__card--speech::before {
   bottom: -14px;
   left: 30px;
   }

   .hero__card--aba::before {
   top: -14px;
   left: 30px;
   }

   .hero__card--myo::before {
   right: -14px;
   top: 50%;
   transform: translateY(-50%);
   }

   /* ─── Dashed connector line between dots ─── */
   .hero__connector {
   position: absolute;
   right: 60px;
   top: 120px;
   bottom: 140px;
   width: 1px;
   border-left: 1.5px dashed var(--sage-deep);
   z-index: 1;
   animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.9s both;
   }

   /* ═══════════════════════════════════════════
      CARD ANIMATIONS
   ═══════════════════════════════════════════ */
   @keyframes cardEnter {
   from {
      opacity: 0;
      transform: translateX(20px) scale(0.92);
   }
   to {
      opacity: 1;
      transform: translateX(0) scale(1);
   }
   }

   @keyframes cardEnterLeft {
   from {
      opacity: 0;
      transform: translateY(-50%) translateX(-20px) scale(0.92);
   }
   to {
      opacity: 1;
      transform: translateY(-50%) translateX(0) scale(1);
   }
   }

   /* ═══════════════════════════════════════════
      RESPONSIVE
   ═══════════════════════════════════════════ */
   @media (max-width: 991px) {
   .hero__visual {
      min-height: 420px;
      max-width: 480px;
      margin: 0 auto;
   }

   .hero__photo-main {
      width: 280px;
      height: 360px;
   }

   .hero__photo-secondary {
      width: 150px;
      height: 200px;
      left: -15px;
      bottom: 10px;
   }

   .hero__blob--1 { width: 260px; height: 260px; right: -20px; }
   .hero__blob--2 { width: 140px; height: 140px; left: -30px; }
   .hero__blob--3 { display: none; }

   .hero__card { padding: 12px 14px; border-radius: 14px; }
   .hero__card-icon { width: 40px; height: 40px; font-size: 1.1rem; border-radius: 12px; }
   .hero__card-text { font-size: 0.72rem; }
   .hero__card-text strong { font-size: 0.82rem; }

   .hero__card--speech { top: 10px; right: -8px; }
   .hero__card--aba { bottom: 60px; right: -12px; }
   .hero__card--myo { left: -36px; }

   .hero__connector { display: none; }
   }

   @media (max-width: 575px) {
   .hero__visual {
      min-height: 320px;
      max-width: 340px;
   }

   .hero__photo-main {
      width: 220px;
      height: 290px;
      border-radius: 999px 999px 24px 24px;
   }

   .hero__photo-secondary {
      width: 120px;
      height: 160px;
      left: -8px;
      bottom: 20px;
      border-radius: 16px;
   }

   .hero__blob--1 { width: 200px; height: 200px; }
   .hero__blob--2 { display: none; }

   /* Stack cards below photos on mobile */
   .hero__card--speech,
   .hero__card--aba,
   .hero__card--myo {
      position: relative;
      top: auto;
      right: auto;
      bottom: auto;
      left: auto;
      transform: none;
      animation-name: fadeUp;
   }

   .hero__visual {
      flex-wrap: wrap;
      gap: 12px;
   }

   .hero__visual-photos {
      position: relative;
      display: flex;
      justify-content: center;
      width: 100%;
      min-height: 300px;
   }

   .hero__visual-cards {
      display: flex;
      gap: 8px;
      width: 100%;
   }

   .hero__card {
      flex: 1;
      padding: 10px 12px;
   }

   .hero__card-icon {
      width: 36px;
      height: 36px;
      font-size: 1rem;
      border-radius: 10px;
   }

   .hero__card-text { font-size: 0.68rem; }
   .hero__card-text strong { font-size: 0.76rem; }
   .hero__card::before { display: none; }
   }

    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    .site-footer {
      background: var(--bg-dark);
      color: var(--text-light);
      border-top: 1px solid var(--border-light);
    }

    .footer__inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 60px 28px 40px;
      display: flex;
      gap: 60px;
    }

    .footer__brand-col {
      flex-shrink: 0;
      width: 280px;
    }

    .footer__logo img {
      max-width: 160px;
      height: auto;
    }

    /* Fallback logo text if no image */
    .footer__logo-text {
      font-family: var(--font-body);
      font-weight: 800;
      font-size: 1.4rem;
      color: var(--text-light);
      text-decoration: none;
    }

    .footer__logo-text span { color: var(--accent); }

    .footer__social {
      display: flex;
      gap: 10px;
      margin-top: 24px;
    }

    .footer__social-link {
      width: 42px;
      height: 42px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      background: var(--glass);
      border: 1px solid var(--border-light);
      color: var(--text-light-muted);
      font-size: 1.15rem;
      text-decoration: none;
      transition: all 0.25s ease;
    }

    .footer__social-link:hover {
      background: var(--accent-dim);
      border-color: rgba(228, 255, 26, 0.25);
      color: var(--accent);
      transform: translateY(-2px);
    }

    .footer__columns {
      flex: 1;
      display: flex;
      gap: 40px;
    }

    .footer__col { flex: 1; }

    .footer__col-title {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--accent);
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--border-light);
    }

    .footer__list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .footer__list-link {
      display: block;
      padding: 10px 12px;
      text-decoration: none;
      color: var(--text-light);
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 0.92rem;
      border-radius: 8px;
      position: relative;
      transition: all 0.2s ease;
    }

    .footer__list-link::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%) scaleY(0);
      width: 3px;
      height: 18px;
      background: var(--accent);
      border-radius: 3px;
      transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .footer__list-link:hover {
      background: var(--accent-dim);
      padding-left: 18px;
      color: var(--text-light);
    }

    .footer__list-link:hover::before { transform: translateY(-50%) scaleY(1); }

    .footer__list-text {
      padding: 8px 12px;
      color: var(--text-light-muted);
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 400;
      line-height: 1.5;
    }

    /* ─── Copyright ─── */
    .footer__copyright {
      border-top: 1px solid var(--border-light);
      background: rgba(240, 236, 228, 0.02);
    }

    .footer__copyright-inner {
      max-width: 1440px;
      margin: 0 auto;
      padding: 16px 28px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px 20px;
      font-size: 0.78rem;
      color: var(--text-light-muted);
      font-family: var(--font-body);
    }

    .footer__copyright-inner a {
      color: var(--text-light-muted);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer__copyright-inner a:hover { color: var(--accent); }

    .footer__copyright-sep::before {
      content: '·';
      margin: 0 2px;
    }

    /* ═══════════════════════════════════════════
       ANIMATIONS
    ═══════════════════════════════════════════ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeScale {
      from { opacity: 0; transform: scale(0.92); }
      to { opacity: 1; transform: scale(1); }
    }

    @keyframes floatCard {
      from { opacity: 0; transform: translateY(16px) scale(0.95); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */

    /* ─── Tablet ─── */
    @media (max-width: 991px) {
      .hero {
        padding: calc(var(--header-height) + 40px) 0 60px;
        min-height: auto;
      }

      .hero__row {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
      }

      .hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .hero__desc { max-width: 100%; }
      .hero__actions { justify-content: center; }

      .hero__trust {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
      }

      .hero__visual {
        min-height: 380px;
        max-width: 460px;
        margin: 0 auto;
      }

      .hero__photo-main { width: 280px; height: 360px; }

      .hero__photo-secondary {
        width: 170px;
        height: 220px;
        left: -20px;
        bottom: -10px;
      }

      .hero__shape { width: 240px; height: 240px; top: -20px; right: -20px; }
      .hero__float-card { right: -10px; top: 10px; padding: 12px 16px; }
      .hero__float-card--bottom { right: 0; bottom: 20px; }

      /* Footer */
      .footer__inner {
        flex-direction: column;
        gap: 36px;
        padding: 40px 20px 32px;
      }

      .footer__brand-col { width: 100%; text-align: center; }
      .footer__social { justify-content: center; }
      .footer__columns { flex-direction: column; gap: 0; }

      .footer__col { border-bottom: 1px solid var(--border-light); }
      .footer__col:last-child { border-bottom: none; }

      .footer__col-title {
        margin-bottom: 0;
        padding: 18px 0;
        border-bottom: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
      }

      .footer__col-title::after {
        content: '+';
        font-family: var(--font-body);
        font-size: 1.2rem;
        font-weight: 300;
        color: var(--text-light-muted);
        transition: transform 0.3s ease;
      }

      .footer__col-title[aria-expanded="true"]::after {
        content: '−';
        color: var(--accent);
      }

      .footer__col-body { padding-bottom: 12px; }

      .footer__copyright-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
        padding: 16px 20px;
      }

      .footer__copyright-sep::before { content: ''; margin: 0; }
    }

    @media (min-width: 992px) {
      .footer__col-body.collapse:not(.show) {
        display: block;
      }
    }

    /* ─── Mobile ─── */
    @media (max-width: 768px) {
      .site-header { padding: 0 16px; }
      .logo__text { display: none; }
      .search-keys { display: none; }
      .lang-label-text { display: none; }
      .offcanvas.offcanvas-end { width: 100%; max-width: 100vw; }
    }

    @media (max-width: 575px) {
      .hero > .container,
      .about > .container {
         padding-left: 2em;
         padding-right: 2em;
      }
      
      .hero {
        padding: calc(var(--header-height) + 28px) 0 48px;
      }

      .hero__title { font-size: 2.2rem; }
      .hero__visual { min-height: 300px; }

      .hero__photo-main {
        width: 100%;
        height: 290px;
        border-radius: 18px;
      }

      .hero__photo-secondary {
        width: 140px;
        height: 180px;
        left: 30px;
        border-radius: 14px;
        top:30%;
      }
      
      .hero__card{
         flex: initial;
         width: 100%;
      }

      .hero__card--speech{
         margin-top: 4em;
      }

      .hero__card-text{
         text-align: left;
      }

      .hero__float-card { display: none; }
      .hero__trust-item:last-child { display: none; }

      .hero__actions {
        flex-direction: column;
        width: 100%;
      }

      .hero__btn-primary,
      .hero__btn-secondary {
        width: 100%;
        justify-content: center;
      }
    }

/* ═══════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════ */
.about {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: var(--warm-white);
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 40%, var(--sage-light), transparent),
    radial-gradient(ellipse 40% 50% at 10% 70%, var(--clay-light), transparent);
  pointer-events: none;
  z-index: 0;
}

.about > .container {
  position: relative;
  z-index: 1;
}

.about__row {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* ═══════════════════════════════════════════
   IMAGE SIDE
═══════════════════════════════════════════ */
.about__visual {
  flex: 1;
  min-width: 0;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main arch photo */
.about__img-main {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 180px 24px 180px 24px;
  overflow: hidden;
  z-index: 2;
  box-shadow:
    0 24px 64px rgba(44, 42, 38, 0.1),
    0 0 0 5px var(--cream),
    0 0 0 6px var(--border);
}

.about__img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Circular secondary photo */
.about__img-secondary {
  position: absolute;
  bottom: 20px;
  right: -10px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 3;
  border: 5px solid var(--cream);
  box-shadow: 0 16px 40px rgba(44, 42, 38, 0.1);
}

.about__img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative rings */
.about__ring {
  position: absolute;
  top: -10px;
  right: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--clay);
  opacity: 0.2;
  z-index: 1;
}

.about__ring--sm {
  top: auto;
  right: auto;
  bottom: 80px;
  left: -30px;
  width: 36px;
  height: 36px;
  border-color: var(--sage);
  opacity: 0.15;
}

/* ═══════════════════════════════════════════
   TEXT SIDE
═══════════════════════════════════════════ */
.about__content {
  flex: 1;
  min-width: 0;
}

.about__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-deep);
  margin-bottom: 16px;
}

.about__label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--sage-deep);
  border-radius: 2px;
}

.about__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 0;
}

.about__occupation {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--clay);
  margin-bottom: 20px;
}

.about__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 36px;
}

.about__text p {
  margin-bottom: 14px;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 100px;
  border: 1.5px solid rgba(44, 42, 38, 0.15);
  transition: all 0.3s ease;
}

.about__btn:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.about__btn ion-icon {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.about__btn:hover ion-icon {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 991px) {
  .about {
    padding: 72px 0;
  }

  .about__row {
    flex-direction: column;
    gap: 52px;
  }

  .about__visual {
    order: -1;
    min-height: 400px;
    max-width: 400px;
    margin: 0 auto;
  }

  .about__img-main {
    width: 280px;
    height: 350px;
  }

  .about__img-secondary {
    width: 150px;
    height: 150px;
    bottom: 10px;
    right: -5px;
  }

  .about__content { text-align: center; }
  .about__label { justify-content: center; }
  .about__btn { margin: 0 auto; }
  .about__ring { display: none; }
}

@media (max-width: 575px) {
  .about { padding: 56px 0; }

  .about__visual {
    min-height: 340px;
    max-width: 320px;
  }

  .about__img-main {
    width: 230px;
    height: 300px;
      border-radius: 140px 24px 140px 24px;
  }

  .about__img-secondary {
    width: 120px;
    height: 120px;
    bottom: 5px;
    right: -5px;
    border-width: 4px;
  }
}

/* ═══════════════════════════════════════════
   INFO SECTION
═══════════════════════════════════════════ */
.info-section {
  padding: 100px 0;
  position: relative;
  background: var(--warm-white);
  overflow: hidden;
}

.info-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 20% 30%, var(--sage-light), transparent),
    radial-gradient(ellipse 40% 50% at 80% 70%, var(--clay-light), transparent);
  pointer-events: none;
}

.info-section > .container {
  position: relative;
  z-index: 1;
}

/* ─── Checklist grid ─── */
.info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
  margin-bottom: 60px;
}

.info__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.25s ease;
}

.info__item:hover {
  background: var(--warm-white);
  border-color: rgba(122, 155, 138, 0.2);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(44, 42, 38, 0.04);
}

.info__item-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--sage-light);
  color: var(--sage-deep);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info__item-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.4;
}

/* ─── CTA block ─── */
.info__cta {
  text-align: center;
  padding: 48px 40px;
  background: var(--charcoal);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.info__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(122, 155, 138, 0.15), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 165, 116, 0.1), transparent 50%);
  pointer-events: none;
}

.info__cta-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 20px;
  position: relative;
}

.info__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--sage-deep);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(92, 130, 112, 0.3);
  position: relative;
}

.info__cta-btn:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(92, 130, 112, 0.35);
  color: #fff;
}

.info__cta-btn ion-icon {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.info__cta-btn:hover ion-icon {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════
   JOIN US SECTION
═══════════════════════════════════════════ */
.promo-section{
   background: var(--sage-deep);
}

.providers-map-section{
  background: var(--cream);
}

/* ═══════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════ */
.services-section {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

/* ─── Service cards grid ─── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.35s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(44, 42, 38, 0.1);
  border-color: rgba(122, 155, 138, 0.2);
}

/* Card image */
.service-card__img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--sand);
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 2.5rem;
}

/* Card subtitle badge */
.service-card__subtitle {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage-deep);
  margin-bottom: 6px;
}

/* Card title */
.service-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}

/* Card body */
.service-card__body {
  padding: 24px 24px 0;
  flex: 1;
}


.service-card__desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-body);
  display: -webkit-box;
  -webkit-box-orient: vertical; 
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3; 
  text-overflow: ellipsis;

}

/* Card footer */
.service-card__footer {
  padding: 20px 24px 24px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--sage-deep);
  text-decoration: none;
  padding: 8px 18px;
  border: 1.5px solid rgba(92, 130, 112, 0.2);
  border-radius: 100px;
  transition: all 0.25s ease;
}

.service-card__link:hover {
  background: var(--sage-deep);
  color: #fff;
  border-color: var(--sage-deep);
}

.service-card__link ion-icon {
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.service-card__link:hover ion-icon {
  transform: translateX(3px);
}

.service-card button.service-card__inner {
  all: unset;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}


/* ═══════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════ */
.faq-section {
  padding: 100px 0;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 15% 50%, var(--clay-light), transparent),
    radial-gradient(ellipse 40% 50% at 85% 30%, var(--sage-light), transparent);
  pointer-events: none;
}

.faq-section > .container {
  position: relative;
  z-index: 1;
}

.faq__row {
  display: flex;
  align-items: flex-start;
  gap: 72px;
}

/* ─── FAQ Image side ─── */

.faq__row .about__img-main{
   border-radius: 24px 180px 24px 180px;
}

.faq__row .about__img-secondary{
   right: initial;
   left: -10px;
}

.faq__row .about__ring--sm{
   left: initial;
   right: -30px;
}

/* ─── FAQ Content side ─── */
.faq__content {
  flex: 1;
  min-width: 0;
}

.faq__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-deep);
  margin-bottom: 16px;
}

.faq__label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--sage-deep);
  border-radius: 2px;
}

.faq__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 0;
}

.faq__divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--clay), var(--sage));
  border-radius: 3px;
  border: none;
  margin: 22px 0 32px;
}

/* Accordion items wrapper */
.faq_row_btn_s{
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   justify-content: center;
   align-items: center;
   gap: 5px;
   width: 100%;
}
.faq__accordion {
  margin-bottom: 32px;
}

.faq__accordion .accordion-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq__accordion .accordion-button {
  background: transparent;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  padding: 18px 20px;
  box-shadow: none;
}

.faq__accordion .accordion-button:not(.collapsed) {
  background: var(--sage-light);
  color: var(--sage-deep);
}

.faq__accordion .accordion-button::after {
  background-size: 14px;
}

.faq__accordion .accordion-body {
  padding: 0 20px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* FAQ button */
.faq__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 100px;
  border: 1.5px solid rgba(44, 42, 38, 0.15);
  transition: all 0.3s ease;
}

.faq__btn:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.faq__btn ion-icon {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.faq__btn:hover ion-icon {
  transform: translateX(3px);
}


/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 991px) {
  .info-section,
  .services-section,
  .faq-section {
    padding: 72px 0;
  }

  .info__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .faq__row {
    flex-direction: column;
    gap: 48px;
  }

  .faq__visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .faq__content {
    text-align: center;
  }

  .faq__label { justify-content: center; }
  .faq__divider { margin-left: auto; margin-right: auto; }
  .faq__btn { margin: 0 auto; }
  .faq__accordion { text-align: left; }

  /* Image frame responsive */
  .img-frame__main {
    max-width: 380px;
    border-radius: 90px 20px 20px 20px;
  }

  .img-frame__secondary {
    width: 130px;
    height: 130px;
    bottom: -10px;
    right: -8px;
  }

  .img-frame__ring { display: none; }
}

@media (max-width: 767px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card__img { height: 200px; }
}

@media (max-width: 575px) {
  .info-section,
  .services-section,
  .faq-section {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header__title {
    font-size: 1.8rem;
  }

  .info__item {
    padding: 14px 14px;
    border-radius: 12px;
  }

  .info__cta {
    padding: 36px 24px;
    border-radius: 18px;
  }

  .info__cta-title { font-size: 1.2rem; }

  .img-frame__main {
    max-width: 280px;
    border-radius: 70px 18px 18px 18px;
  }

  .img-frame__secondary {
    width: 100px;
    height: 100px;
    border-width: 4px;
  }

  .faq__title { font-size: 1.7rem; }
}

/* ═══════════════════════════════════════════
   ABOUT HERO
═══════════════════════════════════════════ */
.about-hero {
  padding: calc(var(--header-height) + 60px) 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 80% 40%, var(--sage-light), transparent),
    radial-gradient(ellipse 40% 50% at 10% 70%, var(--clay-light), transparent);
  pointer-events: none;
}

.about-hero > .container { position: relative; z-index: 1; }

.about-hero__row {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Text */
.about-hero__content { flex: 1; min-width: 0; }

.about-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-deep);
  margin-bottom: 16px;
}

.about-hero__label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--sage-deep);
  border-radius: 2px;
}

.about-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 0;
}

.about-hero__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 36px;
}

.about-hero__text p { margin-bottom: 14px; }
.about-hero__text p:last-child { margin-bottom: 0; }

.about-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 100px;
  border: 1.5px solid rgba(44, 42, 38, 0.15);
  transition: all 0.3s ease;
}

.about-hero__btn:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.about-hero__btn ion-icon {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.about-hero__btn:hover ion-icon {
  transform: translateX(3px);
}

/* Image */
.about-hero__visual {
  flex: 1;
  min-width: 0;
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes heroBlob {
  0%   { border-radius: 42% 58% 62% 38% / 45% 55% 45% 55%; }
  50%  { border-radius: 55% 45% 38% 62% / 58% 42% 55% 45%; }
  100% { border-radius: 48% 52% 56% 44% / 40% 60% 50% 50%; }
}

.about-hero__img {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: 160px 24px 24px 24px;
  overflow: hidden;
  z-index: 2;
  box-shadow:
    0 28px 64px rgba(44, 42, 38, 0.1),
    0 0 0 5px var(--cream),
    0 0 0 6px var(--border);
}

.about-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__ring {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--clay);
  opacity: 0.18;
  z-index: 1;
  top: -90px;
  right: 30px;
}

.about-hero__ring--sm {
  width: 32px;
  height: 32px;
  top: auto;
  right: auto;
  bottom: 60px;
  left: -18px;
  border-color: var(--sage);
  opacity: 0.14;
}

/* ═══════════════════════════════════════════
   STUDY / EXPERIENCE SECTION
═══════════════════════════════════════════ */
.about-study {
  padding: 100px 0;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.about-study::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 0%, var(--sage-light), transparent);
  pointer-events: none;
}

.about-study > .container { position: relative; z-index: 1; }

.about-study__header {
  text-align: center;
  margin-bottom: 52px;
}

/* Two-column split */
.about-study__split {
  display: flex;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(44, 42, 38, 0.06);
}

.about-study__col {
  flex: 1;
  padding: 48px 44px;
}

.about-study__col--light {
  background: #fff;
}

.about-study__col--accent {
  background: var(--sage-deep);
  color: rgba(255, 255, 255, 0.85);
}

.about-study__col--accent h3,
.about-study__col--accent h4,
.about-study__col--accent strong {
  color: #fff;
}

.about-study__col-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-study__col--light .about-study__col-text {
  color: var(--text-body);
}

.about-study__col-text p { margin-bottom: 14px; }
.about-study__col-text p:last-child { margin-bottom: 0; }


/* ═══════════════════════════════════════════
   MISSION SECTION
═══════════════════════════════════════════ */
.about-mission {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.about-mission__header {
  text-align: center;
  margin-bottom: 16px;
}

.about-mission__desc {
  max-width: 80%;
  margin: 0 auto 56px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
}

.about-mission__desc p { margin-bottom: 14px; }

/* Mission cards */
.about-mission__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mission-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(44, 42, 38, 0.08);
}

.mission-card:hover::before { opacity: 1; }

.mission-card:nth-child(1)::before { background: var(--sage-deep); }
.mission-card:nth-child(2)::before { background: var(--clay); }
.mission-card:nth-child(3)::before { background: var(--charcoal); }

.mission-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 24px;
}

.mission-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.mission-card:nth-child(1) .mission-card__icon { background: var(--sage-light); }
.mission-card:nth-child(2) .mission-card__icon { background: var(--clay-light); }
.mission-card:nth-child(3) .mission-card__icon { background: rgba(44, 42, 38, 0.06); }

.mission-card__content {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-body);
}

.mission-card__content h4,
.mission-card__content h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.mission-card__content p { margin-bottom: 12px; }
.mission-card__content p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════
   ACADEMY SECTION
═══════════════════════════════════════════ */
.about-academy {
  padding: 100px 0;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.about-academy::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 50%, var(--clay-light), transparent),
    radial-gradient(ellipse 40% 50% at 85% 30%, var(--sage-light), transparent);
  pointer-events: none;
}

.about-academy > .container { position: relative; z-index: 1; }

.about-academy__row {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Image */
.about-academy__visual {
  flex: 1;
  min-width: 0;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-academy__img {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 24px 140px 24px 24px;
  overflow: hidden;
  z-index: 2;
  box-shadow:
    0 24px 64px rgba(44, 42, 38, 0.1),
    0 0 0 5px var(--warm-white),
    0 0 0 6px var(--border);
}

.about-academy__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-academy__ring {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--sage);
  opacity: 0.16;
  z-index: 1;
  bottom: -78px;
  right: 40px;
}

.about-academy__ring--sm {
  width: 30px;
  height: 30px;
  bottom: auto;
  right: auto;
  top:-60px;
  left: -14px;
  border-color: var(--clay);
  opacity: 0.14;
}

/* Content */
.about-academy__content { flex: 1; min-width: 0; }

.about-academy__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-deep);
  margin-bottom: 16px;
}

.about-academy__label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--sage-deep);
  border-radius: 2px;
}

.about-academy__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 0;
}

.about-academy__divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--clay), var(--sage));
  border-radius: 3px;
  border: none;
  margin: 22px 0 28px;
}

.about-academy__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 36px;
}

.about-academy__text p { margin-bottom: 14px; }
.about-academy__text p:last-child { margin-bottom: 0; }

.about-academy__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--sage-deep);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(92, 130, 112, 0.25);
}

.about-academy__btn:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(92, 130, 112, 0.3);
  color: #fff;
}

.about-academy__btn ion-icon {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.about-academy__btn:hover ion-icon {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════
   SHARED: section-header reuse
═══════════════════════════════════════════ */
.section-header__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-deep);
  margin-bottom: 14px;
  justify-content: center;
}

.section-header__label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--sage-deep);
  border-radius: 2px;
}

.section-header__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 0;
}

.section-header__divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--clay), var(--sage));
  border-radius: 3px;
  border: none;
  margin: 20px auto 0;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 991px) {
  .about-hero {
    padding: calc(var(--header-height) + 40px) 0 64px;
  }

  .about-hero__row,
  .about-academy__row {
    flex-direction: column;
    gap: 48px;
  }

  .about-hero__visual {
    order: -1;
    min-height: 380px;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-hero__img { width: 300px; height: 380px; }
  .about-hero__blob { width: 280px; height: 280px; }

  .about-hero__content,
  .about-academy__content {
    text-align: center;
  }

  .about-hero__label,
  .about-academy__label {
    justify-content: center;
  }

  .about-hero__divider,
  .about-academy__divider {
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero__btn,
  .about-academy__btn {
    margin: 0 auto;
  }

  .about-hero__ring,
  .about-academy__ring { display: none; }

  /* Study split */
  .about-study__split {
    flex-direction: column;
    border-radius: 20px;
  }

  .about-study__col {
    padding: 36px 28px;
  }

  /* Mission cards */
  .about-mission__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-mission,
  .about-study,
  .about-academy {
    padding: 72px 0;
  }

  /* Academy image */
  .about-academy__visual {
    order: -1;
    min-height: 360px;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-academy__img { width: 300px; height: 370px; }
  .about-academy__blob { width: 260px; height: 260px; }
}

@media (max-width: 575px) {
  .about-hero {
    padding: calc(var(--header-height) + 28px) 0 48px;
  }

  .about-hero__visual { min-height: 320px; max-width: 300px; }
  .about-hero__img { width:100%; height: 310px; border-radius: 120px 20px 20px 20px; }

  .about-hero__title { font-size: 2rem; }
  .about-academy__title { font-size: 1.8rem; }

  .about-study__col { padding: 28px 22px; }
  .about-study__split { border-radius: 16px; }

  .mission-card { padding: 28px 24px; border-radius: 16px; }

  .about-academy__visual { min-height: 300px; max-width: 300px; }
  .about-academy__img { width: 100%; height: 320px; border-radius: 20px 100px 20px 20px; }

  .about-mission,
  .about-study,
  .about-academy {
    padding: 56px 0;
  }
}

/* INNER CSS */
.page_header{
   background: var(--sage-deep);
   padding-top: 3em;
}

.page_header__label {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-family: var(--font-body);
   font-size: 0.78rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   color: var(--text-light);
   margin-bottom: 5px;
}

.page_header__label::before {
   content: '';
   display: inline-block;
   width: 28px;
   height: 2px;
   background: var(--warm-white);
   border-radius: 2px;
}

.page_header__title{
   font-family: var(--font-display);
   font-weight: 700;
   font-size: clamp(2rem, 3.5vw, 2.8rem);
   line-height: 1.15;
   letter-spacing: -0.02em;
   color: var(--warm-white);
   margin-bottom: 0;
}

.contact-form-col #contactFormDiv.col-md-6{
   width: 100% !important;
   padding: initial !important;
}

.contact-form-col #contactFormDiv.col-md-6 .input-group-lg>.btn, 
.contact-form-col #contactFormDiv.col-md-6 .input-group-lg>.form-control, 
.contact-form-col #contactFormDiv.col-md-6 .input-group-lg>.form-select, 
.contact-form-col #contactFormDiv.col-md-6 .input-group-lg>.input-group-text,
.contact-form-col #contactFormDiv.col-md-6 .form-check .form-check-label{
   font-size: 1em;
}

.contact-form-col #contactFormDiv.col-md-6 .form-check .form-check-label a{
   color: var(--sage-deep);
}

.contact-form-col #contactFormDiv.col-md-6 .form-check .form-check-label a:hover{
   color: var(--charcoal-deep);
}

.contact-form-col #contactFormDiv.col-md-6 .btn.btn-primary{
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 16px 36px;
   background: var(--sage-deep);
   color: #fff;
   font-family: var(--font-body) "Poppins", sans-serif;
   font-weight: 600;
   font-size: 0.92rem;
   text-decoration: none;
   border-radius: 100px;
   border: none;
   transition: all 0.3s ease;
   box-shadow: 0 4px 20px rgba(92, 130, 112, 0.3);
   position: relative;
}
.contact-form-col #contactFormDiv.col-md-6 .btn.btn-primary:hover{
   background: var(--sage);
   transform: translateY(-2px);
   box-shadow: 0 8px 32px rgba(92, 130, 112, 0.35);
   color: #fff;
}

.contact-form-col{
   padding: 3em;
   background: var(--warm-white);
   border: 1px solid var(--border);
   border-radius: 20px;
   overflow: hidden;
   transition: all 0.35s ease;
}

.contact-form-col:hover{
   transform: translateY(-6px);
   box-shadow: 0 20px 56px rgba(44, 42, 38, 0.1);
   border-color: rgba(122, 155, 138, 0.2);
}

.contact-contact-col .ico-box{
   transition: all 0.35s ease;
}

.contact-contact-col .ico-box .ico-color{
   color: var(--clay);
}

.contact-contact-col .info-box p:nth-child(1){
   color: var(--sage-deep);
}

.contact-contact-col .info-box p:nth-child(2) a{
   color: var(--charcoal);
   text-decoration: none;
   font-weight: 500;
}

.contact-contact-col .info-card:hover .ico-box{
   background: var(--sage);
   transition: all 0.35s ease;
}

.contact-contact-col .info-card:hover .ico-box .ico-color{
   color: var(--warm-white);
   transition: all 0.35s ease;
}

.contact-contact-col .info-card:hover p:nth-child(2) a{
   color: var(--sage-deep);
   transition: all 0.35s ease;
}

@media (max-width: 991px) {
   .contact-form-col #contactFormDiv .col-md-6{
      flex: 0 0 auto;
      width: 100%;
   }

   .contact-form-col #contactFormDiv .col-md-6:nth-child(1){
      margin-bottom: 1em;
   }
}
@media (max-width: 575px) {
   .page_header .container,
   .page_content .container{
      padding-left: 2em;
      padding-right: 2em;
   }

   .provider-search-section .container{
    padding-left: 0.9em ;
    padding-right: 0.9em;
   }
}
/* ═══════════════════════════════════════════
   PAGE NAV — STICKY BELOW HEADER
═══════════════════════════════════════════ */
.page-nav-spacer {
  height: var(--header-height);
}

/* ═══════════════════════════════════════════
   PAGE NAV — UPDATED
═══════════════════════════════════════════ */
/* Scroll fade hints on desktop */
.page-nav__wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48px;
  background: linear-gradient(-90deg, var(--sage-deep), transparent);
  border-radius: 0 16px 16px 0;
  pointer-events: none;
  z-index: 2;
}

.page-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 40;
  padding: 14px 0;
}

.page-nav__wrap {
  position: relative;
}

/* ─── Scrollable pills bar ─── */
.page-nav__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0;
}

.page-nav__bar::-webkit-scrollbar {
  display: none;
}

/* ─── Pills: white bg, sage hover ─── */
.page-nav__pill {
  flex-shrink: 0;
  padding: 0.375em 1em;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.84rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(44, 42, 38, 0.04);
}

.page-nav__pill:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--warm-white);
}

.page-nav__pill--active,
.page-nav__pill:active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--warm-white);
  box-shadow: 0 2px 8px rgba(92, 130, 112, 0.25);
}

/* ─── Mobile toggle ─── */
.page-nav__toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(44, 42, 38, 0.04);
}

.page-nav__toggle span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-nav__toggle span ion-icon {
  font-size: 1rem;
  color: var(--sage-deep);
}

.page-nav__toggle-chevron {
  font-size: 1rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.page-nav__toggle[aria-expanded="true"] .page-nav__toggle-chevron {
  transform: rotate(180deg);
}

.page-nav__toggle[aria-expanded="true"] {
  border-color: rgba(122, 155, 138, 0.3);
}

/* ═══════════════════════════════════════════
   DESKTOP: always visible, scrollable
═══════════════════════════════════════════ */
@media (min-width: 992px) {
  .page-nav__bar.collapse:not(.show) {
    display: flex;
  }
}

/* ═══════════════════════════════════════════
   MOBILE: accordion
═══════════════════════════════════════════ */
@media (max-width: 991px) {
  .page-nav__toggle {
    display: flex;
  }

  .page-nav__bar {
    display: none;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
    padding: 0;
    overflow-x: visible;
  }

  .page-nav__bar.show {
    display: flex;
  }

  .page-nav__pill {
    width: 100%;
    text-align: center;
    border-radius: 12px;
  }
}

/* ═══════════════════════════════════════════
   CATEGORY LAYOUT
═══════════════════════════════════════════ */
.cat-layout {
  background: var(--cream);
  position: relative;
}

.cat-layout__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.cat-main {
  flex: 1;
  min-width: 0;
}

/* ─── Sidebar — sticky, accounts for header + nav ─── */
.cat-sidebar {
  width: 340px;
  flex-shrink: 0;
  position: sticky;
  top: calc(var(--header-height) + 72px);
  max-height: calc(100vh - var(--header-height) - 90px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  padding: 40px 0;
}

.cat-sidebar::-webkit-scrollbar { width: 4px; }
.cat-sidebar::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

.cat-sidebar__card {
  background: var(--charcoal);
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid var(--border-light);
}

.cat-sidebar__title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light-muted);
  margin-bottom: 8px;
}

.cat-sidebar__divider {
  width: 36px;
  height: 2px;
  background: var(--accent);
  border: none;
  border-radius: 2px;
  margin: 0 0 20px;
}

.cat-sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cat-sidebar__item {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(240, 236, 228, 0.04);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  transition: all 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.cat-sidebar__item:hover {
  background: var(--accent-dim);
  border-color: rgba(228, 255, 26, 0.15);
}

.cat-sidebar__item-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--glass);
}

.cat-sidebar__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-sidebar__item-text {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.3;
}

.cat-sidebar__item-arrow {
  color: var(--text-light-muted);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.cat-sidebar__item:hover .cat-sidebar__item-arrow {
  color: var(--accent);
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════
   CATEGORY HERO
═══════════════════════════════════════════ */
.cat-hero {
  padding: 48px 0 56px;
}

.cat-hero__row {
  display: flex;
  align-items: center;
  gap: 64px;
}

.cat-hero__content { flex: 1; min-width: 0; }

.cat-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-deep);
  margin-bottom: 16px;
}

.cat-hero__label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--sage-deep);
  border-radius: 2px;
}

.cat-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 0;
}

.cat-hero__divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--clay), var(--sage));
  border-radius: 3px;
  border: none;
  margin: 22px 0 28px;
}

.cat-hero__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
}

.cat-hero__desc p { margin-bottom: 14px; }
.cat-hero__desc p:last-child { margin-bottom: 0; }

.cat-hero__visual { flex: 1; min-width: 0; position: relative; }

.cat-hero__img {
  position: relative;
  border-radius: 120px 24px 24px 24px;
  overflow: hidden;
  z-index: 2;
  box-shadow:
    0 24px 64px rgba(44, 42, 38, 0.1),
    0 0 0 5px var(--cream),
    0 0 0 6px var(--border);
}

.cat-hero__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cat-hero__ring {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--clay);
  opacity: 0.18;
  z-index: 1;
  top: -12px;
  right: 30px;
}

.cat-hero__ring--sm {
  width: 32px;
  height: 32px;
  top: auto;
  right: auto;
  bottom: -10px;
  left: -14px;
  border-color: var(--sage);
  opacity: 0.14;
}

/* ═══════════════════════════════════════════
   FULL DESCRIPTION
═══════════════════════════════════════════ */
.cat-description { padding: 0 0 64px; }

.cat-description__content {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-body);
}

.cat-description__content h2,
.cat-description__content h3,
.cat-description__content h4 {
  font-family: var(--font-display);
  color: var(--charcoal);
  margin-top: 32px;
  margin-bottom: 14px;
}

.cat-description__content h2 { font-size: 1.6rem; font-weight: 700; }
.cat-description__content h3 { font-size: 1.3rem; font-weight: 600; }
.cat-description__content p { margin-bottom: 16px; }

.cat-description__content ul,
.cat-description__content ol { padding-left: 20px; margin-bottom: 16px; }
.cat-description__content li { margin-bottom: 8px; }
.cat-description__content img { max-width: 100%; border-radius: 16px; margin: 20px 0; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1199px) {
  .cat-sidebar { width: 300px; }
}

@media (min-width: 992px) {
  /* Desktop: always show pills, ignore collapse */
  .page-nav__bar.collapse:not(.show) {
    display: flex;
  }
}

@media (max-width: 991px) {
  .page-nav__toggle { display: flex; }
  .page-nav__wrap::after { display: none; }

  .page-nav__bar {
    display: none;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
    padding: 12px;
  }

  .page-nav__bar.show { display: flex; }
  .page-nav__pill { width: 100%; text-align: center; }

  .cat-layout__inner {
    flex-direction: column;
    padding: 0 20px;
  }

  .cat-sidebar {
    width: 100%;
    position: relative;
    top: auto;
    max-height: none;
    padding: 0 0 40px;
    order: 2;
  }

  .cat-hero__row { flex-direction: column; gap: 40px; }
  .cat-hero__visual { max-width: 420px; margin: 0 auto; }
  .cat-hero__img { border-radius: 80px 20px 20px 20px; }
  .cat-hero__ring { display: none; }
}

@media (max-width: 575px) {
  .page-nav { padding: 10px 0; }
  .cat-hero { padding: 36px 0 44px; }
  .cat-hero__title { font-size: 1.8rem; }
  .cat-hero__img { border-radius: 60px 16px 16px 16px; }

  .cat-sidebar__card { padding: 22px 18px; border-radius: 16px; }
  .cat-sidebar__item { padding: 8px 10px; border-radius: 12px; }
  .cat-sidebar__item-img { width: 42px; height: 42px; border-radius: 8px; }
}

/* ═══════════════════════════════════════════
   FEATURE CARDS
═══════════════════════════════════════════ */
.feature-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  border-radius: 20px 0 0 20px;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  box-shadow: 0 12px 40px rgba(44, 42, 38, 0.06);
  border-color: rgba(122, 155, 138, 0.15);
}

/* Color variants */
.feature-card--sage::before { background: var(--sage-deep); }
.feature-card--clay::before { background: var(--clay); }

/* Header */
.feature-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-card--sage .feature-card__icon {
  background: var(--sage-light);
  color: var(--sage-deep);
}

.feature-card--clay .feature-card__icon {
  background: var(--clay-light);
  color: var(--clay);
}

.feature-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin: 0;
}

/* Content */
.feature-card__body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
}

.feature-card__body p { margin-bottom: 14px; }
.feature-card__body p:last-child { margin-bottom: 0; }

/* ─── Responsive ─── */
@media (max-width: 575px) {
  .feature-card {
    padding: 28px 22px;
    border-radius: 16px;
  }

  .feature-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 1.15rem;
  }

  .feature-card__title { font-size: 1.05rem; }
}

/* ═══════════════════════════════════════════
   PRICING HERO
═══════════════════════════════════════════ */
.pricing-hero {
  padding: 56px 0 64px;
  background: var(--warm-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 30%, var(--sage-light), transparent),
    radial-gradient(ellipse 40% 40% at 80% 80%, var(--clay-light), transparent);
  pointer-events: none;
}

.pricing-hero > .container { position: relative; z-index: 1; }

.pricing-hero__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 4px solid var(--cream);
  box-shadow: 0 8px 32px rgba(44, 42, 38, 0.1);
}

.pricing-hero__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.pricing-hero__desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   SERVICE PRICE CARDS
═══════════════════════════════════════════ */
.pricing-services {
  padding: 72px 0;
  background: var(--cream);
}

.pricing-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.price-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(44, 42, 38, 0.08);
  border-color: rgba(122, 155, 138, 0.2);
}

.price-card__header {
  padding: 24px 24px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.price-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin: 0;
}

.price-card__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Price / duration rows */
.price-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: 12px;
}

.price-card__row-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.price-card__row-icon--price {
  background: var(--sage-light);
  color: var(--sage-deep);
}

.price-card__row-icon--time {
  background: var(--clay-light);
  color: var(--clay);
}

.price-card__row-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.price-card__badge {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-card__badge--price {
  background: var(--sage-light);
  color: var(--sage-deep);
}

.price-card__badge--time {
  background: var(--clay-light);
  color: var(--clay);
}

/* ═══════════════════════════════════════════
   PACKAGES SECTION
═══════════════════════════════════════════ */
.pricing-packages {
  padding: 80px 0;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

.pricing-packages::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 20% 30%, var(--sage-light), transparent),
    radial-gradient(ellipse 40% 50% at 80% 70%, var(--clay-light), transparent);
  pointer-events: none;
}

.pricing-packages > .container { position: relative; z-index: 1; }

.pricing-packages__header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── Package card ─── */
.pkg-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  position: relative;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(44, 42, 38, 0.1);
}

/* Top accent line — cycles through palette */
.pkg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.pkg-card:nth-child(7n+1)::before { background: var(--sage-deep); }
.pkg-card:nth-child(7n+2)::before { background: var(--clay); }
.pkg-card:nth-child(7n+3)::before { background: var(--charcoal); }
.pkg-card:nth-child(7n+4)::before { background: #6a8fa7; }
.pkg-card:nth-child(7n+5)::before { background: #b89a6a; }
.pkg-card:nth-child(7n+6)::before { background: #9b7fb8; }
.pkg-card:nth-child(7n+7)::before { background: var(--sage); }

/* Badge */
.pkg-card__badge-wrap {
  padding: 20px 24px 0;
  text-align: center;
}

.pkg-card__badge {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

.pkg-card:nth-child(7n+1) .pkg-card__badge { background: var(--sage-deep); }
.pkg-card:nth-child(7n+2) .pkg-card__badge { background: var(--clay); }
.pkg-card:nth-child(7n+3) .pkg-card__badge { background: var(--charcoal); }
.pkg-card:nth-child(7n+4) .pkg-card__badge { background: #6a8fa7; }
.pkg-card:nth-child(7n+5) .pkg-card__badge { background: #b89a6a; }
.pkg-card:nth-child(7n+6) .pkg-card__badge { background: #9b7fb8; }
.pkg-card:nth-child(7n+7) .pkg-card__badge { background: var(--sage); }

/* Title */
.pkg-card__header {
  padding: 16px 24px 12px;
  text-align: center;
}

.pkg-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin: 0;
}

/* Price */
.pkg-card__price {
  text-align: center;
  padding: 0 24px 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--charcoal);
}

/* Feature list */
.pkg-card__body {
  padding: 0 24px 28px;
  flex: 1;
  border-top: 1px solid var(--border);
  margin: 0 16px;
  padding-top: 20px;
}

.pkg-card__list {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-body);
}

.pkg-card__list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pkg-card__list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pkg-card__list li:last-child { border-bottom: none; }

.pkg-card__list li::before {
  content: '✓';
  color: var(--sage-deep);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pkg-card__list p { margin-bottom: 10px; }
.pkg-card__list p:last-child { margin-bottom: 0; }

/* ─── Contact notice ─── */
.pricing-notice {
  margin-top: 48px;
  padding: 24px 32px;
  background: var(--charcoal);
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-notice::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(122, 155, 138, 0.12), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 165, 116, 0.08), transparent 50%);
  pointer-events: none;
}

.pricing-notice__text {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pricing-notice__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(212, 165, 116, 0.15);
  color: var(--clay);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 991px) {
  .pricing-services__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .pricing-packages__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .pricing-services,
  .pricing-packages {
    padding: 56px 0;
  }
}

@media (max-width: 767px) {
  .pricing-services__grid {
    grid-template-columns: 1fr;
  }

  .pricing-packages__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .pricing-hero { padding: 40px 0 48px; }
  .pricing-hero__title { font-size: 1.8rem; }
  .pricing-hero__avatar { width: 80px; height: 80px; }

  .pricing-services,
  .pricing-packages {
    padding: 44px 0;
  }

  .price-card { border-radius: 16px; }
  .price-card__header { padding: 20px 20px 14px; }
  .price-card__body { padding: 16px 20px 20px; }

  .pkg-card { border-radius: 18px; }

  .pricing-notice {
    padding: 20px 22px;
    border-radius: 14px;
  }

  .pricing-notice__text {
    flex-direction: column;
    gap: 8px;
    font-size: 0.88rem;
  }
}

/* ═══════════════════════════════════════════
   TEAM OVERVIEW
═══════════════════════════════════════════ */
.team {
  padding: 56px 0 0;
}

.team-overview {
  align-items: flex-start;
  margin-bottom: 64px;
}

.team-overview__photo {
  flex-shrink: 0;
  width: 300px;
  border-radius: 120px 24px 24px 24px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(44, 42, 38, 0.1),
    0 0 0 5px var(--cream),
    0 0 0 6px var(--border);
}

.team-overview__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.team-overview__content {
  flex: 1;
  min-width: 0;
}

.team-overview__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.team-overview__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 20px;
}

.team-overview__desc p { margin-bottom: 12px; }
.team-overview__desc p:last-child { margin-bottom: 0; }

/* Founded badge */
.team-overview__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--sage-light);
  border: 1px solid rgba(122, 155, 138, 0.15);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin-bottom: 24px;
}

.team-overview__badge ion-icon {
  font-size: 0.95rem;
}

/* Info blocks (expertise, approach) */
.team-overview__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-overview__info-block {
  padding: 20px 22px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  position: relative;
  padding-left: 36px;
}

.team-overview__info-block::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 3px;
}

.team-overview__info-block:nth-child(1)::before { background: var(--sage-deep); }
.team-overview__info-block:nth-child(2)::before { background: var(--clay); }

.team-overview__info-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.team-overview__info-text {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-body);
  margin: 0;
}

/* ═══════════════════════════════════════════
   CERTIFICATIONS
═══════════════════════════════════════════ */
.team-certs {
  margin-bottom: 64px;
}

.team-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.team-section-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--clay), var(--sage));
  border-radius: 3px;
  border: none;
  margin: 0 0 28px;
}

.team-certs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cert-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 18px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.25s ease;
}

.cert-card:hover {
  border-color: rgba(122, 155, 138, 0.2);
  box-shadow: 0 8px 24px rgba(44, 42, 38, 0.05);
  transform: translateY(-2px);
}

.cert-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--sage-light);
  flex-shrink: 0;
  overflow: hidden;
}

.cert-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.cert-card__icon ion-icon {
  font-size: 1.2rem;
  color: var(--sage-deep);
}

.cert-card__content { flex: 1; min-width: 0; }

.cert-card__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.cert-card__desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.cert-card__link {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sage-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cert-card__link:hover {
  color: var(--charcoal);
}

/* ═══════════════════════════════════════════
   TEAM MEMBERS
═══════════════════════════════════════════ */
.team-members {
  margin-bottom: 64px;
}

.team-members__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.member-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(44, 42, 38, 0.1);
  border-color: rgba(122, 155, 138, 0.2);
}

.member-card__photo {
  height: 260px;
  overflow: hidden;
  background: var(--sand);
}

.member-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.member-card:hover .member-card__photo img {
  transform: scale(1.05);
}

.member-card__photo-placeholder {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  color: var(--text-muted);
  font-size: 3rem;
}

.member-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.member-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.member-card__role {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-style: italic;
  color: var(--clay);
  margin-bottom: 12px;
}

.member-card__bio {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 16px;
}

/* Tags */
.member-card__tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.member-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 0.5em;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.3;
}

.member-card__tag ion-icon {
  font-size: 0.85rem;
  flex-shrink: 0;
}

.member-card__tag--expertise {
  background: var(--sage-light);
  color: var(--sage-deep);
}

.member-card__tag--studies {
  background: var(--clay-light);
  color: var(--clay);
}

.member-card__tag--languages {
  background: rgba(44, 42, 38, 0.05);
  color: var(--text-muted);
}

/* Certification pills */
.member-card__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.member-card__cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 0.5em;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  transition: all 0.2s ease;
}

.member-card__cert-pill:hover {
  background: var(--sage-light);
  border-color: rgba(122, 155, 138, 0.2);
  color: var(--sage-deep);
}

.member-card__cert-pill ion-icon {
  font-size: 0.8rem;
  color: var(--clay);
}

/* Social links */
.member-card__social {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.member-card__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(44, 42, 38, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.member-card__social-link:hover {
  background: var(--sage-light);
  border-color: rgba(122, 155, 138, 0.2);
  color: var(--sage-deep);
  transform: translateY(-2px);
}
/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 991px) {
  .team-overview {
    flex-direction: column;
    gap: 32px;
  }

  .team-overview__photo {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .team-overview__content { text-align: center; }
  .team-overview__badge { margin-left: auto; margin-right: auto; }
  .team-overview__info { align-items: center; }
  .team-overview__info-block { text-align: left; width: 100%; }

  .team-certs__grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-members__grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-section-title { text-align: center; }
  .team-section-divider { margin-left: auto; margin-right: auto; }
}

@media (max-width: 767px) {
  .team-certs__grid,
  .team-members__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .team { padding: 40px 0 0; }

  .team-overview__photo {
    max-width: 260px;
    border-radius: 90px 20px 20px 20px;
  }

  .team-overview__title { font-size: 1.5rem; }

  .member-card__photo,
  .member-card__photo-placeholder {
    height: 220px;
  }

  .member-card { border-radius: 18px; }
  .member-card__body { padding: 20px; }

  .cert-card { padding: 16px 14px; border-radius: 14px; }
}

/* PROVIDER SEARCH WIDGET */
.provider-search-widget .card{transition: all 0.3s ease;}
.provider-search-widget .card:hover{
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.provider-search-widget .card-image{overflow: hidden; max-height: 220px;}
.provider-search-widget .card-image img{width: 100%; object-fit: cover;}
.provider-search-widget .card-image.no-image{
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    font-size: 2rem;
    color: #ccc;
}
.provider-search-widget .search-bar{position: relative;}
.provider-search-widget .search-bar input{
    padding-left: 2.5rem;
    border-radius: 50px;
}
.provider-search-widget .search-bar .search-icon{
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #888;
    pointer-events: none;
}
.provider-search-widget .search-bar .clear-btn{
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    background: none;
    border: none;
    color: #888;
    padding: 0;
}
.provider-search-widget .summary-line{font-size: 0.85rem; color: #666;}
.provider-search-widget .summary-line ion-icon{font-size: 1rem; vertical-align: middle; margin-right: 2px;}
.provider-search-widget .accordion-button{font-size: 0.85rem; padding: 0.5rem 0;}
.provider-search-widget .accordion-button::after{width: 0.85rem; height: 0.85rem; background-size: 0.85rem;}
.provider-search-widget .accordion-body{font-size: 0.85rem; padding: 0.25rem 0 0.5rem 0;}
.provider-search-widget .accordion-item{border: none; background: transparent;}
.provider-search-widget .provider-card-hidden{display: none !important;}
.provider-search-widget .cat-filter-btn{cursor: pointer; transition: all 0.2s; border: 1px solid #adb5bd; background: #f0f1f3; color: #333;}
.provider-search-widget .cat-filter-btn ion-icon{pointer-events: none;}
.provider-search-widget .cat-filter-btn:hover{border-color: #08a5b4; color: #08a5b4;}
.provider-search-widget .cat-filter-btn.active{background: #08a5b4; color: #fff; border-color: #08a5b4;}
.provider-search-widget .cat-filter-tags{display: none; animation: fadeInTags 0.25s ease;}
.provider-search-widget .cat-filter-tags.show{display: flex;}
.provider-search-widget .filter-tag{cursor: pointer; transition: all 0.2s;}
.provider-search-widget .filter-tag:hover,
.provider-search-widget .filter-tag.active{background: #08a5b4 !important; color: #fff !important; border-color: #08a5b4 !important;}
@keyframes fadeInTags{from{opacity:0;transform:translateY(-5px)}to{opacity:1;transform:translateY(0)}}


/* ═══════════════════════════════════════════
   SEARCH BAR
═══════════════════════════════════════════ */
.search-bar {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.search-bar .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.15rem;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 2;
}

.search-bar .form-control {
  height: 56px;
  padding: 0 52px 0 50px;
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--charcoal);
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(44, 42, 38, 0.04);
}

.search-bar .form-control::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.search-bar .form-control:focus {
  border-color: rgba(122, 155, 138, 0.4);
  box-shadow: 0 0 0 4px rgba(122, 155, 138, 0.08), 0 4px 20px rgba(44, 42, 38, 0.06);
  background: #fff;
  outline: none;
}

.search-bar .clear-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
  z-index: 2;
}

.search-bar .clear-btn:hover {
  color: var(--charcoal);
}

/* Search count */
#provider-search-count {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   FILTER TAGS
═══════════════════════════════════════════ */
#provider-filter-tags {
  max-width: 100%;
  margin: 0 auto 3em auto;
}

#provider-cat-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
}

.cat-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 18px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.cat-filter-btn:hover,
.cat-filter-btn.active {
  background: var(--sage-light);
  border-color: rgba(122, 155, 138, 0.3);
  color: var(--sage-deep);
}

.cat-filter-btn ion-icon {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.cat-filter-btn.active ion-icon {
  transform: rotate(180deg);
}

/* Tag groups (hidden by default via JS) */
.cat-filter-tags {
  display: none;
  text-align: center;
}

.cat-filter-tags.show {
  display: flex;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-tag:hover,
.filter-tag.active {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  color: #fff;
}

/* ═══════════════════════════════════════════
   PROVIDER CARDS GRID
═══════════════════════════════════════════ */
#provider-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Override Bootstrap row behavior since we're using CSS grid */
#provider-cards-grid > .provider-card-col {
  max-width: 100%;
  width: 100%;
  padding: 0;
}

.provider-card-hidden {
  display: none !important;
}

/* ═══════════════════════════════════════════
   PROVIDER CARD
═══════════════════════════════════════════ */

.prov-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.35s ease;
}

.prov-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(44, 42, 38, 0.1);
  border-color: rgba(122, 155, 138, 0.2);
}

/* Card image */
.prov-card__img-btn {
  all: unset;
  cursor: pointer;
  display: block;
  width: 100%;
}

.prov-card__img {
  height: 200px;
  overflow: hidden;
  background: var(--sand);
}

.prov-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.prov-card:hover .prov-card__img img {
  transform: scale(1.05);
}

.prov-card__img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 2.5rem;
}

/* Card title area */
.prov-card__title-wrap {
  padding: 20px 24px 4px;
}

.prov-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
  margin: 0 0 2px;
}

.prov-card__subtitle {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Card body */
.prov-card__body {
  padding: 12px 24px 0;
  flex: 1;
}

/* Top tags */
.prov-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}

.prov-card__tag {
  padding: 4px 10px;
  background: rgba(44, 42, 38, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-body);
}

/* Summary stats */
.prov-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.prov-card__stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-body);
}

.prov-card__stat ion-icon {
  font-size: 0.95rem;
  color: var(--sage-deep);
}

/* Description */
.prov-card__desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* ═══════════════════════════════════════════
   CARD ACCORDION (Bootstrap overrides)
═══════════════════════════════════════════ */
.prov-card .accordion-item {
  background: transparent;
  border: none;
  border-top: 1px solid var(--border);
}

.prov-card .accordion-item:first-child {
  border-top: 1px solid var(--border);
}

.prov-card .accordion-button {
  background: transparent;
  padding: 14px 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--charcoal);
  box-shadow: none;
  gap: 6px;
}

.prov-card .accordion-button ion-icon {
  font-size: 0.95rem;
  color: var(--sage-deep);
}

.prov-card .accordion-button:not(.collapsed) {
  color: var(--sage-deep);
  background: transparent;
}

.prov-card .accordion-button::after {
  width: 14px;
  height: 14px;
  background-size: 14px;
}

.prov-card .accordion-body {
  padding: 0 0 14px;
}

/* Service rows inside accordion */
.prov-card__svc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.prov-card__svc-btn {
  all: unset;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s ease;
}

.prov-card__svc-btn:hover {
  color: var(--sage-deep);
}

.prov-card__svc-price {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Tags inside accordion */
.prov-card__tag-group {
  margin-bottom: 10px;
}

.prov-card__tag-group:last-child {
  margin-bottom: 0;
}

.prov-card__tag-group-name {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.prov-card__tag-group .prov-card__tag {
  font-size: 0.7rem;
}

/* Member rows inside accordion */
.prov-card__member {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s ease;
}

.prov-card__member:hover {
  background: var(--accent-dim);
}

.prov-card__member-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--sand);
}

.prov-card__member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prov-card__member-avatar--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.4rem;
}

.prov-card__member-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
}

.prov-card__member-role {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Cert links inside accordion */
.prov-card__cert-link {
  display: block;
  padding: 5px 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sage-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

.prov-card__cert-link:hover {
  color: var(--charcoal);
}

.prov-card__cert-text {
  display: block;
  padding: 5px 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-body);
}

/* ═══════════════════════════════════════════
   CARD FOOTER
═══════════════════════════════════════════ */
.prov-card__footer {
  padding: 0 24px 24px;
}

.prov-card__cta {
  all: unset;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  border: 1.5px solid rgba(44, 42, 38, 0.12);
  border-radius: 100px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.prov-card__cta:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

.prov-card__cta ion-icon {
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.prov-card__cta:hover ion-icon {
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════
   VIEW ALL BUTTON
═══════════════════════════════════════════ */
#provider-view-all-wrap {
  text-align: center;
  margin-top: 36px;
}

#provider-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1.5px solid rgba(44, 42, 38, 0.15);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#provider-view-all-btn:hover {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}

#provider-view-all-btn ion-icon {
  font-size: 1rem;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1199px) {
  #provider-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  #provider-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .search-bar .form-control {
    height: 50px;
    font-size: 0.9rem;
  }

  .prov-card__img { height: 180px; }
}

@media (max-width: 575px) {
  .prov-card {
    border-radius: 18px;
  }

  .prov-card__title-wrap,
  .prov-card__body,
  .prov-card__footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cat-filter-btn {
    padding: 6px 14px;
    font-size: 0.78rem;
  }

  .filter-tag {
    font-size: 0.74rem;
    padding: 5px 12px;
  }

  .shortlink-cards .provider-cards-grid{
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}




/* ═══════════════════════════════════════════
   SERVICE HERO
═══════════════════════════════════════════ */

.serv-hero {
  padding: 48px 0 56px;
}

.serv-hero__row {
  display: flex;
  align-items: center;
  gap: 64px;
}

.serv-hero__content { flex: 1; min-width: 0; width: 100%; }

.serv-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-deep);
  margin-bottom: 16px;
}

.serv-hero__label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--sage-deep);
  border-radius: 2px;
}

.serv-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 0;
}

.serv-hero__divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--clay), var(--sage));
  border-radius: 3px;
  border: none;
  margin: 22px 0 28px;
}

.serv-hero__desc {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
}

.serv-hero__desc p { margin-bottom: 14px; }
.serv-hero__desc p:last-child { margin-bottom: 0; }

/* Image */
.serv-hero__visual { flex: 1; min-width: 0; position: relative; }

.serv-hero__img {
  border-radius: 120px 24px 24px 24px;
  overflow: hidden;
  box-shadow:
    0 24px 64px rgba(44, 42, 38, 0.1),
    0 0 0 5px var(--cream),
    0 0 0 6px var(--border);
}

.serv-hero__img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.serv-hero__ring {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--clay);
  opacity: 0.18;
  z-index: -1;
  top: -12px;
  right: 30px;
}

.serv-hero__ring--sm {
  width: 32px;
  height: 32px;
  top: auto;
  right: auto;
  bottom: -10px;
  left: -14px;
  border-color: var(--sage);
  opacity: 0.14;
}

/* ═══════════════════════════════════════════
   FEATURES LIST
═══════════════════════════════════════════ */
.serv-features {
  padding: 0 0 48px;
}

.serv-features__card {
  background: var(--sage-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
}

.serv-features__title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 20px;
}

.serv-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.serv-features__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: var(--sage-light);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.25s ease;
}

.serv-features__item:hover {
  border-color: rgba(122, 155, 138, 0.2);
  box-shadow: 0 4px 16px rgba(44, 42, 38, 0.04);
}

.serv-features__item-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--sage-light);
  border:1px solid var(--border)
}

.serv-features__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.serv-features__item-img--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-deep);
  font-size: 1.3rem;
}

.serv-features__item-btn {
  all: unset;
  cursor: pointer;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s ease;
}

.serv-features__item-btn:hover {
  color: var(--sage-deep);
}

.serv-features__item-btn ion-icon {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.serv-features__item-btn:hover ion-icon {
  color: var(--sage-deep);
  transform: translateX(3px);
}

/* ═══════════════════════════════════════════
   FULL DESCRIPTION
═══════════════════════════════════════════ */
.serv-full-desc {
  padding: 0 0 48px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-body);
}

.serv-full-desc h2,
.serv-full-desc h3,
.serv-full-desc h4 {
  font-family: var(--font-display);
  color: var(--charcoal);
  margin-top: 28px;
  margin-bottom: 12px;
}

.serv-full-desc p { margin-bottom: 14px; }
.serv-full-desc ul, .serv-full-desc ol { padding-left: 20px; margin-bottom: 14px; }
.serv-full-desc li { margin-bottom: 6px; }
.serv-full-desc img { max-width: 100%; border-radius: 16px; margin: 16px 0; }

/* ═══════════════════════════════════════════
   PRICE INFO BAR
═══════════════════════════════════════════ */
.serv-price-bar {
  padding: 0 0 48px;
}

.serv-price-bar__card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}

.serv-price-bar__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.serv-price-bar__row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.serv-price-bar__item {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: 14px;
}

.serv-price-bar__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.serv-price-bar__icon--time {
  background: var(--clay-light);
  color: var(--clay);
}

.serv-price-bar__icon--price {
  background: var(--sage-light);
  color: var(--sage-deep);
}

.serv-price-bar__value {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.serv-price-bar__badge {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.serv-price-bar__badge--time {
  background: var(--clay-light);
  color: var(--clay);
}

.serv-price-bar__badge--price {
  background: var(--sage-light);
  color: var(--sage-deep);
}

/* ═══════════════════════════════════════════
   OPTIONS / FORM SECTION
═══════════════════════════════════════════ */
.serv-options {
  padding: 0 0 64px;
}

.serv-options__row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.serv-options__main { flex: 1; min-width: 0;width: 100%; }

.serv-options__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.serv-options__divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--clay), var(--sage));
  border-radius: 3px;
  border: none;
  margin: 0 0 28px;
}

/* Addon field cards */
.addon-field {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
  transition: border-color 0.2s ease;
}

.addon-field:hover {
  border-color: rgba(122, 155, 138, 0.2);
}

.addon-field__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--cream);
}

.addon-field__header label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  margin: 0;
  white-space: nowrap;
}

.addon-field__header .form-select,
.addon-field__header .form-control {
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  background: #fff;
  color: var(--charcoal);
}

.addon-field__header .form-select:focus,
.addon-field__header .form-control:focus {
  border-color: rgba(122, 155, 138, 0.4);
  box-shadow: 0 0 0 3px rgba(122, 155, 138, 0.08);
  outline: none;
}

.addon-field__header textarea.form-control {
  min-height: 80px;
  resize: vertical;
  width: 100%;
}

/* Switch style */
.addon-field__header .form-check-input {
  width: 44px;
  height: 24px;
  border: 2px solid var(--border);
  cursor: pointer;
}

.addon-field__header .form-check-input:checked {
  background-color: var(--sage-deep);
  border-color: var(--sage-deep);
}

.addon-field__header .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(122, 155, 138, 0.15);
}

.addon-field__desc {
  padding: 12px 20px 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.addon-field__desc p { margin-bottom: 8px; }
.addon-field__desc p:last-child { margin-bottom: 0; }

/* Price addon */
.addon-price {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
}

.addon-price__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.addon-price__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.addon-price__left .form-check-input {
  width: 44px;
  height: 24px;
  border: 2px solid var(--border);
  cursor: pointer;
}

.addon-price__left .form-check-input:checked {
  background-color: var(--sage-deep);
  border-color: var(--sage-deep);
}

.addon-price__left h6 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal);
  margin: 0;
}

.addon-price__value {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sage-deep);
}

.addon-price__value .serv-price-bar__badge {
  font-weight: 500;
}

.addon-price__desc {
  padding: 12px 20px 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.addon-price__desc p { margin-bottom: 8px; }
.addon-price__desc p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════
   SIDEBAR (address + actions)
═══════════════════════════════════════════ */
.serv-sidebar {
  width: 340px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Address card */
.serv-address {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.serv-address__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 22px 0;
}

.serv-address__header ion-icon {
  font-size: 1.15rem;
  color: var(--sage-deep);
}

.serv-address__header h6 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--charcoal);
  margin: 0;
}

.serv-address__body {
  padding: 14px 22px 20px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-body);
}

/* Action buttons card */
.serv-actions {
  background: var(--charcoal);
  border-radius: 18px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.serv-actions__btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: var(--sage-deep);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(92, 130, 112, 0.3);
}

.serv-actions__btn-primary:hover {
  background: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(92, 130, 112, 0.35);
}

.serv-actions__btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  color: var(--text-light);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  border: 1.5px solid var(--border-light);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.serv-actions__btn-secondary:hover {
  background: rgba(240, 236, 228, 0.08);
  border-color: rgba(240, 236, 228, 0.2);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 991px) {
  .serv-hero__row {
    flex-direction: column;
    gap: 40px;
  }

  .serv-hero__visual {
    max-width: 420px;
    margin: 0 auto;
  }

  .serv-hero__img { border-radius: 80px 20px 20px 20px; }
  .serv-hero__ring { display: none; }

  .serv-features__grid {
    grid-template-columns: 1fr 1fr;
  }

  .serv-options__row {
    flex-direction: column;
  }

  .serv-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .serv-address,
  .serv-actions {
    flex: 1;
    min-width: 260px;
  }
}

@media (max-width: 767px) {
  .serv-features__grid {
    grid-template-columns: 1fr;
  }

  .serv-price-bar__row {
    flex-direction: column;
  }

  .serv-sidebar {
    flex-direction: column;
  }
}

@media (max-width: 575px) {

  .serv-layout .container{
    padding-left: 1.5em !important;
    padding-right: 1.5em !important;
  }
  .serv-hero { padding: 36px 0 44px; }
  .serv-hero__title { font-size: 1.8rem; }
  .serv-hero__img { border-radius: 60px 16px 16px 16px; }

  .serv-features__card { padding: 24px 20px; border-radius: 16px; }
  .serv-price-bar__card { padding: 22px 20px; border-radius: 16px; }
  .serv-address { border-radius: 14px; }
  .serv-actions { border-radius: 14px; padding: 20px 18px; }

  .addon-field { border-radius: 14px; }
  .addon-field__header { padding: 14px 16px; }
  .addon-price { border-radius: 14px; }
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tag-card {
  all: unset;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--sage-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: all 0.35s ease;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  overflow: hidden;
}

/* Top accent bar */
.tag-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tag-card:nth-child(5n+1)::before { background: var(--sage-deep); }
.tag-card:nth-child(5n+2)::before { background: var(--clay); }
.tag-card:nth-child(5n+3)::before { background: var(--charcoal); }
.tag-card:nth-child(5n+4)::before { background: #6a8fa7; }
.tag-card:nth-child(5n+5)::before { background: #9b7fb8; }

.tag-card:hover::before {
  opacity: 1;
}

.tag-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(44, 42, 38, 0.12);
  border-color: rgba(122, 155, 138, 0.25);
  background: #fff;
}

/* Header */
.tag-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tag-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid var(--cream);
  box-shadow: 0 4px 16px rgba(44, 42, 38, 0.08);
}

.tag-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--charcoal);
  flex: 1;
  min-width: 0;
  line-height: 1.3;
}

.tag-card__count {
  padding: 5px 12px;
  background: var(--accent);
  color: #fff;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(92, 130, 112, 0.25);
}

/* Description */
.tag-card__desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* Divider */
.tag-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--sage-deep);
  transition: color 0.2s ease;
}

.tag-card__footer-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-light);
  border-radius: 50%;
  font-size: 0.95rem;
  color: var(--sage-deep);
  transition: all 0.25s ease;
}

.tag-card:hover .tag-card__footer {
  color: var(--charcoal);
}

.tag-card:hover .tag-card__footer-arrow {
  background: var(--sage-deep);
  color: #fff;
  transform: translateX(3px);
}

@media (max-width: 991px) {
  .tag-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 575px) {
  .tag-grid { grid-template-columns: 1fr; gap: 14px; }
  .tag-card { padding: 22px 20px; border-radius: 16px; }
  .tag-card__avatar { width: 44px; height: 44px; border-radius: 12px; }
}
/* ═══════════════════════════════════════════
   TAG CLOUD — on .tagcloud-section (sage bg)
═══════════════════════════════════════════ */
.tagcloud-section {
  background: var(--sage);
  padding: 1em 0;
  position: relative;
  overflow: hidden;
}

.tagcloud-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 30%, rgba(255,255,255,0.08), transparent),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(0,0,0,0.04), transparent);
  pointer-events: none;
}

/* Override grid → inline flow */
.tagcloud-section .tag-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* Cards → pills */
.tagcloud-section .tag-card {
  padding: 10px 22px;
  border-radius: 100px;
  gap: 0;
  flex-direction: row;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.tagcloud-section .tag-card::before {
  display: none;
}

.tagcloud-section .tag-card:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* Header inline */
.tagcloud-section .tag-card__header {
  gap: 10px;
}

/* Avatar smaller */
.tagcloud-section .tag-card__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border-width: 2px;
  box-shadow: none;
}

/* Name */
.tagcloud-section .tag-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-body);
}

.tagcloud-section .tag-card:hover .tag-card__name {
  color: var(--charcoal);
}

/* Count badge */
.tagcloud-section .tag-card__count {
  padding: 2px 8px;
  font-size: 0.65rem;
  background: rgba(255,255,255,0.2);
  color: #fff;
  box-shadow: none;
}

.tagcloud-section .tag-card:hover .tag-card__count {
  background: var(--sage-deep);
  color: #fff;
}

/* Hide desc, footer */
.tagcloud-section .tag-card__desc,
.tagcloud-section .tag-card__footer {
  display: none;
}

/* GLOBAL COLORS */ 

.global-site-bg{background: #ffffff}
.global-light-bg{background: #f3f3f3}
.global-dark-bg{background: #212529}
.global-dark-light-bg{background: #dcf1f7;}
.global-border-color{border-color: #DBDBDB}
.global-body-txt{color:#212529}
.global-heading-txt{color:#212529}
.global-light-txt{color:#ffffff}
.global-primary-bg{background-color:#2fb0d8}
.global-primary-txt{color:#2fb0d8}
.global-secondary-bg{background-color:#84d0e8}
.global-secondary-txt{color:#84d0e8}
.global-accent-bg{background-color:#ed8144}
.global-accent-txt{color:#ea4f1f}

.txt-orange{
  color: #ea4f1f;
}

/* FORM */
.form-request .form-placeholder{
  flex: 0 0 auto;
  width: 50%;
  margin: 0 auto;
}

.form-request .input-group-lg>.form-control,
.form-request .input-group-lg>.form-select{
  padding: 0.7rem 1rem;
  font-size: 1rem;
}

.form-request .form-check-label{
  font-size: 0.9rem;
}

/* LINKS */

a{
	color:#2fb0d8;
	text-decoration: none;
}
a:hover,a:active{
	color:#ed8144;
	text-decoration: none;
}

.white.btn-outline-dark {
    --bs-btn-color: #ffffff;
    --bs-btn-border-color: #ffffff;
    --bs-btn-hover-color: #2fb0d8;
    --bs-btn-hover-bg: #ffffff;
    --bs-btn-hover-border-color: #ffffff;
    --bs-btn-focus-shadow-rgb: 33, 37, 41;
    --bs-btn-active-color: #2fb0d8;
    --bs-btn-active-bg: #ffffff;
    --bs-btn-active-border-color: #ffffff;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ffffff;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #ffffff;
    --bs-gradient: none;
  }

.btn-primary{
	--bs-btn-color: #fff;
  --bs-btn-bg: #2fb0d8;
  --bs-btn-border-color: #2fb0d8;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #08a5b4;
  --bs-btn-hover-border-color: #08a5b4;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #08a5b4;
  --bs-btn-active-border-color: #08a5b4;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #217b97;
  --bs-btn-disabled-border-color: #217b97;
}

.card .card-body .card-link{
  font-size: 0.825em;
  font-weight: 600;
}

/* IMAGES */
.fit-img{
  object-fit: cover;
  object-position: center;
  height: 100%;
}

/* FONTS */
.font-lora{
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight:400;
  font-style: normal;
}

.font-lora-500{
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight:500;
  font-style: normal;
}

.font-lora-700{
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight:700;
  font-style: normal;
}

.fs-7{font-size: 0.9rem !important;}

.body{
	font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-optical-sizing: auto;
	font-size: 16px;
  line-height: 1.75;
}

/* HEADER*/

.brand-img{
	width: 100%;
	max-height: 60px;
  object-fit: contain;
}

.navbar-brand .badge{
  position: absolute;
  left: 0;
  top: 86px;
  border-radius: 0;
  font-weight: 500;
  text-transform: capitalize;
}

.site-menu.navbar{
  background: #fff;
  box-shadow: 0px 5px 6px -1px rgba(0, 0, 0, 0.1);
}

.site-menu .navbar-nav .nav-link{
  font-weight: 500;
}

.site-menu .navbar-nav .nav-link:hover,
.site-menu .navbar-nav .nav-link:focus,
.site-menu .navbar-nav .nav-link:active{
  color:#2fb0d8;
}

.site-menu .navbar-nav .nav-item .dropdown-link-container{
  position: absolute;
  top:40px;
  left: -60px;
  width: 250px;
  border:0 !important;
  transition: all 1s ease;
  height: auto;
  max-height: 0;
  overflow-y: hidden;
  padding-top: 25px;
}

.site-menu .navbar-nav .nav-item:hover .dropdown-link-container{
  opacity: 1;
  max-height: auto;
  overflow-y: visible;
  transition: all 1s ease;
}

.site-menu.navbar .offcanvas{
  background: #fff;
}

.site-menu .navbar-nav .nav-item:hover .dropdown-link-container .dropdown-item-link{
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #7b7b7bbf;
    content: var(--bs-breadcrumb-divider, "|");
}

.breadcrumb-bar .breadcrumb-item a ion-icon{color: #7b7b7bbf;}

.breadcrumb-bar .breadcrumb-item,
.breadcrumb-bar .breadcrumb-item .btn.btn-link{
  color: #212529;
  text-decoration: none;
}

.breadcrumb-bar .btn.btn-link:hover{
  color: #2fb0d8;
}

.header-btn.btn-primary{
  font-weight: 500;
  background-color: #2fb0d8;
  border-color: #2fb0d8;
} 

.header-btn.btn-primary:hover{
  background-color: #08a5b4;
  border-color: #08a5b4;
}


.site-menu.navbar .offcanvas-body  .form-select{
  width: auto;
  margin-left: 20px;
}

@media screen and (max-device-width: 991px) {
  .site-menu .navbar-nav .nav-item .dropdown-link-container{display: none !important;}

  .header-btn{
    max-width: 300px;
    margin:20px auto 0 auto;
    display: block;
  }

  .site-menu.navbar  .offcanvas-body .form-select{
    width:100%;
    max-width: 300px;
    margin:20px auto 0 auto;  
  }

  .site-menu.navbar  .offcanvas-body{
    display: initial !important;
  }
}

/* FOOTER*/

.footer-brand img{
  min-height: 60px;
  max-height: 60px;
}

.footer-social a{
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  color: #ffffff;
  border:1px solid #ffffff;
  background: transparent;
}

.footer-social a:hover{
  background: #ffffff;
  color: #005f59;
}

.footer-info{
  padding-top: 3em;
  padding-bottom: 4em;
}

.footer-menu .footer-menu-top h4 a{
  color: #ffffff;
  text-decoration: none; 
}

.footer-menu .footer-menu-top h4 a:hover{
  color: #52b7bd; 
}

.footer-menu .footer-menu-top h4 a ion-icon{
  position: relative;
  top: 3px;
  font-size: 0.8em;
  margin-left: 5px;
}

.footer-copyright .list-group-item,
.footer-menu .footer-menu-bottom .list-group-item{
  background: transparent;
  border:0;
  color: #ffffff;
}

.footer-copyright .list-group-item,
.footer-copyright .list-group-item a,
.footer-menu .footer-menu-bottom .list-group-item,
.footer-menu .footer-menu-bottom .list-group-item a{
  font-weight: 400;
  color: #8f8f8f;
  text-decoration: none;
}

.footer-copyright .list-group-item a:hover,
.footer-menu .footer-menu-bottom .list-group-item a:hover{
  color: #52b7bd; 
}

.footer-copyright .list-group-item,
.footer-copyright .list-group-item a{font-size: 12px;}

.footer-menu .footer-menu-bottom .list-group-item{
  font-size: 0.85em;
}

.footer-menu .footer-menu-bottom .list-group-title{
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: 2.8px;
}

.footer-copyright{
  background: #1e2022;
}

@media screen and (max-device-width: 768px) {
  .footer-info.container,
  .footer-copyright .container{
    padding-left: 2em !important;
    padding-right: 2em !important;
  }

  .footer-menu .footer-menu-bottom {
    flex-direction: column !important;
  }

  .footer-info .col-left.col-md-4,
  .footer-info .col-right.col-md-8{
    flex: 0 0 auto;
    width: 50%;
  }

  .footer-info .col-right.col-md-8{
    display: flex;
    justify-content: end;
  }

  .footer-menu .footer-menu-bottom .col-md-4{
    flex: 0 0 auto;
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-menu .footer-menu-bottom .col-md-4:last-child{margin-bottom: 0}

  .footer-copyright .container{justify-content: center !important;}
}
@media screen and (max-device-width: 736px) {
  .footer-info.container,
  .footer-copyright .container{
    padding-left: initial !important;
    padding-right: initial !important;
  }
}

@media screen and (max-device-width: 600px) {
  .footer-info.container,
  .footer-copyright .container{
    padding-left: 1em !important;
    padding-right: 1em !important;
  }
}

@media screen and (max-device-width: 545px) {
  .footer-info.container,
  .footer-copyright .container{
    padding-left: 2em !important;
    padding-right: 2em !important;
  }

  .footer-info.container{
    flex-direction: column !important;
  }

  .footer-info .col-left.col-md-4,
  .footer-info .col-right.col-md-8{
    flex: 0 0 auto;
    width: 100%;
  }

  .footer-info .col-right.col-md-8{
    display: flex;
    justify-content: start;
    margin-top: 2em;
  }

  .footer-copyright .container .list-group{
    flex-direction: column !important;
  }
}

/* HEADINGS */

.section-subheadline h6{
  letter-spacing: 3px;
}

.section-headline h2 span u {
  font-weight: inherit;
  position: relative;
  display: inline-block;
  z-index: 1;
  text-decoration: none;
}

.section-headline h2 span u img{
  position: absolute;
  z-index: -1;
  bottom:1px;
  left: 0;
  right: 0;
  width: 100%; 
}

.title-line{
  max-width: 100px;
  border-top:2px solid #2fb0d8;
  opacity: 1;
}

/* AI MODE */

.search-box.sticky-top{
    top: 85px;
    background: #FFF;
    padding-top: 10px;
}
 
.search-box-results.container-fluid{
  overflow: hidden;
  height: 100%;
}

/* Base styles */
.block1, .block2, .block3, .block4 {
    opacity: 0;
    animation-duration: 3s;             
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Base block style */
.block1, .block2, .block3, .block4 {
    position: relative;
    overflow: visible;
    border-radius: 16px;  /* main rounded corners */
}

/* Puzzle tabs: top/bottom/left/right */
.block1::before,
.block1::after,
.block2::before,
.block2::after,
.block3::before,
.block3::after,
.block4::before,
.block4::after {
    content: "";
    position: absolute;
    width: 30px;   /* tab width */
    height: 30px;  /* tab height */
    background-color: inherit; /* match block color */
    border-radius: 50%;        /* circular tab */
}

/* Example: block1 top tab */
.block1::before {
    top: -15px;     /* half tab outside */
    left: 50%; 
    transform: translateX(-50%);
}

/* block1 bottom tab */
.block1::after {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* block2 left tab */
.block2::before {
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
}

/* block2 right tab */
.block2::after {
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
}

/* block3 top & bottom tabs */
.block3::before {
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}
.block3::after {
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* block4 left & right tabs */
.block4::before {
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
}
.block4::after {
    top: 50%;
    right: -15px;
    transform: translateY(-50%);
}

/* Assign animation per block with delays */
.block1 { animation-name: cinematicBrakeLeft;  animation-delay: 0.1s; }
.block2 { animation-name: cinematicBrakeRight; animation-delay: 0.3s; }
.block3 { animation-name: cinematicBrakeBottom; animation-delay: 0.5s; }
.block4 { animation-name: cinematicBrakeTop;   animation-delay: 0.8s; }

/* ===== CINEMATIC BRAKE WITH BACKGROUND FADE ===== */

/* LEFT */
@keyframes cinematicBrakeLeft {
    0%   { opacity: 0; transform: translateX(-180px) scale(0.9);}
    50%  { opacity: 1; transform: translateX(10px) scale(1.02);}
    75%  { transform: translateX(-5px) scale(0.98);}
    90%  { transform: translateX(2px) scale(1.01);}
    100% { opacity: 1; transform: translateX(0) scale(1);}
}

/* RIGHT */
@keyframes cinematicBrakeRight {
    0%   { opacity: 0; transform: translateX(180px) scale(0.9); }
    50%  { opacity: 1; transform: translateX(-10px) scale(1.02);}
    75%  { transform: translateX(5px) scale(0.98);}
    90%  { transform: translateX(-2px) scale(1.01);}
    100% { opacity: 1; transform: translateX(0) scale(1);}
}

/* TOP */
@keyframes cinematicBrakeTop {
    0%   { opacity: 0; transform: translateY(-180px) scale(0.9);}
    50%  { opacity: 1; transform: translateY(10px) scale(1.02); }
    75%  { transform: translateY(-5px) scale(0.98);}
    90%  { transform: translateY(2px) scale(1.01);}
    100% { opacity: 1; transform: translateY(0) scale(1);}
}

/* BOTTOM */
@keyframes cinematicBrakeBottom {
    0%   { opacity: 0; transform: translateY(180px) scale(0.9);}
    50%  { opacity: 1; transform: translateY(-10px) scale(1.02); }
    75%  { transform: translateY(5px) scale(0.98); }
    90%  { transform: translateY(-2px) scale(1.01); }
    100% { opacity: 1; transform: translateY(0) scale(1);}
}



/* BOOKING FRONT */
.booking-block {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  font-size: 16px;
}

.booking-pg.container-fluid iframe{
  height: calc(1000px + 100px);
}

.booking-service-image {
  object-fit: cover;
  object-position: center;
  height: 215px;
}

.booking-no-image{
    height: 215px;
    object-fit: cover;
    object-position: center;
    opacity: 0.5;
}

.booking-service-box {
  cursor: pointer;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 0.75rem;
  overflow: hidden;
}

.card-text.booking-service-description{ 
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.booking-service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 1rem rgba(0,0,0,0.15);
}

.booking-service-details .w-50:nth-child(1){
  border-bottom-left-radius: 0.375em;
  border-top-left-radius: 0.375em;
}

.booking-service-details .w-50:nth-child(2){
  border-bottom-right-radius: 0.375em;
  border-top-right-radius: 0.375em;
}

.booking-block .djangoAppt_page-body{
  margin-top: 0;
  padding-top:100px;
}

.booking-block .djangoAppt_service-description {padding: 0 0 0 30px;}

.booking-block .djangoAppt_service-description .staff-members-list{
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  border:0;
  padding: 0;
}

.booking-block .djangoAppt_btn-request-next-slot{
  margin-left: 6px;
  width: 98%;
}

.booking-block .affiliate-code{
  border-color: #9eeaf9 !important;
}

.booking-block .affiliate-code label{width: 100%;}

.booking-block .affiliate-code label,
.booking-block .user-info-input label{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;  
}

.booking-block .user-info-input label{
  font-size: 0.9em;
  font-weight: 500;
}

.booking-block .affiliate-code label{
  font-weight: 500;
  color: #055160;
  margin-bottom: 5px;
}

.booking-block .affiliate-code .form-control{
  border-color:#9eeaf9 ;
}

.booking-block .user-info-input{padding: 1em;} 

.booking-block .user-info-input input[type="text"], 
.booking-block .user-info-input input[type="email"],
.booking-block .user-info-input input[type="tel"],
.booking-block .user-info-input select,
.booking-block .user-info-input textarea {
  display: block;
  width: 100%;
  padding: .5rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #dee2e6;
  border-radius: 0.375em;
  transition: border-color .15s ease-in-out; 
}

.booking-block .user-info-input select{
  max-width: 40%;
}

.booking-block .user-info-input input:focus, 
.booking-block .user-info-input select:focus,
.booking-block .user-info-input textarea:focus{
  color: #212529;
  background-color:#fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.booking-block .service-description-content{
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;   
}

.booking-block .service-details-btn{
  background-color:#f1f1f1 ;
  padding: 0 20px 20px 20px;
}

@media screen and (max-device-width: 1199px) {
  .booking-block .booking-service-details{flex-direction: column !important;}

  .booking-block .booking-service-details .w-50:nth-child(1){
    width: 100% !important;
    border-top-right-radius: 0.375em;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .booking-block .booking-service-details .w-50:nth-child(2){
    width: 100% !important;
    border-bottom-left-radius: 0.375em;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .booking-block .appointment-user-info{flex: 2;}

  .booking-block .djangoAppt_service-description{padding-left:0;}

  .booking-block .djangoAppt_appointment-calendar{padding: 0;}
}

@media screen and (max-device-width: 991px) {
  .booking-block .form-placeholder{flex-direction: column !important;}

  .booking-block .appointment-user-info{padding-right: 0;}

  .booking-block  .service-description-and-pay{
    margin: 20px 0 0 0;
    width: 100%;
  }
}

@media screen and (max-device-width: 768px) {
  .booking-block .user-info-input select{max-width: 100%;}

  .booking-block .djangoAppt_btn-request-next-slot,
  .booking-block .djangoAppt_next-available-date,
  .booking-block .error-message .djangoAppt_no-availability-text{
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }

  .booking-block .djangoAppt_slot .error-message,
  .booking-block .djangoAppt_next-available-date{
    text-align: center;
  }

  .booking-block .error-message .djangoAppt_no-availability-text{padding-left: 10px !important;}

  .booking-block .djangoAppt_slot-list{padding-left: 0 !important;}

  .booking-block .djangoAppt_body-container .row .mb-4,
  .booking-block .appointment-user-info-title.mb-5{
    margin-bottom: 0 !important;
  }

  .booking-block .djangoAppt_body-container .row .page-description{font-size: 0.9em;}

  .booking-block .djangoAppt_slot {margin-left: 0;}
}

@media screen and (max-device-width: 540px) {
  .booking-block .djangoAppt_page-body{padding-top: 90px;}
}

@media screen and (max-device-width: 375px) {
  .booking-block .djangoAppt_page-body{padding-top: 80px;}

  .booking-block .djangoAppt_appointment-calendar-title-timezone{
    flex-direction: column;
    padding: 10px 10px 0 10px;
  }

  .booking-block .djangoAppt_calendar-and-slot{padding-bottom: 10px;}

  .booking-block .djangoAppt_slot {margin-top: 20px;}

  .booking-block .djangoAppt_btn-request-next-slot{font-size: 0.85em;}

  .booking-block .djangoAppt_next-available-date{margin-top: 0;}
}

@media screen and (max-device-width: 360px) {
  .booking-block .djangoAppt_btn-request-next-slot {
    margin-top: -26px;
    margin-bottom: 5px;
  }
}

/* REGISTER PAGE */
/* ── Page ── */
.rg {
    min-height: 100vh;
    color: #1d1d1f;
    overflow-y: auto;
}

/* ── Nav ── */
.rg-nav {
    z-index: 100;
    padding: 2em 0 0 0;
}
.rg-nav h2 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0;
    padding: 0.85rem 0 0;
}

/* ── Cards ── */
.rg-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03), 0 4px 24px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.1);
    overflow: hidden;
}
.rg-card-body {
    padding: 1.75rem;
}

/* ── Section title ── */
.rg-section {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #86868b;
    margin-bottom: 0.75rem;
    padding-left: 0.1rem;
}

/* ── Stacked input group (iOS style) ── */
.rg-fields {
    border: 0.5px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.rg-field {
    display: flex;
    flex-direction: column;
    padding: 0.55rem 0.9rem;
    border-bottom: 0.5px solid rgba(0,0,0,0.06);
}
.rg-field:last-child { border-bottom: none; }

.rg-field--row {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}
.rg-field--half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    border-bottom: 0.5px solid rgba(0,0,0,0.06);
}
.rg-field--half > div {
    padding: 0.55rem 0.9rem;
}
.rg-field--half > div:first-child {
    border-right: 0.5px solid rgba(0,0,0,0.06);
}
.rg-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #86868b;
    margin-bottom: 0.1rem;
}
.rg-input {
    border: none;
    outline: none;
    padding: 0;
    font-size: 0.92rem;
    font-weight: 400;
    color: #1d1d1f;
    background: transparent;
    width: 100%;
    font-family: inherit;
}
.rg-input::placeholder { color: #c7c7cc; }
.rg-input:read-only { color: #aeaeb2; }
.rg-input--textarea {
    resize: none;
    line-height: 1.5;
    min-height: 2.2rem;
}

/* ── Password toggle ── */
.rg-pwd-toggle {
    background: none;
    border: none;
    padding: 0.2rem;
    color: #aeaeb2;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: color 0.15s;
}
.rg-pwd-toggle:hover { color: #1d1d1f; }

/* ── Hint ── */
.rg-hint {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    background: #02929f38;
    border-radius: 10px;
    margin-bottom: 0.85rem;
}
.rg-hint svg { flex-shrink: 0; color: #02919F; margin-top: 1px; }
.rg-hint span { font-size: 0.76rem; color: #02919F; font-weight: 500; line-height: 1.4; }

/* ── Alerts ── */
.rg-alert {
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.8rem 1rem;
    border: none;
    text-align: center;
}
.rg-alert--success { background: rgba(48,209,88,0.08); color: #1a7a35; }
.rg-alert--danger { background: rgba(255,69,58,0.07); color: #cc2d25; }
.rg-alert--info { background: rgba(0,113,227,0.06); color: #005bb5; }

/* ── Success icon circle ── */
.rg-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.85rem;
}

/* ── Buttons ── */
.rg-btn {
    display: block;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 100px;
    font-size: 0.92rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: center;
    text-decoration: none;
    margin: 2em auto 0 auto;
    min-width: 50%;
}
.rg-btn--primary {
    background:var(--charcoal);
    color: #fff;
}
.rg-btn--primary:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0,113,227,0.25);
}
.rg-btn--primary:active { transform: scale(0.985); }
.rg-btn--outline {
    background: transparent;
    color: #02919F;
    border: 1.5px solid rgba(0,0,0,0.08);
}
.rg-btn--outline:hover {
    background: rgba(0,113,227,0.05);
    color: #02919F;
}

/* ══════════════════════════════════════
   DOCUMENTS — standout design
   ══════════════════════════════════════ */
.rg-docs-title {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #86868b;
    margin-bottom: 0.75rem;
}

.rg-doc {
    border: 2px solid rgba(0,0,0,0);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 0.75rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Header */
.rg-doc-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.8rem 1rem;
    background: #fafafa;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.15s;
}
.rg-doc-header:hover { background: #f2f2f2; }

.rg-doc-name {
    flex-grow: 1;
    font-size: 0.88rem;
    font-weight: 600;
    color: #1d1d1f;
}
.rg-doc-ver {
    font-size: 0.65rem;
    font-weight: 600;
    color: #86868b;
    background: rgba(0,0,0,0.04);
    padding: 0.15rem 0.5rem;
    border-radius: 5px;
    flex-shrink: 0;
}
.rg-doc-chevron {
    color: #aeaeb2;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.rg-doc-header[aria-expanded="true"] .rg-doc-chevron {
    transform: rotate(180deg);
}

/* Content */
.rg-doc-content {
    max-height: 380px;
    overflow-y: auto;
    padding: 1rem 1.1rem;
    font-size: 0.84rem;
    line-height: 1.65;
    color: #48484a;
    border-top: 0.5px solid rgba(0,0,0,0.06);
}

/* ── Accept checkbox — THE STANDOUT ── */
.rg-doc-accept {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdfa 100%);
    border-top: 2px solid rgba(48,209,88,0.2);
    cursor: pointer;
    transition: background 0.2s ease;
    user-select: none;
    position: relative;
}
.rg-doc-accept::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #30d158;
    border-radius: 0 4px 4px 0;
    opacity: 0.5;
    transition: opacity 0.2s;
}
.rg-doc-accept:hover {
    background: linear-gradient(135deg, #e8fbef 0%, #e2fae9 50%, #e8faf5 100%);
}
.rg-doc-accept:hover::before { opacity: 0.8; }

/* Custom checkbox */
.rg-check {
    position: relative;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}
.rg-check input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    margin: 0;
    z-index: 2;
}
.rg-check-visual {
    position: absolute;
    inset: 0;
    border-radius: 9px;
    border: 2.5px solid #30d158;
    background: #fff;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.rg-check-visual svg {
    opacity: 0;
    transform: scale(0.3) rotate(-10deg);
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: #fff;
}
.rg-check input:checked + .rg-check-visual {
    background: #30d158;
    border-color: #30d158;
    box-shadow: 0 2px 10px rgba(48,209,88,0.35);
    transform: scale(1);
}
.rg-check input:checked + .rg-check-visual svg {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}
.rg-check input:focus-visible + .rg-check-visual {
    box-shadow: 0 0 0 4px rgba(48,209,88,0.2);
}

.rg-doc-accept-text {
    font-size: 0.82rem;
    font-weight: 500;
    color: #48484a;
    line-height: 1.3;
}
.rg-doc-accept-text strong {
    color: #1d1d1f;
    font-weight: 700;
}

/* Doc accepted state */
.rg-doc.is-accepted {
    border-color: rgba(48,209,88,0.4);
    box-shadow: 0 0 0 3px rgba(48,209,88,0.08);
}
.rg-doc.is-accepted .rg-doc-accept::before { opacity: 1; }

/* ── Resign info ── */
.rg-resign-info {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.9rem 1rem;
    background: rgba(0,113,227,0.06);
    border-radius: 12px;
    margin-bottom: 1.25rem;
}
.rg-resign-info svg { flex-shrink: 0; color: #02919F; margin-top: 2px; }
.rg-resign-info p { font-size: 0.84rem; font-weight: 500; color: #02919F; margin: 0; line-height: 1.45; }

/* ── Animations ── */
@keyframes rgUp {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}
.rg-anim { animation: rgUp 0.45s cubic-bezier(0.4,0,0.2,1) forwards; opacity: 0; }
.rg-d1 { animation-delay: 0.06s; }
.rg-d2 { animation-delay: 0.14s; }
.rg-d3 { animation-delay: 0.22s; }
.rg-d4 { animation-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 575.98px) {
    .rg-card-body { padding: 1.15rem; }
    .rg-field--half {
        grid-template-columns: 1fr;
    }
    .rg-field--half > div:first-child {
        border-right: none;
        border-bottom: 0.5px solid rgba(0,0,0,0.06);
    }
    .rg-doc-header { padding: 0.7rem 0.8rem; }
    .rg-doc-accept { padding: 0.75rem 0.8rem; }
    .rg-doc-content { padding: 0.8rem; max-height: 260px; }
    .rg-btn { font-size: 0.88rem; padding: 0.75rem 1rem; }
}

.lp-section__label {
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lp-section__label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}


