/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-muted2 {
  color: var(--paraColor) !important;
}

.bullet-list {
    margin: 1rem 0 1rem 1.6rem;
    padding-left: 0;
    list-style-type: disc;
}

.bullet-list li {
    margin: 0.6rem 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-rw {
  background: var(--primaryColor);
  color: #fff;
  border-radius: var(--radius-full);
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border: none;
  transition: all 0.2s;
}

.btn-rw:hover {
  background: var(--secondaryColor);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(11, 79, 168, 0.4);
}

.btn-rw-outline {
  border: 1.5px solid var(--primaryColor);
  color: var(--primaryColor);
  border-radius: var(--radius-sm);
  font-weight: 600;
  padding: 0.55rem 1.6rem;
  background: #fff;
  transition: all 0.2s;
}

.btn-rw-outline:hover {
  background: var(--primaryColor);
  color: #fff;
}

.btn-send {
  width: 100%;
  background: var(--primaryColor);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px;
  font-weight: 700;
  margin-top: 16px;
  transition: all 0.2s;
}

.btn-send:hover {
  background: var(--primaryColor-dark);
  box-shadow: 0 8px 24px -8px rgba(11, 79, 168, 0.45);
}

.btn-rw-white {
  background: #fff;
  color: var(--primaryColor);
  border-radius: var(--radius-full);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  transition: all 0.2s;
}

.btn-rw-white:hover {
  background: var(--secondaryColor);
  color: #fff;
}

/* ============================================
   NAVBAR & NAVIGATION
   ============================================ */
.rw-nav {
  padding: 10px 0;
  border-bottom: 1px solid #f0eef7;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1050;
}

.rw-nav .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  padding: 0;
  width: 120px;
}

.rw-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: conic-gradient(
    from 210deg,
    #f59e0b 0deg,
    #f59e0b 90deg,
    #003891 180deg,
    #0c3e85 270deg,
    #f59e0b 360deg
  );
  display: inline-block;
  position: relative;
}

.rw-logo-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #fff;
}

.rw-brand-text {
  line-height: 1;
  font-size: 1.15rem;
}

.rw-brand-text small {
  display: block;
  font-size: 10px;
  color: var(--paraColor);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.rw-nav .nav-link {
  color: var(--secondaryColor);
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: color 0.2s;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0.5rem 1.1rem;
  }
}

.rw-nav .nav-link:hover,
.rw-nav .nav-item.show > .nav-link {
  color: var(--primaryColor);
}

.rw-nav .nav-link .chev {
  transition: transform 0.2s;
  font-size: 0.7rem;
}

.rw-nav .nav-item.show > .nav-link .chev {
  transform: rotate(180deg);
}

/* Support Dropdown */
.support-wrapper {
  position: relative;
}

.rw-support-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #f0eef7;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 40px -20px rgba(20, 20, 50, 0.12);
  min-width: 190px;
  padding: 8px 0;
  display: none;
  z-index: 1040;
}

.rw-support-dropdown.open {
  display: block;
}

.rw-support-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  color: var(--secondaryColor);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.15s;
}

.rw-support-dropdown .dropdown-item:hover {
  background: var(--offwhiteColor);
  color: var(--primaryColor);
}

.rw-support-dropdown .dropdown-item i {
  font-size: 1rem;
  color: var(--primaryColor);
}

/* Dropdown Sub-wrapper (nested submenu) */
.dropdown-sub-wrapper {
  position: relative;
}

.rw-sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0;
}

.rw-sub-dropdown .dropdown-item {
  white-space: nowrap;
}

.sub-chevron {
  margin-left: auto;
  font-size: 0.65rem;
  transition: transform 0.2s;
}

.dropdown-sub-wrapper.open > .dropdown-link .sub-chevron {
  transform: rotate(90deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero h1 {
  font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.hero h1 .accent {
  color: var(--primaryColor);
}

.rotating {
  display: inline-block;
  min-height: 1.1em;
  transition: opacity 0.2s;
}

.pill-tabs .pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  margin-right: 0.4rem;
  transition: all 0.2s;
}

.pill-tabs .pill.active {
  background: var(--primaryColor);
  color: #fff;
}

.pill-tabs .pill.outline {
  border: 1.5px solid var(--primaryColor);
  color: var(--primaryColor);
}

.pill-tabs .pill.outline:hover {
  background: var(--offwhiteColor);
}

/* ============================================
   TRANSFER CARD & FORM FIELDS
   ============================================ */
.transfer-card {
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-xl);
  padding: 22px;
  box-shadow: 0 30px 60px -30px rgba(11, 79, 168, 0.2);
}

.transfer-card label {
  font-size: 0.8rem;
  color: var(--paraColor);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.field {
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.2s;
  position: relative;
}

.field input,
.field select {
  border: none;
  outline: none;
  background: transparent;
  font-weight: 700;
  font-size: 1rem;
  width: 100%;
}

/* Custom Select Styling - React Select-like appearance */
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 40px;
  color: var(--secondaryColor);
  font-weight: 600;
  background: linear-gradient(135deg, #fafaff 0%, #fff 100%);
  transition: all 0.2s ease;
}

.field select:hover {
  background: linear-gradient(135deg, #f5f3ff 0%, #fff 100%);
}

.field select option {
  padding: 14px 18px;
  background: #fff;
  color: var(--secondaryColor);
  font-weight: 500;
  border-bottom: 1px solid var(--muted-border-color);
}

.field select option:last-child {
  border-bottom: none;
}

.field select option:hover {
  background: linear-gradient(
    135deg,
    rgba(11, 79, 168, 0.05) 0%,
    rgba(11, 79, 168, 0.02) 100%
  );
  color: var(--primaryColor);
}

.field select option:checked {
  background: linear-gradient(135deg, var(--primaryColor) 0%, #0c3e85 100%);
  color: #fff;
  font-weight: 600;
}

/* Custom dropdown arrow for select */
.currency-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--offwhiteColor);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
}

.currency-chip img {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  object-fit: cover;
}

.fx-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--successSoftColor), 0.08);
  color: #057a55;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  margin: 10px auto;
}

.fx-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--successColor);
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

.summary {
  border-top: 1px dashed var(--muted-border-color);
  margin-top: 14px;
  padding-top: 12px;
}

.summary .row-line {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  color: var(--paraColor);
  font-size: 0.9rem;
}

.summary .total {
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid var(--muted-border-color);
  font-weight: 800;
  font-size: 1rem;
  color: var(--secondaryColor);
}

/* ============================================
   SECTION HEADERS & EYEBROWS
   ============================================ */
.section-title {
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.1rem);
  letter-spacing: -0.02em;
}

.section-title .accent {
  color: var(--primaryColor);
}

.section-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primaryColor);
  background: var(--offwhiteColor);
  padding: 4px 15px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.fcard {
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-lg);
  padding: 26px;
  height: 100%;
  transition: all 0.2s;
}

.fcard:hover {
  border-color: var(--primaryColor);
  box-shadow: 0 18px 40px -25px rgba(11, 79, 168, 0.35);
  transform: translateY(-3px);
}

.fcard .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--offwhiteColor);
  display: grid;
  place-items: center;
  color: var(--primaryColor);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.fcard h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.fcard p {
  color: var(--paraColor);
  margin: 0;
  font-size: 0.975rem;
}

/* ============================================
   LIVE EXCHANGE RATES TABLE
   ============================================ */
.rates-table-wrap {
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(11, 79, 168, 0.15);
}

.rates-table-wrap table {
  margin: 0;
  width: 100%;
}

.rates-table-wrap thead th {
  background: var(--offwhiteColor);
  color: var(--primaryColor);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 14px 18px;
  border: none;
}

.rates-table-wrap tbody td {
  padding: 13px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--muted-border-color);
  vertical-align: middle;
}

.rates-table-wrap tbody tr:last-child td {
  border-bottom: none;
}

.rates-table-wrap tbody tr:hover {
  background: #fdfbff;
}

.rate-flag {
  width: 26px;
  height: 18px;
  border-radius: 3px;
  object-fit: cover;
  margin-right: 8px;
}

.rate-up {
  color: #057a55;
  font-size: 0.8rem;
  font-weight: 700;
}

.rate-down {
  color: #dc2626;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ============================================
   COUNTRY CARDS
   ============================================ */
.country-bg {
  background: linear-gradient(180deg, #faf7ff 0%, #fff 100%);
}

.country-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--secondaryColor);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.15s;
}

.country-card:hover {
  border-color: var(--primaryColor);
  color: var(--primaryColor);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px -10px rgba(11, 79, 168, 0.2);
}

.country-card img {
  width: 26px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  flex: none;
}

/* ============================================
   TIMELINE / HOW IT WORKS
   ============================================ */
.timeline-center-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: rgba(11, 79, 168, 0.25);
  z-index: 1;
  border-radius: 4px;
  pointer-events: none;
  animation: softLineGlow 4s infinite ease-in-out;
  transition: height 0.2s ease;
}

.timeline-center-line::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 180px;
  left: -1px;
  background: linear-gradient(0deg, var(--primaryColor), rgba(11, 79, 168, 0));
  border-radius: 4px;
  opacity: 0.9;
  pointer-events: none;
  animation: glowDownwardSlow 12s cubic-bezier(0.4, 0.15, 0.2, 1) infinite;
}

/* 
      KEYFRAMES: Glow moves from top edge (0) to bottom edge (100% - height)
      So it never goes above or below the timeline line
    */
@keyframes glowDownwardSlow {
  0% {
    top: 0;
    opacity: 0;
  }
  5% {
    opacity: 0.95;
  }
  90% {
    opacity: 0.85;
  }
  95% {
    top: calc(100% - 180px);
    opacity: 0.3;
  }
  100% {
    top: calc(100% - 180px);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes softLineGlow {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.7;
  }
}

/* Timeline item row - alternating zig-zag */
.timeline-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10rem;
  margin-bottom: 0;
  position: relative;
  z-index: 5;
}

/* Left & Right content containers */
.timeline-content {
  flex: 1;
  max-width: 45%;
}

.timeline-icon {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  background: linear-gradient(145deg, var(--whiteColor), var(--offwhiteColor));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px -10px rgba(12, 62, 133, 0.12);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  z-index: 10;
  border: 1px solid rgba(11, 79, 168, 0.2);
}

/* Icons with primary brand color */
.timeline-icon i {
  font-size: 3rem;
  color: var(--primaryColor);
  transition: all 0.3s ease;
}

/* Card glassmorphism with brand colors */
.timeline-card {
  background: var(--whiteColor);
  border-radius: 2rem;
  padding: 1.8rem 1.8rem;
  transition: all 0.35s ease;
  border: 1px solid rgba(11, 79, 168, 0.08);
  box-shadow: var(--card-shadow);
}

.timeline-item:hover .timeline-card {
  transform: translateY(-6px);
  box-shadow: var(--card-hover-shadow);
  border-color: rgba(11, 79, 168, 0.2);
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.04);
  box-shadow: 0 12px 28px -12px rgba(var(--primaryColor), 0.3);
  border-color: var(--primaryColor);
}

.timeline-item:hover .timeline-icon i {
  transform: scale(1.02);
  color: var(--baseColor);
}

/* Step badge using primary brand */
.step-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 0.3rem 1rem;
  background: rgba(var(--primaryColor-rgb), 0.1);
  border-radius: 40px;
  margin-bottom: 1rem;
  color: var(--primaryColor);
}

h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--titleColor);
  margin-bottom: 0.75rem;
}

.timeline-card p {
  color: var(--paraColor);
  line-height: 1.55;
  font-size: 1rem;
}

/* Alternating layout rules - ZIG ZAG PATTERN PRESERVED */
.timeline-item.left-aligned {
  flex-direction: row;
}

.timeline-item.right-aligned {
  flex-direction: row-reverse;
}

/* Header section with brand */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem auto;
}

.section-header h2 {
  font-size: calc(1.8rem + 0.8vw);
  font-weight: 800;
  color: var(--titleColor);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--paraColor);
  font-size: 1.1rem;
}

/* ========= RESPONSIVE BEHAVIOR (MOBILE FIRST, PRESERVES LAYOUT) ========= */
@media (max-width: 992px) {
  .timeline-center-line {
    left: 30px;
    transform: translateX(0);
  }
  .timeline-center-line::before {
    left: -1px;
    height: 140px;
  }
  @keyframes glowDownwardSlow {
    0% {
      top: 0;
      opacity: 0;
    }
    5% {
      opacity: 0.95;
    }
    90% {
      opacity: 0.85;
    }
    95% {
      top: calc(100% - 140px);
      opacity: 0.3;
    }
    100% {
      top: calc(100% - 140px);
      opacity: 0;
    }
  }
  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 1.2rem;
    margin-left: 3rem;
    margin-bottom: 3.5rem;
  }
  .timeline-content {
    max-width: 90%;
    width: 100%;
  }
  .timeline-icon {
    margin-left: -0.5rem;
    width: 85px;
    height: 85px;
  }
  .timeline-icon i {
    font-size: 2.3rem;
  }
  .timeline-card {
    padding: 1.2rem;
  }
  .section-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 640px) {
  .timeline-center-line {
    left: 20px;
  }
  .timeline-center-line::before {
    height: 110px;
  }
  @keyframes glowDownwardSlow {
    0% {
      top: 0;
      opacity: 0;
    }
    5% {
      opacity: 0.95;
    }
    90% {
      opacity: 0.85;
    }
    95% {
      top: calc(100% - 110px);
      opacity: 0.3;
    }
    100% {
      top: calc(100% - 110px);
      opacity: 0;
    }
  }
  .timeline-item {
    margin-left: 2rem;
  }
  .timeline-icon {
    width: 70px;
    height: 70px;
  }
  .timeline-icon i {
    font-size: 1.9rem;
  }
  h3 {
    font-size: 1.4rem;
  }
  .timeline-card {
    padding: 1rem;
  }
}

/* Fix spacing for perfect alignment */
.timeline-container {
  position: relative;
  padding: 0;
}

.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* animation optimization */
.timeline-center-line::before {
  will-change: top, opacity;
}

/* AOS overrides */
[data-aos] {
  transition-timing-function: cubic-bezier(0.2, 0.9, 0.4, 1);
}

/* Additional cross-browser refinement */
.timeline-wrapper {
  overflow: visible !important;
  position: relative;
}

/* Ensure glow moves exactly within boundaries on all devices */
@media (min-width: 993px) {
  .timeline-center-line::before {
    height: 180px;
  }
}

/* Ensure smooth slow animation on all browsers */
.timeline-center-line::before {
  animation-timing-function: cubic-bezier(0.4, 0.15, 0.2, 1);
}

/* ============================================
   SECURITY & TRUST BADGES
   ============================================ */
.badge-card {
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-align: center;
  height: 100%;
  transition: all 0.2s;
}

.badge-card:hover {
  border-color: var(--primaryColor);
  box-shadow: 0 12px 30px -20px rgba(11, 79, 168, 0.3);
  transform: translateY(-2px);
}

.badge-card .badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--offwhiteColor);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-size: 1.5rem;
  color: var(--primaryColor);
}

.badge-card h4 {
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.badge-card p {
  font-size: 0.8rem;
  color: var(--paraColor);
  margin: 0;
}

/* ============================================
   MOBILE APP MOCKUPS
   ============================================ */
.phone-mockup {
  width: 220px;
  height: 400px;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 32px;
  border: 4px solid #2d2d44;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 6px;
  background: #3d3d5c;
  border-radius: 999px;
}

.phone-mockup .screen {
  padding: 40px 16px 20px;
  color: #fff;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.phone-mockup .screen .app-logo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--primaryColor);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: #fff;
}

.phone-mockup .screen .fake-btn {
  background: var(--primaryColor);
  color: #fff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
}

.app-feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
}

.app-feature-item .app-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--offwhiteColor);
  display: grid;
  place-items: center;
  color: var(--primaryColor);
  font-size: 1.1rem;
  flex: none;
}

.app-feature-item h5 {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 2px;
}

.app-feature-item p {
  font-size: 0.82rem;
  color: var(--paraColor);
  margin: 0;
}

/* ============================================
   WALLET SCREENSHOTS SHOWCASE
   ============================================ */
.wallet-screenshots-showcase {
  padding: 40px 0;
}

.phone-mockup-large {
  width: 300px;
  height: 600px;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 40px;
  border: 6px solid #2d2d44;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.phone-mockup-large::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 8px;
  background: #3d3d5c;
  border-radius: 999px;
  z-index: 10;
}

.screen-container {
  height: 100%;
  padding: 50px 12px 20px;
  overflow: hidden;
}

.wallet-real-screenshot {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
}

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

.swiper-wrapper {
  height: auto !important;
}

.wallet-screenshots-swiper {
  height: 100%;
}

.wallet-screenshots-swiper .swiper-slide {
  height: 100%;
}

.wallet-screenshot-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  background: #fff;
}

.screenshot-content {
  height: 100%;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  border-radius: 24px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-header .app-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primaryColor);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #fff;
  flex-shrink: 0;
}

.app-header .app-title {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.screenshot-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}

.balance-card {
  background: linear-gradient(135deg, var(--primaryColor) 0%, #0c3e85 100%);
  border-radius: 16px;
  padding: 16px;
  color: #fff;
}

.balance-card.large {
  padding: 24px 16px;
  text-align: center;
}

.balance-label {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-bottom: 4px;
}

.balance-amount {
  font-size: 1.5rem;
  font-weight: 800;
}

.balance-card.large .balance-amount {
  font-size: 2rem;
}

.balance-sub {
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 4px;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.action-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 0.7rem;
  transition: all 0.2s;
}

.action-item i {
  font-size: 1.2rem;
  color: var(--primaryColor);
}

.wallet-actions {
  display: flex;
  gap: 10px;
}

.wallet-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  transition: all 0.2s;
}

.wallet-btn:hover {
  background: var(--primaryColor);
  border-color: var(--primaryColor);
}

.send-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 0;
}

.form-field label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.form-field .form-value {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
}

.send-btn {
  background: var(--primaryColor);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.send-btn:hover {
  background: var(--secondaryColor);
}

.receive-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.receive-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(11, 79, 168, 0.2);
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: var(--primaryColor);
}

.receive-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.receive-amount {
  color: #fff;
}

/* ============================================
   QR PAYMENT SECTION
   ============================================ */
.qr-card-wrapper {
  max-width: 220px;
  margin: 0 auto;
  border-radius: var(--nrnremit-rounded-lg);
}

.qr-card-inner {
  border: var(--border-thin) var(--solid) var(--muted-border-color);
  border-radius: var(--nrnremit-rounded-lg);
  padding: .975rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.qr-code-container {
  width: 180px;
  height: 180px;
  background: var(--whiteColor);
  border: 2px dashed rgba(var(--primaryColor-rgb), 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.qr-code-icon {
  font-size: 6rem;
  color: var(--primaryColor);
  opacity: 0.85;
}

.qr-corner {
  position: absolute;
  width: 28px;
  height: 28px;
}

.qr-corner-tl {
  top: -2px;
  left: -2px;
  border-top: 4px solid var(--primaryColor);
  border-left: 4px solid var(--primaryColor);
  border-radius: 4px 0 0 0;
}

.qr-corner-tr {
  top: -2px;
  right: -2px;
  border-top: 4px solid var(--primaryColor);
  border-right: 4px solid var(--primaryColor);
  border-radius: 0 4px 0 0;
}

.qr-corner-bl {
  bottom: -2px;
  left: -2px;
  border-bottom: 4px solid var(--primaryColor);
  border-left: 4px solid var(--primaryColor);
  border-radius: 0 0 0 4px;
}

.qr-corner-br {
  bottom: -2px;
  right: -2px;
  border-bottom: 4px solid var(--primaryColor);
  border-right: 4px solid var(--primaryColor);
  border-radius: 0 0 4px 0;
}

.qr-badge {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* ==================== PAGE-SPECIFIC STYLES ==================== */

/* ============================================
   ABOUT PAGE
   ============================================ */
.about_missionCard {
  background: linear-gradient(135deg, #ffffff 0%, #fafbff 100%);
  border: 1px solid rgba(11, 79, 168, 0.08);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about_missionCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(11, 79, 168, 0.25);
  border-color: rgba(11, 79, 168, 0.15);
}

.about_missionCard:hover::before {
  opacity: 1;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.value-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(11, 79, 168, 0.06);
  color: var(--primaryColor);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(11, 79, 168, 0.1);
}

.value-tag:hover {
  background: var(--primaryColor);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px -6px rgba(11, 79, 168, 0.4);
}

.goal-panel {
  text-align: center;
}

.goal-icon-wrapper {
  margin-bottom: 24px;
}

.goal-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primaryColor), var(--baseColor));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2.2rem;
  margin: 0 auto;
  box-shadow: 0 16px 32px -16px rgba(11, 79, 168, 0.5);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 16px 32px -16px rgba(11, 79, 168, 0.5);
  }
  50% { 
    box-shadow: 0 20px 40px -16px rgba(11, 79, 168, 0.7);
  }
}

.goal-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(11, 79, 168, 0.1);
}

.stat-item {
  text-align: center;
  padding: 0 24px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primaryColor);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--paraColor);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(11, 79, 168, 0.2), transparent);
}

