/* ============================================================
       CSS CUSTOM PROPERTIES (DESIGN TOKENS)
       ============================================================ */
    :root {
      --forest-authority: #0B3B2F;
      --botanical-calm:   #6B8E7B;
      --insight-highlight:#D4A843;
      --data-clarity:     #F9F9F6;
      --neutral-card:     #FFFFFF;
      --readable-ink:     #1C2D2A;
      --subtle-ui:        #7A8B85;
      --card-border:      #E5EDE9;

      /* Layout */
      --max-width: 1200px;
      --section-pad: 80px 24px;
      --card-radius: 6px;
      --transition: 0.2s ease;

      /* Nav specific */
      --nav-height: 64px;
      --nav-height-mobile: 60px;
    }

    /* ============================================================
       RESET & BASE
       ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Manrope', sans-serif;
  letter-spacing: 0.2px;
      font-size: 15px;
      color: var(--readable-ink);
      background: var(--data-clarity);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }
    a:hover { color: var(--insight-highlight); }

    img { max-width: 100%; display: block; }

    /* Utility */
    .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'Manrope', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--botanical-calm);
      margin-bottom: 10px;
    }
    .section-label i { font-size: 16px; }

    /* Fade-in on scroll */
    .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list a {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color var(--transition);
}

.breadcrumb-list a:hover {
    color: var(--insight-highlight);
}

.breadcrumb-list a i {
    font-size: 14px;
}

.breadcrumb-list [aria-current="page"] {
    font-size: 12px;
    color: var(--insight-highlight);
    font-family: 'Manrope', sans-serif;
}

