/* ==========================================================================
   THEME REFRESH v2 — bolder, more distinctive visual language.
   --------------------------------------------------------------------------
   Still a pure presentation layer, loaded after style.css. No admin-panel
   data, Blade logic, or business behavior is touched by this file — every
   heading, image and figure you see still comes from the same place it
   always did.

   Brand colors are untouched on purpose: everything below is still built
   from --primary-color and --secondary-color (set by the admin panel's
   Basic Settings), plus ink/white/gray neutrals. No new brand hues are
   introduced. Conventional status colors (green = success, red = failed,
   amber = pending) are kept for transaction badges since that's a
   usability convention, not a brand color.
   ========================================================================== */

:root {
  --ink: #0b0d14;
  --ink-soft: #565b6e;
  --ink-faint: #8a8fa3;
  --surface: #ffffff;
  --surface-muted: #f4f7fb;
  --border-soft: #e7e9f2;
  --primary-tint: color-mix(in srgb, var(--primary-color) 10%, white);
  --primary-tint-strong: color-mix(in srgb, var(--primary-color) 20%, white);
  --primary-shade: color-mix(in srgb, var(--primary-color) 85%, black);
  --shadow-sm: 0 1px 3px rgba(10, 12, 20, 0.04);
  --shadow-md: 0 8px 24px rgba(10, 12, 20, 0.07);
  --shadow-lg: 0 20px 50px rgba(10, 12, 20, 0.10);
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; }

body {
  color: var(--ink-soft);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--primary-tint-strong); color: var(--ink); }

a { transition: color .25s var(--ease); }

h1, h2, h3, h4, h5, h6,
.title {
  color: var(--ink);
  letter-spacing: -0.02em;
}

.banner-title .title,
.app-section .titl {
  letter-spacing: -0.03em;
  line-height: 1.1;
}

p { line-height: 1.75; }

.container.custom-container { max-width: 1280px; }

/* Centers any "Exchange Rate / 1 X = Y X" box wherever it appears — the
   homepage calculator and every dashboard money-movement form share this
   same markup. */
.exchange-area {
  text-align: center;
}

/* --------------------------------------------------------------------------
   Section rhythm
   -------------------------------------------------------------------------- */
section { position: relative; padding-block: 12px; }

.chooice-section,
.testimonial-section {
  background: var(--surface-muted);
}

/* PayPal-style bold trust/security band — a solid color block rather
   than a busy card grid, used for the single most important reassurance
   message on the page. Still your brand blue, just used with more
   confidence and less decoration, the way PayPal treats its "safety and
   privacy" section. */
.security-section {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
}

.security-section .section-header .title {
  background: rgba(255,255,255,0.12);
}

.security-section .header-title .title,
.security-section .section-title .title {
  color: #fff;
}

.brand-section { background: var(--surface); border-block: 1px solid var(--border-soft); }

/* --------------------------------------------------------------------------
   Section headers
   -------------------------------------------------------------------------- */
.section-header .title,
.section-header .tite {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: #fff !important;
}

.section-header .title::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-color);
  display: inline-block;
}

.header-title .title,
.section-title .title,
.section-title.title {
  font-size: clamp(30px, 3.6vw, 46px);
  font-weight: 800;
  margin-top: 18px;
  line-height: 1.2;
}

/* --------------------------------------------------------------------------
   Buttons — pill-shaped, bolder shadow
   -------------------------------------------------------------------------- */
.btn--base {
  border-radius: var(--radius-pill);
  padding: 14px 34px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px color-mix(in srgb, var(--primary-color) 32%, transparent);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}

.btn--base:hover,
.btn--base:focus {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px color-mix(in srgb, var(--primary-color) 36%, transparent);
}