.mission-card {
  background: linear-gradient(135deg, #fea237 0%, #ff9500 100%);
  color: #000;
}

/* MVV Card icon color (shared) */
.mission-card .ic,
.vision-card .ic,
.values-card .ic,
.goal-card .ic {
  color: #000;
}

.mission-card h3 {
  color: #000;
  font-weight: 700;
}

.mission-card .about-list li {
  color: #000;
}

.mission-card .about-list li i {
  color: #000;
}

.mission-card:hover {
  border-color: rgba(11, 79, 168, 0.2);
}

.vision-card {
  background: linear-gradient(135deg, #0B4FA8 0%, #1e6acc 100%);
  color: #fff;
}

.vision-card .modern-text {
  color: #fff;
}

.vision-card:hover {
  border-color: rgba(47, 128, 237, 0.2);
}

.values-card {
  background: linear-gradient(135deg, #2E7D32 0%, #43A047 100%);
  color: #fff;
}

.values-card .value-tag {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.values-card .value-tag:hover {
  background: #fff;
  color: #338637;
}

.values-card:hover {
  border-color: rgba(245, 158, 11, 0.2);
}

.goal-card {
  background: linear-gradient(135deg, #234E70 0%, #295e86 100%);
  color: #fff;
}

/* Vision / Values / Goal card h3 (shared) */
.vision-card h3,
.values-card h3,
.goal-card h3 {
  color: #fff;
  font-weight: 700;
}

.goal-card p {
  color: #fff;
  line-height: 1.7;
  font-size: 0.95rem;
}

.goal-card:hover {
  border-color: rgba(156, 39, 176, 0.2);
}

/* ===== MVV SLIDER (Mission / Vision / Values / Goal) ===== */
.mvv-slider {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  padding: 0 56px;          /* room for arrows */
}

.mvv-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.mvv-slide {
  flex: 0 0 calc((100% - 48px) / 3);   /* 3 cards, 2 gaps of 24px */
  min-width: 0;
}

.mvv-slide .about_missionCard {
  height: 100%;
  margin-bottom: 0;
}

/* Arrows */
.mvv-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(11, 79, 168, 0.15);
  background: #fff;
  color: var(--primaryColor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mvv-arrow:hover {
  background: var(--primaryColor);
  color: #fff;
  border-color: var(--primaryColor);
  box-shadow: 0 6px 20px rgba(11, 79, 168, 0.25);
}

.mvv-arrow-prev {
  left: 0;
}

.mvv-arrow-next {
  right: 0;
}

.mvv-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* Responsive: tablet 2 cards, mobile 1 card */
@media (max-width: 991px) {
  .mvv-slide {
    flex: 0 0 calc((100% - 24px) / 2);  /* 2 cards, 1 gap */
  }
}

/* Mobile: 1 card visible */
@media (max-width: 767px) {
  .mvv-slider {
    padding: 0 44px;
  }

  .mvv-slide {
    flex: 0 0 100%;
  }

  .mvv-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .mvv-slider {
    padding: 0 38px;
  }

  .mvv-arrow {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }
}

.about-doc-pane {
  padding: 32px;
}

@media (max-width: 992px) {
  .about_missionCard {
    padding: 24px;
  }
  
  .about-doc-pane {
    padding: 32px;
  }
  
  .goal-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .stat-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(11, 79, 168, 0.2), transparent);
  }
}

@media (max-width: 768px) {
  .goal-icon {
    width: 64px;
    height: 64px;
    font-size: 1.8rem;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
  
  .about_missionCard {
    padding: 20px;
  }
  
  .about-doc-pane {
    padding: 24px;
  }
}

.about_missionCard,
.about-doc-panel {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about_missionCard:nth-child(1) { animation-delay: 0.1s; }
.about_missionCard:nth-child(2) { animation-delay: 0.2s; }
.about_missionCard:nth-child(3) { animation-delay: 0.3s; }

.about_missionCard,
.about-doc-pane,
.value-tag {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-overview-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(11, 79, 168, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.company-overview-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 35px;
  border: 1px solid rgba(11, 79, 168, 0.08);
  position: relative;
  overflow: hidden;
}

.overview-header {
  margin-bottom: 32px;
}

.overview-content {
  color: var(--paraColor);
  line-height: 1.8;
  font-size: 1.05rem;
}

.overview-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(11, 79, 168, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.overview-image-wrapper:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 60px -15px rgba(11, 79, 168, 0.35);
}

.overview-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.overview-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 79, 168, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.management-team-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(11, 79, 168, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.team-header {
  text-align: center;
  margin-bottom: 48px;
}

.team-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.team-subtitle {
  color: var(--paraColor);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.team-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 20px 60px -20px rgba(11, 79, 168, 0.15);
  border: 1px solid rgba(11, 79, 168, 0.08);
  position: relative;
  overflow: hidden;
}

.team-content {
  color: var(--paraColor);
  line-height: 1.8;
  font-size: 1.05rem;
}

.team-content p {
  margin-bottom: 20px;
  position: relative;
}

.team-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.team-stats {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.team-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(11, 79, 168, 0.06);
  border: 1px solid rgba(11, 79, 168, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.team-stat-badge:hover {
  background: var(--primaryColor);
  border-color: var(--primaryColor);
  transform: translateY(-2px);
}

.team-stat-badge:hover .team-stat-icon,
.team-stat-badge:hover .team-stat-text {
  color: #fff;
}

.team-stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primaryColor), var(--baseColor));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.team-stat-text {
  color: var(--primaryColor);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ── Team Content: Lead paragraph ── */
.team-content__lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--headingColor, #1a1f36);
  line-height: 1.7;
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--primaryColor);
}

/* ── Team Content: Pillars grid ── */
.team-content__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 36px;
}

.team-pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.team-pillar__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primaryColor), var(--baseColor));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 6px 16px -6px rgba(var(--primaryColor-rgb), 0.4);
}

.team-pillar__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--headingColor, #1a1f36);
  margin-bottom: 4px;
}

.team-pillar__text {
  font-size: 0.88rem;
  color: var(--paraColor);
  line-height: 1.55;
  margin: 0;
}

/* ── Leadership Section ── */
.leaders-section {
  margin-top: 80px;
}

.leader-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px -25px rgba(var(--primaryColor-rgb), 0.2);
  border: 1px solid rgba(var(--primaryColor-rgb), 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s ease;
  height: 100%;
}

.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(var(--primaryColor-rgb), 0.3);
  text-decoration: none;
  color: inherit;
}

/* Photo area */
.leader-card__photo-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef4ff 0%, #f8faff 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.leader-card__photo-accent {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primaryColor-rgb), 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.leader-card__photo {
  position: relative;
  z-index: 1;
  max-height: 260px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.leader-card:hover .leader-card__photo {
  transform: scale(1.05);
}

/* Body */
.leader-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.leader-card__role {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primaryColor);
  background: rgba(var(--primaryColor-rgb), 0.08);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.leader-card__name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--headingColor, #1a1f36);
  margin-bottom: 12px;
  line-height: 1.3;
}

.leader-card__bio {
  font-size: 0.9rem;
  color: var(--paraColor);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.leader-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primaryColor);
  transition: gap 0.3s ease;
}

.leader-card:hover .leader-card__cta {
  gap: 14px;
}

.leader-card__cta i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.leader-card:hover .leader-card__cta i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .company-overview-card,
  .team-card {
    padding: 32px;
    border-radius: 24px;
  }

  .overview-image-wrapper,
  .team-image-wrapper {
    margin-top: 32px;
  }
}

@media (max-width: 768px) {
  .company-overview-card,
  .team-card {
    padding: 24px;
    border-radius: 20px;
  }

  .overview-content,
  .team-content {
    font-size: 1rem;
  }

  .team-stats {
    flex-direction: column;
  }

  .team-stat-badge {
    width: 100%;
    justify-content: center;
  }

  .team-content__pillars {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .leaders-section {
    margin-top: 56px;
  }

  .leader-card__photo-wrap {
    height: 200px;
  }

  .leader-card__photo {
    max-height: 170px;
  }

  .leader-card__body {
    padding: 22px;
  }
}

/* ============================================
   SERVICE PAGE
   ============================================ */
.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.service-section {
  position: relative;
  overflow: hidden;
}

.service-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(11, 79, 168, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.service-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(11, 79, 168, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.service-header {
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--titleColor);
  margin-bottom: 20px;
}

.service-subtitle {
  color: var(--paraColor);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(11, 79, 168, 0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-image-wrapper {
  position: relative;
  height: 325px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(11, 79, 168, 0.05) 0%, rgba(47, 128, 237, 0.05) 100%);
}

.service-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 79, 168, 0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image-wrapper img {
  transform: scale(1.08);
}

.service-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(11, 79, 168, 0.1), rgba(47, 128, 237, 0.1));
  color: var(--primaryColor);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.service-card-title {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--titleColor);
  margin-bottom: 16px;
}

.service-description {
  color: var(--paraColor);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex: 1;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--paraColor);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(11, 79, 168, 0.05);
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primaryColor), var(--baseColor));
  color: #fff;
  font-size: 0.7rem;
  display: flex;
  flex-shrink: 0;
  font-weight: 700;
  align-items: center;
  justify-content: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primaryColor), var(--baseColor));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:nth-child(2n) .service-badge {
  background: linear-gradient(135deg, rgba(47, 128, 237, 0.1), rgba(11, 79, 168, 0.1));
}

.service-card:nth-child(3n) .service-badge {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 191, 36, 0.1));
  color: #f59e0b;
}

.service-card:nth-child(3n) .service-features li::before {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

@media (max-width: 992px) {
  .service-header {
    margin-bottom: 48px;
  }
  
  .service-image-wrapper {
    height: 180px;
  }
  
  .service-content {
    padding: 24px;
  }
  
  .service-card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .service-header {
    margin-bottom: 36px;
  }
  
  .service-title {
    font-size: 1.75rem;
  }
  
  .service-subtitle {
    font-size: 1rem;
  }
  
  .service-image-wrapper {
    height: 160px;
  }
  
  .service-content {
    padding: 20px;
  }
  
  .service-card-title {
    font-size: 1.1rem;
  }
  
  .service-description {
    font-size: 0.9rem;
  }
}

.service-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }

.service-card,
.service-image-wrapper img,
.service-badge,
.service-features li {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   BANNER SLIDER & HERO (INDEX PAGE)
   ============================================ */
.banner-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 600px;
  z-index: -1;
  overflow: hidden;
}

.banner-slider .swiper {
  width: 100%;
  height: 100%;
}

.banner-slider .swiper-slide {
  position: relative;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
}

.banner-slider .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}

.banner-slider .swiper-slide img {
  z-index: 1;
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.banner-slider-next,
.banner-slider-prev {
  color: white !important;
  width: 50px !important;
  height: 50px !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  z-index: 10 !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.banner-slider-prev {
  left: 20px !important;
}

.banner-slider-next {
  right: 20px !important;
}

.banner-slider-next:hover,
.banner-slider-prev:hover {
  background: rgba(255, 255, 255, 0.4) !important;
}

.banner-slider-next::after,
.banner-slider-prev::after {
  font-size: 20px !important;
  font-weight: bold !important;
}

.banner-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 100%;
}

.banner-overlay-text h1 {
  color: #fff !important;
}

.banner-overlay-text p {
  color: #fff !important;
}

.hero-section h1 {
  text-shadow: none;
  background: #0B4FA8;
  display: inline-block;
  padding: 5px;
  border-radius: 10px;
  font-size: 26px !important;
  color: #fff;
}

.hero-section p {
  color: white !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.calculator-card {
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-xl);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calculator-card .p-4 {
  padding: 30px !important;
}

.calculator-card label {
  color: #6c757d;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: block;
}

.field-modern {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 10px 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.field-modern:focus-within {
  border-color: #0B4FA8;
  box-shadow: 0 0 0 3px rgba(11, 79, 168, 0.1);
}

.field-modern input {
  color: #212529;
  font-size: 18px;
  font-weight: 700;
}

.field-modern input:focus {
  outline: none;
}

.currency-chip-select {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: #212529;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.currency-chip-select:hover {
  border-color: #0B4FA8;
  background: #f8f9fa;
}

.currency-chip-select img {
  border-radius: 3px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  font-size: 14px;
  color: #6c757d;
  font-weight: 500;
}

.summary-line span:last-child {
  color: #0B4FA8;
  font-weight: 700;
  font-size: 16px;
}

/* Agent Locator Page Styles */
:root {
  --al-navy: #042C53;
  --al-navy-mid: #185FA5;
  --al-navy-light: #E6F1FB;
  --al-green: #3B6D11;
  --al-green-mid: #639922;
  --al-green-light: #EAF3DE;
  --al-gray-bg: #F1EFE8;
  --al-gray-mid: #888780;
  --al-white: #ffffff;
}

#alMap {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.al-map-visual {
  position: relative;
  flex: 1;
  min-height: 480px;
  background: var(--al-gray-bg);
  overflow: hidden;
}

.leaflet-container {
  font-family: inherit;
}

.leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 0;
  overflow: hidden;
}

.leaflet-popup-content {
  margin: 0;
  min-width: 240px;
}

.leaflet-popup-tip {
  box-shadow: none;
}

.leaflet-popup-close-button {
  top: 8px !important;
  right: 8px !important;
  width: 24px !important;
  height: 24px !important;
  font-size: 16px !important;
  color: #5f5e5a !important;
  background: #f5f4ed !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  line-height: 1 !important;
  padding: 0 !important;
}

.leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.leaflet-control-zoom a {
  width: 36px !important;
  height: 36px !important;
  line-height: 36px !important;
  font-size: 16px !important;
  color: #3d3d3a !important;
  border: 1px solid rgba(31, 30, 29, 0.15) !important;
  background: #fff !important;
}

.leaflet-control-zoom a:first-child {
  border-radius: 8px 8px 0 0 !important;
}

.leaflet-control-zoom a:last-child {
  border-radius: 0 0 8px 8px !important;
}

/* Agent Locator Markers */
.al-marker-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.al-marker-div .marker-icon {
  width: 36px;
  height: 36px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.al-marker-div .marker-icon i {
  transform: rotate(45deg);
  font-size: 16px;
  color: #fff;
}

.al-marker-div .marker-icon.agent {
  background: var(--al-navy-mid);
}

.al-marker-div .marker-icon.branch {
  background: var(--al-green);
}

.al-marker-div .marker-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--al-navy);
  background: #fff;
  padding: 1px 6px;
  border-radius: 4px;
  border: 1px solid rgba(31, 30, 29, 0.15);
  margin-top: 2px;
  white-space: nowrap;
}

.al-marker-div.active .marker-icon {
  transform: rotate(-45deg) scale(1.25);
}

.al-marker-div .marker-pulse {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid;
  animation: alMarkerPulse 2s ease-out infinite;
  opacity: 0.2;
  pointer-events: none;
}

.al-marker-div .marker-pulse.agent {
  border-color: var(--al-navy-mid);
}

.al-marker-div .marker-pulse.branch {
  border-color: var(--al-green);
}

@keyframes alMarkerPulse {
  0% {
    transform: translate(-4px, -4px) scale(0.6);
    opacity: 0.35;
  }
  100% {
    transform: translate(-4px, -4px) scale(2);
    opacity: 0;
  }
}

/* Agent Locator Popup */
.al-popup-content {
  padding: 14px 16px;
}

.al-popup-content .popup-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--al-navy);
  margin-bottom: 4px;
}

.al-popup-content .popup-addr {
  font-size: 11px;
  color: #5f5e5a;
  margin-bottom: 6px;
}

.al-popup-content .popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
  color: var(--al-green);
  background: var(--al-green-light);
  border-radius: 20px;
  padding: 2px 8px;
  margin-bottom: 8px;
}

.al-popup-content .popup-svcs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.al-popup-content .popup-svc {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--al-navy-light);
  color: var(--al-navy-mid);
}

.al-popup-content .popup-cta {
  width: 100%;
  padding: 7px 0;
  background: var(--al-navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}

.al-popup-content .popup-cta:hover {
  background: #083a6e;
}

/* Agent Locator Misc */
.al-branch-panel-body {
  overscroll-behavior: contain;
}

#alMapSkeleton {
  z-index: 1000;
}

.al-cluster-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(24, 95, 165, 0.12);
  border: 2px solid var(--al-navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--al-navy-mid);
}

.al-top-bar {
  position: relative;
  top: auto;
}

@keyframes alMarkerBounce {
  0% { transform: rotate(-45deg) scale(1); }
  30% { transform: rotate(-45deg) scale(1.4); }
  50% { transform: rotate(-45deg) scale(0.9); }
  70% { transform: rotate(-45deg) scale(1.15); }
  100% { transform: rotate(-45deg) scale(1.25); }
}
.al-marker-div.active .marker-icon {
  animation: alMarkerBounce 0.5s ease forwards;
}

.qr-heading {
  color: var(--secondaryColor);
}

.qr-description {
  color: var(--paraColor);
  font-size: 0.9375rem;
  line-height: 1.65;
  max-width: 380px;
  margin: 0 auto 1.5rem;
}

/* Partner Slider Styles */
.partner-slider-wrapper {
  padding: 0 40px;
  position: relative;
}

.partner-swiper {
  padding: 20px 0;
}

.finance-swiper .swiper-slide {
  margin: 0 10px;
}


.partner-swiper .swiper-slide {
  opacity: 1;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.partner-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

/* .partner-swiper .swiper-slide-active .partner-card {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
} */

.partner-card {
  /* background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-lg);
  padding: 24px; */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06); */
}

.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.partner-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.partner-nav-btn:hover {
  background: var(--primaryColor);
  border-color: var(--primaryColor);
  color: #fff;
}

.partner-prev-btn {
  left: 0;
}

.partner-next-btn {
  right: 0;
}

.partner-nav-btn i {
  font-size: 20px;
  color: #374151;
  transition: color 0.3s ease;
}

.partner-nav-btn:hover i {
  color: #fff;
}

.partner-nav-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.partner-nav-btn.swiper-button-disabled:hover {
  background: #fff;
  border-color: #e5e7eb;
}

.partner-nav-btn.swiper-button-disabled:hover i {
  color: #374151;
}

/* Responsive adjustments for partner slider */
@media (max-width: 991px) {
  .partner-slider-wrapper {
    padding: 0 30px;
  }

  .partner-nav-btn {
    width: 38px;
    height: 38px;
  }

  .partner-nav-btn i {
    font-size: 18px;
  }

  .partner-card {
    height: 90px;
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .partner-slider-wrapper {
    padding: 0 25px;
  }

  .partner-nav-btn {
    width: 36px;
    height: 36px;
  }

  .partner-nav-btn i {
    font-size: 16px;
  }

  .partner-swiper .swiper-slide {
    opacity: 1;
    transform: scale(1);
  }

  .partner-swiper .swiper-slide-active .partner-card {
    transform: translateY(0);
    box-shadow: none;
  }

  .partner-card {
    height: 80px;
    padding: 16px;
  }
}

/* App Store Buttons */
.app-store-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 160px;
  justify-content: center;
}

.app-store-btn i {
  font-size: 1.5rem;
}

.app-store-btn-google {
  background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.app-store-btn-google:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
  background: linear-gradient(135deg, #3367d6 0%, #2d9149 100%);
}

.app-store-btn-apple {
  background: #fff;
  color: var(--secondaryColor);
  border: 2px solid var(--muted-border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.app-store-btn-apple:hover {
  transform: translateY(-2px);
  border-color: var(--primaryColor);
  color: var(--primaryColor);
  box-shadow: 0 6px 20px rgba(11, 79, 168, 0.15);
}

.app-store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.app-store-btn-text span:first-child {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.85;
}

.app-store-btn-text span:last-child {
  font-size: 1rem;
  font-weight: 700;
}

.receive-status {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.qr-scanner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.qr-frame {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 3rem;
  color: var(--primaryColor);
}

.qr-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.qr-btn {
  background: var(--primaryColor);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.qr-btn:hover {
  background: var(--secondaryColor);
}

.transaction-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.transaction-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
}

.t-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(11, 79, 168, 0.2);
  display: grid;
  place-items: center;
  color: var(--primaryColor);
  font-size: 1rem;
  flex-shrink: 0;
}

.t-details {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.t-title {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.t-amount {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.beneficiary-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.beneficiary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
}

.b-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primaryColor);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.b-details {
  flex: 1;
}

.b-name {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.b-bank {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.add-beneficiary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(11, 79, 168, 0.1);
  border: 1px dashed var(--primaryColor);
  border-radius: 12px;
  padding: 12px;
  color: var(--primaryColor);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.add-beneficiary:hover {
  background: rgba(11, 79, 168, 0.2);
}

.confirmation-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px;
  text-align: center;
}

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--successColor);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.8rem;
}

.success-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.success-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

.detail-row span:first-child {
  color: rgba(255, 255, 255, 0.6);
}

.detail-row span:last-child {
  color: #fff;
  font-weight: 600;
}

.confirm-btn {
  background: var(--primaryColor);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.confirm-btn:hover {
  background: var(--secondaryColor);
}

.topup-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  text-align: center;
}

.topup-amount {
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

.topup-methods {
  display: flex;
  gap: 8px;
}

.method-item {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
}

.method-item i {
  font-size: 1.2rem;
  color: var(--primaryColor);
}

.topup-btn {
  background: var(--primaryColor);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.topup-btn:hover {
  background: var(--secondaryColor);
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px;
  text-align: center;
}

.profile-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(11, 79, 168, 0.2);
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: var(--primaryColor);
}

.profile-name {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.profile-email {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.profile-menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.menu-item i {
  color: var(--primaryColor);
}

/* Wallet Info Content */
.wallet-info-content {
  padding: 20px;
}

.wallet-feature-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--secondaryColor);
  margin-bottom: 16px;
  line-height: 1.2;
}

.wallet-feature-desc {
  font-size: 1rem;
  color: var(--paraColor);
  line-height: 1.6;
  margin-bottom: 24px;
}

.wallet-feature-nav {
  display: flex;
  gap: 12px;
}

.nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--offwhiteColor);
  border: 1px solid var(--muted-border-color);
  color: var(--primaryColor);
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s;
}

.nav-btn:hover {
  background: var(--primaryColor);
  color: #fff;
  border-color: var(--primaryColor);
  transform: scale(1.05);
}

.wallet-pagination {
  bottom: 20px !important;
}

.wallet-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  width: 8px;
  height: 8px;
}

.wallet-pagination .swiper-pagination-bullet-active {
  background: var(--primaryColor);
  width: 20px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 991px) {
  .wallet-screenshots-showcase .row {
    flex-direction: column;
  }

  .wallet-screenshots-showcase .col-lg-5 {
    order: 1 !important;
  }

  .wallet-screenshots-showcase .col-lg-7 {
    order: 2 !important;
  }

  .phone-mockup-large {
    width: 260px;
    height: 520px;
  }

  .wallet-info-content {
    text-align: center;
    padding: 30px 20px;
  }

  .wallet-feature-nav {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .phone-mockup-large {
    width: 240px;
    height: 480px;
  }

  .wallet-feature-title {
    font-size: 1.3rem;
  }

  .wallet-feature-desc {
    font-size: 0.9rem;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  transition: all 0.2s;
}

.testimonial-card:hover {
  border-color: var(--primaryColor);
  box-shadow: 0 16px 36px -22px rgba(11, 79, 168, 0.3);
}

.testimonial-card .stars {
  color: var(--warningColor);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.testimonial-card .quote {
  color: var(--paraColor);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.5;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-card .author .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--offwhiteColor);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--primaryColor);
  font-size: 0.9rem;
}

.testimonial-card .author .name {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial-card .author .loc {
  font-size: 0.75rem;
  color: var(--paraColor);
}

/* ============================================
   TESTIMONIALS SLIDER
   ============================================ */
.testimonials-slider-wrapper {
    padding: 0 40px;
}

.testimonials-swiper {
    padding: 20px 0;
}

.testimonials-swiper .swiper-slide {
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.testimonials-swiper .swiper-slide-active .testimonial-card {
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
}

.testimonials-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonials-nav-btn:hover {
    background: var(--primaryColor);
    border-color: var(--primaryColor);
    color: #fff;
}

.testimonials-prev-btn {
    left: 0;
}

.testimonials-next-btn {
    right: 0;
}

.testimonials-nav-btn i {
    font-size: 20px;
    color: #374151;
    transition: color 0.3s ease;
}

.testimonials-nav-btn:hover i {
    color: #fff;
}

.testimonials-nav-btn.swiper-button-disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}

.testimonials-nav-btn.swiper-button-disabled:hover {
    background: #fff;
    border-color: #e5e7eb;
}

.testimonials-nav-btn.swiper-button-disabled:hover i {
    color: #374151;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .testimonials-slider-wrapper {
        padding: 0 30px;
    }

    .testimonials-nav-btn {
        width: 38px;
        height: 38px;
    }

    .testimonials-nav-btn i {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .testimonials-slider-wrapper {
        padding: 0 25px;
    }

    .testimonials-nav-btn {
        width: 36px;
        height: 36px;
    }

    .testimonials-nav-btn i {
        font-size: 16px;
    }

    .testimonials-swiper .swiper-slide {
        opacity: 1;
        transform: scale(1);
    }

    .testimonials-swiper .swiper-slide-active .testimonial-card {
        transform: translateY(0);
        box-shadow: none;
    }
}

/* ============================================
   CTA BANNER & PARTNERS
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, #003891, #0c3e85);
  border-radius: var(--radius-2xl);
  padding: 45px;
  color: #fff;
}

.cta-banner h2 {
  font-weight: 900;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: #fff;
}

.cta-banner .btn-rw-white {
  white-space: nowrap;
}

.app-store-btns img {
  height: 42px;
  border-radius: 8px;
  transition: transform 0.2s;
}

.app-store-btns img:hover {
  transform: translateY(-2px);
}

/* Partner Logos */
.partner-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px 40px;
}

.partner-logo {
  height: 36px;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: all 0.3s;
  font-weight: 800;
  font-size: 1.1rem;
  color: #999;
  display: flex;
  align-items: center;
  gap: 6px;
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  color: var(--secondaryColor);
}

.partner-logo .pl-dot {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  flex: none;
}

/* ============================================
   RECEIVE OPTION CARDS
   ============================================ */
.receive-option-card {
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-xl);
  padding: 28px;
  height: 100%;
  transition: all 0.3s;
  cursor: pointer;
}

.receive-option-card:hover {
  border-color: var(--primaryColor);
  box-shadow: 0 20px 50px -25px rgba(11, 79, 168, 0.3);
  transform: translateY(-4px);
}

.receive-option-card.active {
  border-color: var(--primaryColor);
  background: linear-gradient(
    135deg,
    rgba(11, 79, 168, 0.05) 0%,
    rgba(11, 79, 168, 0.02) 100%
  );
  box-shadow: 0 20px 50px -25px rgba(11, 79, 168, 0.25);
}

.receive-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--offwhiteColor);
  display: grid;
  place-items: center;
  color: var(--primaryColor);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.receive-option-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.receive-option-card p {
  color: var(--paraColor);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--paraColor);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.feature-list li i {
  color: var(--successColor);
  font-size: 0.9rem;
}

