/* ============================================================
   MASTER MUDRA PAYMENTS SOLUTIONS — Main Stylesheet
   Design system: Blue #1a5fb4 | Green #2da842 | Light theme
   ============================================================ */

/* ── 1. CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Brand */
  --clr-blue:        #1a5fb4;
  --clr-blue-dark:   #134a8e;
  --clr-blue-light:  #d6e8fb;
  --clr-green:       #2da842;
  --clr-green-dark:  #1e8030;
  --clr-green-light: #d4f5da;

  /* Gradient */
  --grad:            linear-gradient(135deg, #1a5fb4 0%, #2da842 100%);
  --grad-hover:      linear-gradient(135deg, #134a8e 0%, #1e8030 100%);
  --grad-subtle:     linear-gradient(135deg, rgba(26,95,180,.08) 0%, rgba(45,168,66,.06) 100%);

  /* Surfaces */
  --bg-page:         #f6f9fe;
  --bg-alt:          #eef3fb;
  --bg-card:         #ffffff;
  --bg-dark:         #0c1829;
  --bg-dark-card:    #132036;

  /* Text */
  --txt-heading:     #0f1d36;
  --txt-body:        #374a6a;
  --txt-muted:       #6b7c9d;
  --txt-white:       #ffffff;

  /* Borders */
  --border:          #dde6f5;
  --border-focus:    var(--clr-blue);

  /* Shadows */
  --shadow-xs:  0 1px  4px rgba(26,95,180,.07);
  --shadow-sm:  0 2px 12px rgba(26,95,180,.09);
  --shadow-md:  0 8px 28px rgba(26,95,180,.12);
  --shadow-lg:  0 20px 56px rgba(26,95,180,.15);

  /* Radii */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill:50px;

  /* Spacing scale (8px base) */
  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  40px;
  --sp-6:  48px;
  --sp-7:  64px;
  --sp-8:  80px;
  --sp-9:  96px;
  --sp-10: 120px;

  /* Transition */
  --ease: .2s ease-out;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-page);
  color: var(--txt-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--txt-heading);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: color var(--ease); }
img, svg { max-width: 100%; display: block; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-page); }
::-webkit-scrollbar-thumb { background: var(--clr-blue); border-radius: 4px; }

/* ── 3. UTILITIES ─────────────────────────────────────────── */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-blue);
  background: var(--clr-blue-light);
  border-radius: var(--r-pill);
  padding: 5px 18px;
  margin-bottom: var(--sp-2);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--txt-heading);
  margin-bottom: var(--sp-2);
}