.breadcrumb-list i.ph-caret-right {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
}

    /* ============================================================
       NAVIGATION - FULLY REDESIGNED
       ============================================================ */
    .main_header {
      background: var(--forest-authority);
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
      box-shadow: 0 2px 12px rgba(11,59,47,0.15);
    }


    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: var(--nav-height);
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      gap: 12px;
    }

    /* Logo */
    .nav-logo {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 17px;
      color: #fff;
      letter-spacing: -0.02em;
      white-space: nowrap;
      flex-shrink: 0;
      position: relative;
      z-index: 1001;
    }
    .nav-logo span { color: var(--insight-highlight); }

    /* Hamburger toggle */
    .nav-toggle {
      align-items: center;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 6px;
      color: #fff;
      cursor: pointer;
      display: none;
      height: 40px;
      justify-content: center;
      width: 44px;
      flex-shrink: 0;
      position: relative;
      z-index: 1001;
      transition: background var(--transition), border-color var(--transition);
    }
    .nav-toggle:hover,
    .nav-toggle:focus-visible {
      background: rgba(255,255,255,0.14);
      border-color: var(--insight-highlight);
    }
    .nav-toggle:focus-visible {
      outline: 2px solid var(--insight-highlight);
      outline-offset: 2px;
    }
    .nav-toggle i { font-size: 22px; transition: transform 0.3s ease; }
    nav.menu-open .nav-toggle i { transform: rotate(90deg); }

    /* Desktop links */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2px;
      list-style: none;
      flex: 1;
      justify-content: center;
    }
    .nav-item {
      position: relative;
    }
    .nav-links a {
      align-items: center;
      border-radius: 6px;
      display: flex;
      gap: 5px;
      font-family: 'Manrope', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.72);
      padding: 8px 12px;
      transition: color var(--transition), background var(--transition);
      white-space: nowrap;
    }
    .nav-links a:hover,
    .nav-links a:focus-visible {
      color: var(--insight-highlight);
      background: rgba(212,168,67,0.08);
    }
    .nav-links a:focus-visible {
      outline: 2px solid var(--insight-highlight);
      outline-offset: -2px;
    }
    .nav-links a i { font-size: 12px; transition: transform 0.2s ease; }
    .has-menu:hover > a i,
    .has-menu:focus-within > a i {
      transform: rotate(180deg);
    }

    /* Desktop dropdown */
    .nav-submenu {
      background: var(--neutral-card);
      border: 1px solid var(--card-border);
      border-radius: 8px;
      box-shadow: 0 18px 42px rgba(11,59,47,0.18), 0 4px 12px rgba(11,59,47,0.08);
      left: 50%;
      transform: translateX(-50%) translateY(8px);
      list-style: none;
      min-width: 240px;
      opacity: 0;
      padding: 8px;
      pointer-events: none;
      position: absolute;
      top: calc(100% + -3px);
      transition: opacity 0.25s ease, transform 0.25s ease;
      z-index: 1020;
    }
    /* Arrow pointer on dropdown */
    .nav-submenu::before {
      content: '';
      position: absolute;
      top: -6px;
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
      width: 12px;
      height: 12px;
      background: var(--neutral-card);
      border-top: 1px solid var(--card-border);
      border-left: 1px solid var(--card-border);
      z-index: 1;
    }
    .has-menu:hover .nav-submenu,
    .has-menu:focus-within .nav-submenu {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-submenu li { }
    .nav-submenu a {
      color: var(--readable-ink);
      display: block;
      font-size: 13px;
      padding: 9px 14px;
      border-radius: 5px;
      transition: background var(--transition), color var(--transition);
    }
    .nav-submenu a:hover,
    .nav-submenu a:focus-visible {
      background: rgba(11,59,47,0.06);
      color: var(--forest-authority);
    }

    /* Search button */
    .nav-search {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 6px;
      padding: 7px 14px;
      cursor: pointer;
      transition: background var(--transition), border-color var(--transition);
      flex-shrink: 0;
      position: relative;
      z-index: 1001;
    }
    .nav-search:hover,
    .nav-search:focus-visible {
      background: rgba(255,255,255,0.12);
      border-color: rgba(255,255,255,0.24);
    }
    .nav-search:focus-visible {
      outline: 2px solid var(--insight-highlight);
      outline-offset: 2px;
    }
    .nav-search i { font-size: 16px; color: rgba(255,255,255,0.55); }
    .nav-search span {
      font-size: 12px;
      color: rgba(255,255,255,0.45);
      font-family: 'Manrope', sans-serif;
    }

    /* ============================================================
       MOBILE OVERLAY BACKDROP
       ============================================================ */
    .nav-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(11,59,47,0.55);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      z-index: 999;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .nav-overlay.active {
      display: block;
      opacity: 1;
    }

    /* ============================================================
       SHARED SECTION + CARD COMPONENTS
       ============================================================ */
    .section-header { margin-bottom: 36px; }
    .section-header h2 {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: clamp(22px, 3vw, 34px);
      letter-spacing: -0.02em;
      color: var(--readable-ink);
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .section-header h2 i { font-size: 28px; color: var(--botanical-calm); }
    .section-header p {
      margin-top: 8px;
      color: var(--subtle-ui);
      font-size: 15px;
      max-width: 480px;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    /* Blog/news card */
    .blog-card {
      background: var(--neutral-card);
      border: 1px solid var(--card-border);
      border-radius: var(--card-radius);
      box-shadow: 0 2px 6px rgba(11,59,47,0.04);
      overflow: hidden;
      transition: transform var(--transition), box-shadow var(--transition);
      cursor: pointer;
    }
    .blog-card:hover {
      transform: scale(1.01);
      box-shadow: 0 8px 24px rgba(11,59,47,0.10);
    }
    .card-thumb {
      height: 120px;
      width: 100%;
    }
    .card-body { padding: 18px 20px 20px; }
    .card-tag {
      display: inline-block;
      background: var(--botanical-calm);
      color: #fff;
      font-family: 'Manrope', sans-serif;
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 3px 9px;
      border-radius: 100px;
      margin-bottom: 10px;
    }
    .card-tag.news-tag {
      background: var(--forest-authority);
      color: var(--insight-highlight);
    }
    .card-title {
      font-family: 'Manrope', sans-serif;
      font-weight: 600;
      font-size: 15px;
      line-height: 1.4;
      color: var(--readable-ink);
      margin-bottom: 8px;
    }
    .card-title a:hover { color: var(--forest-authority); }
    .card-excerpt {
      font-family: 'Manrope', sans-serif;
      font-size: 13px;
      color: var(--subtle-ui);
      line-height: 1.55;
      margin-bottom: 12px;
    }
    .card-date {
      font-family: 'Manrope', sans-serif;
      font-size: 11px;
      color: var(--subtle-ui);
    }

    /* ============================================================
       FOOTER
       ============================================================ */
    footer {
      background: var(--forest-authority);
      padding: 56px 24px;
    }
    .footer-inner {
      display: grid;
      gap: 36px;
      grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.6fr);
      max-width: var(--max-width);
      margin: 0 auto;
    }
    .footer-logo {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 18px;
      color: #fff;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }
    .footer-logo span { color: var(--insight-highlight); }
    .footer-disclaimer {
      font-size: 12.5px;
      color: rgba(255,255,255,0.45);
      line-height: 1.75;
      max-width: 760px;
      margin-bottom: 0;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 24px;
    }
    .footer-menu {
      display: grid;
      gap: 24px;
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .footer-menu-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .footer-menu-group h3 {
      color: #fff;
      font-family: 'Manrope', sans-serif;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.02em;
      margin-bottom: 4px;
    }
    .footer-menu-group a {
      font-size: 12px;
      color: rgba(255,255,255,0.4);
      transition: color var(--transition);
    }
    .footer-menu-group a:hover { color: rgba(255,255,255,0.8); }

    /* ============================================================
       RESPONSIVE BREAKPOINTS
       ============================================================ */

    /* ---------- Tablet & below (≤ 960px) ---------- */
    @media (max-width: 960px) {
      .nav-links a {
        font-size: 12px;
        padding: 7px 8px;
      }
      .nav-search span { display: none; }
    }

    /* ---------- Mobile (≤ 768px) ---------- */
    @media (max-width: 768px) {
      :root {
        --section-pad: 56px 20px;
        --nav-height: var(--nav-height-mobile);
      }

      .nav-inner {
        height: var(--nav-height-mobile);
        padding: 0 16px;
      }

      /* Show hamburger */
      .nav-toggle {
        display: inline-flex;
        order: 3;
      }

      /* Search moves between logo and toggle */
      .nav-search {
        margin-left: auto;
        order: 2;
        padding: 6px 10px;
      }

      /* Mobile slide-in menu */
      .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--forest-authority);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: calc(var(--nav-height-mobile) + 20px) 0 24px;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        z-index: 9999;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgba(0,0,0,0.3);
        border-left: 1px solid rgba(255,255,255,0.08);
      }

      nav.menu-open .nav-links {
        right: 0;
      }

      /* Prevent body scroll when menu open */
      body.nav-locked {
        overflow: hidden;
        position: fixed;
        width: 100%;
      }

      .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.06);
      }
      .nav-item:last-child { border-bottom: none; }

      .nav-links > .nav-item > a {
        justify-content: space-between;
        padding: 14px 20px;
        font-size: 14px;
        color: rgba(255,255,255,0.85);
        border-radius: 0;
      }
      .nav-links > .nav-item > a:hover,
      .nav-links > .nav-item > a:focus-visible {
        background: rgba(212,168,67,0.1);
        color: var(--insight-highlight);
      }

      /* Mobile submenu - accordion style */
      .nav-submenu {
        background: rgba(0,0,0,0.15);
        border: 0;
        border-radius: 0;
        box-shadow: none;
        left: auto;
        min-width: 0;
        width: 100%;
        max-height: 0;
        opacity: 1;
        overflow: hidden;
        padding: 0;
        pointer-events: auto;
        position: static;
        transform: none;
        transition: max-height 0.3s ease, padding 0.3s ease;
      }
      .nav-submenu::before { display: none; }

      .has-menu.submenu-open .nav-submenu {
        max-height: 400px;
        padding: 6px 0 10px;
      }
      .has-menu.submenu-open > a i {
        transform: rotate(180deg);
      }

      .nav-submenu a {
        color: rgba(255,255,255,0.6);
        padding: 10px 20px 10px 32px;
        font-size: 13px;
        border-radius: 0;
        position: relative;
      }
      .nav-submenu a::before {
        content: '';
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 4px;
        background: var(--botanical-calm);
        border-radius: 50%;
      }
      .nav-submenu a:hover,
      .nav-submenu a:focus-visible {
        background: rgba(255,255,255,0.04);
        color: var(--insight-highlight);
      }
      .nav-submenu a:hover::before,
      .nav-submenu a:focus-visible::before {
        background: var(--insight-highlight);
      }

      /* Mobile nav close button inside panel */
      .nav-links::before {
        content: '✕';
        position: absolute;
        top: 14px;
        right: 16px;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: rgba(255,255,255,0.5);
        cursor: pointer;
        border-radius: 6px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.1);
        pointer-events: auto;
        z-index: 1;
      }

      .cards-grid { grid-template-columns: 1fr; }
      .footer-inner {
        grid-template-columns: 1fr;
      }
      .footer-menu {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    /* ---------- Small mobile (≤ 520px) ---------- */
    @media (max-width: 520px) {
      .nav-inner {
        padding: 0 12px;
      }
      .nav-logo {
        font-size: 14px;
      }
      .nav-search span {
        display: none;
      }
      .nav-search {
        padding: 6px 8px;
      }
      .nav-toggle {
        width: 40px;
        height: 38px;
      }
      .footer-menu {
        grid-template-columns: 1fr;
      }
    }

    /* ---------- Extra small (≤ 360px) ---------- */
    @media (max-width: 360px) {
      .nav-inner {
        padding: 0 10px;
        gap: 8px;
      }
      .nav-logo {
        font-size: 13px;
      }
      .nav-search {
        padding: 5px 7px;
      }
      .nav-search i { font-size: 14px; }
      .nav-toggle {
        width: 36px;
        height: 36px;
      }
      .nav-toggle i { font-size: 20px; }
    }

    /* ---------- Min 320px guarantee ---------- */
    @media (max-width: 320px) {
      .nav-inner {
        padding: 0 8px;
        gap: 6px;
      }
      .nav-logo {
        font-size: 12px;
      }
      .nav-links {
        width: 100vw;
      }
    }




    /* ============================================================
 DISCLAIMER - REDESIGNED
   ============================================================ */
.disclaimer {
    background: var(--data-clarity);
    border-top: 1px solid var(--card-border);
    padding: 64px 24px;
}

.disclaimer-box {
    max-width: 920px;
    margin: 0 auto;
    background: var(--neutral-card);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(11, 59, 47, 0.06);
    position: relative;
}

/* Gold accent top bar */
.disclaimer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-authority), var(--insight-highlight), var(--botanical-calm));
}