/* Bank Cards */
.bank-card {
  background: linear-gradient(145deg, #fff 0%, #fafaff 100%);
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.bank-card:hover {
  border-color: var(--primaryColor);
  box-shadow: 0 24px 50px -20px rgba(11, 79, 168, 0.25);
  transform: translateY(-6px);
}

.bank-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--offwhiteColor) 0%, #fff 100%);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--primaryColor);
  border: 1px solid rgba(11, 79, 168, 0.1);
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px -8px rgba(11, 79, 168, 0.15);
}

.bank-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.bank-card:hover .bank-logo {
  color: #fff;
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 8px 20px -10px rgba(11, 79, 168, 0.4);
}

.bank-card p {
  color: var(--paraColor);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  transition: color 0.35s ease;
}

.bank-card:hover p {
  color: var(--secondaryColor);
}

.bank-card .bank-type {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.bank-card .bank-type.bank {
  background: rgba(11, 79, 168, 0.08);
  color: var(--primaryColor);
}

.bank-card .bank-type.wallet {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.bank-card .bank-type.more {
  background: rgba(245, 158, 11, 0.08);
  color: #f59e0b;
}

/* ========== CAREERS STYLES ========== */

/* ---------- Search Filter Bar ---------- */
.search-filter-bar {
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 8px 24px rgba(11, 79, 168, 0.08);
}

.search-filter-bar .field {
  margin-top: 0;
  padding: 0;
}

.search-filter-bar .field i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primaryColor);
  pointer-events: none;
}

.search-filter-bar input,
.search-filter-bar select {
  padding-right: 40px;
}

.search-filter-bar .text-md-end {
  padding: 11px 0 11px 10px;
}

/* .search-filter-bar .select2-container--default .select2-selection--single .select2-selection__arrow {
  display: none;
} */

/* ---------- Job Cards ---------- */
.job-card {
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.job-card:hover {
  border-color: var(--primaryColor);
  box-shadow: 0 16px 40px -20px rgba(11, 79, 168, 0.25);
  transform: translateY(-4px);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.job-header h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondaryColor);
  margin: 0 0 4px 0;
}

.job-header p {
  font-size: 0.85rem;
  color: var(--paraColor);
}

.job-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.job-tag.engineering {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}

.job-tag.product {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.job-tag.support {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.job-tag.compliance {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.job-tag.design {
  background: rgba(236, 72, 153, 0.1);
  color: #ec4899;
}

.job-tag.marketing {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

.job-card p {
  color: var(--paraColor);
  font-size: 0.9rem;
  line-height: 1.6;
  flex-grow: 1;
}

.job-requirements {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-requirements span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondaryColor);
  background: var(--offwhiteColor);
  padding: 6px 12px;
  border-radius: var(--radius-md);
}

.job-requirements span i {
  color: var(--primaryColor);
  font-size: 0.9rem;
}

.job-footer {
  display: flex;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--muted-border-color);
}

.job-footer .btn {
  flex: 1;
  font-size: 0.85rem;
  padding: 10px 16px;
}

/* ---------- Internship Cards ---------- */
.internship-card {
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.internship-card:hover {
  border-color: var(--primaryColor);
  box-shadow: 0 16px 40px -20px rgba(11, 79, 168, 0.25);
  transform: translateY(-4px);
}

.internship-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #7c3aed, #0c3e85);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.internship-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(12, 62, 133, 0.1));
  display: grid;
  place-items: center;
  color: var(--primaryColor);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.internship-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondaryColor);
  margin: 0 0 8px 0;
}

.internship-card p {
  color: var(--paraColor);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.internship-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--muted-border-color);
  border-bottom: 1px solid var(--muted-border-color);
}

.internship-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondaryColor);
}

.internship-meta span i {
  color: var(--primaryColor);
  font-size: 0.9rem;
}

.internship-card .btn {
  margin-top: 16px;
}

/* ---------- Benefit Cards ---------- */
.benefit-card {
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.benefit-card:hover {
  border-color: var(--primaryColor);
  box-shadow: 0 16px 40px -20px rgba(11, 79, 168, 0.25);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--offwhiteColor);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--primaryColor);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: var(--primaryColor);
  color: #fff;
}

.benefit-card h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--secondaryColor);
  margin: 0 0 8px 0;
}

.benefit-card p {
  color: var(--paraColor);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* ---------- Career Details Page ---------- */
.career-details-header {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(12, 62, 133, 0.05));
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 32px;
  border: 1px solid rgba(124, 58, 237, 0.1);
}

.career-details-header h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--secondaryColor);
  margin: 0 0 12px 0;
}

.career-details-header .job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.career-details-header .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondaryColor);
  background: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--muted-border-color);
}

.career-details-header .meta-item i {
  color: var(--primaryColor);
}

.career-details-section {
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.career-details-section h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondaryColor);
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--offwhiteColor);
}

.career-details-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.career-details-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: var(--paraColor);
  font-size: 0.95rem;
  line-height: 1.6;
}

.career-details-section ul li i {
  color: var(--primaryColor);
  font-size: 0.9rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.career-details-section ul li::before {
  content: "•";
  color: var(--primaryColor);
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 8px;
}

.sticky-apply-sidebar {
  position: sticky;
  top: 100px;
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(11, 79, 168, 0.08);
}

.sticky-apply-sidebar h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondaryColor);
  margin: 0 0 16px 0;
}

.related-job-card {
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 12px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.related-job-card:hover {
  border-color: var(--primaryColor);
  background: rgba(124, 58, 237, 0.02);
  transform: translateX(4px);
}

.related-job-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--secondaryColor);
  margin: 0 0 6px 0;
}

.related-job-card p {
  font-size: 0.8rem;
  color: var(--paraColor);
  margin: 0;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 768px) {
  .search-filter-bar {
    padding: 16px;
  }
  
  .job-header {
    flex-direction: column;
  }
  
  .job-footer {
    flex-direction: column;
  }
  
  .job-footer .btn {
    width: 100%;
  }
  
  .internship-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .career-details-header {
    padding: 24px;
  }
  
  .career-details-header .job-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .sticky-apply-sidebar {
    position: static;
    margin-top: 24px;
  }
}


/* ========== NEWS BLOG STYLES ========== */

/* ---------- SEARCH BAR ---------- */
.search-bar {
  display: flex;
  align-items: center;
  background: var(--whiteColor);
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-sm);
  padding: 0 1.2rem;
  gap: 0.6rem;
  max-width: 380px;
  width: 100%;
  transition: var(--transition-light);
}
.search-bar:focus-within {
  border-color: var(--primaryColor);
  box-shadow: 0 0 0 3px rgba(var(--primaryColor-rgb), 0.08);
}
.search-bar svg {
  flex-shrink: 0;
  color: var(--mutedColor);
}
.search-bar input {
  border: none;
  outline: none;
  font-family: var(--bodyFont);
  font-size: 0.875rem;
  width: 100%;
  background: transparent;
  color: var(--titleColor);
  padding: 0;
  height: 2.975rem;
}
.search-bar input::placeholder {
  color: var(--mutedColor);
}

/* ---------- CATEGORY TABS ---------- */
.category-tabs .btn {
  border-radius: var(--radius-full);
  border: 1px solid var(--muted-border-color);
  background: var(--whiteColor);
  color: var(--optionalColor);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.5rem 1.2rem;
  transition: var(--transition-light);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.category-tabs .btn:hover {
  border-color: var(--primaryColor);
  color: var(--primaryColor);
  background: rgba(var(--primaryColor-rgb), 0.03);
}
.category-tabs .btn.active {
  background: var(--primaryColor);
  color: var(--whiteColor);
  border-color: var(--primaryColor);
  font-weight: 600;
}
.tab-count {
  font-size: 0.75rem;
  background: rgba(0,0,0,0.05);
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 600;
}
.btn.active .tab-count {
  background: rgba(255,255,255,0.2);
}

/* ---------- FEATURED CARD ---------- */
.featured-card {
  background: var(--whiteColor);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  border: 1px solid var(--muted-border-color);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-wrap: wrap;
}
.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  border-color: rgba(var(--primaryColor-rgb), 0.15);
}
.featured-card__image {
  background: #eef3fc;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.featured-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-card:hover .featured-card__image img {
  transform: scale(1.04);
}
.featured-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  background: var(--primaryColor);
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 5px 14px;
  border-radius: 30px;
  letter-spacing: 0.4px;
  z-index: 2;
}
.featured-card__body {
  padding: 1.8rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-meta {
  font-size: 0.75rem;
  color: var(--mutedColor);
}
.category-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--primaryColor);
  border-radius: 50%;
  margin-right: 4px;
}
.featured-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--titleColor);
  line-height: 1.3;
}
.featured-excerpt {
  font-size: 0.875rem;
  color: var(--paraColor);
}
.author-avatar {
  width: 32px;
  height: 32px;
  background: var(--offwhiteColor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--primaryColor);
}
.author-name {
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--titleColor);
}
.read-time {
  font-size: 0.75rem;
  color: var(--mutedColor);
}

/* ---------- ARTICLE CARDS ---------- */
.article-card {
  background: var(--whiteColor);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.03);
  border: 1px solid var(--muted-border-color);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.07);
  border-color: rgba(var(--primaryColor-rgb), 0.2);
}
.article-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #eef3fc;
}
.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card:hover .article-card__image img {
  transform: scale(1.04);
}
.article-card__category {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--primaryColor);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 30px;
  letter-spacing: 0.3px;
  z-index: 2;
}
.article-card__body {
  padding: 1.2rem 1.3rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-meta {
  font-size: 0.75rem;
  color: var(--mutedColor);
}
.article-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--titleColor);
  line-height: 1.35;
}
.article-excerpt {
  font-size: 0.875rem;
  color: var(--paraColor);
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--primaryColor);
  text-decoration: none;
  transition: gap 0.2s;
  margin-top: auto;
}
.article-card:hover .read-more {
  gap: 0.6rem;
}

/* ---------- SIDEBAR ---------- */
.sidebar-sticky {
  position: sticky;
  top: 100px;
}
.sidebar-widget {
  background: var(--whiteColor);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--muted-border-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.widget-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--titleColor);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.widget-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--muted-border-color);
}
.sidebar-news-item {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-light);
}
.sidebar-news-item:hover .sidebar-title {
  color: var(--primaryColor);
}
.sidebar-thumb {
  width: 58px;
  height: 50px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #eef3fc;
  flex-shrink: 0;
}
.sidebar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar-title {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--titleColor);
  line-height: 1.35;
  transition: color 0.2s;
}
.sidebar-date {
  font-size: 0.7rem;
  color: var(--mutedColor);
}
.tag {
  background: #f4f7fd;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--optionalColor);
  text-decoration: none;
  transition: var(--transition-light);
  display: inline-block;
}
.tag:hover {
  background: rgba(var(--primaryColor-rgb), 0.08);
  color: var(--primaryColor);
}

/* ---------- PAGINATION ---------- */
.pagination-wrap .btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--muted-border-color);
  background: var(--whiteColor);
  color: var(--optionalColor);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: var(--transition-light);
}
.pagination-wrap .btn:hover {
  border-color: var(--primaryColor);
  color: var(--primaryColor);
}
.pagination-wrap .btn.active {
  background: var(--primaryColor);
  color: white;
  border-color: var(--primaryColor);
}

/* ---------- RESPONSIVE FINE TUNING ---------- */
@media (max-width: 767.98px) {
  .featured-card {
    flex-direction: column;
  }
  .featured-card__image {
    min-height: 220px;
  }
  .sidebar-sticky {
    position: static;
  }
}

/* Blog Search Input */
.blog-search-input {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-search-input i {
  position: absolute;
  left: 16px;
  color: var(--mutedColor);
  font-size: 1.1rem;
  z-index: 5;
}

.blog-search-input input {
  padding-left: 48px;
  height: 52px;
  border: 1.5px solid var(--muted-border-color);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: #fff;
}

.blog-search-input input:focus {
  border-color: var(--primaryColor);
  box-shadow: 0 0 0 4px rgba(11, 79, 168, 0.08);
  outline: none;
}

.blog-search-input input::placeholder {
  color: var(--mutedColor);
}

/* Category Badges */
.category-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.category-badge.company-news {
  background: linear-gradient(135deg, rgba(11, 79, 168, 0.1) 0%, rgba(12, 62, 133, 0.08) 100%);
  color: var(--primaryColor);
}

.category-badge.financial-tips {
  background: linear-gradient(135deg, rgba(12, 97, 42, 0.1) 0%, rgba(6, 78, 59, 0.08) 100%);
  color: var(--successColor);
}

.category-badge.exchange-updates {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(180, 83, 9, 0.08) 100%);
  color: var(--warningColor);
}

.category-badge.nrn-community {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(88, 28, 135, 0.08) 100%);
  color: #7c3aed;
}

/* Featured News Card */
.featured-news-card {
  background: #fff;
  border: 1.5px solid var(--muted-border-color);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px -20px rgba(11, 79, 168, 0.15);
  transition: all 0.4s ease;
}

.featured-news-card:hover {
  border-color: var(--primaryColor);
  box-shadow: 0 30px 70px -25px rgba(11, 79, 168, 0.25);
  transform: translateY(-4px);
}

.featured-news-image {
  background: linear-gradient(135deg, var(--offwhiteColor) 0%, #e8f0fe 100%);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--primaryColor) 0%, var(--baseColor) 100%);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 20px -8px rgba(11, 79, 168, 0.5);
  z-index: 10;
}

.featured-icon {
  font-size: 5rem;
  color: var(--primaryColor);
  opacity: 0.15;
  transition: all 0.4s ease;
}

.featured-news-card:hover .featured-icon {
  opacity: 0.25;
  transform: scale(1.05);
}

.featured-news-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.featured-news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.meta-divider {
  color: var(--muted-border-color);
  font-size: 0.8rem;
}

.date-meta,
.read-time {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--paraColor);
  font-size: 0.85rem;
  font-weight: 500;
}

.date-meta i,
.read-time i {
  color: var(--primaryColor);
  font-size: 0.9rem;
}

.featured-news-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--secondaryColor);
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.featured-news-excerpt {
  color: var(--paraColor);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
}

.featured-news-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--offwhiteColor);
  border-radius: var(--radius-lg);
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primaryColor) 0%, var(--baseColor) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--secondaryColor);
}

.author-role {
  font-size: 0.8rem;
  color: var(--paraColor);
  font-weight: 500;
}

.featured-news-btn {
  align-self: flex-start;
  padding: 14px 28px;
  font-size: 0.95rem;
}

/* Blog Card Modern */
.blog-card-modern {
  background: #fff;
  border: 1.5px solid var(--muted-border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px -15px rgba(11, 79, 168, 0.1);
}

.blog-card-modern:hover {
  border-color: var(--primaryColor);
  box-shadow: 0 20px 50px -20px rgba(11, 79, 168, 0.2);
  transform: translateY(-4px);
}

.blog-card-image {
  background: linear-gradient(135deg, var(--offwhiteColor) 0%, #e8f0fe 100%);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.blog-card-icon {
  font-size: 3.5rem;
  color: var(--primaryColor);
  opacity: 0.15;
  transition: all 0.3s ease;
}

.blog-card-modern:hover .blog-card-icon {
  opacity: 0.25;
  transform: scale(1.08);
}

.blog-card-image .category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
}

.blog-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondaryColor);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.blog-card-modern:hover .blog-card-title {
  color: var(--primaryColor);
}

.blog-card-excerpt {
  color: var(--paraColor);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--muted-border-color);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--paraColor);
  font-size: 0.8rem;
  font-weight: 500;
}

.meta-item i {
  color: var(--primaryColor);
  font-size: 0.85rem;
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.author-avatar-small {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--offwhiteColor);
  display: grid;
  place-items: center;
  color: var(--primaryColor);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-name-small {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondaryColor);
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primaryColor);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  margin-top: auto;
}

.blog-card-link:hover {
  color: var(--baseColor);
  gap: 10px;
}

.blog-card-link i {
  transition: transform 0.2s ease;
}

.blog-card-link:hover i {
  transform: translateX(4px);
}

/* Pagination */
.pagination-wrapper {
  margin-top: 40px;
}

.pagination .page-link {
  border: 1.5px solid var(--muted-border-color);
  color: var(--secondaryColor);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 16px;
  margin: 0 4px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  background: #fff;
}

.pagination .page-link:hover {
  border-color: var(--primaryColor);
  color: var(--primaryColor);
  background: var(--offwhiteColor);
}

.pagination .page-item.active .page-link {
  background: linear-gradient(135deg, var(--primaryColor) 0%, var(--baseColor) 100%);
  border-color: var(--primaryColor);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(11, 79, 168, 0.4);
}

.pagination .page-item.disabled .page-link {
  color: var(--mutedColor);
  border-color: var(--muted-border-color);
  background: #fafafa;
}

.load-more-btn {
  padding: 14px 32px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  background: var(--primaryColor);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -8px rgba(11, 79, 168, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .featured-news-card {
    flex-direction: column;
  }
  
  .featured-news-image {
    height: 200px;
  }
  
  .featured-news-content {
    padding: 24px;
  }
  
  .featured-news-title {
    font-size: 1.4rem;
  }
  
  .blog-category-tabs {
    justify-content: center !important;
  }
  
  .blog-search-input input {
    height: 48px;
  }
}

@media (max-width: 768px) {
  .blog-filter-bar .row {
    flex-direction: column;
  }
  
  .blog-category-tabs {
    justify-content: flex-start !important;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    flex-wrap: nowrap !important;
  }
  
  .blog-category-tabs .pill {
    flex-shrink: 0;
  }
  
  .featured-news-title {
    font-size: 1.25rem;
  }
  
  .featured-news-excerpt {
    font-size: 0.95rem;
  }
  
  .blog-card-title {
    font-size: 1.05rem;
  }
  
  .blog-card-content {
    padding: 20px;
  }
  
  .pagination .page-link {
    padding: 8px 12px;
    font-size: 0.85rem;
    margin: 0 2px;
  }
}

@media (max-width: 576px) {
  .featured-news-image {
    height: 160px;
  }
  
  .featured-icon {
    font-size: 3.5rem;
  }
  
  .featured-news-content {
    padding: 20px;
  }
  
  .featured-news-author {
    padding: 12px;
  }
  
  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .blog-card-image {
    height: 140px;
  }
  
  .blog-card-icon {
    font-size: 2.5rem;
  }
  
  .blog-card-content {
    padding: 16px;
  }
  
  .load-more-btn {
    width: 100%;
  }
}

/* ==================== LEGAL PAGE STYLES ==================== */

/* Quick Navigation Card */
.legal-nav-card {
  background: linear-gradient(135deg, var(--primaryColor) 0%, var(--baseColor) 100%);
  border-radius: var(--nrnremit-rounded-lg);
  padding: 16px 28px;
  position: sticky;
  top: 10px;
  z-index: 10000;
}

/* Quick Navigation Toggle Button (Mobile/Tablet) */
.quick-nav-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primaryColor) 0%, #0c3e85 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(11, 79, 168, 0.25);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  justify-content: center;
  letter-spacing: 0.3px;
}

.quick-nav-toggle i {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.quick-nav-toggle.active i {
  transform: rotate(90deg);
}

/* Close Button inside Sidenav */
.quick-nav-close {
  display: none;
  position: absolute;
  top: 0;
  right: 0px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: var(--nrnremit-rounded-md);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 20;
}

.quick-nav-close:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quick-nav-close:active {
  transform: rotate(90deg) scale(0.95);
}

/* Backdrop Overlay */
.quick-nav-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quick-nav-backdrop.active {
  display: block;
  opacity: 1;
}

.legal-nav-header {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  /* scroll-collapse transitions (migrated from privacy-policy.html) */
  will-change: max-height, opacity, margin-bottom, padding-bottom;
  transition:
    max-height     0.32s cubic-bezier(0.4, 0, 0.2, 1),
    opacity        0.28s cubic-bezier(0.4, 0, 0.2, 1),
    margin-bottom  0.32s cubic-bezier(0.4, 0, 0.2, 1),
    padding-bottom 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 80px;
  overflow: hidden;
}

.legal-nav-header i {
  font-size: 1rem;
  opacity: 0.95;
}

.legal-nav-links {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

.legal-nav-links::-webkit-scrollbar {
  display: none;
}

/* Slider wrapper for arrows */
.legal-nav-slider-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

/* Slider arrows */
.slider-arrow {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s ease, background 0.2s ease,
              transform 0.2s ease, box-shadow 0.2s ease !important;
  font-size: 0.9rem;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.slider-arrow:focus-visible {
  outline: 2px solid rgba(255,255,255,0.8);
  outline-offset: 2px;
}
.slider-arrow.qn-hidden {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: scale(0.85) !important;
}

/* Fix scroll offset for anchor links */
.legal-card {
  scroll-margin-top: 120px;
}

.legal-nav-links a {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.12);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.35px;
}

.legal-nav-links a:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Terms Card */
.legal-card {
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-xl);
  margin-bottom: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px -15px rgba(11, 79, 168, 0.08);
}

.legal-card:hover {
  border-color: rgba(11, 79, 168, 0.2);
  box-shadow: 0 20px 50px -20px rgba(11, 79, 168, 0.15);
  transform: translateY(-3px);
}

.legal-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  background: linear-gradient(135deg, var(--offwhiteColor) 0%, #f0f4ff 100%);
  border-bottom: 1px solid var(--muted-border-color);
}

.legal-number {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primaryColor) 0%, var(--baseColor) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -8px rgba(11, 79, 168, 0.4);
}