.section-desc {
  font-size: 1rem;
  color: var(--txt-muted);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

.section-divider {
  width: 52px;
  height: 4px;
  background: var(--grad);
  border-radius: 4px;
  margin: var(--sp-2) auto;
}

.section-head { text-align: center; margin-bottom: var(--sp-7); }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  border-radius: var(--r-pill);
  padding: 14px 32px;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(26,95,180,.3);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
  white-space: nowrap;
}
.btn-primary:hover {
  color: #fff;
  background: var(--grad-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(26,95,180,.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--clr-blue);
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid var(--clr-blue);
  border-radius: var(--r-pill);
  padding: 12px 30px;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--clr-blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--clr-blue);
  font-weight: 700;
  font-size: .95rem;
  border: none;
  border-radius: var(--r-pill);
  padding: 14px 32px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-white:hover { background: #f0f4ff; color: var(--clr-blue); transform: translateY(-2px); }

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border: 2px solid rgba(255,255,255,.65);
  border-radius: var(--r-pill);
  padding: 12px 30px;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-white-outline:hover { border-color: #fff; background: rgba(255,255,255,.12); color:#fff; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #1aaa53);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  border-radius: var(--r-pill);
  padding: 10px 22px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
  transition: transform var(--ease), box-shadow var(--ease);
  white-space: nowrap;
}
.btn-wa:hover { color:#fff; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(37,211,102,.45); }

/* ── 4. PRELOADER ─────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  transition: opacity .25s ease, visibility .25s ease;
  will-change: opacity;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-logo { animation: logoBreathe .9s ease-in-out infinite alternate; }
@keyframes logoBreathe {
  from { transform: scale(1);    }
  to   { transform: scale(1.04); }
}

.preloader-bar {
  width: 140px; height: 3px;
  background: var(--border);
  border-radius: 4px; overflow: hidden;
}
.preloader-bar-fill {
  height: 100%; border-radius: 4px;
  background: var(--grad);
  animation: barSlide .9s ease-in-out infinite;
}
@keyframes barSlide {
  0%   { width: 0%;  margin-left: 0;    }
  50%  { width: 70%; margin-left: 0;    }
  100% { width: 0%;  margin-left: 100%; }
}

.preloader-text {
  font-size: .75rem; font-weight: 600;
  color: var(--txt-muted);
  letter-spacing: .07em; text-transform: uppercase;
}

/* ── 5. NAVBAR ────────────────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding var(--ease), border-color var(--ease), box-shadow var(--ease);
}
#mainNav.scrolled {
  padding: 8px 0;
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-logo { height: 46px; width: auto; }

.navbar-nav .nav-link {
  color: var(--txt-body) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: 8px 14px !important;
  border-radius: var(--r-sm);
  position: relative;
  transition: color var(--ease);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
  transition: width var(--ease);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--clr-blue) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: 55%; }

.navbar-toggler {
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  padding: 6px 10px;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a5fb4' stroke-width='2.2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── 6. HERO ──────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  padding-top: 88px;
  background: linear-gradient(150deg, #ebf3ff 0%, #f6f9fe 45%, #eafbee 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Grid overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,95,180,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,95,180,.04) 1px, transparent 1px);
  background-size: 52px 52px;
  animation: gridDrift 28s linear infinite;
  pointer-events: none;
}
@keyframes gridDrift { to { background-position: 52px 52px; } }

/* Decorative orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  will-change: transform;
  animation: orbDrift 8s ease-in-out infinite alternate;
}
.hero-orb-1 { width: 420px; height: 420px; background: rgba(26,95,180,.08);  top: -100px; right: -80px; }
.hero-orb-2 { width: 320px; height: 320px; background: rgba(45,168,66,.06);  bottom: -80px; left: -60px; animation-delay: -4s; }
.hero-orb-3 { width: 200px; height: 200px; background: rgba(26,95,180,.04);  top: 48%; right: 20%; animation-delay: -2s; }
@keyframes orbDrift {
  from { transform: translate(0,0); }
  to   { transform: translate(14px,-20px); }
}

/* Hero inner */
.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 50px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,95,180,.08);
  border: 1px solid rgba(26,95,180,.18);
  border-radius: var(--r-pill);
  padding: 6px 18px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--clr-blue);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.hero-badge .badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--clr-green);
  animation: dotPulse 1.6s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { transform: scale(1);   opacity: 1;   }
  50%      { transform: scale(1.5); opacity: .45; }
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -.025em;
  color: var(--txt-heading);
  margin-bottom: var(--sp-3);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--txt-muted);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: var(--sp-4);
}

/* Feature pills */
.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: var(--sp-5); }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--txt-body);
  box-shadow: var(--shadow-xs);
}
.hero-pill .pill-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--grad-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
  color: var(--clr-blue);
  flex-shrink: 0;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

/* ── Hero Visual ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--sp-5) 0;
}

.payment-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-4);
  width: 300px;
  box-shadow: var(--shadow-lg);
  animation: cardFloat 3.5s ease-in-out infinite alternate;
  position: relative;
  z-index: 2;
  will-change: transform;
}
@keyframes cardFloat {
  from { transform: translateY(0px); }
  to   { transform: translateY(-14px); }
}

.payment-card .card-header-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--sp-3);
}
.payment-card .check-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
  box-shadow: 0 6px 18px rgba(26,95,180,.28);
  flex-shrink: 0;
}
.payment-card .status-text { font-size: .82rem; font-weight: 700; color: var(--clr-green); }
.payment-card .status-sub  { font-size: .72rem; color: var(--txt-muted); }

.payment-card .amount-label { font-size: .78rem; color: var(--txt-muted); margin-bottom: 2px; }
.payment-card .amount-value {
  font-size: 2.4rem; font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: var(--sp-3);
}

.payment-card .card-divider { border: none; border-top: 1px solid var(--border); margin: var(--sp-2) 0; }

.payment-card .card-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-2);
}
.payment-card .via-label { font-size: .78rem; color: var(--txt-muted); }
.payment-card .view-link { font-size: .78rem; font-weight: 700; color: var(--clr-blue); }
.payment-card .view-link:hover { color: var(--clr-green); }

.payment-chip {
  display: inline-block;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 3px 12px;
  font-size: .72rem;
  color: var(--txt-muted);
  font-weight: 500;
}

/* QR floating card */
.qr-float {
  position: absolute;
  right: -40px;
  bottom: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
  box-shadow: var(--shadow-md);
  animation: cardFloat 4.5s ease-in-out infinite alternate;
  animation-delay: -2.2s;
  z-index: 3;
}
.qr-grid {
  width: 72px; height: 72px;
  background: repeating-conic-gradient(#1a5fb4 0% 25%, #fff 0% 50%) 0 0/8px 8px;
  border-radius: 4px;
}
.qr-label {
  font-size: .6rem;
  font-weight: 800;
  color: var(--clr-blue);
  text-align: center;
  margin-top: 5px;
  letter-spacing: .06em;
}

/* Floating tags */
.float-tag {
  position: absolute;
  background: var(--grad);
  color: #fff;
  font-size: .73rem;
  font-weight: 700;
  border-radius: var(--r-pill);
  padding: 7px 16px;
  box-shadow: 0 6px 20px rgba(26,95,180,.28);
  white-space: nowrap;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 6px;
}
.float-tag-security { top: 12%; left: 0; }
.float-tag-instant  { bottom: 30%; left: -16px; animation: cardFloat 4.5s ease-in-out infinite alternate; animation-delay: -1s; }

/* ── Stats Bar ── */
.stats-bar {
  position: relative;
  z-index: 2;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: var(--sp-3) 0;
}
.stat-item { text-align: center; padding: var(--sp-2) var(--sp-1); }
.stat-item + .stat-item { border-left: 1px solid var(--border); }
.stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  display: block;
}
.stat-lbl {
  font-size: .78rem;
  color: var(--txt-muted);
  font-weight: 500;
  margin-top: 3px;
  display: block;
}