.btn--base.active {
  box-shadow: none;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.banner-btn .btn--base:last-child {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
  border: 1.5px solid var(--ink);
}

.banner-btn .btn--base:last-child:hover {
  background: var(--ink);
  color: #fff;
}

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
.header-section {
  background: var(--surface);
  box-shadow: 0 1px 0 var(--border-soft);
}

.header-bottom-area { padding-block: 8px; }

.site-logo img { max-height: 40px; width: auto; }

.main-menu > li > a.nav-link {
  font-weight: 700;
  color: var(--ink);
  padding: 10px 18px !important;
  border-radius: var(--radius-pill);
  transition: background .25s var(--ease), color .25s var(--ease);
}

.main-menu > li > a.nav-link:hover,
.main-menu > li > a.nav-link.active {
  background: var(--ink);
  color: #fff !important;
}

.header-action .btn--base { padding: 12px 28px; }

/* --------------------------------------------------------------------------
   Hero / banner — bolder treatment with an angled base edge
   -------------------------------------------------------------------------- */
.banner-section {
  padding-block: 80px 96px;
  background:
    radial-gradient(1100px 420px at 88% -8%, var(--primary-tint) 0%, transparent 60%),
    var(--surface);
  overflow: hidden;
}

.banner-section::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 64px;
  background: var(--surface-muted);
  clip-path: polygon(0 100%, 100% 40%, 100% 100%);
  pointer-events: none;
}

.banner-content .banner-title { margin-bottom: 20px; }
.banner-content .banner-paragraph p { font-size: 17px; max-width: 46ch; }

.banner-form-wrapper {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.banner-form-wrapper .title,
.banner-form-wrapper p,
.banner-form-wrapper label,
.banner-form-wrapper .form-group label { color: #fff; }

.banner-form-wrapper .exchange-area {
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 700;
  color: #fff;
}

.banner-form .form-group label {
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  display: inline-block;
}

.banner-form .form--control,
.form--control {
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 12px 16px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.banner-form-wrapper .form--control {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
}

.banner-form-wrapper .form--control::placeholder { color: rgba(255,255,255,0.5); }

.banner-form .form--control:focus,
.form--control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px var(--primary-tint);
  outline: none;
}

.sending-btn .btn--base { padding-block: 15px; width: 100%; justify-content: center; }

/* --------------------------------------------------------------------------
   Feature / Choose-us / Security grids — shadow-only cards, no border
   -------------------------------------------------------------------------- */
.feature-item,
.choice-item,
.security-item {
  height: 100%;
  background: var(--surface);
  border: none;
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.feature-item:hover,
.choice-item:hover,
.security-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-item .icon,
.choice-item .icon,
.security-item .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--primary-color), color-mix(in srgb, var(--primary-color) 60%, var(--ink)));
  color: #fff;
  font-size: 26px;
  margin-bottom: 22px;
  box-shadow: 0 10px 20px color-mix(in srgb, var(--primary-color) 30%, transparent);
}

.feature-content .title,
.choice-content .title,
.security-details .title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.feature-content .details,
.choice-content p,
.security-details .details {
  color: var(--ink-soft);
  font-size: 15px;
}

/* --------------------------------------------------------------------------
   App promo section
   -------------------------------------------------------------------------- */
.app-section .titl { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; }