.legal-number.important {
  background: linear-gradient(135deg, var(--primaryColor) 0%, #0a2d6e 100%);
}

.legal-number.warning {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

.legal-number.contact {
  background: linear-gradient(135deg, var(--successColor) 0%, #064e3b 100%);
}

.legal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--titleColor);
  margin: 0;
  flex: 1;
}

.legal-badge {
  background: linear-gradient(135deg, var(--primaryColor) 0%, var(--baseColor) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px -6px rgba(11, 79, 168, 0.4);
}

.legal-badge.warning {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  box-shadow: 0 4px 12px -6px rgba(220, 38, 38, 0.4);
}

.legal-card-body {
  padding: 24px 28px;
}

.legal-card-body p {
  color: var(--paraColor);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-card-body p strong {
  color: var(--secondaryColor);
}

.legal-card-body p:last-child {
  margin-bottom: 0;
}

/* Important Card Variant */
.important-card {
  border-color: rgba(11, 79, 168, 0.3);
  background: linear-gradient(135deg, #fff 0%, rgba(11, 79, 168, 0.02) 100%);
}

.important-card:hover {
  border-color: var(--primaryColor);
  box-shadow: 0 20px 50px -20px rgba(11, 79, 168, 0.2);
}

/* Warning Card Variant */
.warning-card {
  border-color: rgba(220, 38, 38, 0.3);
  background: linear-gradient(135deg, #fff 0%, rgba(220, 38, 38, 0.02) 100%);
}

.warning-card:hover {
  border-color: #dc2626;
  box-shadow: 0 20px 50px -20px rgba(220, 38, 38, 0.15);
}

/* Contact Card Variant */
.contact-card {
  border-color: rgba(12, 97, 42, 0.3);
  background: linear-gradient(135deg, #fff 0%, rgba(var(--successSoftColor), 0.02) 100%);
}

.contact-card:hover {
  border-color: var(--successColor);
  box-shadow: 0 20px 50px -20px rgba(12, 97, 42, 0.15);
}

.contact-card .contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--offwhiteColor);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-size: 1.5rem;
  color: var(--primaryColor);
}

.contact-card h4 {
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.contact-info-section .fcard h4 {
  margin-bottom: 5px;
}

.contact-info-section .fcard p {
  line-height: 1;
}

/* Support Option Cards */
.support-option-card {
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
  cursor: pointer;
}

.support-option-card:hover {
  border-color: var(--primaryColor);
  box-shadow: 0 20px 50px -25px rgba(11, 79, 168, 0.3);
  transform: translateY(-4px);
}

.support-option-card .support-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--offwhiteColor);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
  color: var(--primaryColor);
  transition: all 0.3s;
}

.support-option-card:hover .support-icon {
  background: var(--primaryColor);
  color: #fff;
}

.support-option-card h4 {
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--secondaryColor);
}

.support-option-card p {
  color: var(--paraColor);
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.5;
}

/* Terms List */
.legal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.legal-list li {
  /* display: flex;
  align-items: flex-start; */
  gap: 12px;
  color: var(--paraColor);
  font-size: 0.93rem;
  line-height: 1.6;
  margin-bottom: 10px;
  padding: 8px 0;
  list-style: disc;
}

.legal-list li:last-child {
  margin-bottom: 0;
}

.legal-list li i {
  color: var(--primaryColor);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-card .legal-list li i {
  color: #dc2626;
}

/* Terms Highlight */
.legal-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(11, 79, 168, 0.08) 0%, rgba(11, 79, 168, 0.03) 100%);
  border-left: 4px solid var(--primaryColor);
  padding: 14px 18px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 16px;
}

.legal-highlight i {
  color: var(--primaryColor);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.legal-highlight span {
  color: var(--secondaryColor);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}

/* Terms Info */
.legal-info {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.03) 100%);
  border-left: 4px solid var(--warningColor);
  padding: 14px 18px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-top: 16px;
}

.legal-info i {
  color: var(--warningColor);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.legal-info span {
  color: var(--secondaryColor);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}

/* Terms Link */
.legal-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primaryColor);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 18px;
  background: var(--offwhiteColor);
  border-radius: var(--radius-md);
  transition: all 0.2s;
  margin-top: 12px;
}

.legal-link:hover {
  background: var(--primaryColor);
  color: #fff;
  transform: translateX(4px);
}

/* Fees Grid */
.fees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 16px 0;
}

.fee-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--offwhiteColor);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.fee-item:hover {
  background: linear-gradient(135deg, rgba(11, 79, 168, 0.08) 0%, rgba(11, 79, 168, 0.03) 100%);
  transform: translateY(-2px);
}

.fee-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primaryColor);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fee-value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--secondaryColor);
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(var(--successSoftColor), 0.08) 0%, rgba(var(--successSoftColor), 0.03) 100%);
  padding: 16px 18px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.contact-item:hover {
  background: linear-gradient(135deg, rgba(12, 97, 42, 0.12) 0%, rgba(var(--successSoftColor), 0.05) 100%);
  transform: translateY(-2px);
}

.contact-item i {
  color: var(--successColor);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--successColor);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondaryColor);
}

/* Terms Footer */
.legal-footer {
  text-align: center;
  padding: 32px 28px;
  background: linear-gradient(135deg, var(--offwhiteColor) 0%, #f0f4ff 100%);
  border-radius: var(--radius-xl);
  margin-top: 32px;
  border: 1px solid var(--muted-border-color);
}

.legal-footer p {
  color: var(--paraColor);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.legal-footer p:first-child {
  font-weight: 600;
  color: var(--secondaryColor);
  margin-bottom: 8px;
}

/* Legal section base padding (overridden at smaller breakpoints below) */
.legal-section { padding: 52px 0 80px; }

/* Responsive Design */
@media (max-width: 991px) {
  /* Show close button in sidenav */
  .quick-nav-close {
    display: flex;
  }

  /* Off-canvas sidenav behavior */
  .legal-nav-card {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    margin: 0;
    border-radius: 0;
    padding: 24px 20px;
    box-shadow: -8px 0 32px rgba(11, 79, 168, 0.3);
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .legal-nav-card.active {
    right: 0;
  }

  .legal-nav-header {
    position: relative;
    top: 0;
    z-index: 10;
    padding-bottom: 14px;
    margin-bottom: 16px;
    padding-right: 50px;
  }

  .legal-nav-links {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }

  .legal-nav-links a {
    width: 100%;
    padding: 14px 18px;
    text-align: left;
    white-space: normal;
    border-radius: var(--radius-md);
  }

  .legal-section {
    padding: 40px 0 60px;
  }

  .legal-card-header {
    padding: 18px 22px;
  }

  .legal-card-body {
    padding: 20px 22px;
  }

  .fees-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .legal-section {
    padding: 30px 0 50px;
  }

  /* Toggle button styling for mobile */
  .quick-nav-toggle {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .legal-sidebar-toggle i {
    font-size: 1rem;
  }

  .quick-nav-toggle i {
    font-size: 1.375rem;
  }

  /* Off-canvas sidenav for mobile */
  .legal-nav-card {
    width: 280px;
    max-width: 90vw;
    padding: 20px 16px;
  }

  .legal-nav-header {
    font-size: 1rem;
    padding: 0 0 12px 0;
  }

  .legal-nav-links {
    gap: 6px;
  }

  .legal-nav-links a {
    font-size: 0.85rem;
    padding: 12px 14px;
  }

  .legal-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
  }

  .legal-number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .legal-title {
    font-size: 1.1rem;
  }

  .legal-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .legal-card-body {
    padding: 18px;
  }

  .legal-card-body p {
    font-size: 0.9rem;
  }

  .legal-list li {
    font-size: 0.88rem;
    gap: 10px;
  }

  .legal-list li i {
    font-size: 1rem;
  }

  .fees-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .legal-highlight,
  .legal-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 14px;
  }

  .legal-footer {
    padding: 24px 18px;
  }

  .legal-footer p {
    font-size: 0.85rem;
  }
}

/* ============================================
   PAYMENT CARDS, FAQ & FOOTER
   ============================================ */
.payment-card {
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-xl);
  padding: 28px;
  height: 100%;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.payment-card:hover {
  border-color: var(--primaryColor);
  box-shadow: 0 20px 50px -25px rgba(11, 79, 168, 0.3);
  transform: translateY(-4px);
}

.payment-card.active {
  border-color: var(--primaryColor);
  background: linear-gradient(
    135deg,
    rgba(11, 79, 168, 0.05) 0%,
    rgba(11, 79, 168, 0.02) 100%
  );
  box-shadow: 0 20px 50px -25px rgba(11, 79, 168, 0.25);
}

.payment-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--offwhiteColor);
  display: grid;
  place-items: center;
  color: var(--primaryColor);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.payment-card h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.payment-card p {
  color: var(--paraColor);
  font-size: 0.9rem;
  margin: 0;
}

.payment-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primaryColor);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Delivery Time */
.delivery-time {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--offwhiteColor);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--secondaryColor);
}

.delivery-time i {
  color: var(--primaryColor);
  font-size: 1.1rem;
}

/* FAQ */
.accordion-item {
  border: 1px solid var(--muted-border-color) !important;
  border-radius: 14px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 700;
  color: var(--secondaryColor);
  padding: 18px 20px;
  font-size: 0.95rem;
}

.accordion-button:not(.collapsed) {
  background: var(--offwhiteColor);
  color: var(--primaryColor);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  color: var(--paraColor);
  font-size: 0.9rem;
}

.accordion-body table {
  width: 100%;
  margin-top: 10px;
}

.accordion-body th,
.accordion-body td {
  padding: 8px 12px;
  border: 1px solid var(--muted-border-color);
  font-size: 0.85rem;
}

.accordion-body th {
  background: var(--offwhiteColor);
  color: var(--secondaryColor);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
  color: var(--footer-text);
  padding: 55px 0 0;
}

footer h5 {
  color: var(--secondaryColor);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

footer p {
  color: var(--secondaryColor) !important;
}

footer a {
  color: var(--secondaryColor);
  display: block;
  padding: 3px 0;
  font-size: 0.88rem;
  transition: color 0.15s;
}

footer a:hover {
  color: #000;
}

.footer-bottom {
 background: #0b1020;
  margin-top: 35px;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 0.82rem;
  /* color: #000; */
}

.footer-bottom a {
  color: var(--rw-footer-muted);
}

.footer-bottom a:hover {
  color: var(--whiteColor);
}

.social a {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1a2138;
  margin-right: 6px;
  transition: background 0.2s, filter 0.2s;
  color: #ffffff;
}

.social a[aria-label="Twitter"] {
  background: #000000; /* X / Twitter brand */
}

.social a[aria-label="LinkedIn"] {
  background: #0077B5; /* LinkedIn brand */
}

.social a[aria-label="Facebook"] {
  background: #1877F2; /* Facebook brand */
}

.social a[aria-label="Instagram"] {
  background: #E4405F; /* Instagram brand */
}

.social a[aria-label="Youtube"] {
  background: #FF0000; /* YouTube brand */
}

.social a[aria-label="Tiktok"] {
  background: linear-gradient(135deg, #00f2ea 0%, #ff0050 100%); /* TikTok brand */
}

.social a:hover {
  filter: brightness(0.95);
  color: #fff;
}

/* ============================================
   GRIEVANCE OFFICER CARD (Footer)
   ============================================ */
.grievance-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--whiteColor);
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(var(--primaryColor-rgb), 0.07);
  margin-top: 2rem;
}

.grievance-card-icon {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  background: var(--offwhiteColor);
  border: 1.5px solid rgba(var(--primaryColor-rgb), 0.15);
  border-radius: var(--nrnremit-rounded-md);
  display: grid;
  place-items: center;
  color: var(--primaryColor);
  font-size: 1.25rem;
}

.grievance-card-body {
  flex: 1;
  min-width: 0;
}

.grievance-card-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primaryColor);
  margin-bottom: 0.2rem;
}

.grievance-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondaryColor);
  margin: 0 0 0.65rem;
  line-height: 1.3;
}

.grievance-card-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.grievance-card-contact li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--paraColor);
}

.grievance-card-contact li i {
  color: var(--primaryColor);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.grievance-card-contact a {
  color: var(--secondaryColor);
  font-weight: 500;
  padding: 0;
  display: inline;
}

.grievance-card-divider {
  color: var(--mutedColor);
  font-weight: 300;
  user-select: none;
}

@media (max-width: 575px) {
  .grievance-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
  }

  .grievance-card-contact {
    flex-direction: column;
    gap: 0.45rem;
  }
}

@media (max-width: 991px) {
  .rw-mega .country-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rw-mega {
    position: static;
    box-shadow: none;
  }

  .rw-support-dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
  }

  .rw-sub-dropdown {
    position: static;
    margin-left: 0;
    padding-left: 1rem;
  }

  .sub-chevron {
    transform: rotate(90deg);
  }

  .dropdown-sub-wrapper.open > .dropdown-link .sub-chevron {
    transform: rotate(-90deg);
  }

  .steps-wrap::before {
    display: none;
  }

  .cta-banner {
    padding: 28px;
    text-align: center;
  }

  .phone-mockup {
    width: 180px;
    height: 340px;
    border-radius: 26px;
  }

  .partner-strip {
    gap: 18px 24px;
  }

  .partner-logo {
    font-size: 0.9rem;
    height: 28px;
  }
}


/* ============================================
   HERO TICKER & CALCULATOR OVERRIDES
   ============================================ */
.hero-section {
  padding: 1rem 0 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: var(--border-thin) var(--solid) var(--muted-border-color);
  border-radius: 50px;
  padding: 6px 16px 6px 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--paraColor);
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primaryColor);
  display: inline-block;
  animation: pulseGreen 2s ease infinite;
}

@keyframes pulseGreen {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(var(--primaryColor-rgb), 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(var(--primaryColor-rgb), 0);
  }
}

.gradient-text {
  background: linear-gradient(90deg, var(--primaryColor), #0d47a1, #1e88e5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.calculator-card > .p-4 {
  padding: 1rem 1rem;
}

.calculator-card .mb-3 {
  margin-bottom: 0.9rem;
}

.calculator-card label {
  margin-bottom: 0.35rem;
  display: inline-block;
  line-height: var(--nrnremit-leading-none);
}

.tab-buttons {
  display: flex;
  border-bottom: 1px solid var(--muted-border-color);
}

.tab-btn {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.75rem 0.5rem;
  font-weight: 700;
  color: var(--paraColor);
  position: relative;
}

.tab-btn.active {
  color: var(--primaryColor);
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--primaryColor);
}

.field-modern {
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  background: #fff;
  line-height: var(--nrnremit-leading-none);
}

.field-modern:focus-within {
  border-color: var(--primaryColor);
  box-shadow: 0 0 0 3px rgba(11, 79, 168, 0.08);
}

.custom-dropdown {
  position: relative;
}

.dropdown-trigger {
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.75rem;
  cursor: pointer;
  line-height: var(--nrnremit-leading-tight);
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 100;
  max-height: 240px;
  overflow-y: auto;
  display: none;
  margin-top: 4px;
}

.dropdown-menu-custom.show {
  display: block;
}

.dropdown-item-custom {
  padding: 0.7rem 0.95rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.dropdown-item-custom:hover {
  background: var(--offwhiteColor);
  color: var(--primaryColor);
}

.currency-chip-select {
  background: var(--offwhiteColor);
  border-radius: var(--radius-full);
  padding: 5px 20px 5px 10px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: var(--nrnremit-leading-none);
}

.currency-float-dropdown {
  position: absolute;
  top: 110%;
  right: 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  min-width: 240px;
  z-index: 150;
  display: none;
  max-height: 280px;
  overflow-y: auto;
}

.currency-float-dropdown.show {
  display: block;
}

.currency-option-item {
  display: flex;
  font-size: .875rem;
  align-items: center;
  gap: 10px;
  padding: 0.65rem 0.95rem;
  cursor: pointer;
}

.currency-option-item:hover {
  background: var(--offwhiteColor);
}

.fx-pill-modern {
  background: rgba(var(--successSoftColor), 0.08);
  padding: 0.35rem 0.75rem;
  color: var(--successColor);
  font-weight: 600;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: var(--nrnremit-leading-none);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  font-size: 0.9rem;
  color: var(--paraColor);
  line-height: var(--nrnremit-leading-none);
}

.summary-line span:first-child {
  color: #4b5563;
}

.summary-line span:last-child {
  font-weight: 700;
}

.total-line {
  border-top: 1px solid var(--muted-border-color);
  margin-top: 0.45rem;
  padding-top: 0.75rem;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
}

.delivery-info-bar {
  background: #f8fafc;
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: #4a5b6e;
}

.calculator-card .btn-rw.w-100 {
  padding: 0.9rem 1.1rem;
  border-radius: 0.9rem;
  margin-top: 0.8rem;
  font-weight: 700;
  box-shadow: 0 14px 30px -18px rgba(53, 130, 255, 0.5);
}

.calculator-card .btn-rw.w-100:hover {
  transform: translateY(-1px);
}

.ticker-wrapper {
  width: 100%;
  background: linear-gradient(135deg, var(--primaryColor), #0c3e85);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.75rem 0;
}

.ticker-track {
  display: inline-flex;
  animation: scrollTicker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 1.5rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  /* border-right: 1px solid rgba(255, 255, 255, 0.2); */
}

.ticker-item img {
  width: 24px;
  height: 16px;
  border-radius: 3px;
}

.ticker-rate {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: 40px;
  font-size: 0.8rem;
}

.ticker-wrapper:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* City Select - Make it larger like forex field */
.city-select {
  height: 48px !important;
  padding: 0.75rem 1rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

.select2-container--default .select2-selection--single {
  height: 50px;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0;
  transition: all 0.2s;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: var(--nrnremit-leading-9);
  padding-left: 1rem;
  font-weight: 400;
  font-size: var(--nrnremit-text-base);
  color: var(--secondaryColor);
  margin-top: -1px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 50px;
  right: 10px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  margin-top: -2px;
}

.select2-dropdown {
  border-radius: var(--radius-sm);
  margin-top: 4px;
  border-color: var(--muted-border-color);
}

.select2-search--dropdown {
  padding: 0.35rem 0.5rem;
}

.select2-search--dropdown .select2-search__field {
  padding: 0.35rem 0.5rem;
  font-size: 0.85rem;
  height: 30px;
  border: 1px solid var(--muted-border-color);
  border-radius: 4px;
}

.select2-results__option {
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .hero-section {
    padding: 1rem 0 2rem;
  }
}

/* About page enhancements */
.about-hero {
  position: relative;
  overflow: hidden;
}

.about-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 620px;
}

.about-hero-visual {
  border-radius: var(--radius-2xl);
  padding: 24px;
  background: linear-gradient(
    145deg, 
    rgba(11, 79, 168, 0.15), 
    rgb(11, 95, 245, 0.14)
  );
}

.about-glass-card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  box-shadow: 0 18px 40px -24px rgba(17, 24, 39, 0.28);
  padding: 24px;
}

.about-route {
  background: #fff;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-weight: 700;
  color: var(--secondaryColor);
}

.about-stat {
  color: var(--paraColor);
  padding-top: 10px;
}

.about-story .about-story-card {
  background: linear-gradient(145deg, #ffffff 0%, #f7fbff 45%, #edf5ff 100%);
  border: var(--border-thin) var(--solid) rgba(var(--primaryColor-rgb), 0.14);
  border-radius: var(--radius-lg);
  padding: 34px;
  height: 100%;
}

.stat-card h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  font-weight: 900;
  color: var(--primaryColor);
}

.about-cta {
  background: linear-gradient(
    135deg,
    var(--primaryColor) 0%,
    #0c3e85 60%,
    #0b69f5 160%
  );
  box-shadow: 0 25px 50px -30px rgba(58, 113, 237, 0.65);
}

.policy-shell {
  background: linear-gradient(145deg, #ffffff 0%, #f7fbff 45%, #edf5ff 100%);
  border: var(--border-thin) var(--solid) rgba(var(--primaryColor-rgb), 0.14);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 48px -30px rgba(11, 79, 168, 0.35);
}

.policy-card,
.policy-visual-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(11, 79, 168, 0.12);
  border-radius: 24px;
  padding: 22px;
}

.policy-header {
  margin-bottom: 0;
}

.policy-header > div > h2 {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: var(--border-regular) var(--solid) var(--muted-border-color);
}

.policy-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primaryColor) 0%, #0b6ae2 100%);
  color: #fff;
  box-shadow: 0 16px 30px -18px rgba(11, 79, 168, 0.6);
  font-size: 1.35rem;
}

.highlight-box {
  background: #eef4fb;
  border-left: 4px solid var(--primaryColor);
  padding: 20px;
  border-radius: 0 8px 8px 0;
  margin: 25px 0;
}

.highlight-box p {
  margin: 0;
  color: var(--primaryColor);
  font-weight: 500;
}

.related-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin: 10px 0 25px;
}

.policy-shell .section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.policy-shell .text-muted2 {
  line-height: 1.85;
  font-size: 1.02rem;
}

.policy-shell p {
  color: var(--paraColor);
  line-height: 1.8;
}

.policy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11, 79, 168, 0.08);
  color: var(--primaryColor);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.policy-subtitle {
  margin-top: 12px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondaryColor);
}

.policy-caption {
  font-size: 0.96rem;
  margin-bottom: 12px;
}

.policy-wrap {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.policy-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.policy-list-wrap {
  margin-top: 10px;
}

.policy-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.policy-list li {
  position: relative;
  padding: 14px 14px 14px 50px;
  margin: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 79, 168, 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 26px -18px rgba(11, 79, 168, 0.35);
  line-height: 1.65;
}

.policy-list li i {
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--primaryColor);
  font-size: 1rem;
}

@media (max-width: 991px) {
  .about-hero {
    padding: 54px 0;
  }

  .about-lead {
    font-size: 0.98rem;
  }

  .about-story .about-story-card {
    padding: 24px;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .policy-header {
    flex-direction: column;
    gap: 12px;
  }

  .policy-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }
}

.message-img {
  float: right;
  max-width: 45%;
  margin: 0 0 15px 30px;
  border-radius: 10px;
  display: block;
}

@media (max-width: 991.98px) {
  .message-img {
      float: none;
      display: block;
      max-width: 100%;
      width: 100%;
      margin: 0 0 20px 0;
  }
}

.about-doc-panel {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid rgba(11, 79, 168, 0.08);
  border-radius: 24px;
  background: #fff;
  padding: 40px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.about-doc-panel p {
  color: var(--paraColor);
  line-height: 1.75;
  font-size: 1.15rem;
  margin-bottom: 32px;
}
.about-quote {
  border-left: 4px solid var(--primaryColor);
  background: linear-gradient(135deg, rgba(11, 79, 168, 0.06), rgba(11, 79, 168, 0.02));
  border-radius: 18px;
  padding: 18px;
  color: var(--secondaryColor);
}
.about-list {
  color: var(--paraColor);
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-list li + li { margin-top: 8px; }
.about-list li {
  padding: 12px 0;
  padding-left: 36px;
  position: relative;
  color: var(--paraColor);
  line-height: 1.6;
  border-bottom: 1px solid rgba(11, 79, 168, 0.05);
}

.about-list li:last-child {
  border-bottom: none;
}

.about-list li i {
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--primaryColor);
  font-size: 1.1rem;
}
.about_missionCard.vision-card p {
  color: var(--whiteColor);
  line-height: 1.7;
  font-size: 0.95rem;
}
.about-spotlight {
  background: linear-gradient(135deg, rgba(11, 79, 168, 0.08), rgba(255, 255, 255, 0.94));
}
.about-expandable {
  max-height: 400px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.3s ease;
}
.about-expandable.expanded {
  max-height: none;
}
.about-expandable::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
}
.about-expandable.expanded::after {
  display: none;
}
.about-view-more {
  display: inline-block;
  margin-top: 12px;
  color: var(--primaryColor);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}
.about-view-more:hover {
  color: var(--secondaryColor);
  text-decoration: underline;
}

/* Legal Pages Sidebar Styles */
.legal-layout {
  display: flex;
  gap: 30px;
  position: relative;
  align-items: flex-start;
  max-width: 100%;
  overflow: visible;
}

.legal-sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  height: fit-content;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  z-index: 5;
}

.legal-sidebar-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f5;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-sidebar-title i {
  color: var(--primaryColor);
}

.legal-sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-sidebar-menu li {
  margin-bottom: 8px;
}

.legal-sidebar-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}

.legal-sidebar-menu a:hover {
  background: #f8fafc;
  color: var(--primaryColor);
}