/* ── 7. SERVICES ──────────────────────────────────────────── */
#services { background: var(--bg-page); padding: var(--sp-10) 0; }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-4);
  height: 100%;
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26,95,180,.22);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 60px; height: 60px;
  border-radius: var(--r-md);
  background: var(--grad-subtle);
  border: 1px solid rgba(26,95,180,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-3);
  font-size: 1.6rem;
  color: var(--clr-blue);
  transition: transform var(--ease);
}
.service-card:hover .service-icon-wrap { transform: scale(1.08); }

.service-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt-heading);
  margin-bottom: var(--sp-1);
}
.service-card p {
  font-size: .88rem;
  color: var(--txt-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── 8. COUNTER STATS ─────────────────────────────────────── */
#counter-stats {
  background: var(--grad);
  padding: var(--sp-8) 0;
}
.cstat-box { text-align: center; padding: var(--sp-2); }
.cstat-box .cstat-num  { font-size: clamp(2.2rem,4.5vw,3.2rem); font-weight: 900; color: #fff; line-height: 1; }
.cstat-box .cstat-unit { font-size: 1.3rem; font-weight: 900; color: rgba(255,255,255,.85); }
.cstat-box .cstat-lbl  { font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.72); margin-top: 8px; }

/* Separator lines between stats */
.cstat-sep {
  width: 1px;
  background: rgba(255,255,255,.2);
  align-self: stretch;
  min-height: 60px;
}

/* ── 9. WHY CHOOSE US ─────────────────────────────────────── */
#why { background: var(--bg-alt); padding: var(--sp-10) 0; }

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  height: 100%;
  box-shadow: var(--shadow-xs);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26,95,180,.2);
  box-shadow: var(--shadow-lg);
}

.why-icon-wrap {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-3);
  font-size: 1.9rem; color: #fff;
  box-shadow: 0 8px 26px rgba(26,95,180,.28);
  transition: transform var(--ease), box-shadow var(--ease);
}
.why-card:hover .why-icon-wrap {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 14px 38px rgba(26,95,180,.38);
}

.why-card h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--txt-heading); }
.why-card p  { font-size: .88rem; color: var(--txt-muted); line-height: 1.72; margin: 0; }

/* ── 10. HOW IT WORKS ─────────────────────────────────────── */
#process { background: var(--bg-page); padding: var(--sp-10) 0; }

.steps-row { position: relative; }

/* Connector dashes between cards on desktop */
/* .steps-row::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.67% + 30px);
  right: calc(16.67% + 30px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--clr-blue) 0, var(--clr-blue) 8px, transparent 8px, transparent 18px);
  opacity: .25;
} */

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-4) var(--sp-4);
  text-align: center;
  height: 100%;
  position: relative;
  box-shadow: var(--shadow-xs);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26,95,180,.2);
  box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-weight: 900;
    font-size: .9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(26, 95, 180, .32);
}

.step-card .step-icon {
  font-size: 2.2rem;
  color: var(--clr-blue);
  margin-bottom: var(--sp-2);
  display: block;
}
.step-card h5 { font-size: 1.02rem; font-weight: 700; margin-bottom: 10px; color: var(--txt-heading); }
.step-card p  { font-size: .88rem; color: var(--txt-muted); line-height: 1.7; margin: 0; }