.app-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 22px;
  margin-top: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.app-btn * { color: #fff; }

.app-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.app-btn .app-icon img { width: 32px; }

.app-btn .content span { color: rgba(255,255,255,0.6); font-size: 12px; }
.app-btn .content .title { font-size: 16px; font-weight: 700; margin: 0; }

.app-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonial-wrapper {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.testimonial-thumb img {
  border-radius: 50%;
  width: 64px;
  height: 64px;
  object-fit: cover;
}

.testimonial-ratings { color: #f5a623; margin-bottom: 12px; }

.testimonial-content p {
  font-size: 16px;
  color: var(--ink);
  font-style: italic;
}

.testimonial-user-content .title {
  font-size: 15px;
  font-weight: 700;
  margin-top: 16px;
}

.testimonial-user-content .title span {
  display: block;
  font-weight: 400;
  color: var(--ink-faint);
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   Brand strip
   -------------------------------------------------------------------------- */
.brand-item img {
  max-height: 36px;
  width: auto;
  filter: grayscale(1) opacity(0.55);
  transition: filter .3s var(--ease);
}

.brand-item:hover img { filter: grayscale(0) opacity(1); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer-section {
  background: var(--ink);
  color: #c7c9da;
}

.footer-section .footer-widget p { color: #9599b0; }

.footer-list li a,
.footer-section a { color: #c7c9da; }

.footer-list li a:hover { color: var(--primary-color); }

.footer-top-area { padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); }

.footer-bottom-area { padding-block: 26px; }

.copyright-area p span { color: var(--primary-color); font-weight: 700; }

.footer-social li a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}

.footer-social li a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   Cookie banner
   -------------------------------------------------------------------------- */
.cookie-main-wrapper {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   About page
   -------------------------------------------------------------------------- */
.about-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-content .title { font-size: clamp(28px, 3.2vw, 38px); margin-bottom: 16px; }

/* --------------------------------------------------------------------------
   Contact page
   -------------------------------------------------------------------------- */
.contact-widget {
  background: var(--surface);
  border: none;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.contact-widget:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.contact-item-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--primary-color), color-mix(in srgb, var(--primary-color) 60%, var(--ink)));
  color: #fff;
  font-size: 22px;
  margin-bottom: 16px;
}

.contact-form-area {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.contact-form-area .title,
.contact-form-area p,
.contact-form-area label,
.contact-form-area .form-group label { color: #fff; }
.contact-form .form-group label { font-weight: 600; color: #fff; margin-bottom: 8px; display: inline-block; }
.contact-form-area .form--control { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); color: #fff; }
.contact-form-area .form--control::placeholder { color: rgba(255,255,255,0.5); }
.massage-area .form--control { min-height: 140px; }

/* --------------------------------------------------------------------------
   FAQ page
   -------------------------------------------------------------------------- */
.faq-wrapper .faq-item {
  background: var(--surface);
  border: none;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-content { padding: 20px 26px; font-weight: 700; color: var(--ink); cursor: pointer; }

.faq-item .right-icon {
  color: var(--primary-color);
}

/* ==========================================================================
   USER DASHBOARD (post-login)
   ========================================================================== */

body { background: var(--surface-muted); }

.main-wrapper { background: var(--surface-muted); }

/* --------------------------------------------------------------------------
   Sidebar
   -------------------------------------------------------------------------- */
.sidebar {
  background: var(--ink);
  border-right: none;
}

.sidebar-logo { padding-block: 26px; }
.sidebar-logo img { max-height: 34px; }

.sidebar-menu-item > a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  margin: 3px 12px;
  border-radius: var(--radius-pill);
  color: #b7bacf;
  font-weight: 600;
  transition: background .25s var(--ease), color .25s var(--ease);
}

.sidebar-menu-item > a:hover,
.sidebar-menu-item.active > a,
.sidebar-menu-item > a.active {
  background: var(--primary-color);
  color: #fff;
}

.sidebar-menu-item .menu-icon { font-size: 18px; width: 20px; text-align: center; }

.sidebar-submenu {
  margin-left: 14px;
  border-left: 1px dashed rgba(255,255,255,.14);
  padding-left: 8px;
}

/* --------------------------------------------------------------------------
   Top nav
   -------------------------------------------------------------------------- */
.navbar-wrapper {
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.dashboard-path .main-path a { color: var(--ink-faint); font-weight: 600; }
.dashboard-path .active-path { color: var(--ink); font-weight: 800; }

.notification-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s var(--ease);
}

.notification-icon:hover { background: var(--primary-tint); }

.header-user-thumb img {
  border-radius: 50%;
  width: 44px;
  height: 44px;
  object-fit: cover;
  border: 2px solid var(--border-soft);
}

/* --------------------------------------------------------------------------
   Wallet balance cards — premium dark "membership card" treatment
   -------------------------------------------------------------------------- */
.my-wallet .title { font-size: 20px; font-weight: 800; color: var(--ink); }

.wallet-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background:
    radial-gradient(600px 200px at 100% 0%, color-mix(in srgb, var(--primary-color) 35%, transparent) 0%, transparent 60%),
    linear-gradient(135deg, var(--ink), #1c2030);
  border: none;
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.wallet-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.wallet-details p { color: rgba(255,255,255,0.55); font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.wallet-details .title { font-size: 24px; font-weight: 800; color: #fff; }

.wallet-item .country-flag img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.12);
}

/* --------------------------------------------------------------------------
   Chart card
   -------------------------------------------------------------------------- */
.dashboard-chart .title { font-size: 18px; font-weight: 800; margin-bottom: 16px; }

.chart-bg {
  background: var(--surface);
  border: none;
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------------------
   Transaction list
   -------------------------------------------------------------------------- */
.dashboard-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dashboard-header-wrapper .title { font-size: 18px; font-weight: 800; }

.dashboard-list-wrapper {
  background: var(--surface);
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.dashboard-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-soft);
  transition: background .2s var(--ease);
}

.dashboard-list-item-wrapper:last-child .dashboard-list-item { border-bottom: none; }

.dashboard-list-item:hover { background: var(--surface-muted); }

.dashboard-list-user-wrapper { display: flex; align-items: center; gap: 14px; }

.dashboard-list-user-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-tint);
  color: var(--primary-color);
  font-size: 18px;
  flex-shrink: 0;
}

.dashboard-list-item.receive .dashboard-list-user-icon {
  background: color-mix(in srgb, #16a34a 14%, white);
  color: #16a34a;
}

.dashboard-list-item.sent .dashboard-list-user-icon {
  background: color-mix(in srgb, #dc2626 12%, white);
  color: #dc2626;
}

.dashboard-list-user-content .title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }

.dashboard-list-right { text-align: right; }
.dashboard-list-right .main-money { font-size: 16px; font-weight: 800; }
.dashboard-list-right .exchange-money { color: var(--ink-faint); font-size: 13px; font-weight: 400; }

/* Status badges */
.badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.badge--success { background: color-mix(in srgb, #16a34a 14%, white); color: #16a34a; }
.badge--warning { background: color-mix(in srgb, #d97706 14%, white); color: #d97706; }
.badge--danger  { background: color-mix(in srgb, #dc2626 12%, white); color: #dc2626; }

/* --------------------------------------------------------------------------
   Forms / cards — Add Money, Send Money, Withdraw, Exchange
   -------------------------------------------------------------------------- */
.custom-card {
  background: var(--surface);
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.card-form .card-body { padding: 36px; }

.card-form .form-group label {
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  display: inline-block;
}

.card-form .exchange-area {
  background: var(--surface-muted);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
  font-weight: 700;
}

.card-form .note-area {
  background: var(--primary-tint);
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--primary-shade);
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   Tables
   -------------------------------------------------------------------------- */
.custom-table {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.custom-table thead th {
  background: var(--surface-muted);
  color: var(--ink-faint);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 800;
  border-bottom: 1px solid var(--border-soft);
}

.custom-table tbody tr:hover { background: var(--surface-muted); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .banner-section { padding-block: 56px 72px; }
  .banner-form-wrapper { padding: 26px; }
  .feature-item, .choice-item, .security-item { padding: 28px 24px; }
  .footer-bottom-area { flex-direction: column; gap: 14px; text-align: center; }
  .card-form .card-body { padding: 24px; }
  .dashboard-list-item { flex-direction: column; align-items: flex-start; gap: 10px; }
  .dashboard-list-right { text-align: left; }
}

@media (max-width: 575px) {
  .section-header .title { font-size: 11px; padding: 6px 14px; }
  .testimonial-wrapper { padding: 26px; }
  .contact-form-area { padding: 26px; }
}