.legal-sidebar-menu a.active {
  background: linear-gradient(135deg, var(--primaryColor) 0%, #0c3e85 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(11, 79, 168, 0.3);
}

.legal-sidebar-menu a i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.legal-content-wrapper {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  overflow: visible;
}

/* Toggle Buttons Container */
.legal-toggle-buttons {
  display: none;
}

/* Mobile Sidebar Toggle */
.legal-sidebar-toggle {
  display: flex;
  background: linear-gradient(135deg, var(--primaryColor) 0%, #0c3e85 100%);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
  transition: all 0.3s ease;
}

.legal-sidebar-toggle:hover {
  box-shadow: 0 4px 12px rgba(11, 79, 168, 0.3);
  transform: translateY(-2px);
}

/* Responsive - Tablet */
@media (max-width: 991px) {
  .legal-layout {
    flex-direction: column;
    gap: 24px;
  }

  .legal-sidebar {
    width: 100%;
    position: relative;
    top: 0;
    max-height: none;
    display: none;
  }

  .legal-sidebar.show {
    display: block;
  }

  .legal-toggle-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    margin-bottom: 24px;
  }

  .legal-nav-card {
    padding: 20px 24px;
  }

  .legal-nav-links {
    gap: 8px;
  }

  .legal-nav-links a {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .legal-layout {
    gap: 20px;
  }

  .legal-toggle-buttons {
    flex-direction: row;
    gap: 10px;
  }

  .legal-sidebar-toggle,
  .quick-nav-toggle {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .legal-nav-card {
    padding: 18px 20px;
    margin-bottom: 24px;
  }

  .legal-nav-header {
    font-size: 1rem;
    margin-bottom: 14px;
  }

  .legal-nav-links {
    gap: 6px;
  }

  .legal-nav-links a {
    padding: 7px 12px;
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .legal-sidebar {
    padding: 16px;
  }

  .legal-nav-card {
    padding: 16px 18px;
    margin-bottom: 20px;
  }

  .legal-nav-header {
    font-size: 0.95rem;
    gap: 8px;
  }

  .legal-nav-header i {
    font-size: 1.1rem;
  }

  .legal-nav-links {
    gap: 6px;
  }

  .legal-nav-links a {
    padding: 6px 10px;
    font-size: 0.7rem;
  }

  .legal-card {
    margin-bottom: 20px;
  }

  .legal-card-header {
    padding: 16px 20px;
    gap: 12px;
  }

  .legal-card-body {
    padding: 18px 20px;
  }
}

@media (max-width: 394px) {
  .quick-nav-toggle {
    gap: 4px;
  }
  .legal-sidebar-toggle,
  .quick-nav-toggle {
    padding: 10px 14px;
    font-size: 0.77rem;
  }
}

/* ========== BLOG DETAILS PAGE STYLES ========== */

/* Featured Image */
.blog-featured-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.blog-featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Blog Meta Header */
.blog-meta-header {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--muted-border-color);
}

.blog-meta-date,
.blog-meta-time {
  font-size: 0.8rem;
  color: var(--mutedColor);
  font-weight: 500;
}

.author-avatar-lg {
  width: 48px;
  height: 48px;
  background: var(--offwhiteColor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primaryColor);
  flex-shrink: 0;
}

.author-name-lg {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--titleColor);
}

.author-role {
  font-size: 0.75rem;
  color: var(--mutedColor);
}

/* Social Share Bar */
.social-share-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.share-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mutedColor);
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.share-facebook { background: #1877f2; }
.share-twitter { background: #000; }
.share-linkedin { background: #0a66c2; }
.share-whatsapp { background: #25d366; }
.share-copy { background: var(--muted-border-color); color: var(--optionalColor); }

.share-copy:hover {
  background: var(--primaryColor);
  color: #fff;
}

/* Article Content */
.blog-article-content {
  color: var(--paraColor);
  line-height: 1.8;
  font-size: 1rem;
}

.blog-article-content p {
  margin-bottom: 1.5rem;
}

.lead-paragraph {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--titleColor);
  line-height: 1.7;
}

.blog-article-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--titleColor);
  margin: 2.5rem 0 1rem;
  line-height: 1.3;
}

.blog-article-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--titleColor);
  margin: 2rem 0 0.75rem;
  line-height: 1.4;
}

.blog-article-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--titleColor);
  margin: 1.5rem 0 0.5rem;
}

/* Blockquote */
.blog-blockquote {
  background: linear-gradient(135deg, rgba(11, 79, 168, 0.05) 0%, rgba(12, 62, 133, 0.03) 100%);
  border-left: 4px solid var(--primaryColor);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--titleColor);
  font-size: 1.05rem;
  line-height: 1.7;
}

.blog-blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--mutedColor);
  font-weight: 500;
}

/* Lists */
.blog-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.blog-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--paraColor);
}

.blog-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--successColor);
  font-weight: 700;
  font-size: 0.9rem;
}

.blog-list li strong {
  color: var(--titleColor);
  font-weight: 600;
}

.blog-list-ordered {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  counter-reset: blog-counter;
}

.blog-list-ordered li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--paraColor);
  counter-increment: blog-counter;
}

.blog-list-ordered li::before {
  content: counter(blog-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: var(--primaryColor);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

/* Highlight Box */
.blog-highlight-box {
  background: linear-gradient(135deg, var(--primaryColor) 0%, var(--baseColor) 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  margin: 2.5rem 0;
  color: #fff;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.highlight-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.highlight-content h4 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}

.highlight-content p {
  color: rgba(255,255,255,0.9);
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.highlight-content .btn-rw {
  background: #fff;
  color: var(--primaryColor);
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

.highlight-content .btn-rw:hover {
  background: rgba(255,255,255,0.9);
  color: var(--baseColor);
}

/* Tags Section */
.blog-tags-section {
  padding-top: 1.5rem;
  border-top: 1px solid var(--muted-border-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tags-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mutedColor);
}

/* Post Navigation */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--muted-border-color);
  border-bottom: 1px solid var(--muted-border-color);
}

.post-nav-prev,
.post-nav-next {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  padding: 1.25rem;
  background: var(--offwhiteColor);
  border-radius: var(--radius-lg);
  transition: all 0.2s;
}

.post-nav-prev:hover,
.post-nav-next:hover {
  background: rgba(var(--primaryColor-rgb), 0.05);
  transform: translateY(-2px);
}

.post-nav-prev {
  text-align: left;
}

.post-nav-next {
  text-align: right;
}

.post-nav-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primaryColor);
}

.post-nav-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--titleColor);
  line-height: 1.4;
}

/* Related Posts */
.related-posts-section {
  margin-top: 3rem;
}

.related-posts-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--titleColor);
  margin-bottom: 1.5rem;
}

.related-post-card {
  display: flex;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  padding: 1rem;
  background: var(--whiteColor);
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-lg);
  transition: all 0.2s;
}

.related-post-card:hover {
  border-color: var(--primaryColor);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.related-post-image {
  width: 100px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: #eef3fc;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-post-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.related-post-category {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primaryColor);
  margin-bottom: 0.25rem;
}

.related-post-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--titleColor);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.related-post-date {
  font-size: 0.7rem;
  color: var(--mutedColor);
}

/* Category List Widget */
.category-list {
  display: flex;
  flex-direction: column;
}

.category-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--optionalColor);
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.2s;
  line-height: var(--nrnremit-leading-normal);
}

.category-list-item:hover {
  background: rgba(var(--primaryColor-rgb), 0.05);
  color: var(--primaryColor);
}

.category-count {
  background: var(--offwhiteColor);
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--mutedColor);
}

/* Newsletter Widget */
.newsletter-widget {
  background: linear-gradient(135deg, rgba(11, 79, 168, 0.03) 0%, rgba(12, 62, 133, 0.02) 100%);
}

.newsletter-text {
  font-size: 0.85rem;
  color: var(--paraColor);
  margin-bottom: 1rem;
}

.newsletter-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--muted-border-color);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  transition: all 0.2s;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primaryColor);
  box-shadow: 0 0 0 3px rgba(var(--primaryColor-rgb), 0.08);
}

/* Responsive Styles */
@media (max-width: 767.98px) {
  .post-navigation {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .blog-highlight-box {
    flex-direction: column;
    text-align: center;
  }

  .highlight-icon {
    margin: 0 auto;
  }

  .highlight-content .d-flex {
    justify-content: center;
  }

  .social-share-bar {
    justify-content: flex-start;
  }
}

@media (max-width: 576px) {
  .blog-article-content h2 {
    font-size: 1.4rem;
  }

  .blog-article-content h3 {
    font-size: 1.2rem;
  }

  .blog-highlight-box {
    padding: 1.5rem;
  }

  .related-post-card {
    flex-direction: column;
  }

  .related-post-image {
    width: 100%;
    height: 140px;
  }
}

/* ==================== GLOBAL MODAL SYSTEM ==================== */
.nrn-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.nrn-modal.active {
  display: flex;
}

.nrn-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 16, 32, 0.6);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.nrn-modal.active .nrn-modal-backdrop {
  opacity: 1;
}

.nrn-modal-container {
  position: relative;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  z-index: 10000;
}

.nrn-modal-lg .nrn-modal-container {
  max-width: 760px;
}

.nrn-modal-content {
  background: var(--whiteColor);
  border-radius: 32px;
  box-shadow: var(--shadow-md), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: scale(0.96) translateY(20px);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.21, 0.98, 0.35, 1.05), opacity 0.4s ease;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nrn-modal.active .nrn-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.nrn-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 32px;
  position: relative;
  border-bottom: var(--border-thin) var(--solid) var(--muted-border-color);
}

.nrn-modal-title {
  margin: 0;
  color: var(--primaryColor);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.nrn-modal-title .accent {
  background: var(--primaryColor);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 700;
}

.nrn-modal-close {
  background: rgba(11, 79, 168, 0.12);
  border: 1px solid rgba(11, 79, 168, 0.25);
  color: var(--primaryColor);
  width: 42px;
  height: 42px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 1.4rem;
  padding: 0;
  flex: 0 0 42px;
  opacity: 1;
}

.nrn-modal-close:hover {
  background: rgba(11, 79, 168, 0.25);
  transform: rotate(90deg) scale(1.05);
  border-color: rgba(11, 79, 168, 0.6);
}

.nrn-modal-body {
  padding: 34px 26px;
  overflow-y: auto;
  flex: 1;
  background: var(--whiteColor);
}

.nrn-modal-body::-webkit-scrollbar {
  width: 6px;
}
.nrn-modal-body::-webkit-scrollbar-track {
  background: #eef2f9;
  border-radius: 10px;
}
.nrn-modal-body::-webkit-scrollbar-thumb {
  background: var(--primaryColor);
  border-radius: 10px;
}

.nrn-modal-body > .text-muted {
  color: var(--mutedColor) !important;
  font-size: 0.95rem;
  line-height: 1.6;
}

.nrn-modal-footer {
  padding: 20px 32px 28px;
  background: var(--whiteColor);
  border-top: var(--border-thin) var(--solid) var(--muted-border-color);
}

.nrn-modal-footer .btn {
  min-width: 120px;
  background: linear-gradient(100deg, var(--primaryColor), var(--baseColor));
  border: none;
  padding: 12px 22px;
  border-radius: 44px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--bodyFont);
  color: var(--whiteColor);
  box-shadow: 0 8px 18px rgba(11, 79, 168, 0.2);
  transition: all 0.25s ease;
}

.nrn-modal-footer .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 79, 168, 0.3);
  background: linear-gradient(100deg, #0044a5, #0e468f);
}

/* --- MODERN FORM FIELDS (airy & minimal) --- */
.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--titleColor);
  letter-spacing: -0.2px;
}

.form-field label i {
  color: var(--primaryColor);
  margin-right: 4px;
  font-size: 0.85rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e9edf4;
  border-radius: 8px;
  font-family: var(--bodyFont);
  font-size: 0.95rem;
  background: #ffffff;
  transition: var(--transition-smooth);
  color: #111827;
  outline: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primaryColor);
  box-shadow: 0 4px 14px rgba(11, 79, 168, 0.12), 0 0 0 3px rgba(11, 79, 168, 0.08);
  transform: translateY(-1px);
}

/* readonly form-field (position) subtle brand style */
.form-field input[readonly] {
  background: #f7f9fe;
  border-color: #e2e8f2;
  border-radius: var(--radius-sm);
  color: #1f2a48;
  font-weight: 500;
  cursor: default;
}

/* file input styling: modern */
.form-field input[type="file"] {
  padding: 12px 12px;
  background: #fbfdff;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  height: auto;
}

.form-field input[type="file"]::file-selector-button {
  background: var(--offwhiteColor);
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  margin-right: 16px;
  color: var(--primaryColor);
  cursor: pointer;
  transition: 0.2s;
  line-height: 1;
}

.form-field input[type="file"]::file-selector-button:hover {
  background: #cbddf5;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.5;
}

.form-field small {
  font-size: 0.75rem;
  color: var(--mutedColor);
  margin-top: 8px;
  display: inline-block;
  font-weight: 500;
}

/* Submit button - modern glassy gradient */
.btn-send {
  width: 100%;
  background: linear-gradient(100deg, var(--primaryColor), var(--baseColor));
  border: none;
  padding: 16px 20px;
  border-radius: 44px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--bodyFont);
  color: white;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 12px;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 18px rgba(11, 79, 168, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-send i {
  font-size: 1.2rem;
  transition: transform 0.2s;
}

.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 79, 168, 0.3);
  background: linear-gradient(100deg, #0044a5, #0e468f);
}

.btn-send:active {
  transform: translateY(1px);
}

/* body modal-open prevent scroll (consistent) */
body.modal-open {
  overflow: hidden;
  padding-right: 0px;
}

/* Responsive touches */
@media (max-width: 680px) {
  .nrn-modal {
    padding: 16px;
  }
  .nrn-modal-body {
    padding: 24px 24px;
  }
  .nrn-modal-header {
    padding: 20px 24px;
  }
  .nrn-modal-title {
    font-size: 1.4rem;
  }
  .nrn-modal-footer {
    padding: 18px 24px 24px;
  }
}

@media (max-width: 500px) {
  .nrn-modal-container {
    max-width: 96%;
  }
  .field input, .field textarea {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  .btn-send {
    padding: 14px 18px;
  }
  .nrn-modal-body {
    padding: 20px;
  }
  .nrn-modal-title {
    font-size: 1.25rem;
  }
  .nrn-modal-footer .btn {
    width: 100%;
    padding: 14px 18px;
  }
}

/* optional subtle accent for asterisk */
.form-field label .required-star {
  color: #e03a3a;
  margin-left: 3px;
}

/* simple toast-style alert (elegant) */
.custom-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #0b1020dd;
  backdrop-filter: blur(12px);
  color: white;
  padding: 12px 28px;
  border-radius: 60px;
  font-weight: 500;
  font-size: 0.9rem;
  z-index: 100000;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  font-family: var(--bodyFont);
}
.custom-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ==================== RECEIVE MONEY PAGE - PREMIUM CTA STYLES ==================== */

/* Animated Gradient Border */
.premium-cta-border {
  position: relative;
  padding: 3px;
  border-radius: 32px;
  background: linear-gradient(135deg, #003891, #0c3e85, #003891, #0c3e85);
  background-size: 300% 300%;
  animation: gradientBorder 8s ease infinite;
  overflow: hidden;
}

@keyframes gradientBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Main Card */
.premium-cta-card {
  position: relative;
  background: linear-gradient(135deg, #003891 0%, #0c3e85 50%, #003891 100%);
  border-radius: 30px;
  padding: 60px 50px;
  overflow: hidden;
  box-shadow: 
    0 25px 80px rgba(11, 79, 168, 0.35),
    0 15px 40px rgba(12, 62, 133, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Glass Overlay */
.premium-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #071a52 0%, #0d47a1 50%, #1e88e5 100%);
  border-radius: 30px;
  pointer-events: none;
}

/* Blurred Background Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
  animation: orbFloat 10s ease-in-out infinite;
}

.orb-1 {
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.3);
  top: -80px;
  right: -80px;
  animation-delay: 0s;
}

.orb-2 {
  width: 200px;
  height: 200px;
  background: rgba(11, 79, 168, 0.4);
  bottom: -60px;
  left: -60px;
  animation-delay: -3s;
}

.orb-3 {
  width: 180px;
  height: 180px;
  background: rgba(12, 62, 133, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -6s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -20px) scale(1.1);
  }
  66% {
    transform: translate(-15px, 15px) scale(0.95);
  }
}

/* Floating Plus Symbols */
.particle {
  position: absolute;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  font-size: 28px;
  line-height: 1;
  pointer-events: none;
  filter: blur(0.5px);
  animation: plusFloat 20s ease-in-out infinite;
}

.particle-1 { top: 15%; left: 10%; font-size: 24px; animation-delay: 0s; }
.particle-2 { top: 25%; right: 15%; font-size: 36px; animation-delay: -4s; }
.particle-3 { top: 55%; left: 20%; font-size: 22px; animation-delay: -8s; }
.particle-4 { top: 65%; right: 12%; font-size: 32px; animation-delay: -12s; }
.particle-5 { top: 40%; left: 8%; font-size: 26px; animation-delay: -16s; }
.particle-6 { top: 50%; right: 20%; font-size: 30px; animation-delay: -6s; }

@keyframes plusFloat {
  0%, 100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.4;
  }
  25% {
    opacity: 0.5;
  }
  50% {
    transform: translateY(-30px) translateX(15px) rotate(45deg);
    opacity: 0.45;
  }
  75% {
    opacity: 0.5;
  }
}

/* Content Layout */
.premium-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 992px) {
  .premium-cta-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.premium-cta-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 992px) {
  .premium-cta-text {
    text-align: left;
  }
}

/* Premium Badge */
.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  color: #ffffff;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.premium-badge i {
  font-size: 1rem;
}

/* Typography */
.premium-cta-title {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.premium-cta-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
}

/* Buttons */
.premium-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .premium-cta-buttons {
    justify-content: flex-end;
  }
}

.btn-premium-primary,
.btn-premium-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-premium-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  color: #003891;
}

.btn-premium-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(11, 79, 168, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
}

.btn-premium-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-premium-secondary:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

/* Center Glow */
.premium-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  animation: pulseGlow 5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.15);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .premium-cta-card {
    padding: 50px 35px;
    border-radius: 24px;
  }

  .premium-cta-title {
    font-size: 2rem;
  }

  .premium-cta-subtitle {
    font-size: 1rem;
  }

  .btn-premium-primary,
  .btn-premium-secondary {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .premium-cta-card {
    padding: 40px 25px;
    border-radius: 20px;
  }

  .premium-cta-title {
    font-size: 1.75rem;
  }

  .premium-cta-subtitle {
    font-size: 0.95rem;
  }

  .btn-premium-primary,
  .btn-premium-secondary {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .premium-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .premium-badge {
    font-size: 0.75rem;
    padding: 6px 16px;
  }
}

/* Performance Optimization */
@media (prefers-reduced-motion: reduce) {
  .premium-cta-section,
  .orb,
  .particle,
  .premium-cta-border,
  .premium-cta-glow,
  .btn-premium-primary,
  .btn-premium-secondary {
    animation: none;
    transition: none;
  }

  .premium-cta-section {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   TRACK TRANSFER PAGE - SEARCH & DASHBOARD
   ============================================ */
/* Search Section */

.search-panel {
  background-color: var(--whiteColor);
  border: 1px solid var(--muted-border-color);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.search-panel:hover {
  border-color: var(--primaryColor);
}

.search-panel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--muted-border-color);
  background-color: rgba(var(--primaryColor-rgb), 0.02);
}

.search-panel-icon {
  width: 44px;
  height: 44px;
  background-color: var(--primaryColor);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.search-panel-icon i {
  font-size: 1.25rem;
  color: var(--whiteColor);
}

.search-panel-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondaryColor);
  margin-bottom: 0.125rem;
}

.search-panel-text {
  font-size: 0.875rem;
  color: var(--paraColor);
  margin-bottom: 0;
}

.search-panel-body {
  padding: 1.75rem 2rem 2rem;
}

.search-input-wrapper {
  display: flex;
  gap: 0;
  margin-bottom: 1.25rem;
  height: 50px;
  border: 2px solid var(--muted-border-color);
  border-radius: 0.625rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
  background-color: var(--whiteColor);
}

.search-input-wrapper:focus-within {
  border-color: var(--primaryColor);
}

.search-input-wrapper i {
  display: flex;
  align-items: center;
  padding: 0 0 0 1.25rem;
  font-size: 1.25rem;
  color: var(--paraColor);
  opacity: 0.4;
}

.track-input {
  flex: 1;
  height: 46px;
  border: none;
  padding: 0 1rem;
  font-family: monospace;
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--secondaryColor);
  background: transparent;
  outline: none;
}

.track-input::placeholder {
  font-family: var(--bodyFont);
  letter-spacing: normal;
  color: var(--paraColor);
  opacity: 0.4;
}

.track-btn {
  white-space: nowrap;
  padding: 0 1.5rem;
  font-weight: 600;
  font-size: 0.9275rem;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  border: none;
  cursor: pointer;
  height: 40px;
  margin: 3px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.track-btn:hover {
  background-color: var(--secondaryColor);
}

.search-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.search-or {
  font-size: 0.875rem;
  color: var(--paraColor);
  opacity: 0.6;
}

.sample-ids {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sample-id {
  font-size: 0.8125rem;
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--muted-border-color);
  border-radius: 50px;
  color: var(--paraColor);
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: var(--whiteColor);
}

/* Recent Transfers Panel */
.recent-transfers {
  background-color: var(--whiteColor);
  border: 1px solid var(--muted-border-color);
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
  transition: border-color 0.3s ease;
}

.recent-transfers:hover {
  border-color: var(--primaryColor);
}

.recent-transfers-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--muted-border-color);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--secondaryColor);
}

.recent-transfers-header i {
  color: var(--primaryColor);
  font-size: 1.125rem;
}

.recent-transfer-list {
  display: flex;
  flex-direction: column;
}

.recent-transfer-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.5rem;
  text-decoration: none;
  border-bottom: 1px solid var(--muted-border-color);
  transition: background-color 0.2s ease;
}

.recent-transfer-item:last-child {
  border-bottom: none;
}

.recent-transfer-item:hover {
  background-color: rgba(var(--primaryColor-rgb), 0.02);
}

.recent-transfer-status {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9375rem;
}

.recent-transfer-status.delivered {
  background-color: rgba(var(--successSoftColor), 0.08);
  color: var(--successColor);
}

.recent-transfer-status.processing {
  background-color: rgba(var(--primaryColor-rgb), 0.08);
  color: var(--primaryColor);
  animation: livePulse 1.5s ease-in-out infinite;
}

.recent-transfer-status.pending {
  background-color: var(--bgColor);
  color: var(--paraColor);
  opacity: 0.5;
}

.recent-transfer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.recent-transfer-id {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondaryColor);
}

.recent-transfer-meta {
  font-size: 0.8125rem;
  color: var(--paraColor);
  opacity: 0.65;
}

.recent-transfer-time {
  font-size: 0.75rem;
  color: var(--paraColor);
  opacity: 0.5;
  white-space: nowrap;
}

/* ----------------------------------------------
  Live Status Dashboard
  ---------------------------------------------- */

.highlight-id {
  color: var(--primaryColor);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.status-dashboard {
  background-color: var(--whiteColor);
  border: 1px solid var(--muted-border-color);
  border-radius: 1rem;
  overflow: hidden;
  padding-bottom: 2rem;
}

/* Status Banner */
.status-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--muted-border-color);
  background: linear-gradient(135deg, rgba(var(--primaryColor-rgb), 0.03) 0%, rgba(var(--primaryColor-rgb), 0.06) 100%);
  flex-wrap: wrap;
}

.status-banner-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primaryColor);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: livePulse 1.5s ease-in-out infinite;
}

.status-banner-icon i {
  font-size: 1.25rem;
  color: var(--whiteColor);
}

.status-banner-info {
  flex: 1;
  min-width: 140px;
}

.status-banner-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--paraColor);
  opacity: 0.6;
  margin-bottom: 0.125rem;
}