/* Header row with icon and title */
.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 32px 18px;
    border-bottom: 1px solid var(--card-border);
}

.disclaimer-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--forest-authority), #2E5545);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.disclaimer-icon i {
    font-size: 24px;
    color: var(--insight-highlight);
}

.disclaimer-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.disclaimer-title-wrap h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--readable-ink);
    letter-spacing: -0.01em;
}

.disclaimer-title-wrap span {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    color: var(--subtle-ui);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Content paragraphs */
.disclaimer-copy {
    padding: 22px 32px 28px;
}

.disclaimer-copy p {
    font-size: 13.5px;
    color: var(--subtle-ui);
    line-height: 1.8;
    margin-bottom: 14px;
}

.disclaimer-copy p:last-child {
    margin-bottom: 0;
}

.disclaimer-copy strong {
    color: var(--readable-ink);
    font-weight: 600;
}

/* Footer stamp */
.disclaimer-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--data-clarity);
    border-top: 1px solid var(--card-border);
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    color: var(--subtle-ui);
}

.disclaimer-footer i {
    font-size: 14px;
    color: var(--botanical-calm);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
    background: var(--forest-authority);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(212, 168, 67, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-copy h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(26px, 3.5vw, 40px);
    color: #fff;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-copy p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    margin-bottom: 12px;
}

.cta-copy p:last-child {
    margin-bottom: 0;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}


@media (max-width: 768px) {
  /* Disclaimer responsive */
    .disclaimer {
        padding: 48px 20px;
    }

    .disclaimer-header {
        padding: 20px 24px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .disclaimer-copy {
        padding: 18px 24px 24px;
    }

    .disclaimer-footer {
        padding: 12px 24px;
    }

    /* Final CTA */
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .cta-actions {
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
  /* Disclaimer small mobile */
    .disclaimer-header {
        padding: 18px 20px 14px;
    }

    .disclaimer-icon {
        width: 42px;
        height: 42px;
    }

    .disclaimer-icon i {
        font-size: 20px;
    }

    .disclaimer-title-wrap h3 {
        font-size: 15px;
    }

    .disclaimer-copy {
        padding: 16px 20px 22px;
    }

    .disclaimer-copy p {
        font-size: 13px;
    }

    .disclaimer-footer {
        padding: 12px 20px;
    }
}
@media (max-width: 960px) {
  /* Final CTA */

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* FAQ Section */
/* ============================================================
   UNIFIED FAQ COMPONENT
   Used across: index.html, market-trends.html, legal-updates.html
   ============================================================ */
.faq-section {
    background: var(--data-clarity);
    border-top: 1px solid var(--card-border);
    padding: var(--section-pad);
}

.faq-section .section-header {
    margin-bottom: 48px;
}

.faq-section .section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(24px, 3.5vw, 38px);
    color: var(--readable-ink);
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-section .section-header h2 i {
    font-size: 28px;
    color: var(--botanical-calm);
}

.faq-section .section-header p {
    font-size: 15px;
    color: var(--subtle-ui);
    max-width: 620px;
    line-height: 1.7;
    margin-top: 8px;
}

/* FAQ List */
.faq-unified-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* FAQ Item */
.faq-unified-item {
    background: var(--neutral-card);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-unified-item:hover {
    border-color: rgba(107, 142, 123, 0.35);
}

.faq-unified-item.open {
    border-color: var(--insight-highlight);
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.1);
    background: var(--neutral-card);
}

/* FAQ Question Button */
.faq-unified-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--readable-ink);
    transition: color var(--transition);
}

.faq-unified-question:hover {
    color: var(--forest-authority);
}

.faq-unified-item.open .faq-unified-question {
    color: var(--forest-authority);
}

/* FAQ Icon */
.faq-unified-icon {
    font-size: 18px;
    color: var(--subtle-ui);
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(107, 142, 123, 0.08);
    transition: transform var(--transition), color var(--transition), background var(--transition);
}

.faq-unified-item.open .faq-unified-icon {
    transform: rotate(45deg);
    color: var(--insight-highlight);
    background: rgba(212, 168, 67, 0.12);
}

/* FAQ Answer */
.faq-unified-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
}

.faq-unified-item.open .faq-unified-answer {
    max-height: 280px;
    padding: 0 24px 22px;
}

.faq-unified-answer p {
    font-size: 14px;
    color: var(--subtle-ui);
    line-height: 1.75;
    border-top: 1px solid var(--card-border);
    padding-top: 16px;
    margin: 0;
}

/* ============================================================
   UNIFIED FAQ RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .faq-unified-question {
        padding: 18px 20px;
        font-size: 14px;
    }

    .faq-unified-answer {
        padding: 0 20px;
    }

    .faq-unified-item.open .faq-unified-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 480px) {
    .faq-unified-question {
        padding: 16px 18px;
        font-size: 13.5px;
        gap: 12px;
    }

    .faq-unified-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .faq-unified-answer {
        padding: 0 18px;
    }

    .faq-unified-item.open .faq-unified-answer {
        padding: 0 18px 18px;
    }

    .faq-unified-answer p {
        font-size: 13px;
    }
}

/* ============================================================
   GLOBAL PAGINATION
   Laravel pagination component
   ============================================================ */
nav[role="navigation"],
nav.d-flex.justify-items-center {
    margin-top: 32px;
    width: 100%;
}

nav.d-flex.justify-items-center.justify-content-between {
    align-items: center;
    gap: 18px;
}

nav[role="navigation"] .small,
nav.d-flex.justify-items-center .small {
    color: var(--subtle-ui) !important;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    margin-bottom: 0;
}

nav.d-flex.justify-items-center > div {
    min-width: 0;
}

.pagination {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.page-item {
    list-style: none;
}

.pagination .page-link {
    align-items: center;
    background: var(--neutral-card);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    color: var(--forest-authority);
    display: inline-flex;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    justify-content: center;
    min-height: 38px;
    min-width: 38px;
    padding: 8px 13px;
    text-decoration: none;
    transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    border-radius: 8px;
}

.pagination .page-link:focus {
    box-shadow: 0 0 0 3px rgba(107, 142, 123, 0.2);
    outline: 0;
}

.pagination .page-link:hover {
    background: rgba(107, 142, 123, 0.1);
    border-color: rgba(107, 142, 123, 0.42);
    color: var(--readable-ink);
    box-shadow: 0 6px 18px rgba(11, 59, 47, 0.08);
}

.pagination .page-item.active .page-link {
    background: var(--forest-authority);
    border-color: var(--forest-authority);
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.62);
    border-color: rgba(31, 43, 38, 0.08);
    color: rgba(104, 115, 111, 0.58);
    cursor: not-allowed;
    box-shadow: none;
}

@media (max-width: 576px) {
    nav[role="navigation"],
    nav.d-flex.justify-items-center {
        margin-top: 24px;
    }

    .pagination {
        gap: 6px;
        justify-content: space-between;
        width: 100%;
    }

    .pagination .page-item {
        flex: 1 1 auto;
    }

    .pagination .page-link {
        font-size: 13px;
        min-height: 36px;
        min-width: 36px;
        padding: 8px 11px;
        width: 100%;
    }
}
