/* ═══════════════════════════════════════════
         CSS CUSTOM PROPERTIES — DARK & LIGHT MODES
      ═══════════════════════════════════════════ */
:root {
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --blue: #2563eb;
  --blue2: #3b82f6;
  --cyan: #06b6d4;
  --teal: #0d9488;
  --purple: #7c3aed;
  --orange: #ea580c;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg: #0a1628;
  --bg2: #0f1f3d;
  --bg3: #132444;
  --card-bg: #111e35;
  --card2: #152540;
  --navbar-bg: rgba(10, 22, 40, 0.96);
  --hero-overlay: linear-gradient(105deg, rgba(8, 18, 36, 0.95) 38%, rgba(8, 18, 36, 0.3) 75%, rgba(8, 18, 36, 0.15) 100%);
  --text: #c4d4e8;
  --text-muted: #5a7a9a;
  --text-white: #f0f6ff;
  --border: rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.13);
  --svc-bg: rgba(255, 255, 255, 0.07);
  --svc-hover: rgba(255, 255, 255, 0.13);
  --cinfo-icon-bg: rgba(255, 255, 255, 0.07);
  --footer-bg: #0b1a30;
  --info-band-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  --rate-card-hover: rgba(255, 255, 255, 0.05);
}

[data-theme="light"] {
  --bg: #f0f4fb;
  --bg2: #e4ecf7;
  --bg3: #dce6f5;
  --card-bg: #ffffff;
  --card2: #f5f8ff;
  --navbar-bg: rgba(255, 255, 255, 0.97);
  --hero-overlay: linear-gradient(105deg, rgba(8, 18, 50, 0.92) 38%, rgba(8, 18, 50, 0.28) 75%, rgba(8, 18, 50, 0.12) 100%);
  --text: #374a6b;
  --text-muted: #7a90b5;
  --text-white: #f0f6ff;
  --border: rgba(0, 0, 0, 0.08);
  --border2: rgba(0, 0, 0, 0.14);
  --svc-bg: rgba(0, 0, 0, 0.05);
  --svc-hover: rgba(0, 0, 0, 0.09);
  --cinfo-icon-bg: rgba(37, 99, 235, 0.1);
  --footer-bg: #1a2d4a;
  --info-band-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  --rate-card-hover: rgba(0, 0, 0, 0.02);
}