.status-banner-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondaryColor);
}

.status-banner-progress {
  flex: 1;
  height: 8px;
  background-color: var(--muted-border-color);
  border-radius: 50px;
  overflow: hidden;
  min-width: 120px;
}

.status-banner-progress-bar {
  height: 100%;
  background-color: var(--primaryColor);
  border-radius: 50px;
  transition: width 1s ease;
}

.status-banner-percent {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primaryColor);
  letter-spacing: -0.02em;
}

/* Status Meta Grid */
.status-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--muted-border-color);
}

.status-meta-item {
  padding: 1.25rem 2rem;
  border-right: 1px solid var(--muted-border-color);
}

.status-meta-item:nth-child(3n) {
  border-right: none;
}

.status-meta-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--paraColor);
  opacity: 0.5;
  margin-bottom: 0.25rem;
}

.status-meta-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondaryColor);
}

.status-meta-value.mono {
  color: var(--primaryColor);
  letter-spacing: 0.02em;
}

.status-meta-value small {
  font-weight: 400;
  font-size: 0.8125rem;
  opacity: 0.5;
}

.status-meta-value.success {
  color: var(--successColor);
}

/* Status Steps */
.status-steps {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.status-step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  padding-bottom: 2rem;
}

.status-step:last-child {
  padding-bottom: 0;
}

.status-step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.0625rem;
  z-index: 2;
  position: relative;
  background-color: var(--primaryColor);
  color: var(--whiteColor);
}

.status-step.completed .status-step-circle {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  box-shadow: 0 0 0 4px rgba(var(--primaryColor-rgb), 0.12);
}

.status-step.active .status-step-circle {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  box-shadow: 0 0 0 6px rgba(var(--primaryColor-rgb), 0.15);
  animation: pulse 2s infinite;
}

.status-step .status-step-circle.pending {
  background-color: var(--whiteColor);
  color: var(--paraColor);
  border: 2px solid var(--muted-border-color);
  box-shadow: none;
  animation: none;
}

.status-step-line {
  position: absolute;
  left: 21px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background-color: var(--muted-border-color);
  z-index: 1;
}

.status-step.completed .status-step-line {
  background-color: var(--primaryColor);
}

.status-step.active .status-step-line {
  background-color: var(--primaryColor);
}

.status-step:last-child .status-step-line {
  display: none;
}

.status-step-content {
  display: flex;
  flex-direction: column;
  padding-top: 0.375rem;
}

.status-step-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.125rem;
}

.status-step.completed .status-step-tag {
  color: var(--primaryColor);
}

.status-step.active .status-step-tag.active-tag {
  color: var(--primaryColor);
}

.status-step .status-step-tag.pending-tag {
  color: var(--paraColor);
  opacity: 0.45;
}

.status-step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--secondaryColor);
  margin-bottom: 0.125rem;
}

.status-step-desc {
  font-size: 0.875rem;
  color: var(--paraColor);
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.status-step-time {
  font-size: 0.8125rem;
  color: var(--paraColor);
  opacity: 0.45;
}

/* ----------------------------------------------
  Refined Timeline Section
  ---------------------------------------------- */

.track-timeline-section .timeline-container {
  position: relative;
  padding-left: 30px;
  background-color: transparent;
}

.track-timeline-section .timeline-container::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background-color: var(--muted-border-color);
}

.timeline-entry {
  position: relative;
  padding-bottom: 2rem;
}

.timeline-entry:last-child {
  padding-bottom: 0;
}

.timeline-entry-marker {
  position: absolute;
  left: -40px;
  top: 0;
  width: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 1.5rem;
  z-index: 2;
}

.marker-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--primaryColor);
  border: 3px solid var(--whiteColor);
  box-shadow: 0 0 0 2px var(--primaryColor);
  display: block;
}

.marker-dot.active-dot {
  width: 16px;
  height: 16px;
  background-color: var(--primaryColor);
  box-shadow: 0 0 0 4px rgba(var(--primaryColor-rgb), 0.2);
}

.marker-dot.pending-dot {
  background-color: var(--bgColor);
  border-color: var(--muted-border-color);
  box-shadow: 0 0 0 2px var(--muted-border-color);
}

.marker-pulse {
  position: absolute;
  top: 1.3rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--primaryColor);
  animation: pulse 2s infinite;
  opacity: 0.3;
}

.timeline-entry-card {
  background-color: var(--whiteColor);
  border: 1px solid var(--muted-border-color);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.timeline-entry-card:hover {
  border-color: var(--primaryColor);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.timeline-entry-card.active-card {
  border-color: var(--primaryColor);
  background-color: rgba(var(--primaryColor-rgb), 0.01);
}

.timeline-entry-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.timeline-entry-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  display: inline-block;
}

.badge-done {
  background-color: rgba(var(--successSoftColor), 0.07);
  color: var(--successColor);
}

.badge-progress {
  background-color: rgba(var(--primaryColor-rgb), 0.08);
  color: var(--primaryColor);
}

.badge-upcoming {
  background-color: var(--bgColor);
  color: var(--paraColor);
  opacity: 0.55;
}

.timeline-entry-date {
  font-size: 0.8125rem;
  color: var(--paraColor);
  opacity: 0.55;
}

.timeline-entry-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--secondaryColor);
  margin-bottom: 0.5rem;
}

.timeline-entry-text {
  font-size: 0.9375rem;
  color: var(--paraColor);
  line-height: 1.65;
  margin-bottom: 0.875rem;
}

.timeline-entry-text strong {
  color: var(--secondaryColor);
  font-weight: 600;
}

.timeline-entry-details {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.75rem;
  border-top: 1px solid var(--muted-border-color);
}

.timeline-entry-details span {
  font-size: 0.8125rem;
  color: var(--paraColor);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.timeline-entry-details span i {
  font-size: 0.875rem;
  color: var(--primaryColor);
  opacity: 0.6;
}

/* ----------------------------------------------
  Alerts Section
  ---------------------------------------------- */
.alerts-section {
  background-color: var(--whiteColor);
}

.alert-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--muted-border-color);
  border-radius: 0.75rem;
  background-color: var(--whiteColor);
  transition: all 0.3s ease;
}

.alert-card:hover {
  border-color: var(--primaryColor);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.alert-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alert-card-info .alert-card-icon {
  background-color: var(--offwhiteColor);
}

.alert-card-info .alert-card-icon i {
  font-size: 1.25rem;
  color: var(--primaryColor);
}

.alert-card-support .alert-card-icon {
  background-color: var(--offwhiteColor);
}

.alert-card-support .alert-card-icon i {
  font-size: 1.25rem;
  color: var(--primaryColor);
}

.alert-card-body {
  flex: 1;
}

.alert-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondaryColor);
  margin-bottom: 0.25rem;
}

.alert-card-text {
  font-size: 0.875rem;
  color: var(--paraColor);
  margin-bottom: 0;
  line-height: 1.5;
}

.alert-card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primaryColor);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0;
  white-space: nowrap;
  align-self: center;
  transition: gap 0.2s ease;
}

.alert-card-link:hover {
  gap: 0.625rem;
  color: var(--secondaryColor);
}

/* ----------------------------------------------
  Keyframes & Animations
  ---------------------------------------------- */
@keyframes livePulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(var(--primaryColor-rgb), 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(var(--primaryColor-rgb), 0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--primaryColor-rgb), 0); }
}

/* ----------------------------------------------
  Responsive Adjustments (Track Page Only)
  ---------------------------------------------- */
@media (max-width: 991px) {
  .status-meta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .status-meta-item:nth-child(3n) {
    border-right: 1px solid var(--muted-border-color);
  }

  .status-meta-item:nth-child(2n) {
    border-right: none;
  }

  .search-panel {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {

  .alerts-section {
    padding-bottom: 3.5rem;
  }

  .search-panel-header,
  .search-panel-body {
    padding: 1.25rem 1.25rem;
  }

  .track-btn {
    border-radius: 0.5rem;
  }

  .search-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .status-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.25rem;
  }

  .status-banner-icon {
    margin: 0 auto;
  }

  .status-meta-grid {
    grid-template-columns: 1fr;
  }

  .status-meta-item {
    border-right: none !important;
    padding: 0.875rem 1.25rem;
  }

  .status-steps {
    padding: 1.25rem;
  }

  .track-timeline-section .timeline-container {
    padding-left: 30px;
  }

  .timeline-entry-marker {
    left: -30px;
  }

  .timeline-entry-details {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 539px) {
  .search-input-wrapper {
    flex-direction: column;
    gap: 0.975rem;
    height: auto;
    padding-top: 10px;
  }

  .search-input-wrapper i {
    display: none;
  }

  .sample-id {
    padding: 0.375rem 0.5rem;
  }
}

/* ============================================
   EXCHANGE RATES PAGE
   ============================================ */
/* Rate Summary Cards */

.summary-card {
  background-color: var(--whiteColor);
  border: 1px solid var(--muted-border-color);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.summary-card:hover {
  border-color: var(--primaryColor);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.summary-card-flag {
  margin-bottom: 1rem;
}

.currency-pair {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--secondaryColor);
  letter-spacing: -0.01em;
}

.summary-card-body {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.summary-rate {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--secondaryColor);
  letter-spacing: -0.02em;
}

.summary-change {
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.summary-change.up {
  color: var(--successColor);
}

.summary-change.down {
  color: #dc3545;
}

.summary-updated {
  font-size: 0.8125rem;
  color: var(--paraColor);
  opacity: 0.55;
}

/* ----------------------------------------------
   Rates Table Section
   ---------------------------------------------- */

.rates-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.5rem;
}

.rates-table thead th {
  padding: 1rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--paraColor);
  opacity: 0.6;
  text-align: left;
  background: transparent;
  border-bottom: none;
}

.rates-table tbody tr {
  background-color: var(--whiteColor);
  border-radius: 0.75rem;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.rates-table tbody tr:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.rates-table tbody td {
  padding: 1.25rem;
  border: 1px solid var(--muted-border-color);
  font-size: 0.9375rem;
  color: var(--secondaryColor);
  vertical-align: middle;
}

.rates-table tbody td:first-child {
  border-radius: 0.75rem 0 0 0.75rem;
  border-right: none;
}

.rates-table tbody td:last-child {
  border-radius: 0 0.75rem 0.75rem 0;
  border-left: none;
}

.rates-table tbody td:not(:first-child):not(:last-child) {
  border-left: none;
  border-right: none;
}

.currency-cell {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 600;
}

.currency-cell i,
.currency-symbol {
    font-size: 1.125rem;
    color: var(--primaryColor);
    font-weight: 600;
    font-style: normal;
}

.code-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    background-color: rgba(var(--primaryColor-rgb), 0.06);
    color: var(--primaryColor);
    border-radius: 0.375rem;
}

.rate-value {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--secondaryColor);
}

.change-indicator {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
}

.change-indicator.up {
    color: var(--successColor);
    background-color: rgba(var(--successSoftColor), 0.06);
}

.change-indicator.down {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.06);
}

.chart-indicator {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 32px;
}

.chart-bar {
    width: 6px;
    border-radius: 3px 3px 0 0;
    background-color: var(--primaryColor);
    opacity: 0.25;
    transition: opacity 0.2s ease;
    min-height: 4px;
}

tr:hover .chart-bar {
    opacity: 0.5;
}

.rate-transfer-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primaryColor);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.2s ease;
}

.rate-transfer-link:hover {
    gap: 0.5rem;
    color: var(--secondaryColor);
}

/* ----------------------------------------------
   Chart Section
   ---------------------------------------------- */
.chart-card {
    background-color: var(--whiteColor);
    border: 1px solid var(--muted-border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.chart-card:hover {
    border-color: var(--primaryColor);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.chart-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--muted-border-color);
    flex-wrap: wrap;
    gap: 0.75rem;
}

.chart-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondaryColor);
}

.chart-card-periods {
    display: flex;
    gap: 0.25rem;
}

.period-btn {
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--muted-border-color);
    border-radius: 0.375rem;
    color: var(--paraColor);
    cursor: pointer;
    transition: all 0.2s ease;
}

.period-btn.active {
    border-color: var(--primaryColor);
    color: var(--whiteColor);
    background-color: var(--primaryColor);
}

.period-btn:hover:not(.active) {
    border-color: var(--primaryColor);
    color: var(--primaryColor);
}

.chart-card-body {
    padding: 1.5rem;
}

.mini-chart {
    margin-bottom: 1.25rem;
}

.trend-svg {
    width: 100%;
    height: auto;
    display: block;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0.25rem 0;
    font-size: 0.6875rem;
    color: var(--paraColor);
    opacity: 0.5;
}

.chart-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--muted-border-color);
}

.chart-stat {
    text-align: center;
}

.chart-stat-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--paraColor);
    opacity: 0.5;
    margin-bottom: 0.25rem;
}

.chart-stat-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondaryColor);
}

.chart-stat-value.up {
    color: var(--successColor);
}

.chart-stat-value.down {
    color: #dc3545;
}

/* ----------------------------------------------
   Country-wise Rates
   ---------------------------------------------- */
.country-card-rates {
    background-color: var(--whiteColor);
    border: 1px solid var(--muted-border-color);
    border-radius: 0.75rem;
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.country-card-rates:hover {
    border-color: var(--primaryColor);
    color: var(--primaryColor);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px -10px rgba(11, 79, 168, 0.2);
}

.country-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.country-flag i {
    font-size: 1.375rem;
}

.country-name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--secondaryColor);
    flex: 1;
}

.country-rate {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primaryColor);
    background-color: rgba(var(--primaryColor-rgb), 0.06);
    padding: 0.25rem 0.625rem;
    border-radius: 0.375rem;
    white-space: nowrap;
}

.country-card-body {
    flex: 1;
    margin-bottom: 1.25rem;
}

.country-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--paraColor);
    border-bottom: 1px solid var(--muted-border-color);
}

.country-row:last-child {
    border-bottom: none;
}

.country-row-value {
    font-weight: 600;
    color: var(--secondaryColor);
}

.country-row-value.stars {
    color: #f59e0b;
    display: flex;
    gap: 1px;
    font-size: 0.75rem;
}

.country-row-value.stars i {
    font-size: 0.75rem;
}

.country-card-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primaryColor);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: gap 0.2s ease;
    padding-top: 0.75rem;
    border-top: 1px solid var(--muted-border-color);
}

.country-card-link:hover {
    gap: 0.625rem;
    color: var(--secondaryColor);
}

/* ----------------------------------------------
   Responsive Adjustments
   ---------------------------------------------- */
@media (max-width: 991px) {
    .section-heading {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .section-subtext {
        font-size: 1rem;
    }

    .rates-summary-section,
    .rates-table-section,
    .chart-section,
    .country-rates-section {
        padding: 3.5rem 0;
    }

    .rates-summary-section {
        padding-top: 3.5rem;
    }

    .rates-table thead {
        display: none;
    }

    .rates-table tbody td {
        display: block;
        padding: 0.75rem 1rem;
        border: none !important;
        border-radius: 0 !important;
    }

    .rates-table tbody td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--paraColor);
        opacity: 0.5;
        margin-bottom: 0.25rem;
    }

    .rates-table tbody td:first-child {
        border-radius: 0.75rem 0.75rem 0 0 !important;
    }

    .rates-table tbody td:last-child {
        border-radius: 0 0 0.75rem 0.75rem !important;
    }

    .rates-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid var(--muted-border-color);
        border-radius: 0.75rem !important;
    }

    .rates-table tbody tr td {
        border-bottom: 1px solid var(--muted-border-color) !important;
    }

    .rates-table tbody tr td:last-child {
        border-bottom: none !important;
    }

    .chart-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Base Skeleton Styles */
.skeleton {
    display: inline-block;
    min-width: 50px;
    height: 1em;
    border-radius: 4px;
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s ease-in-out infinite;
    color: transparent !important;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    vertical-align: middle;
}

.rate-value.skeleton,
.summary-rate.skeleton,
.chart-stat-value.skeleton {
    min-width: 70px;
    height: 1.2em;
}

.summary-change.skeleton {
    min-width: 80px;
    height: 1em;
}

.summary-updated.skeleton,
.country-rate.skeleton {
    min-width: 120px;
    height: 0.9em;
}

.skeleton + [data-change-value] {
    display: none;
}

[data-status-indicator] {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    background-color: rgba(var(--successSoftColor), 0.08);
    color: var(--successColor, #0c612a);
}

[data-status-indicator].error {
    background-color: rgba(220, 53, 69, 0.08);
    color: #dc3545;
}

@keyframes skeleton-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   View More Button
   ============================================ */
.view-more-wrapper {
    text-align: center;
    margin-top: 1.5rem;
}

[data-view-more] {
    min-width: 160px;
    transition: all 0.3s ease;
}

[data-view-more]:hover .view-more-icon {
    transform: translateY(2px);
}

.view-more-icon {
    margin-left: 0.375rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* ============================================
   Summary Slider
   ============================================ */
.slider-wrapper {
    position: relative;
}

.slider-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0.25rem 0 1rem;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

/* ============================================
   SUMMARY SLIDER / VIEW MORE
   ============================================ */
.summary-card-wrapper {
    flex: 0 0 auto;
    width: calc(25% - 0.75rem);
    min-width: 200px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--muted-border-color);
    background-color: var(--whiteColor);
    color: var(--secondaryColor);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 1rem;
    line-height: 1;
}

.slider-arrow:hover {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
    color: var(--whiteColor);
    box-shadow: 0 4px 12px rgba(var(--primaryColor-rgb), 0.2);
}

.slider-arrow-left {
    left: -1.25rem;
}

.slider-arrow-right {
    right: -1.25rem;
}

/* View All card */
.view-all-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  min-height: 140px;
  border: 2px dashed var(--muted-border-color);
  background-color: rgba(var(--primaryColor-rgb), 0.02);
  transition: all 0.3s ease;
}

.view-all-card:hover {
  border-color: var(--primaryColor);
  background-color: rgba(var(--primaryColor-rgb), 0.06);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.view-all-icon {
  font-size: 1.75rem;
  color: var(--primaryColor);
  margin-bottom: 0.5rem;
}

.view-all-label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--secondaryColor);
}

.view-all-arrow {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  color: var(--primaryColor);
  transition: transform 0.2s ease;
}

.view-all-card:hover .view-all-arrow {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .summary-card-wrapper {
      width: calc(50% - 0.5rem);
      min-width: 180px;
  }

  .slider-arrow-left {
      left: -0.75rem;
  }

  .slider-arrow-right {
      right: -0.75rem;
  }
}

@media (max-width: 575px) {
  .summary-card-wrapper {
      width: calc(50% - 0.5rem);
      min-width: 140px;
  }

  .slider-arrow {
      width: 2rem;
      height: 2rem;
      font-size: 0.875rem;
  }

  .slider-arrow-left {
      left: -0.5rem;
  }

  .slider-arrow-right {
      right: -0.5rem;
  }
}

/* ============================================
   AGENT LOCATOR PAGE - MAP & SIDEBAR
   ============================================ */
.al-map-section {
    height: 100vh;
}

.al-map-layout {
    display: flex;
    height: 100%;
}

.al-map-main {
    position: sticky;
    top: 0;
    flex: 1;
    min-width: 0;
    height: 100vh;
    align-self: flex-start;
}

.al-map-container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Search bar inside map */
.al-map-search-bar {
    display: flex;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background-color: var(--whiteColor);
    border-bottom: 1px solid var(--muted-border-color);
    align-items: center;
    flex-wrap: wrap;
}

.al-map-search-inner {
    flex: 1;
    display: flex;
    align-items: center;
    border: 2px solid var(--muted-border-color);
    border-radius: 0.625rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
    background-color: var(--whiteColor);
    min-width: 200px;
}

.al-map-search-inner:focus-within {
    border-color: var(--primaryColor);
}

.al-map-search-inner i {
    padding: 0 0 0 1.25rem;
    font-size: 1.125rem;
    color: var(--paraColor);
    opacity: 0.4;
}

.al-map-search-input {
    flex: 1;
    height: 48px;
    border: none;
    padding: 0 1rem;
    font-size: 0.9375rem;
    font-family: var(--bodyFont);
    color: var(--secondaryColor);
    background: transparent;
    outline: none;
}

.al-map-search-input::placeholder {
    color: var(--paraColor);
    opacity: 0.4;
}

.al-map-search-btn {
    white-space: nowrap;
    height: 48px;
    padding: 0 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.al-map-search-btn:hover {
    background-color: var(--secondaryColor);
}

.al-map-location-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: 48px;
    padding: 0 1.25rem;
    border: 1px solid var(--muted-border-color);
    border-radius: 0.625rem;
    background-color: var(--whiteColor);
    color: var(--paraColor);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.al-map-location-btn i {
    font-size: 1rem;
    color: var(--primaryColor);
}

.al-map-location-btn:hover {
    border-color: var(--primaryColor);
    color: var(--primaryColor);
}

/* Map Visual */
.al-map-visual {
    position: relative;
    flex: 1;
    min-height: 480px;
    background-color: var(--bgColor);
    overflow: hidden;
}

.al-map-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--muted-border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--muted-border-color) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.25;
}

/* Markers */
.al-marker {
    position: absolute;
    transform: translate(-50%, -100%);
    z-index: 2;
    cursor: pointer;
    transition: z-index 0s;
}

.al-marker.al-marker-active {
    z-index: 20;
}

.al-marker-icon {
    width: 36px;
    height: 36px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.al-marker-icon i {
    font-size: 0.9375rem;
    color: var(--whiteColor);
    transform: rotate(45deg);
}

.al-marker:hover .al-marker-icon {
    transform: rotate(-45deg) scale(1.15);
}

.al-marker.al-marker-active .al-marker-icon {
    transform: rotate(-45deg) scale(1.3);
    box-shadow: 0 0 0 4px rgba(var(--primaryColor-rgb), 0.2);
}

.al-marker-agent .al-marker-icon {
    background-color: var(--primaryColor);
    box-shadow: 0 2px 8px rgba(var(--primaryColor-rgb), 0.35);
}

.al-marker-branch .al-marker-icon {
    background-color: var(--successColor);
    box-shadow: 0 2px 8px rgba(12, 97, 42, 0.35);
}

.al-marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid;
    transform: translate(-50%, -50%);
    animation: alMarkerPulse 2s ease-out infinite;
    opacity: 0.2;
}

.al-marker-pulse.al-marker-agent {
    border-color: var(--primaryColor);
}

.al-marker-pulse.al-marker-branch {
    border-color: var(--successColor);
}

.al-marker.al-marker-active .al-marker-pulse {
    animation-duration: 1s;
    opacity: 0.4;
}

@keyframes alMarkerPulse {
    0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.35; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.al-marker-label {
    position: absolute;
    bottom: -1.75rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--secondaryColor);
    white-space: nowrap;
    background-color: var(--whiteColor);
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid var(--muted-border-color);
    pointer-events: none;
}

.al-marker-cluster {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(var(--primaryColor-rgb), 0.12);
    border: 2px solid var(--primaryColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--primaryColor);
    box-shadow: 0 2px 8px rgba(var(--primaryColor-rgb), 0.15);
    transition: transform 0.2s ease;
}

.al-marker-cluster:hover {
    transform: scale(1.1);
}

/* Marker Popup */
.al-marker-popup {
    position: absolute;
    bottom: 50%;
    left: 52%;
    z-index: 30;
    width: 320px;
    background-color: var(--whiteColor);
    border-radius: 0.75rem;
    border: 1px solid var(--muted-border-color);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.al-marker-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.al-marker-popup-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1.25rem 0.75rem;
    border-bottom: 1px solid var(--muted-border-color);
}

.al-marker-popup-header > i {
    width: 36px;
    height: 36px;
    background-color: var(--successColor);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--whiteColor);
    font-size: 1rem;
    flex-shrink: 0;
}

