/* ============================================================
       1. DESIGN TOKENS
       ============================================================ */
    :root {
      --emerald:        #0F6B50;
      --emerald-dark:   #0A4F3B;
      --emerald-light:  #E8F2EE;
      --gold:           #C9A227;
      --gold-soft:      #F6EFD8;
      --ivory:          #FAF9F7;
      --card:           #FFFFFF;
      --charcoal:       #2D2D2D;
      --muted-green:    #7BA88A;
      --border:         #E6E6E6;
      --text-muted:     #6B6B6B;
      --radius:         14px;
      --radius-sm:      10px;
      --shadow-soft:    0 6px 24px rgba(15, 107, 80, 0.08);
      --shadow-hover:   0 16px 40px rgba(15, 107, 80, 0.14);
      --transition:     all .35s cubic-bezier(.25, .8, .25, 1);
    }

    /* ============================================================
       2. BASE
       ============================================================ */
    * { -webkit-tap-highlight-color: transparent; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Poppins', system-ui, -apple-system, sans-serif;
      font-weight: 400;
      color: var(--charcoal);
      background-color: var(--ivory);
      overflow-x: hidden;
      line-height: 1.7;
    }

    h1, h2, h3, h4, h5, h6 { font-weight: 600; color: var(--charcoal); }

    .section-pad { padding: 96px 0; }
    @media (max-width: 767.98px) { .section-pad { padding: 64px 0; } }

    /* Section heading pattern: eyebrow + title + lead */
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--emerald);
      background: var(--emerald-light);
      border: 1px solid rgba(15, 107, 80, .12);
      padding: .45rem 1.1rem;
      border-radius: 50rem;
      margin-bottom: 1.1rem;
    }
    .eyebrow::before {
      content: "";
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
    }
    .section-title {
      font-size: clamp(1.7rem, 3.4vw, 2.5rem);
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 1rem;
    }
    .section-lead {
      color: var(--text-muted);
      max-width: 640px;
      margin: 0 auto;
      font-size: 1.02rem;
    }
    .gold-underline {
      position: relative;
      display: inline-block;
    }
    .gold-underline::after {
      content: "";
      position: absolute;
      left: 0; right: 0; bottom: 4px;
      height: 10px;
      background: linear-gradient(90deg, rgba(201,162,39,.28), rgba(201,162,39,.08));
      z-index: -1;
      border-radius: 4px;
    }

    /* ============================================================
       3. BUTTONS
       ============================================================ */
    .btn { border-radius: var(--radius-sm); font-weight: 500; }

    .btn-emerald {
      background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
      color: #fff;
      border: none;
      padding: .8rem 1.9rem;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
      box-shadow: 0 8px 20px rgba(15, 107, 80, .25);
    }
    .btn-emerald:hover, .btn-emerald:focus {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(15, 107, 80, .35);
    }

    .btn-outline-emerald {
      background: transparent;
      color: var(--emerald);
      border: 1.5px solid var(--emerald);
      padding: .8rem 1.9rem;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
    }
    .btn-outline-emerald:hover, .btn-outline-emerald:focus {
      background: var(--emerald);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(15, 107, 80, .25);
    }

    .btn-gold {
      background: linear-gradient(135deg, #D9B33B, var(--gold));
      color: #3d3106;
      border: none;
      padding: .8rem 1.9rem;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
      box-shadow: 0 8px 20px rgba(201, 162, 39, .3);
    }
    .btn-gold:hover, .btn-gold:focus {
      color: #3d3106;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(201, 162, 39, .42);
    }

    .btn-ghost-light {
      background: rgba(255,255,255,.12);
      color: #fff;
      border: 1.5px solid rgba(255,255,255,.55);
      padding: .8rem 1.9rem;
      overflow: hidden;
      position: relative;
      transition: var(--transition);
    }
    .btn-ghost-light:hover { background: #fff; color: var(--emerald); transform: translateY(-2px); }

    /* Button ripple (added via JS) */
    .ripple {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, .45);
      transform: scale(0);
      animation: ripple-anim .6s ease-out forwards;
      pointer-events: none;
    }
    @keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

    /* ============================================================
       4. NAVBAR
       ============================================================ */
    .navbar-main {
      background: rgba(250, 249, 247, .85);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid transparent;
      transition: var(--transition);
      padding-top: 1rem;
      padding-bottom: 1rem;
    }
    .navbar-main.scrolled {
      background: rgba(255, 255, 255, .78);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 8px 30px rgba(45, 45, 45, .06);
      padding-top: .55rem;
      padding-bottom: .55rem;
    }
    .navbar-brand-logo {
      display: flex; align-items: center; gap: .65rem;
      font-weight: 700; font-size: 1.35rem; color: var(--charcoal);
      text-decoration: none;
    }
    .navbar-brand-logo .logo-mark {
      width: 46px; height: 46px;
      border-radius: 12px;
      background: #fff;
      border: 1px solid var(--border);
      overflow: hidden;
      display: grid; place-items: center;
      box-shadow: 0 6px 16px rgba(15, 107, 80, .12);
      flex-shrink: 0;
    }
    .logo-mark img {
      width: 100%; height: 100%;
      object-fit: cover;
      transform: scale(1.55); /* crop the logo's white padding */
    }
    .navbar-brand-logo .brand-dot { color: var(--gold); }

    .navbar-main .nav-link {
      color: var(--charcoal);
      font-weight: 500;
      font-size: .95rem;
      padding: .5rem 1rem !important;
      position: relative;
      transition: color .25s ease;
    }
    .navbar-main .nav-link::after {
      content: "";
      position: absolute;
      left: 1rem; right: 1rem; bottom: .25rem;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s ease;
    }
    .navbar-main .nav-link:hover, .navbar-main .nav-link.active { color: var(--emerald); }
    .navbar-main .nav-link:hover::after, .navbar-main .nav-link.active::after { transform: scaleX(1); }

    .btn-nav-login {
      color: var(--emerald); font-weight: 500;
      border: 1.5px solid var(--emerald);
      border-radius: var(--radius-sm);
      padding: .5rem 1.4rem;
      transition: var(--transition);
      position: relative; overflow: hidden;
    }
    .btn-nav-login:hover { background: var(--emerald-light); color: var(--emerald-dark); }
    .btn-nav-register {
      background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
      color: #fff; font-weight: 500;
      border-radius: var(--radius-sm);
      padding: .5rem 1.5rem;
      border: none;
      transition: var(--transition);
      position: relative; overflow: hidden;
      box-shadow: 0 6px 16px rgba(15, 107, 80, .25);
    }
    .btn-nav-register:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 10px 22px rgba(15, 107, 80, .35); }

    /* ============================================================
       5. HERO
       ============================================================ */
    .hero {
      position: relative;
      padding: 72px 0 110px;
      background:
        radial-gradient(1100px 520px at 88% -10%, rgba(15, 107, 80, .07), transparent 60%),
        radial-gradient(700px 420px at -10% 30%, rgba(201, 162, 39, .07), transparent 60%),
        var(--ivory);
      overflow: hidden;
    }
    .hero h1 {
      font-size: clamp(2.1rem, 4.6vw, 3.4rem);
      font-weight: 700;
      line-height: 1.22;
      letter-spacing: -.01em;
    }
    .hero .hero-highlight { color: var(--emerald); }
    .hero .lead-text {
      color: var(--text-muted);
      font-size: 1.08rem;
      max-width: 540px;
    }
    .hero-trust-row {
      display: flex; align-items: center; gap: .9rem;
      color: var(--text-muted);
      font-size: .9rem;
    }
    .hero-trust-row .avatars { display: flex; }
    .hero-trust-row .avatars span {
      width: 38px; height: 38px;
      border-radius: 50%;
      border: 2.5px solid var(--ivory);
      display: grid; place-items: center;
      font-size: .75rem; font-weight: 600; color: #fff;
      margin-left: -10px;
    }
    .hero-trust-row .avatars span:first-child { margin-left: 0; }

    /* Hero visual */
    .hero-visual { position: relative; }
    .hero-img-frame {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 30px 70px rgba(15, 107, 80, .22);
    }
    .hero-img-frame::after {
      /* cinematic emerald wash over the placeholder image */
      content: "";
      position: absolute; inset: 0;
      background: linear-gradient(200deg, rgba(15,107,80,.08) 0%, rgba(10,79,59,.42) 100%);
    }
    .hero-img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .hero-img-caption {
      /* z-index above .float-card (3) so it never hides under the trust cards */
      position: absolute; left: 50%; bottom: 20px; z-index: 4;
      transform: translateX(-50%);
      width: max-content;
      max-width: calc(100% - 40px);
      text-align: center;
      justify-content: center;
      color: #fff;
      background: rgba(10, 79, 59, .55);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 12px;
      padding: .55rem 1rem;
      font-size: .82rem;
      display: flex; align-items: center; gap: .5rem;
    }

    /* Floating trust cards over the hero image */
    .float-card {
      position: absolute;
      background: rgba(255, 255, 255, .9);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(230, 230, 230, .9);
      border-radius: 12px;
      box-shadow: 0 14px 34px rgba(45, 45, 45, .14);
      padding: .7rem 1.05rem;
      display: flex; align-items: center; gap: .6rem;
      font-size: .86rem; font-weight: 500;
      white-space: nowrap;
      z-index: 3;
      animation: floatY 5.5s ease-in-out infinite;
    }
    .float-card .fc-icon {
      width: 32px; height: 32px; border-radius: 9px;
      display: grid; place-items: center;
      color: #fff; font-size: .95rem;
      flex-shrink: 0;
    }
    .fc-1 { top: 6%;   left: -7%;  animation-delay: 0s; }
    .fc-2 { top: calc(30% - 100px);  right: -8%; animation-delay: 1.3s; }
    .fc-3 { bottom: 26%; left: -9%; animation-delay: 2.4s; }
    /* kept clear of .hero-img-caption at the bottom edge */
    .fc-4 { bottom: 14%; right: -6%; animation-delay: 3.2s; }
    @keyframes floatY {
      0%, 100% { transform: translateY(0); }
      50%      { transform: translateY(-12px); }
    }
    @media (max-width: 1199.98px) {
      .fc-1 { left: -2%; } .fc-2 { right: -2%; }
      .fc-3 { left: -3%; } .fc-4 { right: -1%; }
    }
    @media (max-width: 991.98px) {
      .hero { padding: 48px 0 72px; }
      .fc-1 { left: 2%; } .fc-2 { right: 2%; }
      .fc-3 { left: 2%; } .fc-4 { right: 2%; }
    }
    @media (prefers-reduced-motion: reduce) {
      .float-card { animation: none; }
      html { scroll-behavior: auto; }
    }

    /* ============================================================
       6. STATS COUNTERS
       ============================================================ */
    .stats-band {
      background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
      position: relative;
      overflow: hidden;
    }
    .stats-band::before {
      /* subtle islamic geometric star lattice */
      content: "";
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='72' height='72' viewBox='0 0 72 72' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.07' stroke-width='1'%3E%3Cpath d='M36 4 L44 20 L60 20 L52 36 L60 52 L44 52 L36 68 L28 52 L12 52 L20 36 L12 20 L28 20 Z'/%3E%3Ccircle cx='36' cy='36' r='10'/%3E%3C/g%3E%3C/svg%3E");
      opacity: .9;
    }
    .stat-item { position: relative; text-align: center; color: #fff; padding: 1rem .5rem; }
    .stat-number {
      font-size: clamp(2rem, 3.6vw, 2.9rem);
      font-weight: 700;
      line-height: 1.1;
      color: #fff;
    }
    .stat-number .suffix { color: var(--gold); }
    .stat-label { color: rgba(255, 255, 255, .82); font-size: .95rem; margin-top: .35rem; }
    .stat-divider { border-right: 1px solid rgba(255,255,255,.16); }
    @media (max-width: 767.98px) { .stat-divider { border-right: none; } }

    /* ============================================================
       7. WHY CHOOSE US
       ============================================================ */
    .feature-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      height: 100%;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .feature-card::before {
      content: "";
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
      z-index: 2;
      background: linear-gradient(90deg, var(--emerald), var(--gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .4s ease;
    }
    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(15, 107, 80, .2);
    }
    .feature-card:hover::before { transform: scaleX(1); }
    .feature-img { height: 200px; overflow: hidden; }
    .feature-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .6s ease;
    }
    .feature-card:hover .feature-img img { transform: scale(1.06); }
    .feature-body { padding: 1.6rem 1.8rem 1.9rem; }
    .feature-card h3 { font-size: 1.15rem; margin-bottom: .6rem; }
    .feature-card p { color: var(--text-muted); font-size: .93rem; margin-bottom: 0; }

    /* ============================================================
       8. HOW IT WORKS — TIMELINE
       ============================================================ */
    .timeline { position: relative; }
    .timeline-track {
      position: absolute;
      top: 44px; left: 9%; right: 9%;
      height: 3px;
      background: var(--border);
      border-radius: 3px;
      overflow: hidden;
    }
    .timeline-track .track-fill {
      display: block; height: 100%; width: 0;
      background: linear-gradient(90deg, var(--emerald), var(--gold));
      border-radius: 3px;
      transition: width 1.8s cubic-bezier(.4, 0, .2, 1);
    }
    .timeline.in-view .timeline-track .track-fill { width: 100%; }
    .step-item { text-align: center; position: relative; z-index: 1; }
    .step-badge {
      width: 88px; height: 88px;
      margin: 0 auto 1.2rem;
      border-radius: 50%;
      background: var(--card);
      border: 2px solid var(--border);
      display: grid; place-items: center;
      font-size: 1.75rem;
      color: var(--emerald);
      transition: var(--transition);
      box-shadow: var(--shadow-soft);
    }
    .step-item:hover .step-badge {
      border-color: var(--gold);
      transform: translateY(-6px) scale(1.05);
      box-shadow: var(--shadow-hover);
    }
    .step-num {
      display: inline-block;
      font-size: .72rem; font-weight: 600;
      letter-spacing: .12em; text-transform: uppercase;
      color: var(--gold);
      margin-bottom: .3rem;
    }
    .step-item h3 { font-size: 1.02rem; margin-bottom: .4rem; }
    .step-item p { color: var(--text-muted); font-size: .86rem; max-width: 200px; margin: 0 auto; }
    @media (max-width: 991.98px) {
      .timeline-track { display: none; }
      .step-item { margin-bottom: 2.2rem; }
    }

    /* ============================================================
       9. FEATURED PROFILES
       ============================================================ */
    .profile-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: var(--transition);
      height: 100%;
    }
    .profile-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(15, 107, 80, .25);
    }
    .profile-photo {
      position: relative;
      height: 230px;
      display: grid; place-items: center;
      color: #fff;
    }
    .profile-photo .initials {
      width: 96px; height: 96px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .18);
      border: 2px solid rgba(255, 255, 255, .5);
      display: grid; place-items: center;
      font-size: 2rem; font-weight: 600;
      backdrop-filter: blur(4px);
    }
    .profile-photo .privacy-note {
      position: absolute; bottom: 12px; left: 50%;
      transform: translateX(-50%);
      font-size: .7rem;
      background: rgba(0, 0, 0, .28);
      border-radius: 50rem;
      padding: .2rem .8rem;
      white-space: nowrap;
      backdrop-filter: blur(4px);
    }
    /* dignified gradient backdrops instead of unverified stock faces */
    .pp-a { background: linear-gradient(150deg, #14795c, #0A4F3B); }
    .pp-b { background: linear-gradient(150deg, #8A9E6E, #5D7A52); }
    .pp-c { background: linear-gradient(150deg, #B08D2F, #8C6D1B); }
    .pp-d { background: linear-gradient(150deg, #4E8676, #2E5F51); }
    .badge-verified, .badge-premium, .badge-id {
      position: absolute; top: 12px;
      font-size: .66rem; font-weight: 600;
      padding: .28rem .55rem;
      border-radius: 50rem;
      display: inline-flex; align-items: center; gap: .3rem;
      backdrop-filter: blur(6px);
    }
    .badge-verified { left: 12px; background: rgba(255,255,255,.92); color: var(--emerald); }
    .badge-premium  { right: 12px; background: linear-gradient(135deg, #D9B33B, var(--gold)); color: #3d3106; }
    /* profile ID pill, centered between the corner badges */
    .badge-id {
      left: 50%; transform: translateX(-50%);
      background: rgba(0, 0, 0, .32);
      color: #fff;
      letter-spacing: .05em;
    }
    .profile-body { padding: 1.4rem 1.4rem 1.5rem; }
    .profile-body h3 { font-size: 1.08rem; margin-bottom: .1rem; }
    .profile-meta { color: var(--text-muted); font-size: .82rem; margin-bottom: 1rem; }
    .profile-attrs { list-style: none; padding: 0; margin: 0 0 1.25rem; }
    .profile-attrs li {
      display: flex; align-items: center; gap: .6rem;
      font-size: .84rem; color: var(--charcoal);
      padding: .32rem 0;
      border-bottom: 1px dashed var(--border);
    }
    .profile-attrs li:last-child { border-bottom: none; }
    .profile-attrs li i { color: var(--muted-green); font-size: .95rem; width: 18px; text-align: center; }
    .btn-view-profile {
      width: 100%;
      border: 1.5px solid var(--emerald);
      color: var(--emerald);
      font-weight: 500; font-size: .9rem;
      border-radius: var(--radius-sm);
      padding: .6rem;
      background: transparent;
      transition: var(--transition);
      position: relative; overflow: hidden;
    }
    .btn-view-profile:hover { background: var(--emerald); color: #fff; }

    /* Category bar — ported from the maajee.pk homepage (#catBar), themed to newUI */
    .cat-bar-wrap {
      position: relative;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
      margin-bottom: 1rem;
    }
    .cat-bar-wrap::before, .cat-bar-wrap::after {
      content: "";
      position: absolute; top: 0; bottom: 0;
      width: 36px;
      pointer-events: none;
      z-index: 2;
      border-radius: var(--radius);
    }
    .cat-bar-wrap::before { left: 0; background: linear-gradient(to right, #fff 50%, transparent); }
    .cat-bar-wrap::after  { right: 0; background: linear-gradient(to left, #fff 50%, transparent); }
    .cat-bar {
      background: transparent;
      padding: 14px 44px;
      display: flex; gap: 10px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      scroll-behavior: smooth;
    }
    .cat-bar::-webkit-scrollbar { display: none; }
    .cat-scroll-btn {
      position: absolute; top: 50%;
      transform: translateY(-50%);
      z-index: 3;
      background: var(--emerald);
      color: #fff;
      border: none; border-radius: 50%;
      width: 28px; height: 28px;
      font-size: 18px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
      padding: 0;
      font-family: inherit;
      line-height: 1;
      transition: background .15s, opacity .15s;
    }
    .cat-scroll-btn:hover { background: var(--emerald-dark); }
    .cat-scroll-btn.cat-hidden { opacity: 0; pointer-events: none; }
    .cat-scroll-left { left: 8px; }
    .cat-scroll-right { right: 8px; }
    .cat-pill {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 10px 20px;
      border-radius: 50px;
      border: 1.5px solid var(--border);
      background: #fff;
      font-size: .9rem; font-weight: 600;
      color: var(--charcoal);
      cursor: pointer;
      white-space: nowrap;
      font-family: inherit;
      transition: all .18s;
      flex-shrink: 0;
    }
    .cat-pill:hover { border-color: var(--emerald); color: var(--emerald); }
    .cat-pill.active {
      background: var(--emerald);
      border-color: var(--emerald);
      color: #fff;
      box-shadow: 0 6px 14px rgba(15, 107, 80, .25);
    }
    .pill-icon { font-size: 17px; }
    @media (max-width: 767.98px) {
      .cat-pill { padding: 8px 14px; font-size: .82rem; }
      .cat-bar { padding: 12px 40px; }
    }

    /* Filters for the proposals grid */
    .filter-bar {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
      padding: 1.1rem 1.4rem;
      display: flex; flex-wrap: wrap; align-items: center;
      gap: .9rem 1.8rem;
      margin-bottom: 2.2rem;
    }
    .filter-group { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem; }
    .filter-label {
      font-size: .74rem; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase;
      color: var(--text-muted);
      margin: 0 .2rem 0 0;
    }
    .filter-pill {
      border: 1.5px solid var(--border);
      background: transparent;
      color: var(--charcoal);
      border-radius: 50rem;
      padding: .5rem 1.15rem;
      min-height: 44px; /* touch target */
      font-size: .88rem; font-weight: 500;
      transition: var(--transition);
      cursor: pointer;
    }
    .filter-pill:hover { border-color: var(--emerald); color: var(--emerald); }
    .filter-pill.active {
      background: var(--emerald);
      border-color: var(--emerald);
      color: #fff;
      box-shadow: 0 6px 14px rgba(15, 107, 80, .25);
    }
    .filter-select {
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      background-color: #fff;
      color: var(--charcoal);
      padding: .5rem 2rem .5rem .9rem;
      min-height: 44px; /* touch target */
      font-size: .88rem;
      cursor: pointer;
      transition: var(--transition);
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16' fill='%230F6B50'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right .7rem center;
    }
    .filter-select:hover { border-color: var(--emerald); }
    .filter-select:focus {
      border-color: var(--emerald);
      outline: none;
      box-shadow: 0 0 0 3px rgba(15, 107, 80, .14);
    }
    .filter-reset {
      background: none; border: none;
      color: var(--emerald);
      font-size: .86rem; font-weight: 500;
      text-decoration: underline;
      cursor: pointer;
      padding: .5rem .3rem;
    }
    .filter-reset:hover { color: var(--emerald-dark); }
    .filter-count { margin: 0 0 0 auto; font-size: .85rem; color: var(--text-muted); }
    .filters-empty {
      text-align: center;
      color: var(--text-muted);
      border: 1.5px dashed var(--border);
      border-radius: var(--radius);
      padding: 3.2rem 1.5rem;
    }
    .filters-empty i { font-size: 2rem; color: var(--muted-green); display: block; margin-bottom: .8rem; }
    @media (max-width: 767.98px) {
      .filter-count { margin-left: 0; width: 100%; }
    }

    /* ============================================================
       11. SUCCESS STORIES
       ============================================================ */
    .stories-section { background: var(--emerald-light); position: relative; overflow: hidden; }
    .story-card {
      background: var(--card);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
      border: 1px solid var(--border);
      padding: 2.6rem 2.4rem;
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
      position: relative;
    }
    .story-card .quote-mark {
      position: absolute; top: 22px; left: 28px;
      font-size: 4rem; line-height: 1;
      color: var(--gold-soft);
      font-family: Georgia, serif;
      user-select: none;
    }
    .story-couple {
      display: flex; justify-content: center; align-items: center;
      position: relative;
      width: max-content;
      margin: 0 auto 1.7rem;
    }
    .story-couple img {
      width: 76px; height: 76px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #fff;
      outline: 2px solid rgba(201, 162, 39, .55);
      outline-offset: 2px;
      box-shadow: 0 8px 20px rgba(45, 45, 45, .18);
      background: var(--emerald-light);
    }
    .story-couple img:first-of-type { transform: rotate(-5deg); }
    .story-couple img + img { margin-left: -16px; transform: rotate(5deg); }
    .couple-badge {
      position: absolute; bottom: -12px; left: 50%;
      transform: translateX(-50%);
      width: 30px; height: 30px;
      border-radius: 50%;
      background: linear-gradient(135deg, #D9B33B, var(--gold));
      color: #3d3106;
      display: grid; place-items: center;
      font-size: .8rem;
      border: 2px solid #fff;
      box-shadow: 0 4px 10px rgba(201, 162, 39, .45);
      z-index: 1;
    }
    .story-stars { color: var(--gold); font-size: 1rem; letter-spacing: .2em; margin-bottom: 1rem; }
    .story-text { color: var(--text-muted); font-size: 1.02rem; font-style: italic; max-width: 600px; margin: 0 auto 1.4rem; }
    .story-names { font-weight: 600; margin-bottom: 0; }
    .story-city { color: var(--muted-green); font-size: .86rem; }
    .stories-section .carousel-indicators { position: static; margin-top: 2rem; }
    .stories-section .carousel-indicators [data-bs-target] {
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--muted-green);
      opacity: .35;
      border: none;
      transition: var(--transition);
    }
    .stories-section .carousel-indicators .active { opacity: 1; background: var(--emerald); width: 26px; border-radius: 6px; }

    /* ============================================================
       13. CALL TO ACTION
       ============================================================ */
    .cta-section {
      position: relative;
      background: linear-gradient(140deg, var(--emerald) 0%, var(--emerald-dark) 90%);
      overflow: hidden;
    }
    .cta-section::before {
      content: "";
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='96' height='96' viewBox='0 0 96 96' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.08' stroke-width='1'%3E%3Cpath d='M48 8 L58 28 L78 28 L64 44 L70 66 L48 54 L26 66 L32 44 L18 28 L38 28 Z'/%3E%3Cpath d='M0 48 L48 0 L96 48 L48 96 Z'/%3E%3Ccircle cx='48' cy='48' r='16'/%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-section h2 {
      color: #fff;
      font-size: clamp(1.7rem, 3.4vw, 2.6rem);
      font-weight: 700;
      max-width: 760px;
      margin: 0 auto 1rem;
    }
    .cta-section p { color: rgba(255,255,255,.82); max-width: 620px; margin: 0 auto 2rem; }

    /* ============================================================
       15. FOOTER
       ============================================================ */
    .footer {
      background: #103528;
      color: rgba(255, 255, 255, .72);
      padding: 72px 0 0;
      font-size: .9rem;
    }
    .footer h4 {
      color: #fff; font-size: 1rem; font-weight: 600;
      margin-bottom: 1.2rem;
    }
    .footer a { color: rgba(255,255,255,.72); text-decoration: none; transition: color .25s ease, padding-left .25s ease; }
    .footer a:hover { color: var(--gold); }
    .footer ul { list-style: none; padding: 0; margin: 0; }
    .footer ul li { margin-bottom: .65rem; }
    .footer ul li a:hover { padding-left: 4px; }
    .footer-brand { display: flex; align-items: center; gap: .6rem; color: #fff; font-weight: 700; font-size: 1.3rem; margin-bottom: 1rem; }
    .footer-brand .logo-mark {
      width: 42px; height: 42px; border-radius: 11px;
      background: #fff;
      overflow: hidden;
      display: grid; place-items: center;
      flex-shrink: 0;
    }
    .footer-tagline {
      color: var(--gold);
      font-size: .8rem;
      font-weight: 500;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin: -0.4rem 0 1rem;
    }
    .social-icons { display: flex; gap: .7rem; margin-top: 1.4rem; }
    .social-icons a {
      width: 40px; height: 40px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,.18);
      display: grid; place-items: center;
      font-size: 1rem;
      transition: var(--transition);
    }
    .social-icons a:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: #103528;
      transform: translateY(-3px);
    }
    /* Footer contact list (Raabta column) */
    .footer-contact li {
      display: flex; align-items: center; gap: .6rem;
      margin-bottom: .65rem;
    }
    .footer-contact li i { color: var(--gold); font-size: 1rem; width: 20px; text-align: center; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.12);
      margin-top: 56px;
      padding: 1.4rem 0;
      font-size: .82rem;
      color: rgba(255,255,255,.55);
    }

    /* ============================================================
       16. SCROLL-REVEAL ANIMATIONS
       ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity .8s ease, transform .8s cubic-bezier(.25, .8, .25, 1);
      transition-delay: var(--reveal-delay, 0s);
      will-change: opacity, transform;
    }
    .reveal.revealed { opacity: 1; transform: translateY(0); }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
    }

    /* Back-to-top button */
    .back-to-top {
      position: fixed; right: 22px; bottom: 22px;
      width: 46px; height: 46px;
      border-radius: 50%;
      background: var(--emerald);
      color: #fff; border: none;
      display: grid; place-items: center;
      box-shadow: 0 10px 26px rgba(15,107,80,.35);
      opacity: 0; visibility: hidden;
      transform: translateY(12px);
      transition: var(--transition);
      z-index: 1050;
    }
    .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
    .back-to-top:hover { background: var(--emerald-dark); transform: translateY(-3px); }

    /* ============================================================
       17. INNER PAGE HERO (rishtay / kyun-maajee / tareeqa / kamyab-rishtay / raabta)
       ============================================================ */
    .page-hero {
      padding: 150px 0 60px;
      text-align: center;
      background:
        radial-gradient(900px 420px at 85% -10%, rgba(15, 107, 80, .08), transparent 60%),
        radial-gradient(600px 360px at -5% 40%, rgba(201, 162, 39, .08), transparent 60%),
        var(--ivory);
      border-bottom: 1px solid var(--border);
    }
    .page-hero h1 {
      font-size: clamp(1.9rem, 4vw, 2.8rem);
      font-weight: 700;
      margin-bottom: .8rem;
    }
    .page-hero p { color: var(--text-muted); max-width: 640px; margin: 0 auto; }
    .breadcrumb-trail {
      font-size: .85rem;
      color: var(--muted-green);
      margin-bottom: 1rem;
    }
    .breadcrumb-trail a { color: var(--emerald); text-decoration: none; }
    .breadcrumb-trail a:hover { text-decoration: underline; }

    /* Contact page (raabta.html) */
    .contact-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.8rem 1.5rem;
      text-align: center;
      height: 100%;
      transition: var(--transition);
    }
    .contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
    .contact-card .cc-icon {
      width: 56px; height: 56px;
      margin: 0 auto 1rem;
      border-radius: 14px;
      background: var(--emerald-light);
      color: var(--emerald);
      display: grid; place-items: center;
      font-size: 1.4rem;
    }
    .contact-card h3 { font-size: 1.02rem; margin-bottom: .35rem; }
    .contact-card p, .contact-card a { font-size: .9rem; color: var(--text-muted); text-decoration: none; }
    .contact-card a:hover { color: var(--emerald); }
    .contact-form-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
      padding: 2.2rem 2rem;
    }
    .contact-form-card .form-control, .contact-form-card .form-select {
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      padding: .7rem .9rem;
      font-size: .92rem;
    }
    .contact-form-card .form-control:focus, .contact-form-card .form-select:focus {
      border-color: var(--emerald);
      box-shadow: 0 0 0 3px rgba(15, 107, 80, .14);
    }

    /* ============================================================
       18. SMALL-SCREEN POLISH (fully responsive pass)
       ============================================================ */
    @media (max-width: 575.98px) {
      .hero { padding-top: 118px; }
      .hero .btn-lg { padding: .7rem 1.3rem; font-size: 1rem; }
      .float-card { font-size: .76rem; padding: .5rem .75rem; }
      .float-card .fc-icon { width: 26px; height: 26px; font-size: .78rem; }
      .hero-img-caption { font-size: .72rem; padding: .4rem .7rem; max-width: calc(100% - 24px); }
      .story-card { padding: 2.1rem 1.2rem; }
      .story-card .quote-mark { top: 12px; left: 14px; font-size: 3rem; }
      .story-text { font-size: .95rem; }
      .plan-card.featured { transform: none; }
      .plan-card.featured:hover { transform: translateY(-8px); }
      .filter-count { margin-left: 0; width: 100%; }
      .page-hero { padding: 126px 0 44px; }
      .contact-form-card { padding: 1.6rem 1.2rem; }
      .footer { padding-top: 56px; }
    }
    @media (max-width: 359.98px) {
      .navbar-brand-logo { font-size: 1.15rem; }
      .cat-pill { padding: 7px 12px; font-size: .78rem; }
      .badge-verified, .badge-premium, .badge-id { font-size: .6rem; padding: .24rem .45rem; }
    }

/* ============================================================
   19. PROFILE DETAIL PAGE (profile.html)
   ============================================================ */
.pd-back {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--text-muted);
  font-weight: 500; font-size: .92rem;
  text-decoration: none;
  margin-bottom: 1.4rem;
  transition: var(--transition);
}
.pd-back:hover { color: var(--emerald); }
.pd-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.4rem;
  overflow: hidden;
}
.pd-card-body { padding: 1.5rem 1.5rem 1.6rem; }
.pd-photo {
  position: relative;
  height: 270px;
  display: grid; place-items: center;
  color: #fff;
}
.pd-photo .initials {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  border: 2px solid rgba(255, 255, 255, .5);
  display: grid; place-items: center;
  font-size: 3rem;
  backdrop-filter: blur(4px);
}
.pd-photo .privacy-note {
  position: absolute; bottom: 0; left: 0; right: 0;
  text-align: center;
  font-size: .78rem; font-weight: 500;
  background: rgba(0, 0, 0, .38);
  padding: .5rem .8rem;
  backdrop-filter: blur(4px);
}
.pd-id { font-size: .78rem; font-weight: 600; letter-spacing: .06em; color: var(--muted-green); margin-bottom: .2rem; }
.pd-title { font-size: 1.35rem; font-weight: 700; margin-bottom: .6rem; }
.pill-verified {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--emerald-light); color: var(--emerald);
  border: 1.5px solid rgba(15, 107, 80, .25);
  padding: .3rem .85rem; border-radius: 50rem;
  font-size: .8rem; font-weight: 600;
}
.btn-wa-share {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: #25D366; color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: .7rem 1rem;
  font-size: .88rem; font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.btn-wa-share:hover { background: #1eb457; color: #fff; transform: translateY(-2px); }
.pd-score-label {
  font-size: .74rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.match-ring { position: relative; width: 130px; height: 130px; margin: 0 auto; }
.match-ring svg { transform: rotate(-90deg); }
.match-ring .ring-value {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 1.6rem; font-weight: 700; color: var(--emerald);
}
.match-factor {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem 0;
  border-bottom: 1px dashed var(--border);
  font-size: .86rem;
}
.match-factor:last-child { border-bottom: none; }
.match-factor .mf-label { font-weight: 600; min-width: 84px; }
.match-factor .mf-detail { color: var(--text-muted); font-size: .8rem; }
.match-factor i.ok { color: var(--emerald); }
.match-factor i.no { color: #b02a37; }
.pd-summary {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: 1.4rem;
}
.pd-summary span {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50rem;
  padding: .4rem 1rem;
  font-size: .84rem; font-weight: 500;
}
.pd-section-title {
  font-size: 1.1rem; font-weight: 700;
  padding-bottom: .8rem; margin-bottom: 1.2rem;
  border-bottom: 2px solid var(--emerald-light);
  display: flex; align-items: center; gap: .5rem;
}
.pd-section-title i { color: var(--gold); }
.detail-tile {
  background: var(--ivory);
  border: 1px solid #F0ECE8;
  border-radius: var(--radius-sm);
  padding: .85rem 1rem;
  height: 100%;
}
.detail-tile .dt-label {
  font-size: .74rem; font-weight: 600;
  color: var(--muted-green);
  display: flex; align-items: center; gap: .4rem;
  margin-bottom: .25rem;
}
.detail-tile .dt-value { font-size: .95rem; font-weight: 600; color: var(--charcoal); }
.similar-chip {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--emerald-light);
  color: var(--emerald-dark);
  border: 1px solid rgba(15, 107, 80, .15);
  border-radius: 50rem;
  padding: .4rem .95rem;
  font-size: .8rem; font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.similar-chip:hover { background: var(--emerald); color: #fff; transform: translateY(-2px); }
.pd-locked {
  background: var(--gold-soft);
  border: 1.5px solid rgba(201, 162, 39, .45);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: .88rem;
}
.pd-locked .pl-title { font-weight: 700; color: #8C6D1B; display: flex; align-items: center; gap: .45rem; margin-bottom: .2rem; }
.pd-locked p { margin: 0; color: var(--text-muted); }
@media (max-width: 575.98px) {
  .pd-photo { height: 230px; }
  .pd-card-body { padding: 1.2rem 1.1rem 1.3rem; }
}

/* ============================================================
   20. DASHBOARD SIDEBAR (profile.html)
   ============================================================ */
.dash-wrap { display: flex; gap: 1.6rem; align-items: flex-start; }
.dash-sidebar {
  width: 256px; flex-shrink: 0;
  background: linear-gradient(180deg, var(--emerald-dark), var(--emerald));
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  position: sticky; top: 96px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.ds-user { padding: 1.1rem 1.25rem; border-bottom: 1px solid rgba(255, 255, 255, .15); position: relative; }
.ds-user .du-role {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: .1rem;
}
.ds-user .du-name { font-size: .98rem; font-weight: 700; color: #fff; }
.ds-user .du-mail { font-size: .76rem; color: rgba(255, 255, 255, .6); }
.ds-nav { flex: 1; padding: .5rem 0 .8rem; }
.ds-link {
  display: flex; align-items: center; gap: .8rem;
  padding: .72rem 1.25rem;
  color: rgba(255, 255, 255, .72);
  font-size: .9rem; font-weight: 500;
  text-decoration: none;
  border-right: 3px solid transparent;
  transition: all .15s ease;
}
.ds-link i { width: 20px; text-align: center; font-size: 1rem; }
.ds-link:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.ds-link.active {
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border-right-color: var(--gold);
  font-weight: 600;
}
.ds-divider { margin: .5rem 1.25rem; border-top: 1px solid rgba(255, 255, 255, .15); }
.ds-bottom-bar { height: 3px; background: var(--gold); flex-shrink: 0; }
.ds-close {
  display: none;
  position: absolute; top: .8rem; right: .8rem;
  width: 32px; height: 32px;
  border: none; border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: .9rem;
}
.dash-content { flex: 1; min-width: 0; }
.dash-toggle {
  display: none;
  align-items: center; gap: .5rem;
  background: linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: .6rem 1.1rem;
  font-size: .88rem; font-weight: 600;
  box-shadow: 0 8px 20px rgba(15, 107, 80, .25);
  margin-bottom: 1.2rem;
}
.sidebar-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1049;
}
.sidebar-overlay.open { display: block; }
@media (max-width: 991.98px) {
  .dash-sidebar {
    position: fixed; top: 0; left: -110%;
    height: 100vh; max-height: 100vh;
    width: 82vw; max-width: 300px;
    border-radius: 0 var(--radius) var(--radius) 0;
    transition: left .3s ease;
    z-index: 1050;
    box-shadow: 0 0 30px rgba(0, 0, 0, .35);
  }
  .dash-sidebar.open { left: 0; }
  .ds-close { display: grid; place-items: center; }
  .dash-toggle { display: inline-flex; }
}

/* ============================================================
   21. AUTH PAGES (login.html / forgot-pin.html)
   ============================================================ */
.auth-section {
  min-height: calc(100vh - 90px);
  display: flex; align-items: center; justify-content: center;
  padding: 150px 20px 80px;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(15, 107, 80, .08), transparent 60%),
    radial-gradient(600px 360px at -5% 40%, rgba(201, 162, 39, .08), transparent 60%),
    var(--ivory);
}
.auth-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 2.4rem 2.2rem;
  width: 100%;
  max-width: 460px;
}
.auth-card .auth-logo {
  text-align: center;
  margin-bottom: 1.4rem;
}
.auth-card .auth-logo .logo-mark {
  width: 64px; height: 64px;
  margin: 0 auto .6rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid; place-items: center;
  box-shadow: 0 6px 16px rgba(15, 107, 80, .12);
}
.auth-card .auth-logo .logo-mark img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.55); /* crop the logo's white padding */
}
.auth-card .auth-logo .auth-brand {
  font-weight: 700; font-size: 1.2rem; color: var(--charcoal);
}
.auth-card .auth-logo .auth-brand .brand-dot { color: var(--gold); }
.auth-title {
  font-size: 1.5rem; font-weight: 700;
  text-align: center;
  margin-bottom: .35rem;
  color: var(--charcoal);
}
.auth-sub {
  color: var(--text-muted);
  text-align: center;
  font-size: .95rem;
  margin-bottom: 1.6rem;
}
.auth-card .form-label { font-weight: 600; font-size: .92rem; }
.auth-card .form-control, .auth-card .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
  font-size: .95rem;
}
.auth-card .form-control:focus, .auth-card .form-select:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(15, 107, 80, .14);
}
.auth-card .hint { font-size: .8rem; color: var(--text-muted); }
.pin-group {
  display: flex; gap: 12px; justify-content: center;
  margin: .5rem 0;
}
.pin-box {
  width: 62px; height: 68px;
  text-align: center;
  font-size: 1.6rem; font-weight: 700;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  font-family: inherit;
  color: var(--charcoal);
  background: var(--ivory);
  transition: all .15s ease;
}
.pin-box:focus {
  border-color: var(--emerald);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(15, 107, 80, .14);
}
.pin-box.filled { border-color: var(--emerald); background: var(--emerald-light); }
.auth-link {
  color: var(--emerald);
  font-weight: 600; font-size: .9rem;
  text-decoration: none;
}
.auth-link:hover { color: var(--emerald-dark); text-decoration: underline; }
.auth-foot {
  text-align: center;
  margin-top: 1.4rem;
  font-size: .92rem;
  color: var(--text-muted);
}
.auth-foot a { color: var(--emerald); font-weight: 600; text-decoration: none; }
.auth-foot a:hover { text-decoration: underline; }
.auth-divider {
  display: flex; align-items: center; gap: 1rem;
  margin: 1.4rem 0;
  color: var(--muted-green);
  font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
}
.auth-divider::before, .auth-divider::after {
  content: "";
  flex: 1; height: 1px;
  background: var(--border);
}
/* WhatsApp reset box (forgot-pin.html) */
.wa-box {
  background: var(--emerald-light);
  border: 1.5px solid rgba(15, 107, 80, .2);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  text-align: center;
}
.wa-box .wb-icon {
  width: 56px; height: 56px;
  margin: 0 auto .8rem;
  border-radius: 14px;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.6rem;
}
.wa-box .wb-title { font-weight: 700; color: var(--emerald-dark); margin-bottom: .3rem; }
.wa-box .wb-text { color: var(--text-muted); font-size: .88rem; margin-bottom: 1rem; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: .55rem;
  background: #25D366; color: #fff;
  border: none; border-radius: var(--radius-sm);
  padding: .75rem 1.6rem;
  font-size: .95rem; font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(37, 211, 102, .3);
}
.btn-whatsapp:hover { background: #1eb457; color: #fff; transform: translateY(-2px); }
.wa-box .wb-hours { font-size: .78rem; color: var(--text-muted); margin-top: .8rem; }
@media (max-width: 575.98px) {
  .auth-section { padding: 126px 16px 56px; }
  .auth-card { padding: 1.8rem 1.3rem; }
  .pin-box { width: 54px; height: 60px; }
}
