/* ===== VikasCourier Custom Styles (Bootstrap supplement) ===== */

:root {
  --vc-blue: #2563eb;
  --vc-blue-dark: #1d4ed8;
  --vc-blue-light: #eaf2ff;
  --vc-blue-border: #bfdbfe;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: #0b1730;
  -webkit-font-smoothing: antialiased;
}

/* ===== NO HORIZONTAL SCROLL =====
   Stops any stray wide element from making the whole page scroll sideways on
   mobile. `clip` is used where supported instead of `hidden`, because `hidden`
   turns the element into a scroll container and breaks the sticky navbar. */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
@supports (overflow: clip) {
  html, body { overflow-x: clip; }
}

/* Long words / URLs shouldn't be able to push the layout wider than the screen */
h1, h2, h3, h4, h5, h6, p, a, span, li, strong { overflow-wrap: break-word; }

/* ===== NAVBAR ===== */
.navbar-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0b1730 !important;
  line-height: 1;
  padding: 0 !important;
  margin: 0;
}

.navbar-brand .green { color: var(--vc-blue); }

/* Lock navbar height, kill Bootstrap's default padding */
.navbar.sticky-top {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  min-height: 72px;
  border-bottom: 1px solid #eaf2ff !important;
  box-shadow: 0 1px 0 #e5e7eb !important;
}

@media (min-width: 992px) {
  .navbar .container-xl {
    flex-wrap: nowrap;
    height: 72px;
    display: flex;
    align-items: center;
  }
}

/* Kill any underline/border artifacts on collapse */
.navbar-collapse {
  border: none !important;
  box-shadow: none !important;
}