.al-marker-popup-header > div {
    flex: 1;
}

.al-marker-popup-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--secondaryColor);
    margin-bottom: 0.125rem;
}

.al-marker-popup-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--successColor);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.al-marker-popup-badge i { font-size: 0.8125rem; }

.al-marker-popup-close {
    width: 28px;
    height: 28px;
    border: none;
    background-color: var(--bgColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--paraColor);
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.al-marker-popup-close:hover {
    background-color: var(--muted-border-color);
}

.al-marker-popup-body {
    padding: 0.875rem 1.25rem;
}

.al-marker-popup-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--paraColor);
    margin-bottom: 0.5rem;
}

.al-marker-popup-row i {
    font-size: 0.875rem;
    color: var(--primaryColor);
    opacity: 0.6;
    width: 1rem;
    text-align: center;
}

.al-marker-popup-tags {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.al-marker-popup-tag {
    font-size: 0.6875rem;
    font-weight: 500;
    padding: 0.25rem 0.625rem;
    background-color: var(--bgColor);
    border: 1px solid var(--muted-border-color);
    border-radius: 50px;
    color: var(--paraColor);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.al-marker-popup-tag i { font-size: 0.75rem; }

.al-marker-popup-footer {
    padding: 0.75rem 1.25rem 1.25rem;
    border-top: 1px solid var(--muted-border-color);
}

.al-marker-popup-footer .btn-primary {
    width: 100%;
    background-color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.8125rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.al-marker-popup-footer .btn-primary:hover {
    background-color: var(--secondaryColor);
    border-color: var(--secondaryColor);
    transform: translateY(-1px);
}

/* Map Controls */
.al-map-controls {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    z-index: 5;
}

.al-map-ctrl {
    width: 38px;
    height: 38px;
    border: 1px solid var(--muted-border-color);
    border-radius: 0.5rem;
    background-color: var(--whiteColor);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--paraColor);
    font-size: 0.9375rem;
}

.al-map-ctrl:hover {
    border-color: var(--primaryColor);
    color: var(--primaryColor);
    background-color: rgba(var(--primaryColor-rgb), 0.04);
}

/* Map Legend */
.al-map-legend {
    position: absolute;
    bottom: 3rem;
    left: 1.25rem;
    z-index: 5;
    display: flex;
    gap: 1rem;
    background-color: var(--whiteColor);
    padding: 0.5rem 0.875rem;
    border-radius: 0.5rem;
    border: 1px solid var(--muted-border-color);
    font-size: 0.75rem;
    color: var(--paraColor);
}

.al-map-legend-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.al-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.al-legend-agent { background-color: var(--primaryColor); }
.al-legend-branch { background-color: var(--successColor); }

.al-map-popular {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    flex-wrap: wrap;
    border-top: 1px solid var(--muted-border-color);
}

.al-map-popular-label {
    font-size: 0.8125rem;
    color: var(--paraColor);
    opacity: 0.6;
}

.al-map-popular-tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.3rem 0.75rem;
    border: 1px solid var(--muted-border-color);
    border-radius: 50px;
    color: var(--paraColor);
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: var(--whiteColor);
}

.al-map-popular-tag:hover {
    border-color: var(--primaryColor);
    color: var(--primaryColor);
    background-color: rgba(var(--primaryColor-rgb), 0.04);
}

/* ----------------------------------------------
   Map Skeleton / Loading
   ---------------------------------------------- */
.al-map-skeleton {
    position: absolute;
    inset: 0;
    z-index: 6;
    background-color: rgba(250, 250, 255, 0.9);
    overflow: hidden;
}

.al-skeleton-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
    animation: skeletonSlide 1.5s ease-in-out infinite;
}

@keyframes skeletonSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.al-skeleton-marker {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--muted-border-color);
    opacity: 0.5;
}

/* ----------------------------------------------
   Sidebar
   ---------------------------------------------- */
.al-map-sidebar {
    width: 420px;
    flex-shrink: 0;
    border-left: 1px solid var(--muted-border-color);
    background-color: var(--whiteColor);
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.al-sidebar-header {
    padding: 1.25rem 1.25rem 0;
    border-bottom: 1px solid var(--muted-border-color);
    flex-shrink: 0;
}

.al-sidebar-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.875rem;
}

.al-sidebar-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondaryColor);
    margin: 0;
}

.al-sidebar-count {
    font-size: 0.8125rem;
    color: var(--primaryColor);
    font-weight: 600;
    background-color: rgba(var(--primaryColor-rgb), 0.06);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.al-sidebar-sort {
    display: flex;
    gap: 0.375rem;
    margin-bottom: 0.875rem;
}

.al-sort-btn {
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--muted-border-color);
    border-radius: 50px;
    background-color: var(--whiteColor);
    color: var(--paraColor);
    cursor: pointer;
    transition: all 0.2s ease;
}

.al-sort-btn:hover {
    border-color: var(--primaryColor);
    color: var(--primaryColor);
}

.al-sort-btn.active {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
    color: var(--whiteColor);
}

.al-sidebar-filters {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0;
    padding-bottom: 0.875rem;
    flex-wrap: wrap;
}

.al-filter-select {
    flex: 1;
    min-width: 0;
    height: 38px;
    padding: 0 2rem 0 0.75rem;
    font-size: 0.8125rem;
    color: var(--secondaryColor);
    border: 1px solid var(--muted-border-color);
    border-radius: 0.5rem;
    background-color: var(--whiteColor);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%235b6478' d='M4.646 5.646a.5.5 0 0 1 .708 0L8 8.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.625rem center;
    background-size: 0.75rem;
    transition: border-color 0.2s ease;
}

.al-filter-select:focus {
    outline: none;
    border-color: var(--primaryColor);
}

.al-sidebar-list {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem;
}

.al-sidebar-list::-webkit-scrollbar {
    width: 4px;
}

.al-sidebar-list::-webkit-scrollbar-track {
    background: transparent;
}

.al-sidebar-list::-webkit-scrollbar-thumb {
    background-color: var(--muted-border-color);
    border-radius: 4px;
}

/* Sidebar Agent Card */
.al-agent-card {
    background-color: var(--whiteColor);
    border: 1px solid var(--muted-border-color);
    border-radius: 0.75rem;
    padding: 1rem 1.125rem;
    margin-bottom: 0.625rem;
    transition: all 0.25s ease;
    cursor: pointer;
}

.al-agent-card:last-child {
    margin-bottom: 0;
}

.al-agent-card:hover {
    border-color: var(--primaryColor);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
}

.al-agent-card.active {
    border-color: var(--primaryColor);
    box-shadow: 0 0 0 2px rgba(var(--primaryColor-rgb), 0.12), 0 4px 12px rgba(var(--primaryColor-rgb), 0.06);
    background-color: rgba(var(--primaryColor-rgb), 0.02);
}

.al-agent-card-top {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.625rem;
}

.al-agent-logo {
    width: 42px;
    height: 42px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--whiteColor);
    flex-shrink: 0;
}

.al-agent-logo-primary { background-color: var(--primaryColor); }
.al-agent-logo-green { background-color: var(--successColor); }
.al-agent-logo-blue { background-color: #2563eb; }
.al-agent-logo-purple { background-color: #7c3aed; }
.al-agent-logo-teal { background-color: #0d9488; }

.al-agent-card-info {
    flex: 1;
    min-width: 0;
}

.al-agent-card-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--secondaryColor);
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.al-agent-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.al-agent-badge {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
}

.al-agent-badge-branch {
    background-color: rgba(var(--primaryColor-rgb), 0.08);
    color: var(--primaryColor);
}

.al-agent-badge-agent {
    background-color: rgba(12, 97, 42, 0.08);
    color: var(--successColor);
}

.al-agent-distance {
    font-size: 0.75rem;
    color: var(--paraColor);
    opacity: 0.65;
    display: inline-flex;
    align-items: center;
    gap: 0.1875rem;
}

.al-agent-distance i { font-size: 0.75rem; }

.al-agent-status {
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    font-size: 0.6875rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.al-status-open { color: var(--successColor); }
.al-status-closed { color: var(--paraColor); opacity: 0.5; }

.al-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.al-status-open .al-status-dot {
    background-color: var(--successColor);
    box-shadow: 0 0 0 3px rgba(12, 97, 42, 0.12);
}

.al-status-closed .al-status-dot {
    background-color: var(--paraColor);
    opacity: 0.4;
}

.al-agent-card-services {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.al-service-tag {
    font-size: 0.6875rem;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    background-color: var(--bgColor);
    border: 1px solid var(--muted-border-color);
    border-radius: 50px;
    color: var(--paraColor);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.al-service-tag i {
    font-size: 0.6875rem;
    color: var(--primaryColor);
}

.al-agent-card-lang {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--paraColor);
    opacity: 0.6;
    margin-bottom: 0.75rem;
}

.al-agent-card-lang i { font-size: 0.8125rem; }

.al-agent-card-actions {
    display: flex;
    gap: 0.375rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--muted-border-color);
}

.al-action-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3125rem;
    padding: 0.45rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    font-family: var(--bodyFont);
}

.al-action-call {
    border: 1px solid var(--muted-border-color);
    color: var(--paraColor);
    background-color: var(--whiteColor);
}

.al-action-call:hover {
    border-color: var(--primaryColor);
    color: var(--primaryColor);
}

.al-action-dir {
    border: 1px solid var(--muted-border-color);
    color: var(--paraColor);
    background-color: var(--whiteColor);
}

.al-action-dir:hover {
    border-color: var(--primaryColor);
    color: var(--primaryColor);
}

.al-action-detail.primary {
    background-color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
    color: var(--whiteColor);
}

.al-action-detail.primary:hover {
    background-color: var(--secondaryColor);
    border-color: var(--secondaryColor);
    transform: translateY(-1px);
}

.al-sidebar-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.25rem;
    border-top: 1px solid var(--muted-border-color);
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.al-sidebar-showing {
    font-size: 0.8125rem;
    color: var(--paraColor);
    opacity: 0.7;
}

.al-sidebar-pages {
    display: flex;
    gap: 0.1875rem;
}

.al-page-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--muted-border-color);
    border-radius: 0.375rem;
    background-color: var(--whiteColor);
    color: var(--paraColor);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.al-page-btn:hover {
    border-color: var(--primaryColor);
    color: var(--primaryColor);
}

.al-page-btn.active {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
    color: var(--whiteColor);
}

/* ----------------------------------------------
   List Loading Skeleton
   ---------------------------------------------- */
.al-list-skeleton {
    padding: 0;
}

.al-skeleton-card {
    position: relative;
    overflow: hidden;
    background-color: var(--whiteColor);
    border: 1px solid var(--muted-border-color);
    border-radius: 0.75rem;
    padding: 1rem 1.125rem;
    margin-bottom: 0.625rem;
}

.al-skeleton-card-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
    animation: skeletonSlide 1.5s ease-in-out infinite;
}

.al-skeleton-card-row {
    display: flex;
    gap: 0.75rem;
}

.al-skeleton-box {
    background-color: var(--muted-border-color);
    border-radius: 4px;
    opacity: 0.5;
}

/* ----------------------------------------------
   Empty State
   ---------------------------------------------- */
.al-empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
}

.al-empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(var(--primaryColor-rgb), 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.al-empty-icon i {
    font-size: 1.5rem;
    color: var(--primaryColor);
    opacity: 0.5;
}

.al-empty-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondaryColor);
    margin-bottom: 0.5rem;
}

.al-empty-text {
    font-size: 0.875rem;
    color: var(--paraColor);
    margin-bottom: 1.25rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------------
   Branch Details Bottom Sheet (overlays map)
   ---------------------------------------------- */
.al-branch-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.al-branch-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.al-branch-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--whiteColor);
    z-index: 210;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(calc(100% - 60px));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 80%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.al-branch-panel.active,
.al-branch-panel.expanded {
    transform: translateY(0);
}

/* Drag handle */
.al-branch-panel-handle {
    display: flex;
    justify-content: center;
    padding: 8px 0 4px;
    cursor: grab;
    flex-shrink: 0;
}

.al-branch-panel-handle span {
    width: 36px;
    height: 4px;
    border-radius: 4px;
    background-color: var(--muted-border-color);
    opacity: 0.5;
}

/* Header row */
.al-branch-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.5rem 1rem 0.75rem;
    flex-shrink: 0;
}

.al-branch-panel-header-left {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    min-width: 0;
    flex: 1;
}

.al-branch-panel-logo {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    background: var(--primaryColor);
}

.al-branch-panel-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondaryColor);
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.al-branch-panel-meta {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 0.125rem;
}

.al-branch-panel-type {
    font-size: 0.5625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    background: var(--al-navy-light, #E6F1FB);
    color: var(--al-navy-mid, #185FA5);
}

.al-branch-panel-distance {
    font-size: 0.625rem;
    color: var(--paraColor);
    opacity: 0.65;
    display: inline-flex;
    align-items: center;
    gap: 0.125rem;
}

.al-branch-panel-distance i {
    font-size: 0.625rem;
}

.al-branch-panel-header-right {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.al-branch-panel-open-status {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--successColor);
    display: inline-flex;
    align-items: center;
    gap: 0.1875rem;
    white-space: nowrap;
    margin-right: 0.125rem;
}

.al-branch-panel-open-status .al-status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    display: inline-block;
    background: var(--successColor);
    box-shadow: 0 0 0 2px rgba(12, 97, 42, 0.12);
}

.al-branch-panel-header-actions {
    display: flex;
    align-items: center;
    gap: 0.1875rem;
    padding-right: 0.25rem;
    margin-right: 0.25rem;
    border-right: 1px solid var(--muted-border-color);
}

.al-branch-panel-header-btn {
    width: 26px;
    height: 26px;
    border: 1px solid var(--muted-border-color);
    border-radius: 5px;
    background: var(--whiteColor);
    color: var(--paraColor);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.6875rem;
    transition: all 0.2s ease;
}

.al-branch-panel-header-btn:hover {
    border-color: var(--primaryColor);
    color: var(--primaryColor);
}

.al-branch-panel-expand {
    width: 26px;
    height: 26px;
    border: 1px solid var(--muted-border-color);
    border-radius: 5px;
    background: var(--whiteColor);
    color: var(--paraColor);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.6875rem;
    transition: all 0.2s ease;
}

.al-branch-panel-expand:hover {
    border-color: var(--primaryColor);
    color: var(--primaryColor);
}

.al-branch-panel-expand i {
    transition: transform 0.3s ease;
}

.al-branch-panel.expanded .al-branch-panel-expand i {
    transform: rotate(180deg);
}

.al-branch-panel-close {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--paraColor);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.875rem;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.al-branch-panel-close:hover {
    opacity: 1;
}

/* Collapsible body */
.al-branch-panel-collapse {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.al-branch-panel-collapse.open {
    max-height: 60vh;
    overflow-y: auto;
}

.al-branch-panel-body {
    padding: 0 1rem 1.25rem;
}

.al-branch-panel-body::-webkit-scrollbar {
    width: 4px;
}

.al-branch-panel-body::-webkit-scrollbar-track {
    background: transparent;
}

.al-branch-panel-body::-webkit-scrollbar-thumb {
    background-color: var(--muted-border-color);
    border-radius: 4px;
}

/* Branch panel info rows */
.al-branch-info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--paraColor);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.al-branch-info-row i {
    font-size: 0.875rem;
    color: var(--primaryColor);
    opacity: 0.6;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.al-branch-contact-row {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--muted-border-color);
}

.al-branch-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--paraColor);
    text-decoration: none;
    transition: color 0.2s ease;
}

.al-branch-contact-link i {
    font-size: 0.8125rem;
    color: var(--primaryColor);
    opacity: 0.6;
    width: 1rem;
}

.al-branch-contact-link:hover {
    color: var(--primaryColor);
}

.al-branch-detail-section-block {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--muted-border-color);
}

.al-branch-detail-label {
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--paraColor);
    opacity: 0.5;
    margin-bottom: 0.375rem;
}

.al-branch-hours-today {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--secondaryColor);
    margin-bottom: 0.25rem;
}

.al-branch-hours-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--primaryColor);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--bodyFont);
}

.al-branch-hours-toggle i {
    font-size: 0.625rem;
    transition: transform 0.2s ease;
}

.al-branch-hours-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.al-branch-hours-list {
    margin-top: 0.5rem;
    padding: 0.5rem 0.625rem;
    background-color: var(--bgColor);
    border-radius: 0.5rem;
}

.al-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--paraColor);
    padding: 0.1875rem 0;
}

.al-branch-currencies {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.al-branch-currency-tag {
    font-size: 0.625rem;
    font-weight: 700;
    font-family: monospace;
    padding: 0.1875rem 0.5rem;
    background-color: rgba(var(--primaryColor-rgb), 0.06);
    color: var(--primaryColor);
    border-radius: 0.25rem;
    letter-spacing: 0.02em;
}

.al-branch-services {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
}

.al-branch-service-tag {
    font-size: 0.6875rem;
    font-weight: 500;
    padding: 0.1875rem 0.5rem;
    background-color: var(--bgColor);
    border: 1px solid var(--muted-border-color);
    border-radius: 50px;
    color: var(--paraColor);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.al-branch-service-tag i {
    font-size: 0.6875rem;
    color: var(--primaryColor);
}

.al-branch-compliance {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background-color: rgba(var(--primaryColor-rgb), 0.03);
    border: 1px solid var(--muted-border-color);
    border-radius: 0.375rem;
    font-size: 0.75rem;
    color: var(--paraColor);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.al-branch-compliance i {
    font-size: 0.875rem;
    color: var(--primaryColor);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.al-branch-ratings {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.al-branch-stars {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.al-branch-stars i {
    font-size: 0.75rem;
    color: #f59e0b;
}

.al-branch-score {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondaryColor);
    margin-left: 0.25rem;
}

.al-branch-reviews-count {
    font-size: 0.75rem;
    color: var(--paraColor);
    opacity: 0.6;
}

.al-branch-panel-ctas {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
}

.al-branch-panel-ctas .btn {
    flex: 1;
    min-width: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3125rem;
    padding: 0.5rem 0.75rem;
    font-weight: 600;
    font-size: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.al-branch-panel-ctas .btn-primary {
    background-color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
}

.al-branch-panel-ctas .btn-primary:hover {
    background-color: var(--secondaryColor);
    border-color: var(--secondaryColor);
}

.al-branch-panel-ctas .btn-outline-primary {
    color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
    background: transparent;
}

.al-branch-panel-ctas .btn-outline-primary:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}

/* ----------------------------------------------
   Map Attribution
   ---------------------------------------------- */
.al-map-attribution {
    position: absolute;
    bottom: 0.75rem;
    right: 1.25rem;
    font-size: 0.6875rem;
    color: var(--paraColor);
    opacity: 0.35;
    z-index: 5;
}

/* ----------------------------------------------
   Branch Detail Page (standalone)
   ---------------------------------------------- */
.branch-inner-hero {
    background-color: var(--bgColor);
    padding: 5.5rem 0 5rem;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--muted-border-color);
}

.branch-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primaryColor);
    background-color: rgba(var(--primaryColor-rgb), 0.06);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.branch-hero-badge i {
    font-size: 0.9375rem;
}

.branch-hero-heading {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--secondaryColor);
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.branch-hero-heading .text-primary {
    color: var(--primaryColor);
}

.branch-hero-text {
    font-size: 1.125rem;
    color: var(--paraColor);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 540px;
}

.branch-hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.branch-hero-actions .btn-primary {
    background-color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.branch-hero-actions .btn-primary:hover {
    background-color: var(--secondaryColor);
    border-color: var(--secondaryColor);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--secondaryColor-rgb), 0.15);
}

.branch-hero-actions .btn-outline-primary {
    color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    background: transparent;
    transition: all 0.3s ease;
}

.branch-hero-actions .btn-outline-primary:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    transform: translateY(-2px);
}

.branch-hero-visual {
    width: 220px;
    height: 220px;
    border: 2px dashed var(--muted-border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
}

.branch-hero-visual-icon {
    width: 100px;
    height: 100px;
    background-color: var(--primaryColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branch-hero-visual-icon i {
    font-size: 3rem;
    color: var(--whiteColor);
}

.branch-hero-visual-dots {
    position: absolute;
    inset: -8px;
}

.branch-hero-visual-dots span {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--primaryColor);
    border-radius: 50%;
    opacity: 0.25;
}

.branch-hero-visual-dots span:nth-child(1) { top: 10%; left: 10%; }
.branch-hero-visual-dots span:nth-child(2) { top: 10%; right: 10%; }
.branch-hero-visual-dots span:nth-child(3) { bottom: 10%; left: 10%; }
.branch-hero-visual-dots span:nth-child(4) { bottom: 10%; right: 10%; }

/* Branch Detail Content (standalone page) */
.branch-detail-section {
    padding: 5.5rem 0;
    background-color: var(--whiteColor);
}

.branch-detail-card {
    background-color: var(--whiteColor);
    border: 1px solid var(--muted-border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.branch-detail-card:hover {
    border-color: var(--primaryColor);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.branch-visual {
    min-height: 340px;
    background-color: var(--bgColor);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid var(--muted-border-color);
    height: 100%;
}

.branch-visual-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primaryColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 24px rgba(var(--primaryColor-rgb), 0.15);
}

.branch-visual-icon i {
    font-size: 2.25rem;
    color: var(--whiteColor);
}

.branch-visual-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    background-color: rgba(var(--primaryColor-rgb), 0.08);
    color: var(--primaryColor);
    margin-bottom: 1.5rem;
}

.branch-visual-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.branch-stat {
    font-size: 0.875rem;
    color: var(--paraColor);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}

.branch-stat i {
    color: #f59e0b;
    font-size: 0.8125rem;
}

.branch-map-pin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--paraColor);
    padding: 0.5rem 1rem;
    background-color: var(--whiteColor);
    border: 1px solid var(--muted-border-color);
    border-radius: 50px;
}

.branch-map-pin i {
    color: var(--primaryColor);
    font-size: 0.9375rem;
}

.branch-info {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.branch-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.625rem;
    flex-wrap: wrap;
}

.branch-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondaryColor);
    margin: 0;
}

.branch-verified {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--successColor);
    background-color: rgba(12, 97, 42, 0.06);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.3125rem;
    white-space: nowrap;
}

.branch-verified i { font-size: 0.8125rem; }

.branch-address {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--paraColor);
    margin-bottom: 1.5rem;
}

.branch-address i {
    color: var(--primaryColor);
    opacity: 0.6;
    font-size: 1rem;
}

.branch-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.branch-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.branch-detail-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--paraColor);
    opacity: 0.5;
}

.branch-detail-value {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.branch-hours {
    display: flex;
    flex-direction: column;
    gap: 0.1875rem;
}

.branch-hours-today {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--secondaryColor);
}

.branch-hours-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primaryColor);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.branch-hours-toggle i {
    font-size: 0.6875rem;
    transition: transform 0.2s ease;
}

.branch-hours-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.branch-hours-list {
    list-style: none;
    padding: 0.5rem 0 0;
    margin: 0;
}

.branch-hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: var(--paraColor);
    padding: 0.1875rem 0;
    border-bottom: 1px solid var(--muted-border-color);
}

.branch-hours-list li:last-child {
    border-bottom: none;
}

.branch-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: var(--paraColor);
    text-decoration: none;
    transition: color 0.2s ease;
}

.branch-contact-link i {
    font-size: 0.8125rem;
    color: var(--primaryColor);
    opacity: 0.6;
}

.branch-contact-link:hover {
    color: var(--primaryColor);
}

.branch-currencies {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
}