/* ── 11. CTA BANNER ──────────────────────────────────────── */
#cta-banner {
  background: var(--grad);
  padding: var(--sp-9) 0;
  position: relative;
  overflow: hidden;
}
#cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 2px, transparent 2px);
  background-size: 26px 26px;
}
#cta-banner h2 { color: #fff; font-size: clamp(1.75rem,4vw,2.6rem); font-weight: 900; margin-bottom: 12px; }
#cta-banner p  { color: rgba(255,255,255,.78); font-size: 1rem; margin-bottom: 0; }

/* ── 12. CONTACT ─────────────────────────────────────────── */
#contact { background: var(--bg-alt); padding: var(--sp-10) 0; }

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-5);
  height: 100%;
  box-shadow: var(--shadow-sm);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:first-child { padding-top: 0; }
.contact-row:last-child  { border-bottom: none; padding-bottom: 0; }

.contact-icon-wrap {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  background: var(--grad-subtle);
  border: 1px solid rgba(26,95,180,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--clr-blue);
}

.contact-info-text strong {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  color: var(--txt-heading);
  margin-bottom: 4px;
}
.contact-info-text a,
.contact-info-text p {
  font-size: .88rem;
  color: var(--txt-muted);
  margin: 0;
  line-height: 1.6;
  transition: color var(--ease);
}
.contact-info-text a:hover { color: var(--clr-blue); }

.map-card {
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
  min-height: 420px;
}
.map-card iframe { display: block; }

/* ── 13. FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.65);
  padding: var(--sp-9) 0 var(--sp-4);
}

.footer-logo { height: 46px; width: auto; margin-bottom: var(--sp-3); }
.footer-about { font-size: .88rem; line-height: 1.75; margin-bottom: var(--sp-3); }

.footer-heading {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--clr-green-light);
  margin-bottom: var(--sp-3);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: .87rem;
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 7px;
  transition: color var(--ease), padding-left var(--ease);
}
.footer-links a::before {
  content: '›';
  color: var(--clr-green-light);
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
}
.footer-links a:hover { color: #fff; padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .87rem;
  margin-bottom: 12px;
  color: rgba(255,255,255,.5);
}
.footer-contact-item i { color: var(--clr-green-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.5); transition: color var(--ease); }
.footer-contact-item a:hover { color: #fff; }

.social-row { display: flex; gap: 10px; margin-top: var(--sp-2); }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  transition: all var(--ease);
}
.social-btn:hover {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: var(--sp-6);
  padding-top: var(--sp-3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.35); margin: 0; }
.footer-bottom .footer-heart { color: var(--clr-green-light); }

/* ── 14. FLOATING ELEMENTS ───────────────────────────────── */
/* WhatsApp button */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1aaa53);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: #fff;
  box-shadow: 0 6px 26px rgba(37,211,102,.45);
  animation: waPulse 2.8s ease infinite;
  transition: transform var(--ease);
}
.wa-float:hover { color:#fff; transform: scale(1.1); }
@keyframes waPulse {
  0%   { box-shadow: 0 0 0  0px rgba(37,211,102,.65); }
  70%  { box-shadow: 0 0 0 18px rgba(37,211,102,0);   }
  100% { box-shadow: 0 0 0  0px rgba(37,211,102,0);   }
}

/* Back-to-top */
#back-top {
  position: fixed;
  bottom: 96px; right: 28px;
  z-index: 997;
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  background: #fff;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--clr-blue);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: all var(--ease);
}
#back-top.visible { opacity: 1; visibility: visible; }
#back-top:hover { background: var(--grad); border-color: transparent; color: #fff; }

/* ── 15. RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 991.98px) {
  .qr-float,
  .float-tag-security,
  .float-tag-instant { display: none; }

  .hero-visual { margin-top: var(--sp-5); }
  .payment-card { margin: 0 auto; }

  .steps-row::before { display: none; }

  .stat-item + .stat-item { border-left: none; }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

@media (max-width: 767.98px) {
  #services, #why, #process, #contact { padding: 72px 0; }
  #counter-stats { padding: 56px 0; }
  #cta-banner { padding: 64px 0; }

  .hero-title { font-size: 2.2rem; }
  .hero-pills { gap: 8px; }

  .contact-info-card { margin-bottom: var(--sp-4); }
  .map-card { min-height: 280px; }

  /* Kill heavy GPU animations on mobile for speed */
  #hero::before { animation: none; }
  .hero-orb { filter: blur(40px); animation: none; }
  .payment-card, .qr-float { animation: none; }
}

@media (max-width: 575.98px) {
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }

  .cstat-sep { display: none; }
}