/* Mobile dropdown panel — full width, clean stack, not clipped */
@media (max-width: 991.98px) {
  .navbar .container-xl {
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar-collapse {
    width: 100%;
    background: #fff;
    border-top: 1px solid #eaf2ff !important;
    margin-top: 10px;
    padding: 12px 4px 16px;
    box-shadow: 0 12px 24px rgba(11,23,48,0.08) !important;
  }
  .navbar-nav { margin-bottom: 8px; }
  .navbar .btn-login,
  .navbar .btn-signup {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .navbar .d-flex.align-items-center.gap-2 {
    flex-direction: column;
    align-items: stretch !important;
  }
}

@media (min-width: 992px) {
  .navbar .navbar-nav { gap: 4px; }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151 !important;
  padding: 10px 20px !important;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover { color: var(--vc-blue) !important; background: var(--vc-blue-light); }

.nav-link .fa-chevron-down { font-size: 0.6rem; opacity: 0.5; transition: transform 0.2s; }

.nav-item:hover .fa-chevron-down { transform: rotate(180deg); }

/* Bootstrap dropdown override */
.dropdown-menu {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.10);
  padding: 6px;
  min-width: 195px;
  margin-top: 4px !important;
}

.dropdown-item {
  font-size: 0.85rem;
  color: #374151;
  border-radius: 6px;
  padding: 8px 12px;
  transition: background 0.15s, color 0.15s;
}

.dropdown-item:hover { background: var(--vc-blue-light); color: var(--vc-blue); }

.btn-login {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  padding: 7px 18px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  background: transparent;
}

.btn-login:hover { border-color: var(--vc-blue); color: var(--vc-blue); }

.btn-signup {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff !important;
  background: var(--vc-blue);
  border-radius: 8px;
  padding: 8px 20px;
  border: none;
  text-decoration: none !important;
  transition: background 0.2s;
}

.btn-signup:hover { background: var(--vc-blue-dark); color: #fff !important; text-decoration: none !important; }


/* ===== QUICK STRIP ===== */
.quick-strip { border-bottom: 1px solid #e5e7eb; }

.quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  text-decoration: none;
  border-right: 1px solid #e5e7eb;
  transition: background 0.2s;
}

.quick-item:last-child { border-right: none; }
.quick-item:hover { background: var(--vc-blue-light); text-decoration: none; }

.quick-icon {
  width: 44px;
  height: 44px;
  background: var(--vc-blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--vc-blue);
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.quick-item:hover .quick-icon { background: var(--vc-blue); color: #fff; }

.quick-item h6 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0b1730;
  margin: 0 0 2px;
}

.quick-item small { font-size: 0.75rem; color: #6b7280; }

/* ===== HERO ===== */
.hero-section {
  padding: 80px 0 72px;
  background: linear-gradient(150deg, #eaf2ff 0%, #ffffff 55%, #f8faff 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative background blobs */
.hero-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.10) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-section .container-xl { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--vc-blue-light);
  color: var(--vc-blue);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 99px;
  border: 1px solid var(--vc-blue-border);
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.12);
}

/* Green top accent bar on hero */
.hero-section .hero-accent-bar {
  display: none;
}

.hero-h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #0b1730;
  margin-bottom: 18px;
}

.hero-h1 .green { color: var(--vc-blue); }

.hero-sub {
  font-size: 1.05rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 520px;
}

/* ===== HERO — full-bleed photo variant (homepage) ===== */
.hero-section.hero-photo {
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 64px 0 110px;
  background:
    linear-gradient(to right, rgba(11,23,48,.86) 0%, rgba(11,23,48,.55) 48%, rgba(11,23,48,.08) 72%),
    url('../assets/img/bgimage.jpg') center/cover no-repeat;
}

.hero-section.hero-photo::before,
.hero-section.hero-photo::after { display: none; }

/* Flex items default to min-width:auto, which lets them refuse to shrink below
   their content and push the page wider than the screen. */
.hero-section.hero-photo > .container-xl { min-width: 0; width: 100%; }

.hero-section.hero-photo .hero-badge {
  background: rgba(11,23,48,0.55);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(2px);
}

.hero-section.hero-photo .hero-h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.hero-section.hero-photo .hero-h1 .green {
  color: #4ade80;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

.hero-section.hero-photo .hero-sub {
  color: #fff;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}

.hero-section.hero-photo .btn-outline-vc {
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.hero-section.hero-photo .btn-outline-vc:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.12); }

.hero-section.hero-photo .stat-item {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero-section.hero-photo .stat-item:hover {
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 6px 26px rgba(0,0,0,0.2);
}
.hero-section.hero-photo .stat-icon {
  background: rgba(255,255,255,0.18);
  color: #fff;
}
.hero-section.hero-photo .stat-num { color: #fff; }
.hero-section.hero-photo .stat-label { color: rgba(255,255,255,0.8); }

/* Entrance animation for hero text column */
.hero-section.hero-photo .col-lg-7 {
  animation: heroFadeUp 0.7s ease-out both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-down cue */
.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  z-index: 2;
  animation: heroScrollBounce 1.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.6; }
  50%      { transform: translate(-50%, 8px); opacity: 1; }
}
@media (max-width: 991px) {
  .hero-scroll-cue { display: none; }
}

@media (max-width: 991px) {
  .hero-section.hero-photo {
    min-height: 560px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    padding: 32px 0 40px;
    background:
      linear-gradient(180deg, rgba(11,23,48,.15) 0%, rgba(11,23,48,.30) 32%, rgba(11,23,48,.80) 60%, rgba(11,23,48,.92) 100%),
      url('../assets/img/bgimage.jpg') center top/cover no-repeat;
  }
}

@media (max-width: 575px) {
  .hero-section.hero-photo {
    min-height: 520px;
    background-position: center top;
  }
}

.btn-primary-vc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--vc-blue);
  color: #fff;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
}

.btn-primary-vc:hover { background: var(--vc-blue-dark); color: #fff; transform: translateY(-1px); }

.btn-outline-vc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  border: 2px solid #d1d5db;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline-vc:hover { border-color: var(--vc-blue); color: var(--vc-blue); }

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 2px 12px rgba(37,99,235,0.06);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.stat-item:hover {
  border-color: var(--vc-blue-border);
  box-shadow: 0 4px 20px rgba(37,99,235,0.13);
}

.stat-icon {
  color: var(--vc-blue);
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--vc-blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0b1730;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.7rem;
  color: #6b7280;
  display: block;
  margin-top: 3px;
  line-height: 1.3;
}

/* Dashboard Mockup */
.dashboard-mockup {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 24px 64px rgba(0,0,0,0.10);
  overflow: hidden;
  position: relative;
}

.mockup-topbar {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-brand { font-size: 0.82rem; font-weight: 800; color: #0b1730; }
.mockup-brand span { color: var(--vc-blue); }

.mockup-search-bar {
  flex: 1;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  padding: 4px 8px;
  font-size: 0.68rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 4px;
}

.mockup-user-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  color: #374151;
  font-weight: 500;
}

.mockup-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--vc-blue);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-body { display: flex; min-height: 0; }

.mockup-sidebar {
  width: 110px;
  background: #f9fafb;
  border-right: 1px solid #e5e7eb;
  flex-shrink: 0;
  padding: 8px 0;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  font-size: 0.65rem;
  color: #6b7280;
  cursor: pointer;
}

.sidebar-item.active {
  background: var(--vc-blue-light);
  color: var(--vc-blue);
  font-weight: 600;
  border-right: 2px solid var(--vc-blue);
}

.sidebar-item i { font-size: 0.68rem; width: 12px; }

.mockup-main { flex: 1; padding: 12px; min-width: 0; overflow: hidden; }

.mockup-title { font-size: 0.88rem; font-weight: 700; color: #0b1730; margin-bottom: 10px; }

.mockup-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-bottom: 10px; }

.m-stat {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  padding: 7px 8px;
}

.m-stat .lbl { font-size: 0.58rem; color: #9ca3af; margin-bottom: 2px; }
.m-stat .val { font-size: 0.9rem; font-weight: 700; color: #0b1730; line-height: 1; }
.m-stat .chg { font-size: 0.58rem; color: var(--vc-blue); font-weight: 600; }

.mockup-charts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

.m-chart {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  padding: 8px;
}

.m-chart-title { font-size: 0.62rem; font-weight: 600; color: #374151; margin-bottom: 6px; }

.chart-bars { display: flex; align-items: flex-end; gap: 3px; height: 44px; }

.chart-bar {
  flex: 1;
  background: #bfdbfe;
  border-radius: 2px;
}

.chart-bar.hi { background: var(--vc-blue); }

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

.courier-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6rem;
  color: #6b7280;
  margin-bottom: 3px;
}

.courier-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

/* Hero floating badges */
.hero-float-badge {
  position: absolute;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
}

.hero-float-badge.top-right { top: -18px; right: -18px; text-align: center; }
.hero-float-badge.bottom-right { bottom: -16px; right: -16px; }

.perf-pct { font-size: 2rem; font-weight: 800; color: var(--vc-blue); line-height: 1; }
.perf-label { font-size: 0.62rem; color: #9ca3af; }

/* ===== PLATFORM STRIP ===== */
.platform-strip { background: #f9fafb; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; padding: 40px 0; }

.platform-label { font-size: 1.2rem; font-weight: 800; color: #0b1730; line-height: 1.5; min-width: 160px; }
.platform-label .green { color: var(--vc-blue); }

.platform-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 14px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, box-shadow 0.2s;
  height: 100%;
}

.platform-card:hover { border-color: var(--vc-blue); box-shadow: 0 4px 20px rgba(37,99,235,0.12); text-decoration: none; }

.platform-card-icon {
  width: 36px;
  height: 36px;
  background: var(--vc-blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--vc-blue);
  margin-bottom: 10px;
}

.platform-card h6 { font-size: 0.8rem; font-weight: 700; color: #0b1730; margin-bottom: 2px; }
.platform-card p { font-size: 0.7rem; color: #9ca3af; margin-bottom: 8px; line-height: 1.4; }
.platform-card .card-link { font-size: 0.72rem; font-weight: 600; color: var(--vc-blue); display: inline-flex; align-items: center; gap: 3px; }

/* ===== SECTIONS ===== */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--vc-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-h2 { font-size: 2.2rem; font-weight: 800; color: #0b1730; line-height: 1.25; }

.section-sub { font-size: 1rem; color: #6b7280; line-height: 1.7; }

/* Feature cards */
.feature-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 8px 32px rgba(37,99,235,0.10);
  transform: translateY(-2px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--vc-blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--vc-blue);
  margin-bottom: 20px;
  transition: background 0.2s;
}

.feature-card:hover .feature-icon { background: var(--vc-blue); color: #fff; }

.feature-card h5 { font-size: 1rem; font-weight: 700; color: #0b1730; margin-bottom: 8px; }
.feature-card p { font-size: 0.875rem; color: #6b7280; line-height: 1.6; margin-bottom: 16px; }

.learn-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--vc-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.learn-more:hover { gap: 8px; color: var(--vc-blue); }

/* Why choose */
.why-icon {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--vc-blue);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Integrations */
.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--vc-blue-light);
  color: var(--vc-blue);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid var(--vc-blue-border);
  margin-bottom: 18px;
}

.integration-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 20px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}

.integration-badge:hover { border-color: var(--vc-blue); box-shadow: 0 4px 16px rgba(37,99,235,0.12); transform: translateY(-2px); }

.int-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.integration-badge .int-name { font-size: 0.9rem; font-weight: 700; color: #0b1730; }
.int-shopify { background: #5a8a3c; }
.int-woo { background: #7F54B3; }
.int-amazon { background: #232F3E; }
.int-magento { background: #EE672F; }
.int-meesho { background: #F43397; }
.int-gokwik { background: #0066FF; }
.int-shiprocket { background: #E74C3C; }
.int-zoho { background: #E42527; }

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--vc-blue);
  color: var(--vc-blue);
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-green:hover { background: var(--vc-blue); color: #fff; }

/* Showcase */
.showcase-mockup {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  overflow: hidden;
}

.check-icon {
  width: 22px;
  height: 22px;
  background: var(--vc-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon i { color: #fff; font-size: 0.6rem; }

/* Testimonials */
.testimonial-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(37,99,235,0.12); border-color: #93c5fd; }

.testimonial-quote { font-size: 3rem; color: #dbeafe; line-height: 0.8; font-family: Georgia, serif; margin-bottom: 14px; }

.testimonial-text { font-size: 0.9rem; color: #374151; line-height: 1.7; margin-bottom: 24px; font-style: italic; }

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vc-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--vc-blue);
  border: 2px solid var(--vc-blue-border);
  flex-shrink: 0;
}

.author-name { font-size: 0.875rem; font-weight: 700; color: #0b1730; margin-bottom: 2px; }
.author-role { font-size: 0.75rem; color: #6b7280; }

.company-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: #9ca3af;
  border: 1px solid #e5e7eb;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* CTA */
.cta-box {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-radius: 24px;
  padding: 56px 64px;
}

.cta-h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-sub { font-size: 1rem; color: #bfdbfe; margin-bottom: 28px; }
.cta-benefit i { color: #93c5fd; }
.cta-benefit strong { font-size: 0.875rem; color: #fff; display: block; }
.cta-benefit span { font-size: 0.78rem; color: #bfdbfe; }

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--vc-blue);
  padding: 15px 32px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.2); color: var(--vc-blue); }

/* ===== FOOTER ===== */
.footer { background: #0b1730; padding: 64px 0 0; }

.footer-logo { font-size: 1.35rem; font-weight: 800; color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-logo span { color: #60a5fa; }
.footer-brand-text { font-size: 0.85rem; color: #9ca3af; line-height: 1.7; margin-bottom: 20px; }

.social-link {
  width: 36px;
  height: 36px;
  background: #1f2937;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.social-link:hover { background: var(--vc-blue); color: #fff; }

.footer-col-title { font-size: 0.72rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 18px; }

.footer-link { display: block; font-size: 0.85rem; color: #9ca3af; text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-link:hover { color: #60a5fa; }

.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 10px;
  padding: 10px 14px;
  text-decoration: none;
  margin-bottom: 10px;
  transition: border-color 0.2s;
}

.app-badge:hover { border-color: var(--vc-blue); }
.app-badge i { font-size: 1.4rem; color: #60a5fa; }
.app-badge .small-txt { font-size: 0.62rem; color: #9ca3af; display: block; }
.app-badge .big-txt { font-size: 0.85rem; font-weight: 600; color: #fff; display: block; }

.footer-divider { border-color: #1f2937 !important; }

.footer-bottom { padding: 20px 0; font-size: 0.82rem; color: #6b7280; }
.footer-bottom a { color: #6b7280; text-decoration: none; }
.footer-bottom a:hover { color: #9ca3af; }

@media (max-width: 991px) {
  .hero-h1 { font-size: 2.1rem; }
}

@media (max-width: 767px) {
  .quick-item { padding: 12px 16px; }
  .hero-h1 { font-size: 1.85rem; }
  .section-h2 { font-size: 1.75rem; }
  .cta-box { padding: 36px 24px; }
  .cta-h2 { font-size: 1.6rem; }
}

/* ===== CONTACT PAGE ===== */
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px 20px;
  height: 100%;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--vc-blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--vc-blue);
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  margin-bottom: 3px;
}

.contact-info-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0b1730;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

a.contact-info-value:hover { color: var(--vc-blue); }

.contact-form-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.contact-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}

.contact-input {
  display: block;
  width: 100%;
  padding: 11px 14px;
  font-size: 0.875rem;
  color: #0b1730;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Inter', sans-serif;
  appearance: none;
  -webkit-appearance: none;
}

.contact-input:focus {
  border-color: var(--vc-blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.10);
}

.contact-input::placeholder { color: #9ca3af; }

textarea.contact-input { resize: vertical; min-height: 120px; }

.contact-reason-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-reason-icon {
  width: 40px;
  height: 40px;
  background: var(--vc-blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--vc-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-reason-item strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0b1730;
  display: block;
  margin-bottom: 2px;
}

.contact-reason-item span {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.4;
}

.contact-social-box {
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
}

@media (max-width: 767px) {
  .contact-form-card { padding: 24px 20px; }
}

/* ===== SERVICE PAGE ===== */
.service-cat-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b7280;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 99px;
  padding: 6px 16px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}

.service-cat-pill:hover {
  border-color: var(--vc-blue);
  color: var(--vc-blue);
  background: var(--vc-blue-light);
}

.vas-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1.5px solid var(--vc-blue-border);
  border-radius: 14px;
  padding: 18px 20px;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}

.vas-card:hover {
  box-shadow: 0 6px 24px rgba(37,99,235,0.12);
  transform: translateY(-2px);
}

.vas-icon {
  width: 42px;
  height: 42px;
  background: var(--vc-blue-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--vc-blue);
  flex-shrink: 0;
}

.vas-text { min-width: 0; }
.vas-text strong { font-size: 0.875rem; font-weight: 700; color: #0b1730; display: block; margin-bottom: 2px; }
.vas-text span { font-size: 0.78rem; color: #6b7280; line-height: 1.4; display: block; }

/* ===== POLICY PAGES ===== */
.policy-wrap { padding: 56px 0 72px; background: #f9fafb; }

.policy-sidebar-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
  position: sticky;
  top: 88px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.policy-sidebar-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f3f4f6;
}

.policy-nav-link {
  display: block !important;
  font-size: 0.84rem;
  color: #6b7280;
  text-decoration: none !important;
  padding: 9px 12px;
  border-radius: 8px;
  margin-bottom: 3px;
  font-weight: 500;
  border-left: 3px solid transparent;
  line-height: 1.3;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.policy-nav-link:hover {
  background: var(--vc-blue-light);
  color: var(--vc-blue);
  text-decoration: none !important;
}

.policy-nav-link.active {
  background: var(--vc-blue-light);
  color: var(--vc-blue);
  border-left-color: var(--vc-blue);
  font-weight: 600;
}

.policy-content-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px 44px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.policy-content-card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0b1730;
  margin-top: 36px;
  margin-bottom: 14px;
  padding: 10px 14px;
  background: var(--vc-blue-light);
  border-left: 4px solid var(--vc-blue);
  border-radius: 0 8px 8px 0;
}

.policy-section:first-child .policy-content-card h2,
.policy-content-card h2:first-child { margin-top: 0; }

.policy-content-card p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.85;
  margin-bottom: 12px;
}

.policy-content-card p:last-child { margin-bottom: 0; }

.policy-content-card ul {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.85;
  padding-left: 1.4rem;
  margin-bottom: 12px;
}

.policy-content-card ul li { margin-bottom: 5px; }

.policy-last-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #6b7280;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 28px;
  font-weight: 500;
}

.policy-section { margin-bottom: 28px; }
.policy-section:last-child { margin-bottom: 0; }

@media (max-width: 991px) {
  .policy-wrap { padding: 36px 0 56px; }
  .policy-content-card { padding: 24px 20px; }
  .policy-sidebar-card { position: static; margin-bottom: 16px; }
}

@media (max-width: 767px) {
  .policy-content-card h2 { font-size: 0.95rem; }
}

/* ===== PAGE HERO (FAQ, About, inner pages) ===== */
.page-hero {
  padding: 72px 0 64px;
  background: linear-gradient(150deg, #eaf2ff 0%, #ffffff 55%, #f8faff 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e5e7eb;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.10) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--vc-blue-light);
  color: var(--vc-blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid var(--vc-blue-border);
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #0b1730;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero-title .green { color: var(--vc-blue); }

.page-hero-sub {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 520px;
}

/* ===== FAQ ACCORDION ===== */
.vc-accordion .accordion-item {
  border: 1.5px solid #e5e7eb;
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.vc-accordion .accordion-item:hover {
  border-color: var(--vc-blue-border);
  box-shadow: 0 4px 20px rgba(37,99,235,0.10);
}

.vc-accordion .accordion-button {
  font-size: 0.975rem;
  font-weight: 600;
  color: #0b1730;
  background: #fff;
  padding: 20px 22px;
  border-radius: 14px !important;
  box-shadow: none !important;
}

.vc-accordion .accordion-button:not(.collapsed) {
  color: var(--vc-blue);
  background: var(--vc-blue-light);
}

.vc-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.vc-accordion .accordion-body {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.75;
  padding: 0 22px 20px;
  background: #fff;
}

/* ===== ABOUT HERO ===== */
.about-hero {
  padding: 80px 0 72px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.about-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.about-hero .container { position: relative; z-index: 1; }

/* ===== MILESTONE CARDS ===== */
.milestone-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.milestone-card:hover {
  border-color: var(--vc-blue-border);
  box-shadow: 0 8px 32px rgba(37,99,235,0.12);
  transform: translateY(-3px);
}

.milestone-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--vc-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.milestone-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

/* ===== BELIEF CARDS (About) ===== */
.belief-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-top: 4px solid var(--vc-blue);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}

.belief-card.vision-card { border-top-color: #f59e0b; }

.belief-card:hover {
  box-shadow: 0 8px 32px rgba(37,99,235,0.10);
  transform: translateY(-3px);
}

.belief-icon {
  width: 52px;
  height: 52px;
  background: var(--vc-blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--vc-blue);
  margin-bottom: 18px;
}

.belief-card.vision-card .belief-icon { background: #fef3c7; color: #f59e0b; }

/* ===== ABOUT FEATURE ITEMS ===== */
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.about-feature-item:hover {
  border-color: var(--vc-blue-border);
  box-shadow: 0 4px 20px rgba(37,99,235,0.10);
}

.about-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--vc-blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--vc-blue);
  flex-shrink: 0;
}

/* ===== TEAM CARDS ===== */
.team-card {
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 20px;
  text-align: center;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.team-card:hover {
  border-color: var(--vc-blue-border);
  box-shadow: 0 8px 32px rgba(37,99,235,0.12);
  transform: translateY(-3px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--vc-blue-light);
  border: 3px solid var(--vc-blue-border);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vc-blue);
  overflow: hidden;
}

.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1rem; font-weight: 700; color: #0b1730; margin-bottom: 4px; }
.team-role { font-size: 0.82rem; color: var(--vc-blue); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 0.82rem; color: #6b7280; line-height: 1.6; margin: 0; }

/* ===== UTILITY ===== */
.text-vc-blue { color: var(--vc-blue) !important; }

@media (max-width: 767px) {
  .page-hero-title { font-size: 1.9rem; }
  .about-hero h1 { font-size: 2rem !important; }
  .milestone-num { font-size: 2rem; }
  .about-feature-item { flex-direction: column; }
}