.branch-currency-tag {
    font-size: 0.6875rem;
    font-weight: 700;
    font-family: monospace;
    padding: 0.25rem 0.5625rem;
    background-color: rgba(var(--primaryColor-rgb), 0.06);
    color: var(--primaryColor);
    border-radius: 0.3125rem;
    letter-spacing: 0.02em;
}

.branch-services-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.branch-service-tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.3rem 0.75rem;
    background-color: var(--bgColor);
    border: 1px solid var(--muted-border-color);
    border-radius: 50px;
    color: var(--paraColor);
    display: inline-flex;
    align-items: center;
    gap: 0.3125rem;
}

.branch-service-tag i {
    font-size: 0.75rem;
    color: var(--primaryColor);
}

.branch-compliance {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: rgba(var(--primaryColor-rgb), 0.03);
    border: 1px solid var(--muted-border-color);
    border-radius: 0.5rem;
    font-size: 0.8125rem;
    color: var(--paraColor);
    margin-bottom: 1.25rem;
}

.branch-compliance i {
    font-size: 1rem;
    color: var(--primaryColor);
    flex-shrink: 0;
}

.branch-reviews {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--muted-border-color);
    flex-wrap: wrap;
}

.branch-reviews-stars {
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.branch-reviews-stars i {
    font-size: 0.875rem;
    color: #f59e0b;
}

.branch-reviews-score {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondaryColor);
    margin-left: 0.375rem;
}

.branch-reviews-count {
    font-size: 0.8125rem;
    color: var(--paraColor);
    opacity: 0.6;
}

.branch-reviews-logos {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--paraColor);
    opacity: 0.6;
}

.branch-trust-logo {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondaryColor);
    opacity: 0.8;
}

.branch-cta-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.branch-cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.branch-cta-actions .btn-primary {
    background-color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
}

.branch-cta-actions .btn-primary:hover {
    background-color: var(--secondaryColor);
    border-color: var(--secondaryColor);
    transform: translateY(-2px);
}

.branch-cta-actions .btn-outline-primary {
    color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
    background: transparent;
}

.branch-cta-actions .btn-outline-primary:hover {
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    transform: translateY(-2px);
}

.branch-quick-strip {
    display: flex;
    gap: 2rem;
    padding: 1.25rem 0 0;
    flex-wrap: wrap;
}

.branch-quick-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--paraColor);
}

.branch-quick-item i {
    color: var(--primaryColor);
    font-size: 1rem;
}

/* ----------------------------------------------
   Responsive
   ---------------------------------------------- */
@media (max-width: 1199px) {
    .al-map-sidebar {
        width: 360px;
    }

    .al-map-visual {
        min-height: 400px;
    }

    .branch-detail-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 991px) {
    .al-map-section {
        height: auto;
    }

    .al-map-layout {
        flex-direction: column;
        height: auto;
    }

    .al-map-main {
        position: relative;
        top: auto;
        width: 100%;
        height: 50vh;
        min-height: 350px;
        flex: none;
        align-self: auto;
    }

    .al-map-sidebar {
        width: 100%;
        height: auto;
        border-left: none;
        border-top: 1px solid var(--muted-border-color);
        overflow: visible;
    }

    .al-sidebar-list {
        overflow-y: visible;
        max-height: none;
    }

    .al-map-visual {
        min-height: 300px;
    }

    .al-map-popular {
        justify-content: center;
    }

    .branch-visual {
        border-right: none;
        border-bottom: 1px solid var(--muted-border-color);
        min-height: 240px;
    }

    .branch-info {
        padding: 1.75rem;
    }

    .branch-hero-heading {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
  .al-top-bar-inner {
    padding: 0.625rem 1rem;
  }

  .al-top-bar-title {
    font-size: 1rem;
  }

  .al-top-bar-subtitle {
    display: none;
  }

  .al-map-search-bar {
    flex-direction: column;
    padding: 1rem;
  }

  .al-map-search-inner {
    width: 100%;
  }

  .al-map-location-btn {
    width: 100%;
    justify-content: center;
  }

  .al-map-main {
    height: 45vh;
    min-height: 300px;
  }

  .al-map-visual {
    min-height: 250px;
  }

  .al-map-controls {
    top: 0.75rem;
    right: 0.75rem;
  }

  .al-map-ctrl {
    width: 34px;
    height: 34px;
    font-size: 0.8125rem;
  }

  .al-map-legend {
    bottom: 2.5rem;
    left: 0.75rem;
    font-size: 0.6875rem;
    padding: 0.375rem 0.625rem;
  }

  .al-map-attribution { display: none; }

  .al-marker-popup {
    width: 280px;
    left: 40%;
    bottom: 45%;
  }

  .al-marker-label { display: none; }

  .al-sidebar-header {
    padding: 1rem 1rem 0;
  }

  .al-sidebar-list {
    padding: 0.5rem;
  }

  .al-agent-card {
    padding: 0.875rem;
  }

  .al-agent-card-actions {
    flex-wrap: wrap;
  }

  .al-action-btn {
    flex: 1;
    min-width: 60px;
  }

  .al-sidebar-footer {
    padding: 0.75rem 1rem;
  }

  .al-branch-panel {
    max-height: 70%;
  }

  .al-branch-panel-collapse.open {
    max-height: 55vh;
  }

  .al-branch-panel-header {
    padding: 0.375rem 0.75rem 0.625rem;
  }

  .al-branch-panel-title {
    font-size: 0.8125rem;
  }

  .al-branch-panel-body {
    padding: 0 0.75rem 1rem;
  }

  .al-branch-panel-ctas .btn {
    font-size: 0.6875rem;
    padding: 0.375rem 0.5rem;
  }

  .branch-hero-heading {
    font-size: 1.75rem;
  }

  .branch-info {
    padding: 1.5rem;
  }

  .branch-info-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .branch-detail-grid {
    grid-template-columns: 1fr;
  }

  .branch-reviews {
    flex-direction: column;
    align-items: flex-start;
  }

  .branch-cta-actions {
    flex-direction: column;
  }

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

  .branch-quick-strip {
    gap: 1rem;
  }
}

@media (max-width: 575px) {
  .al-map-main {
    height: 40vh;
    min-height: 260px;
  }

  .al-map-visual {
    min-height: 200px;
  }

  .al-sidebar-sort {
    flex-wrap: wrap;
  }

  .al-sidebar-filters {
    flex-direction: column;
  }

  .al-branch-ratings {
    flex-direction: column;
    align-items: flex-start;
  }

  .branch-hero-heading {
    font-size: 1.5rem;
  }

  .branch-detail-section {
    padding: 3.5rem 0;
  }
}

/* ----------------------------------------------
/* ============================================
   METHODS / HOW TO SEND SECTION
   ============================================ */
.methods-section {
    padding: 5.5rem 0;
    background-color: var(--whiteColor);
}

.method-card {
    background-color: var(--whiteColor);
    border: 1px solid var(--muted-border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
    position: relative;
}

.method-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primaryColor);
    border-radius: 0 0 4px 4px;
    transition: height 0.35s ease;
}

.method-card:hover {
    border-color: var(--primaryColor);
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.method-card:hover::before {
    height: 100%;
}

.method-card-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(var(--primaryColor-rgb), 0.08);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.method-card:hover .method-card-icon {
    background-color: var(--primaryColor);
}

.method-card-icon i {
    font-size: 1.5rem;
    color: var(--primaryColor);
    transition: color 0.3s ease;
}

.method-card:hover .method-card-icon i {
    color: var(--whiteColor);
}

.method-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondaryColor);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.method-card-text {
    font-size: 0.9375rem;
    color: var(--paraColor);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.method-card-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primaryColor);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: gap 0.2s ease;
}

.method-card-link:hover {
    gap: 0.625rem;
    color: var(--secondaryColor);
}

/* ----------------------------------------------
   Overview Section
   ---------------------------------------------- */
.overview-card {
    background-color: var(--whiteColor);
    border: 1px solid var(--muted-border-color);
    border-radius: 0.75rem;
    overflow: hidden;
    height: 100%;
}

.overview-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--muted-border-color);
    background-color: rgba(var(--primaryColor-rgb), 0.02);
}

.overview-icon {
    width: 52px;
    height: 52px;
    background-color: var(--primaryColor);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.overview-icon i {
    font-size: 1.5rem;
    color: var(--whiteColor);
}

.overview-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--titleColor);
    margin-bottom: 0.125rem;
}

.overview-subtitle {
    font-size: 0.9375rem;
    color: var(--paraColor);
    margin-bottom: 0;
}

.overview-body {
    padding: 2rem;
}

.overview-text {
    font-size: 0.9375rem;
    color: var(--paraColor);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.overview-text:last-of-type {
    margin-bottom: 1.5rem;
}

.overview-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.overview-highlight {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    background-color: var(--bgColor);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--paraColor);
}

.overview-highlight i {
    font-size: 1.125rem;
    color: var(--primaryColor);
}

.overview-highlight strong {
    color: var(--secondaryColor);
    font-weight: 700;
}

/* ─────────────────────────────────────────────────────────────
   Rules migrated from privacy-policy.html <style> block
   ───────────────────────────────────────────────────────────── */

/* Active nav link (quick-nav pill highlight) */
.legal-nav-links a.qn-active {
    background: rgba(255,255,255,0.3) !important;
    border-color: rgba(255,255,255,0.55) !important;
    color: #fff !important;
}

/* Scroll progress bar beneath nav links (desktop only) */
.qn-progress-bar {
    height: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    margin-top: 14px;
    overflow: hidden;
}
.qn-progress-fill {
    height: 100%;
    width: 0%;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    transition: width 0.12s linear;
}

/* Collapsed quick-nav header – desktop only (scroll-collapse) */
@media (min-width: 993px) {
    .legal-nav-card.qn-header-hidden .legal-nav-header {
        max-height:     0 !important;
        opacity:        0 !important;
        margin-bottom:  0 !important;
        padding-bottom: 0 !important;
        border-color:   transparent !important;
    }
}

/* Sidebar item count badge */
.legal-nav-header .qn-count {
    margin-left: auto;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.28);
    color: rgba(255,255,255,0.9);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    letter-spacing: 0.04em;
}

/* Quick-nav toggle button – sub-element styles */
.quick-nav-toggle .qnt-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.18);
    border-radius: 6px;
    transition: background 0.2s ease;
}
.quick-nav-toggle:hover .qnt-icon-wrap,
.quick-nav-toggle.active .qnt-icon-wrap {
    background: rgba(255,255,255,0.3);
}
.quick-nav-toggle .qnt-label { flex: 1; text-align: left; }
.quick-nav-toggle .qnt-badge {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 1px 8px;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.9);
}
.quick-nav-toggle .qnt-chevron {
    font-size: 0.85rem;
    opacity: 0.7;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.quick-nav-toggle.active .qnt-chevron {
    transform: rotate(180deg);
}

/* Scroll-to-top button */
.qn-scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 42px; height: 42px;
    background: var(--primaryColor);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(11,79,168,0.35);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9000;
}
.qn-scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.qn-scroll-top:hover {
    background: var(--baseColor);
    box-shadow: 0 6px 22px rgba(11,79,168,0.45);
}

/* Quick-nav sidebar – mobile slide-in animation & link styles */
@media (max-width: 992px) {
    .legal-nav-card.active .legal-nav-links a {
        animation: qnSlideIn 0.28s cubic-bezier(0.4, 0, 0.2, 1) both;
    }
    .legal-nav-card.active .legal-nav-links a:nth-child(1)  { animation-delay: 0.04s; }
    .legal-nav-card.active .legal-nav-links a:nth-child(2)  { animation-delay: 0.07s; }
    .legal-nav-card.active .legal-nav-links a:nth-child(3)  { animation-delay: 0.10s; }
    .legal-nav-card.active .legal-nav-links a:nth-child(4)  { animation-delay: 0.13s; }
    .legal-nav-card.active .legal-nav-links a:nth-child(5)  { animation-delay: 0.16s; }
    .legal-nav-card.active .legal-nav-links a:nth-child(6)  { animation-delay: 0.19s; }
    .legal-nav-card.active .legal-nav-links a:nth-child(7)  { animation-delay: 0.22s; }
    .legal-nav-card.active .legal-nav-links a:nth-child(8)  { animation-delay: 0.25s; }
    .legal-nav-card.active .legal-nav-links a:nth-child(n+9){ animation-delay: 0.28s; }

    @keyframes qnSlideIn {
        from { opacity: 0; transform: translateX(16px); }
        to   { opacity: 1; transform: translateX(0); }
    }

    /* Sidebar link hover: right-arrow indicator */
    .legal-nav-links a::after {
        content: '';
        display: inline-block;
        width: 16px; height: 16px;
        margin-left: auto;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 12px;
        opacity: 0;
        transition: opacity 0.2s ease, transform 0.2s ease;
        flex-shrink: 0;
    }
    .legal-nav-links a:hover::after {
        opacity: 1;
        transform: translateX(2px);
    }
    .legal-nav-links a {
        display: flex !important;
        align-items: center;
    }
}

/* ==================== OFF-CANVAS MOBILE SIDEBAR ==================== */

/* Hide Bootstrap's default collapse toggler on mobile — off-canvas replaces it */
@media (max-width: 991.98px) {
    .rw-nav .navbar-toggler {
        display: none !important;
    }
}

/* Toggle button (hamburger) */
.rw-offcanvas-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 6px 8px;
    cursor: pointer;
    color: var(--secondaryColor);
    font-size: 1.5rem;
    line-height: 1;
    z-index: 1051;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 991.98px) {
    .rw-offcanvas-toggle {
        display: flex;
    }
}

/* Overlay */
.rw-offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 16, 32, 0.45);
    z-index: 1060;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.rw-offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar panel */
.rw-offcanvas-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 1070;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 24px rgba(11, 16, 32, 0.08);
    visibility: hidden;
}

.rw-offcanvas-sidebar.open {
    transform: translateX(0);
    visibility: visible;
}

/* Header */
.rw-offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid #f0eef7;
    flex-shrink: 0;
}

.rw-offcanvas-header .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.rw-offcanvas-header .navbar-brand img {
    width: 120px;
    height: auto;
}

.rw-offcanvas-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--offwhiteColor);
    border: none;
    cursor: pointer;
    color: var(--secondaryColor);
    font-size: 1.25rem;
    transition: background 0.2s, color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.rw-offcanvas-close:hover {
    background: var(--primaryColor);
    color: #fff;
}

/* Nav list */
.rw-offcanvas-nav {
    list-style: none;
    margin: 0;
    padding: 12px 0;
    flex: 1;
}

/* Nav item */
.rw-offcanvas-item {
    border-bottom: 1px solid #f7f6fb;
}

.rw-offcanvas-item:last-child {
    border-bottom: none;
}

/* Primary link / toggle row */
.rw-offcanvas-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 20px;
    color: var(--secondaryColor);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    cursor: pointer;
    border: none;
    background: transparent;
    width: 100%;
    text-align: left;
    gap: 8px;
    -webkit-tap-highlight-color: transparent;
}

a.rw-offcanvas-link:hover,
a.rw-offcanvas-link:focus {
    color: var(--primaryColor);
    background: var(--offwhiteColor);
    text-decoration: none;
}

/* Active link mirrors server-side .active class on desktop nav */
.rw-offcanvas-link.active {
    color: var(--primaryColor);
}

/* Chevron icon for expandable items */
.rw-offcanvas-toggle-icon {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
    color: var(--paraColor);
    flex-shrink: 0;
    margin-left: auto;
}

.rw-offcanvas-item.expanded > .rw-offcanvas-link .rw-offcanvas-toggle-icon {
    transform: rotate(180deg);
    color: var(--primaryColor);
}

/* Nested submenu toggle chevron */
.rw-offcanvas-nested.expanded > .rw-offcanvas-nested-toggle .rw-offcanvas-toggle-icon {
    transform: rotate(180deg);
    color: var(--primaryColor);
}

/* Nested offcanvas submenu (collapsed by default) */
.rw-offcanvas-submenu-nested {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bgColor);
}

.rw-offcanvas-submenu-nested.open {
    max-height: 300px;
}

/* Nested toggle button inherits submenu-item appearance */
button.rw-offcanvas-nested-toggle {
    width: 100%;
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

/* Submenu */
.rw-offcanvas-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bgColor);
}

.rw-offcanvas-submenu.open {
    max-height: 400px;
}

.rw-offcanvas-submenu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px 11px 36px;
    color: var(--secondaryColor);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    border-bottom: 1px solid #f0eef7;
}
.rw-offcanvas-nested .rw-offcanvas-submenu-nested .rw-offcanvas-submenu-item {
    padding-left: 50px;
}

.rw-offcanvas-submenu-item:last-child {
    border-bottom: none;
}

.rw-offcanvas-submenu-item:hover,
.rw-offcanvas-submenu-item:focus {
    color: var(--primaryColor);
    background: var(--offwhiteColor);
    text-decoration: none;
}

.rw-offcanvas-submenu-item i {
    font-size: 1rem;
    color: var(--primaryColor);
    flex-shrink: 0;
}

/* Body scroll lock */
body.rw-offcanvas-open {
    overflow: hidden;
}

/* Desktop: hide everything — off-canvas is mobile-only */
@media (min-width: 992px) {
  .rw-offcanvas-sidebar,
  .rw-offcanvas-overlay {
    display: none !important;
  }
}

/* ============================================
   RESPONSIVE BANNER SLIDER
   ============================================ */

/* Tablet (<= 991px) */
@media (max-width: 991px) {
  .hero-section {
    min-height: 480px;
  }

  .banner-slider {
    min-height: 480px;
  }

  .banner-slider .swiper-slide {
    min-height: 480px;
  }

  .hero-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-section h1 {
    font-size: 24px !important;
  }

  .hero-section p {
    font-size: 1rem !important;
  }

  .banner-slider-next,
  .banner-slider-prev {
    width: 44px !important;
    height: 44px !important;
  }

  .banner-slider-next::after,
  .banner-slider-prev::after {
    font-size: 18px !important;
  }

  .banner-slider-prev {
    left: 12px !important;
  }

  .banner-slider-next {
    right: 12px !important;
  }
}

/* Mobile (<= 767px) */
@media (max-width: 767px) {
  .hero-section {
    min-height: 300px;
  }

  .banner-slider {
    min-height: 300px;
  }

  .banner-slider .swiper-slide {
    min-height: 300px;
  }

  /* Center hero content on mobile */
  .hero-section .row {
    justify-content: center;
    text-align: center;
  }

  .hero-section h1 {
    font-size: 22px !important;
    padding: 4px 8px !important;
    border-radius: 8px !important;
  }

  .hero-section p {
  font-size: 1rem !important;
  line-height: 1.5;
  }

  /* Move arrows to bottom */
  .banner-slider-next,
  .banner-slider-prev {
    top: auto !important;
    bottom: 20px !important;
    transform: none !important;
    width: 40px !important;
    height: 40px !important;
  }

  .banner-slider-next::after,
  .banner-slider-prev::after {
    font-size: 16px !important;
  }

  .banner-slider-prev {
    left: calc(50% - 45px) !important;
  }

  .banner-slider-next {
    right: calc(50% - 45px) !important;
  }
}

/* Small mobile (<= 575px) */
@media (max-width: 575px) {
  .hero-section h1 {
    font-size: 20px !important;
  }

  .banner-slider-next,
  .banner-slider-prev {
    bottom: 14px !important;
    width: 36px !important;
    height: 36px !important;
  }

  .banner-slider-next::after,
  .banner-slider-prev::after {
    font-size: 14px !important;
  }

  .banner-slider-prev {
    left: calc(50% - 41px) !important;
  }

  .banner-slider-next {
    right: calc(50% - 41px) !important;
  }
}

/* ----------------------------------------------
  Message Section
   ---------------------------------------------- */
.message-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(11, 79, 168, 0.08);
  box-shadow: 0 20px 60px -12px rgba(11, 79, 168, 0.1);
  overflow: hidden;
}

/* Large decorative quote mark */
.message-card__quote-mark {
  position: absolute;
  top: -10px;
  right: 40px;
  font-size: 12rem;
  font-family: Georgia, serif;
  color: rgba(11, 79, 168, 0.05);
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

/* ============================================
   MESSAGE SECTION (CEO / CHAIRPERSON)
   ============================================ */
/* --- Image Column --- */
.message-card__image-col {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(160deg, rgba(11, 79, 168, 0.06) 0%, rgba(11, 79, 168, 0.02) 100%);
  padding: 40px 32px 32px;
  align-items: center;
  justify-content: center;
}

.message-card__image-frame {
  position: relative;
  width: 280px;
  height: 280px;
  margin-bottom: 28px;
}

.message-card__image-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  margin-top: calc(-50% - 8px);
  margin-left: calc(-50% - 8px);
  border-radius: 50%;
  border: 3px dashed rgba(11, 79, 168, 0.15);
  animation: messageSpin 30s linear infinite;
}

@keyframes messageSpin {
  to { transform: rotate(360deg); }
}

.message-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: 0 12px 32px -8px rgba(11, 79, 168, 0.2);
  position: relative;
  z-index: 1;
}

.message-card__name-badge {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.message-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--titleColor);
}

.message-card__role {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primaryColor);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* --- Message Body Column --- */
.message-card__body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.message-card__heading {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--titleColor);
  margin-bottom: 12px;
}

.message-card__divider {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}

.message-card__divider span {
  height: 4px;
  border-radius: 2px;
  background: var(--primaryColor);
}

.message-card__divider span:nth-child(1) {
  width: 40px;
}

.message-card__divider span:nth-child(2) {
  width: 20px;
  opacity: 0.5;
}

.message-card__divider span:nth-child(3) {
  width: 10px;
  opacity: 0.25;
}

/* Message text */
.message-card__text p {
  color: var(--paraColor);
  line-height: 1.8;
  font-size: 1.05rem;
  font-weight: normal;
  text-align: justify;
}

.message-card__text .message-card__lead p:first-child {
  font-size: 1.1rem !important;
  font-weight: 500;
  color: var(--secondaryColor) !important;
}

/* Themed bullet list (CEO page) */
.message-card__text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.message-card__text ul li {
  position: relative;
  padding: 12px 0 12px 36px;
  color: var(--paraColor);
  line-height: 1.6;
  font-size: 1rem;
  border-bottom: 1px solid rgba(11, 79, 168, 0.06);
}

.message-card__text ul li:last-child {
  border-bottom: none;
}

.message-card__text ul li::before {
  content: "\F270";
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--primaryColor);
  font-size: 1.1rem;
}

/* Signature block */
.message-card__signature {
  margin-top: auto;
  padding-top: 24px;
}

.message-card__sig-line {
  width: 60px;
  height: 3px;
  background: var(--primaryColor);
  border-radius: 2px;
  margin-bottom: 14px;
}

.message-card__sig-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--titleColor);
  font-style: italic;
}

.message-card__sig-title {
  font-size: 0.85rem;
  color: var(--paraColor);
  margin-top: 2px;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .message-card__image-col {
    padding: 36px 24px 28px;
  }

  .message-card__image-frame {
    width: 220px;
    height: 220px;
  }

  .message-card__body {
    padding: 32px 24px;
  }

  .message-card__heading {
    font-size: 1.35rem;
  }

  .message-card__services {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px;
  }

  .message-card__quote-mark {
    font-size: 8rem;
    right: 20px;
  }

}

@media (max-width: 575.98px) {
  .message-card__image-frame {
    width: 180px;
    height: 180px;
  }

  .message-card__body {
    padding: 24px 20px;
  }

  .message-card__heading {
    font-size: 1.2rem;
  }

  .message-card__text p {
    font-size: 0.95rem;
  }

  .message-card__services {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .message-card__service-item {
    padding: 8px 10px;
  }

  .message-card__service-item span {
    font-size: 0.75rem;
  }
}