/* ═══════════════════ RESET & BASE ═══════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  transition: background 0.35s ease, color 0.35s ease;
}

.container-fluid,
.container {
  max-width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
}

/* Global container padding — gives breathing room on all screen sizes */
.container {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

@media (min-width: 576px) {
  .container {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

@media (min-width: 768px) {
  .container {
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }
}

@media (min-width: 992px) {
  .container {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}

@media (min-width: 1200px) {
  .container {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

/* ═══════════════════ NAVBAR ═══════════════════ */
.navbar {
  background: var(--navbar-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding: .8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s, background 0.35s;
}

.navbar.scrolled {
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.25);
}

.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}

.brand-main {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -.01em;
}

[data-theme="light"] .brand-main {
  color: #0f1f3d;
}

.brand-sub {
  font-size: .62rem;
  color: var(--cyan);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-link {
  color: var(--text) !important;
  font-size: .875rem;
  font-weight: 500;
  padding: .45rem 1rem !important;
  transition: color .2s;
  font-family: var(--font-body);
}

.nav-link:hover {
  color: var(--blue2) !important;
}

.nav-link.has-arrow::after {
  content: ' ▾';
  font-size: .7rem;
}

.btn-login {
  color: var(--cyan) !important;
  font-size: .875rem;
  font-weight: 600;
}

.btn-open-account {
  background: var(--blue);
  color: #fff !important;
  font-size: .825rem;
  font-weight: 600;
  padding: .55rem 1.35rem !important;
  border-radius: 8px;
  transition: background .2s, transform .15s;
}

.btn-open-account:hover {
  background: var(--blue2) !important;
  transform: translateY(-1px);
}

/* Theme toggle button */
.btn-theme {
  width: 38px;
  height: 38px;
  background: var(--svc-bg);
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: .9rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-theme:hover {
  background: var(--border2);
  color: var(--blue2);
}

.navbar-toggler {
  border: 1px solid var(--border2);
}

.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='rgba(100,150,220,.9)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Theme toggle next to hamburger on mobile */
.navbar-mobile-controls {
  display: none;
  align-items: center;
  gap: .5rem;
}

/* In collapse menu, hide the theme toggle (shown next to hamburger instead) */
.btn-theme-desktop {
  display: flex;
}

@media (max-width: 991px) {
  .navbar-mobile-controls {
    display: flex;
  }

  .btn-theme-desktop {
    display: none !important;
  }
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Woman using phone for mobile banking — face clearly visible */
  background: url('/static/img/bg.png') center 20% / cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.1) translateX(-12px);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

/* Decorative accent */
.hero-accent {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 7.5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 600;
  padding: .35rem 1rem;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

.hero-icon-wrap {
  display: none;
  /* removed — replaced with eyebrow pill */
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: .6rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--cyan);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: .975rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
  margin-bottom: 2.25rem;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--blue);
  color: #fff;
  font-size: .92rem;
  font-weight: 600;
  padding: .9rem 2.1rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.45);
  font-family: var(--font-body);
}

.btn-cta-primary:hover {
  background: var(--blue2);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 99, 235, 0.55);
  color: #fff;
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: .92rem;
  font-weight: 500;
  padding: .9rem 2.1rem;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s;
  font-family: var(--font-body);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero-stats {
  display: flex;
  gap: 2.75rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hstat-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hstat-lbl {
  font-size: .76rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: .3rem;
  letter-spacing: .03em;
}

/* ═══════════════════ INFO BAND ═══════════════════ */
.info-band {
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
  padding: 0 0 .5rem;
}

.info-card {
  border-radius: 14px;
  padding: 1.5rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: #fff;
  height: 100%;
  box-shadow: var(--info-band-shadow);
  transition: transform .25s;
}

.info-card:hover {
  transform: translateY(-3px);
}

.info-card.blue {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.info-card.teal {
  background: linear-gradient(135deg, #0d9488, #0f9e92);
}

.info-card.purple {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.info-card-label {
  font-size: .68rem;
  opacity: .8;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.info-card-val {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: .15rem;
}

.info-card-sub {
  font-size: .76rem;
  opacity: .75;
}

/* ═══════════════════ SECTION SHARED ═══════════════════ */
section {
  position: relative;
}

.sec-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--svc-bg);
  border: 1px solid var(--border2);
  color: var(--cyan);
  font-size: .76rem;
  font-weight: 600;
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

h2.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}

[data-theme="light"] h2.sec-title {
  color: #0f1f3d;
}

.sec-sub {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.78;
}

/* ═══════════════════ RATES ═══════════════════ */
.rates {
  padding: 5.5rem 0;
  background: var(--bg);
  transition: background 0.35s;
}

.rate-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.1rem 1.85rem;
  height: 100%;
  transition: transform .25s, border-color .25s, box-shadow .25s, background 0.35s;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.rate-card:hover {
  transform: translateY(-5px);
  border-color: var(--border2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.rate-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.35rem;
}

.rate-icon.blue {
  background: rgba(37, 99, 235, 0.15);
  color: var(--blue2);
}

.rate-icon.teal {
  background: rgba(13, 148, 136, 0.15);
  color: #2dd4bf;
}

.rate-icon.purple {
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
}

.rate-icon.orange {
  background: rgba(234, 88, 12, 0.15);
  color: #fb923c;
}

.rate-pct {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: .25rem;
}

.rate-pct.blue {
  color: var(--blue2);
}

.rate-pct.teal {
  color: #2dd4bf;
}

.rate-pct.purple {
  color: #c084fc;
}

.rate-pct.orange {
  color: #fb923c;
}

.rate-type {
  font-size: .7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.rate-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin: .75rem 0 .35rem;
}

[data-theme="light"] .rate-title {
  color: #0f1f3d;
}

.rate-subtitle {
  font-size: .8rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}

.rate-badge {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: .3rem .9rem;
  border-radius: 6px;
  text-transform: uppercase;
}

.rate-badge.blue {
  background: rgba(37, 99, 235, 0.15);
  color: var(--blue2);
}

.rate-badge.teal {
  background: rgba(13, 148, 136, 0.15);
  color: #2dd4bf;
}

.rate-badge.purple {
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
}

.rate-badge.orange {
  background: rgba(234, 88, 12, 0.15);
  color: #fb923c;
}

.rates-disclaimer {
  text-align: center;
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

/* ═══════════════════ SERVICES ═══════════════════ */
.services {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #1a4a8a 0%, #0e6b8e 100%);
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .services {
  background: linear-gradient(135deg, #1a3d8a 0%, #0e5b7e 100%);
}

.services::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.svc-card {
  background: var(--svc-bg);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  padding: 2.1rem 1.85rem;
  text-align: center;
  height: 100%;
  transition: background .25s, transform .25s, border-color .25s;
  color: #fff;
}

.svc-card:hover {
  background: var(--svc-hover);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.22);
}

.svc-icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: #fff;
  margin: 0 auto 1.35rem;
  transition: background .25s;
}

.svc-card:hover .svc-icon-wrap {
  background: rgba(255, 255, 255, 0.22);
}

.svc-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .7rem;
}

.svc-text {
  font-size: .875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
}

/* ═══════════════════ PROMO CTA SECTION ═══════════════════ */
.promo-section {
  padding: 5.5rem 0;
  background: var(--bg2);
  transition: background 0.35s;
}

.about-promo-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(13, 148, 136, 0.15);
  border: 1px solid rgba(13, 148, 136, 0.3);
  color: #2dd4bf;
  font-size: .75rem;
  font-weight: 600;
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.35rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.promo-heading {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

[data-theme="light"] .promo-heading {
  color: #0f1f3d;
}

.promo-desc {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.promo-img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  height: 440px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.about-check {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin-bottom: .9rem;
}

.about-check-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: rgba(13, 148, 136, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2dd4bf;
  font-size: .65rem;
  margin-top: .1rem;
}

.about-check p {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.65;
}

/* ═══════════════════ ABOUT ═══════════════════ */
.about {
  padding: 6rem 0;
  background: var(--bg);
  transition: background 0.35s;
}

.about h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}

[data-theme="light"] .about h2 {
  color: #0f1f3d;
}

.about h2 span {
  color: #2dd4bf;
}

.about-desc {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 1.85rem;
}

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: .85rem;
  height: 460px;
  align-items: stretch;
}


.about-img-grid .img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* 🔥 stops hover overflow */
  border-radius: 14px;
}

.about-img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.about-img-grid img:hover {
  transform: scale(1.03);
}


.feat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.35rem;
  margin-bottom: .85rem;
  transition: border-color .25s, background 0.35s;
}

.feat-card:hover {
  border-color: var(--border2);
}

.feat-card:last-child {
  margin-bottom: 0;
}

.feat-icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(37, 99, 235, 0.12);
  color: var(--blue2);
}

.feat-icon-wrap.teal {
  background: rgba(13, 148, 136, 0.12);
  color: #2dd4bf;
}

.feat-icon-wrap.pink {
  background: rgba(236, 72, 153, 0.12);
  color: #f472b6;
}

.feat-title {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  color: var(--text-white);
}

[data-theme="light"] .feat-title {
  color: #0f1f3d;
}

.feat-text {
  font-size: .83rem;
  color: var(--text);
  line-height: 1.65;
  margin-top: .25rem;
}

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
.testimonials {
  padding: 5.5rem 0;
  background: var(--bg2);
  transition: background 0.35s;
}

.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2.1rem;
  height: 100%;
  transition: border-color .25s, transform .25s, box-shadow .25s, background 0.35s;
}

.testi-card:hover {
  border-color: var(--border2);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.testi-stars {
  color: #fbbf24;
  font-size: 1.05rem;
  margin-bottom: 1rem;
  letter-spacing: .1em;
}

.testi-text {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.88;
  font-style: italic;
  margin-bottom: 1.6rem;
}

.testi-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  border: 2px solid rgba(37, 99, 235, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--blue2);
  flex-shrink: 0;
}

.testi-name {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--text-white);
}

[data-theme="light"] .testi-name {
  color: #0f1f3d;
}

.testi-role {
  font-size: .76rem;
  color: var(--text-muted);
}

/* ═══════════════════ CONTACT BAND ═══════════════════ */
.contact-band {
  padding: 4.5rem 0;
  background: var(--bg3);
  transition: background 0.35s;
}

.cinfo-card {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.cinfo-icon {
  width: 52px;
  height: 52px;
  background: var(--cinfo-icon-bg);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--cyan);
  margin-bottom: .85rem;
}

.cinfo-title {
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 700;
  color: var(--text-white);
}

[data-theme="light"] .cinfo-title {
  color: #0f1f3d;
}

.cinfo-text {
  font-size: .82rem;
  color: var(--text);
  line-height: 1.75;
}

/* ═══════════════════ FOOTER ═══════════════════ */
footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 4rem 0 0;
  transition: background 0.35s;
}

.footer-brand-main {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.footer-brand-sub {
  font-size: .62rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-desc {
  font-size: .83rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.78;
  margin: 1rem 0 1.35rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: .9rem;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.footer-social a:hover {
  background: var(--blue);
  color: #fff;
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: .73rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1.2rem;
  padding-left: .85rem;
  border-left: 3px solid var(--blue);
}

.footer-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: .84rem;
  text-decoration: none;
  margin-bottom: .6rem;
  transition: color .2s;
}

.footer-link i {
  font-size: .62rem;
  color: var(--blue2);
}

.footer-link:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.35rem 0;
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-copy {
  font-size: .76rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════ MOBILE BOTTOM BAR ═══════════════════ */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navbar-bg);
  backdrop-filter: blur(18px);
  border-top: 1px solid var(--border);
  padding: .7rem 1rem;
  gap: .5rem;
}

.mbb-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .28rem;
  color: var(--text-muted);
  font-size: .66rem;
  text-decoration: none;
  cursor: pointer;
  transition: color .2s;
}

.mbb-btn i {
  font-size: 1.2rem;
}

.mbb-btn.primary {
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  padding: .5rem .75rem;
  margin: 0 .25rem;
}

.mbb-btn.secondary {
  border: 1px solid rgb(169, 167, 167);

  border-radius: 10px;
  padding: .5rem .75rem;
  margin: 0 .25rem;
}

/* ═══════════════════ SCROLL REVEAL ═══════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .1s;
}

.d2 {
  transition-delay: .2s;
}

.d3 {
  transition-delay: .3s;
}

.d4 {
  transition-delay: .4s;
}

/* Hero animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.ha>* {
  opacity: 0;
  animation: fadeUp .75s ease forwards;
}

.ha>*:nth-child(1) {
  animation-delay: .1s;
}

.ha>*:nth-child(2) {
  animation-delay: .25s;
}

.ha>*:nth-child(3) {
  animation-delay: .4s;
}

.ha>*:nth-child(4) {
  animation-delay: .55s;
}

.ha>*:nth-child(5) {
  animation-delay: .7s;
}

.ha>*:nth-child(6) {
  animation-delay: .85s;
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 991px) {
  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding: 4rem 0 6.5rem;
  }

  .hero-stats {
    gap: 2rem;
  }

  .about-img-grid {
    height: 340px;
  }

  .promo-img {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .mobile-bottom-bar {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .hstat-val {
    font-size: 1.55rem;
  }

  .about-img-grid {
    height: 260px;
    gap: .6rem;
  }

  .promo-img {
    height: 260px;
    border-radius: 14px;
  }

  .info-card {
    padding: 1.1rem 1.2rem;
  }

  .info-band {
    margin-top: -2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-content {
    padding: 3.5rem 0 6rem;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
  }

  .hstat-val {
    font-size: 1.4rem;
  }

  .hero-desc {
    font-size: .9rem;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: .8rem 1.5rem;
    font-size: .875rem;
    width: 100%;
    justify-content: center;
  }

  .about-img-grid {
    height: 220px;
  }

  h2.sec-title {
    font-size: 1.7rem;
  }

  .rate-pct {
    font-size: 2.1rem;
  }

  section {
    padding: 4rem 0;
  }

  .services,
  .rates,
  .testimonials,
  .contact-band,
  .about,
  .promo-section {
    padding: 4rem 0;
  }
}

/* Light mode specific overrides */
[data-theme="light"] .services h2.sec-title,
[data-theme="light"] .services .sec-sub {
  color: #fff !important;
  opacity: 1;
}

[data-theme="light"] .services .sec-sub {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Smooth theme transition for all elements */
*,
*::before,
*::after {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* But don't delay animations/transforms */
.reveal,
.rate-card,
.svc-card,
.testi-card,
.info-card,
.hero-bg,
.about-img-grid img {
  transition: transform .25s, border-color .25s, box-shadow .25s, opacity .65s, background-color 0.35s, color 0.35s;
}