/* ==========================================================================
   AABA — Style System (Matching Original Reference Design)
   Colors from Design System:
   Primary:  #144891 (blue), #F78F1E (orange), #24967F (teal), #08192F (dark navy), #1FA971 (green)
   Neutrals: #FFFFFF, #F8FAFC, #E8EEF4, #1E293B, #64748B, #374151
   Fonts:    League Spartan (headings), Montserrat (body)
   ========================================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand Colors */
  --blue: #144891;
  --orange: #f78f1e;
  --teal: #24967f;
  --green: #1fa971;
  --navy: #144891;
  --navy-mid: #0c2444;

  /* Light Section Backgrounds */
  --bg-white: #f7f9fc;
  --bg-light: #f7f9fc;
  --bg-light2: #eef2f7;

  /* Text Colors (Light sections) */
  --text-dark: #08192f;
  --text-mid: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* Text Colors (Dark sections) */
  --text-white: #ffffff;
  --text-offwhite: #cbd5e1;

  /* Borders */
  --border-light: 1px solid #e2e8f0;
  --border-dark: 1px solid rgba(255, 255, 255, 0.08);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(8, 25, 47, 0.08);
  --shadow-md: 0 8px 24px rgba(8, 25, 47, 0.1);
  --shadow-lg: 0 20px 48px rgba(8, 25, 47, 0.14);
  --shadow-card: 0 4px 16px rgba(8, 25, 47, 0.08);

  /* Typography */
  --font-heading: "League Spartan", sans-serif;
  --font-body: "Montserrat", sans-serif;

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

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

body {
  background: var(--bg-white);
  color: var(--text-mid);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
button,
input,
select,
textarea {
  font-family: inherit;
}
ul {
  list-style: none;
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
}
h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}
h4 {
  font-size: 1.25rem;
}

/* ---------- CUSTOM SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* ---------- LAYOUT UTILITIES ---------- */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}

/* ---------- SHARED SECTION HEADER ---------- */
.section-badge {
  display: inline-block;
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-center-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: var(--text-dark);
  margin-bottom: 14px;
  font-family: var(--font-heading);
}
.section-title-underline::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--orange);
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.section-title-alt {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  color: var(--text-dark);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover {
  background: #e07b0a;
  border-color: #e07b0a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 143, 30, 0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}
.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: #d1d5db;
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
/* White outline for dark sections */
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-block {
  display: flex;
  width: 100%;
}

.btn-card-action {
  padding: 7px 16px;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  background: var(--bg-light);
  border: var(--border-light);
  color: var(--blue);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-card-action:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ==========================================================================
   HEADER / NAVBAR  — White background, matches reference
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: #fff;
  border-bottom: var(--border-light);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: var(--transition);
}
.header.scrolled {
  height: 64px;
  box-shadow: var(--shadow-md);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  height: 48px;
  width: auto;
  display: block;
}

.logo {
  height: 60px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.3px;
}
.logo-subtitle {
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.logo-pulse {
  animation: logoPulse 2.5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

/* Desktop Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--blue);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-app-btn {
  font-size: 0.85rem;
  padding: 10px 20px;
  background: var(--orange);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.header-app-btn:hover {
  background: #e07a00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
}
.join-btn {
  background: var(--orange);
  color: #fff;
  height: 44px;
  padding: 0 22px;
  border-radius: 50px;
  font-size: 0.88rem;
}

/* Hamburger */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 22px;
  height: 16px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger-menu .bar {
  width: 100%;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-link {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-mid);
}
.mobile-link:hover {
  color: var(--orange);
}
.mobile-nav-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
  width: 200px;
}

/* Hamburger open animation */
.mobile-menu-active .hamburger-menu .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-active .hamburger-menu .bar:nth-child(2) {
  opacity: 0;
}
.mobile-menu-active .hamburger-menu .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION  — Full background image with dark overlay
   ========================================================================== */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 720px;
  background-image: url("images/hero-banner.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Dark overlay at ~50% opacity */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 25, 47, 0.55);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Hero text */
.hero-content {
  max-width: 600px;
  text-align: left;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(31, 169, 113, 0.15);
  border: 1px solid rgba(31, 169, 113, 0.35);
  padding: 6px 16px;
  border-radius: 20px;
  color: #6ee7b7;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: blink 1.5s infinite;
  flex-shrink: 0;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 30px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--orange) 0%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 12px;
  max-width: 560px;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 50px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero Primary Button — orange fill */
.btn-hero-primary {
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
  border-radius: 50px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-hero-primary:hover {
  background: #e07b0a;
  border-color: #e07b0a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 143, 30, 0.4);
}

/* Hero Secondary Button — transparent, white border */
.btn-hero-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ==========================================================================
   STATS BAR  — White floating card, overlapping hero bottom
   ========================================================================== */
/* .stats-section {
  background: var(--bg-white);
  position: relative;
  z-index: 10;
  margin-top: -140px;
  padding-bottom: 0;
} */

.stats-section {
  background: transparent;
  position: relative;
  z-index: 10;
  margin-top: -110px;
  padding-bottom: 0;
  pointer-events: none;
}
.stats-section .container {
  pointer-events: auto;
}
.stats-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: var(--border-light);
  width: 100%;
  max-width: 1200px;
  height: 209px;
  margin: 0 auto;
  padding: 0 44px;
  display: flex;
  align-items: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  padding: 8px 0;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 6%;
  height: 88%;
  width: 1px;
  background: #dbe2ec;
}
.stat-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fff7ed;
  border: 1px solid #fde8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  transition: var(--transition);
}
.stat-item:hover .stat-icon-wrapper {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: scale(1.08);
}
/* Vary icon color per stat, matching reference design */
.stat-item:nth-child(1) .stat-icon-wrapper {
  background: #eafaf3;
  border-color: #c7f0dd;
  color: var(--green);
}
.stat-item:nth-child(2) .stat-icon-wrapper {
  background: #fff7ed;
  border-color: #fde8c8;
  color: var(--orange);
}
.stat-item:nth-child(3) .stat-icon-wrapper {
  background: #e9f6f4;
  border-color: #c8e8e3;
  color: var(--teal);
}
.stat-item:nth-child(4) .stat-icon-wrapper {
  background: #fff7ed;
  border-color: #fde8c8;
  color: var(--orange);
}
.stat-item:nth-child(1):hover .stat-icon-wrapper {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.stat-item:nth-child(3):hover .stat-icon-wrapper {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.stat-info {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-item:nth-child(1) .stat-number {
  color: var(--green);
}
.stat-item:nth-child(2) .stat-number {
  color: var(--orange);
}
.stat-item:nth-child(3) .stat-number {
  color: var(--teal);
}
.stat-item:nth-child(4) .stat-number {
  color: var(--orange);
}
.stat-label {
  font-size: 0.95rem;
  color: var(--text-mid);
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  margin-top: 4px;
  line-height: 1.3;
}

/* ==========================================================================
   EVENTS SECTION  — Light/White background, matches reference
   ========================================================================== */
.events-section {
  padding: 40px 0;
  background: var(--bg-light);
}
.events-layout-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: stretch;
}
.gallery-column,
.events-column {
  display: flex;
  flex-direction: column;
}
.column-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
}
.link-action {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  font-family: var(--font-heading);
}
.link-action:hover {
  color: var(--blue);
}

/* Carousel */
.carousel-container {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  flex: 1;
  min-height: 380px;
  border: var(--border-light);
}
.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease;
  z-index: 1;
}
.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 24px 20px;
  background: linear-gradient(
    to top,
    rgba(8, 25, 47, 0.92) 0%,
    rgba(8, 25, 47, 0.4) 60%,
    transparent 100%
  );
  z-index: 3;
}
.slide-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.slide-title {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 6px;
}
.slide-desc {
  font-size: 0.85rem;
  color: var(--text-offwhite);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border: none;
  color: var(--navy);
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.carousel-btn:hover {
  background: var(--orange);
  color: #fff;
}
.btn-prev {
  left: 14px;
}
.btn-next {
  right: 14px;
}

.carousel-dots {
  position: absolute;
  bottom: 16px;
  right: 20px;
  display: flex;
  gap: 6px;
  z-index: 10;
}
.dot-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}
.dot-indicator.active {
  background: var(--orange);
  width: 22px;
  border-radius: 4px;
}

/* Upcoming Events List */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  justify-content: flex-start;
}
.event-list-card {
  display: flex;
  align-items: center;
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  gap: 18px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.event-list-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.event-date-badge {
  background: #fff7ed;
  border: 1px solid #fde8c8;
  border-radius: 10px;
  width: 60px;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.event-day {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.event-month {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.event-card-details {
  flex-grow: 1;
}
.event-card-top {
  margin-bottom: 4px;
}
.event-card-category {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 3px;
}
.status-open {
  background: #dcfce7;
  color: #16a34a;
}
.status-limited {
  background: #fef3c7;
  color: #d97706;
}
.event-card-title {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: var(--font-heading);
}
.event-meta {
  display: flex;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.event-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================================================
   SERVICES SECTION  — White background
   ========================================================================== */
.services-section {
  padding: 40px 0;
  background: var(--bg-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.service-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}
.service-icon-box.orange {
  background: #fff7ed;
  border: 1px solid #fde8c8;
  color: var(--orange);
}
.service-icon-box.blue {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: var(--blue);
}
.service-icon-box.green {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: var(--green);
}

.service-card:hover .service-icon-box.orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.service-card:hover .service-icon-box.blue {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.service-card:hover .service-icon-box.green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.service-card-title {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: var(--font-heading);
}
.service-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 18px;
}
.service-card-footer {
  margin-top: auto;
}
.learn-more {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-card:hover .learn-more {
  color: var(--blue);
}

/* ==========================================================================
   APP SECTION  — Dark navy, matches reference
   ========================================================================== */
.app-section {
  padding: 60px 0;
  background: var(--bg-white);
}
.app-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, #0c2444 0%, #144891 100%);
  box-shadow: var(--shadow-lg);
}
.app-card::before {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(247, 143, 30, 0.15) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.app-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr 0.85fr;
  align-items: center;
  gap: 32px;
  padding: 44px 0;
  position: relative;
  z-index: 1;
}
.app-badge {
  display: inline-block;
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.app-title {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.25;
}
.app-features-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.check-icon {
  color: var(--green);
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-text {
  font-size: 0.85rem;
  color: var(--text-offwhite);
}

/* Logo + store badges side column */
.app-side-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.app-side-logo {
  height: auto;
  width: auto;
  padding-bottom: 20px;
  padding-right: 40px;
  margin-right: 10px;
}
.app-download-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.store-badge {
  height: 38px;
  transition: var(--transition);
}
.store-badge:hover {
  transform: translateY(-2px);
}
.store-img {
  height: 100%;
  width: auto;
}

.app-mockup-side {
  display: flex;
  justify-content: center;
}
.mockup-container {
  width: 100%;
  max-width: 550px;
}
.app-mockup-image {
  width: 100%;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.4));
  /* animation: mockFloat 7s ease-in-out infinite; */
  border-radius: 16px;
}
@keyframes mockFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(0.8deg);
  }
}

/* ==========================================================================
   REGIONS SECTION  — Light background, matches reference
   ========================================================================== */
.regions-section {
  padding: 20px 0;
  padding-bottom: 40px;
  background: var(--bg-light);
}
.regions-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.regions-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.accordion-item {
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.accordion-item:hover {
  border-color: var(--blue);
}
.accordion-item.active {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.accordion-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.region-color-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.africa-color {
  background: var(--teal);
}
.india-color {
  background: var(--blue);
}
.arab-color {
  background: var(--orange);
}

.accordion-header h3 {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  color: var(--navy);
  flex-grow: 1;
}
.accordion-arrow {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.accordion-item.active .accordion-arrow {
  transform: rotate(180deg);
  color: var(--orange);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-item.active .accordion-content {
  max-height: 160px;
  margin-top: 12px;
}
.accordion-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Map Container */
.regions-map-container {
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-bg {
  width: 100%;
  height: 100%;
}
.map-svg {
  width: 100%;
  height: 100%;
}
.map-africa,
.map-arab,
.map-india {
  transition: var(--transition);
}
.active-africa .map-africa {
  fill: rgba(36, 150, 127, 0.18);
  stroke: var(--teal);
}
.active-arab .map-arab {
  fill: rgba(247, 143, 30, 0.18);
  stroke: var(--orange);
}
.active-india .map-india {
  fill: rgba(20, 72, 145, 0.18);
  stroke: var(--blue);
}

.map-ring {
  animation: mapPulse 2.2s ease-out infinite;
  transform-origin: center;
}
@keyframes mapPulse {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}
.map-pin-group {
  cursor: pointer;
  transition: var(--transition);
}
.map-pin-group:hover {
  transform: scale(1.12);
}
.map-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  fill: var(--navy);
}
.connection-line {
  stroke-dasharray: 8 5;
  animation: dashMove 10s linear infinite;
}
@keyframes dashMove {
  to {
    stroke-dashoffset: -200;
  }
}

/* ==========================================================================
   READY CTA SECTION  — Dark navy, matches reference
   ========================================================================== */
.ready-cta-section {
  padding: 0;
  /* background: linear-gradient(120deg, #144891 0%, #1a5cb8 100%); */
}
.ready-cta-card {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 0px 30px 32px;
}
.cta-overlay-glow {
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(247, 143, 30, 0.07) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cta-subtitle {
  font-size: 1rem;
  color: var(--text-offwhite);
  max-width: auto;
  margin: 0 auto 12px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   FOOTER  — Dark navy, matches reference
   ========================================================================== */
.footer {
  background: linear-gradient(120deg, #144891 0%, #06152b 100%);
  /* background: #030c16; */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0 0;
}
.footer-container {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand {
  max-width: 340px;
}
.footer-logo {
  margin-bottom: 18px;
}
.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}
.footer-description {
  font-size: 0.875rem;
  color: #ffffff;
  line-height: 1.65;
  margin-bottom: 24px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-col-title {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 18px;
  font-family: var(--font-heading);
}
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-list a {
  font-size: 0.875rem;
  color: #ffffff;
  transition: var(--transition);
}
.footer-links-list a:hover {
  color: var(--orange);
  padding-left: 4px;
}
.footer-download-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 130px;
}
.store-badge-small {
  height: 34px;
  transition: var(--transition);
}
.store-badge-small:hover {
  transform: translateY(-2px);
}
.store-badge-small img {
  height: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 22px 0;
}
.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #fff;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a:hover {
  color: var(--orange);
}

/* ==========================================================================
   MODALS & FORMS
   ========================================================================== */


label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.3px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select {
  background: var(--bg-light);
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text-dark);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  width: 100%;
}
input:focus,
select:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(20, 72, 145, 0.1);
}
select option {
  background: #fff;
  color: var(--text-dark);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #fff;
  border: 1px solid #d1fae5;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px);
  opacity: 0;
  visibility: hidden;
  z-index: 1200;
  transition: var(--transition);
  min-width: 280px;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.toast-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #d1fae5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.toast-message {
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* ---------- Tablet Landscape (max-width: 1024px) ---------- */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  /* Hero */
  .hero-section {
    height: 80vh;
    min-height: 600px;
  }
  .hero-container {
    text-align: center;
  }
  .badge {
    margin: 0 auto 20px;
  }
  .hero-content {
    margin: 0 auto;
    max-width: 600px;
  }
  .hero-lead,
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }

  /* Stats */
  .stats-section {
    margin-top: -80px;
  }
  .stats-card {
    height: auto;
    padding: 24px 28px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }

  /* Events */
  .events-layout-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .carousel-container {
    min-height: 320px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* App Section */
  .app-card {
    padding: 0 28px;
  }
  .app-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
    padding: 40px 0;
  }
  .app-text-side {
    margin: 0 auto;
    max-width: 500px;
  }
  .app-features-list {
    align-items: center;
  }
  .app-download-badges {
    justify-content: center;
  }
  .app-mockup-side {
    justify-content: center;
    align-self: center;
    order: -1;
  }
  .mockup-container {
    margin-top: 0;
    max-width: 220px;
  }
  .app-side-info {
    align-items: center;
  }
  .app-side-logo {
    padding-right: 0;
    margin-right: 0;
    max-width: 200px;
  }

  /* Regions */
  .regions-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .regions-map-container {
    aspect-ratio: 16/10;
    padding: 20px;
  }
}

/* ---------- Tablet Portrait (max-width: 768px) ---------- */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Header */
  .hamburger-menu {
    display: flex;
  }
  .nav-menu,
  .header-app-btn {
    display: none;
  }
  .logo {
    height: 48px;
  }
  .join-btn {
    height: 38px;
    padding: 0 16px;
    font-size: 0.8rem;
  }

  /* Hero */
  .hero-section {
    height: 75vh;
    min-height: 520px;
  }
  .hero-title {
    font-size: clamp(2.2rem, 6vw, 3rem);
    margin-bottom: 20px;
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 32px;
  }

  /* Stats */
  .stats-section {
    margin-top: -60px;
  }
  .stats-card {
    padding: 20px;
    height: auto;
    border-radius: var(--radius-md);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .stat-item::after {
    display: none !important;
  }
  .stat-number {
    font-size: 1.6rem;
  }
  .stat-label {
    font-size: 0.82rem;
  }

  /* Events */
  .events-section {
    padding: 30px 0;
  }
  .events-layout-grid {
    gap: 28px;
  }
  .carousel-container {
    min-height: 280px;
  }
  .column-header {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }

  /* Services */
  .services-section {
    padding: 50px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .section-center-header {
    margin-bottom: 36px;
  }

  /* App Section */
  .app-section {
    padding: 40px 0;
  }
  .app-card {
    padding: 0 20px;
    border-radius: var(--radius-lg);
  }
  .app-grid {
    gap: 20px;
    padding: 32px 0;
  }
  .mockup-container {
    max-width: 200px;
  }
  .app-side-logo {
    max-width: 160px;
  }

  /* Regions */
  .regions-section {
    padding: 30px 0 40px;
  }
  .regions-map-container {
    aspect-ratio: 4/3;
    padding: 16px;
  }
  .accordion-item {
    padding: 16px 18px;
  }
  .accordion-header h3 {
    font-size: 1rem;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-links-group {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom-container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Modals */
  .modal-card {
    margin: 16px;
    max-height: 90vh;
  }
  .modal-title {
    font-size: 1.5rem;
  }

  /* Toast */
  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    min-width: unset;
  }
}

/* ---------- Mobile (max-width: 480px) ---------- */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .container {
    padding: 0 16px;
  }

  /* Header */
  .header {
    height: 60px;
  }
  .header.scrolled {
    height: 56px;
  }
  .logo {
    height: 40px;
  }
  .logo-title {
    font-size: 1rem;
  }
  .logo-subtitle {
    font-size: 0.4rem;
  }

  /* Hero */
  .hero-section {
    height: 70vh;
    min-height: 480px;
  }
  .hero-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  .hero-lead {
    font-size: 0.92rem;
    margin-bottom: 8px;
  }
  .hero-description {
    font-size: 0.85rem;
    margin-bottom: 28px;
    line-height: 1.6;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn,
  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  /* Stats */
  .stats-section {
    margin-top: -48px;
  }
  .stats-card {
    padding: 16px;
    border-radius: 12px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
  .stat-icon-wrapper svg {
    width: 20px;
    height: 20px;
  }
  .stat-number {
    font-size: 1.4rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }

  /* Events */
  .events-section {
    padding: 24px 0;
  }
  .carousel-container {
    min-height: 220px;
  }
  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
  .slide-title {
    font-size: 1.05rem;
  }
  .slide-desc {
    font-size: 0.78rem;
  }
  .event-list-card {
    padding: 12px 14px;
    gap: 12px;
  }
  .event-date-badge {
    width: 50px;
    height: 54px;
    border-radius: 8px;
  }
  .event-day {
    font-size: 1.25rem;
  }
  .event-card-title {
    font-size: 0.95rem;
  }
  .event-meta {
    font-size: 0.72rem;
    gap: 8px;
  }
  .btn-card-action {
    padding: 6px 10px;
    font-size: 0.72rem;
  }

  /* Services */
  .services-section {
    padding: 36px 0;
  }
  .service-card {
    padding: 22px;
  }
  .service-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  /* App Section */
  .app-section {
    padding: 30px 0;
  }
  .app-card {
    padding: 0 16px;
    border-radius: var(--radius-md);
  }
  .app-grid {
    padding: 24px 0;
    gap: 20px;
  }
  .app-title {
    font-size: 1.2rem;
  }
  .mockup-container {
    max-width: 180px;
  }
  .app-side-logo {
    max-width: 140px;
  }
  .store-badge {
    height: 32px;
  }

  /* Regions */
  .regions-section {
    padding: 20px 0 30px;
  }
  .section-center-header {
    margin-bottom: 28px;
  }
  .regions-map-container {
    aspect-ratio: 4/3;
    padding: 12px;
  }
  .accordion-item {
    padding: 14px 16px;
  }
  .accordion-header h3 {
    font-size: 0.95rem;
  }
  .accordion-content p {
    font-size: 0.82rem;
  }

  /* Footer */
  .footer-links-group {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Modals */
  .form-row {
    grid-template-columns: 1fr;
  }
  .modal-card {
    padding: 24px 18px;
    margin: 12px;
  }
  .modal-title {
    font-size: 1.3rem;
  }

  /* CTA */
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ---------- Small Mobile (max-width: 360px) ---------- */
@media (max-width: 360px) {
  html {
    font-size: 13px;
  }
  .container {
    padding: 0 12px;
  }

  /* Hero */
  .hero-section {
    height: 65vh;
    min-height: 420px;
  }
  .hero-title {
    font-size: 1.75rem;
  }
  .badge {
    font-size: 0.7rem;
    padding: 4px 12px;
  }

  /* Stats */
  .stats-section {
    margin-top: -40px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .stat-number {
    font-size: 1.2rem;
  }

  /* Events */
  .column-header {
    margin-bottom: 14px;
    padding-bottom: 8px;
  }
  .section-title-alt {
    font-size: 1.1rem;
  }

  /* App */
  .app-card {
    padding: 0 12px;
  }
  .app-grid {
    padding: 20px 0;
  }
  .mockup-container {
    max-width: 150px;
  }

  /* Regions */
  .regions-map-container {
    padding: 8px;
    aspect-ratio: 1/1;
  }

  /* Modal */
  .modal-card {
    margin: 8px;
    padding: 20px 14px;
  }
}

/* ==========================================================================
   SUBPAGES CUSTOM STYLES (ABOUT, SERVICES, APP, CONTACT)
   ========================================================================== */

/* Inner Page Hero (About, Services, Contact) */
.inner-hero-section {
  padding: 120px 0 70px;
  background-image: url("images/background banner.webp");
  background-size: cover;
  /* background: linear-gradient(120deg, #0c2444 0%, #144891 100%); */
  color: #fff;
  text-align: center;
  /* border-bottom-left-radius: 228.5px; */
  /* border-bottom-right-radius: 228.5px; */
  /* max-height: 500px; */
}
.inner-hero-container {
  max-width: 1200px;
  margin: 0 auto;
}
.inner-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin: 16px 0;
  line-height: 1.1;
  color: #fff;
}
.inner-hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--text-offwhite);
  line-height: 1.6;
  opacity: 0.9;
}
.badge-white {
  /* background: rgba(255, 255, 255, 0.15); */
  color: #fff;
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
}

/* --- About Us Page --- */
.our-story-section {
  padding: 80px 0;
  background: var(--bg-white);
}
.our-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.our-story-content .section-title {
  margin: 14px 0 24px;
}
.our-story-content .section-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.our-story-image-box {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img-story {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gap Banner Card */
.gap-banner-section {
  padding: 40px 0 80px;
  background: var(--bg-white);
}
.gap-banner-card {
  background: linear-gradient(120deg, #0c2444 0%, #144891 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 50px 60px;
  box-shadow: var(--shadow-lg);
}
.gap-banner-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  text-align: center;
}
.gap-banner-desc {
  font-size: 1rem;
  color: var(--text-offwhite);
  text-align: center;
  margin-bottom: 44px;
}
.gap-features-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
  gap: 30px;
}
.gap-features-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}
.gap-feature-item {
  text-align: center;
}
.gap-feature-dot {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.gap-feature-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--orange);
}
.gap-feature-text p {
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.5;
}
.gap-center-images {
  flex: 1.2;
  position: relative;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gap-img {
  position: absolute;
  width: 200px;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 4px solid #fff;
  transition: transform 0.3s ease;
}
.gap-img-center {
  z-index: 3;
  transform: scale(1.05);
}
.gap-img-left {
  z-index: 2;
  transform: translateX(-60px) rotate(-8deg);
}
.gap-img-right {
  z-index: 1;
  transform: translateX(60px) rotate(8deg);
}
.gap-center-images:hover .gap-img-left {
  transform: translateX(-80px) rotate(-12deg);
}
.gap-center-images:hover .gap-img-right {
  transform: translateX(80px) rotate(12deg);
}

/* Leadership Team */
.leadership-section {
  padding: 40px 0;
  background: var(--bg-light);
}
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.leader-card {
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.leader-image-box {
  width: 227px;
  height: 259px;
  /* border-radius: 50%; */
  overflow: hidden;
  /* border: 3px solid var(--blue); */
  flex-shrink: 0;
}
.leader-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leader-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 4px;
  color: #144891;
}
.leader-role {
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 0;
  padding-top: 0;
}
.leader-quote {
  font-size: 0.77rem;
  color: #144891;
  line-height: 1.5;
  font-style: italic;
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: 80px 0;
  margin-left: 120px;
  margin-right: 120px;
  background: var(--bg-white);
}
.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mission-vision-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.mv-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.mv-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.teal-dot {
  background: var(--teal);
}
.orange-dot {
  background: var(--orange);
}
.mv-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
}
.mv-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.mission-vision-image-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
}
.mv-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Why Choose Section */
.why-choose-section {
  padding: 40px 0;
  background: var(--bg-light);
}
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.why-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(247, 143, 30, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Services Page --- */
.services-intro-section {
  padding: 80px 0 40px;
  background: var(--bg-white);
}
.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.services-intro-left .section-title {
  margin-top: 14px;
}
.services-detail-section {
  padding: 0 0 80px;
  background: var(--bg-white);
}
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-detail-card {
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.sd-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(247, 143, 30, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-detail-card:nth-child(even) .sd-icon-box {
  background: rgba(20, 72, 145, 0.08);
  color: var(--blue);
}
.sd-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.sd-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Industries We Serve */
.industries-section {
  padding: 80px 0;
  background: linear-gradient(120deg, #0c2444 0%, #144891 100%);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
}
.industry-card {
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}
.industry-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--orange);
  transform: translateY(-4px);
}
.industry-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 12px;
}
.industry-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: #144891;
  letter-spacing: 0.3px;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: var(--bg-light);
}
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.process-step {
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  z-index: 1;
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.step-number {
  position: absolute;
  top: -10px;
  right: -5px;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 800;
  color: rgba(20, 72, 145, 0.04);
  z-index: -1;
  line-height: 1;
}
.step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
}
.step-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Action Box */
.onboarding-action-box {
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 36px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.oab-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.oab-icon {
  font-size: 2.2rem;
}
.oab-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.oab-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- App Page --- */
.app-hero-section {
  padding: 120px 0 60px;
  background-image: url("images/background banner.png");
  background-size: cover;
  /* background: linear-gradient(120deg, #0c2444 0%, #144891 100%); */
  color: #fff;
  overflow: hidden;
}
.app-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.app-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.app-hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: var(--text-offwhite);
  line-height: 1.6;
  margin-bottom: 36px;
  opacity: 0.95;
}
.app-hero-download-badges {
  display: flex;
  gap: 12px;
}
.app-hero-mockup {
  display: flex;
  justify-content: center;
}
.app-hero-img {
  /* max-width: 320px; */
  /* width: 100%; */
  filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.4));
  /* animation: mockFloat 7s ease-in-out infinite; */
}

/* App Value Propositions Section */
.app-value-prop-section {
  padding: 80px 0;
  margin-top: 50px;
  background: linear-gradient(120deg, #0c2444 0%, #144891 100%);
  margin-left: 40px;
  margin-right: 40px;
  border-radius: 20px;
  max-height: 635px;
}
.app-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.app-val-card {
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 528px;
  justify-content: space-between;
  transition: var(--transition);
}
.app-val-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.app-val-card.text-bottom {
  justify-content: flex-start;
}
.avc-mockup-box {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  border: none;
  background: none;
  position: relative;
  flex: 1;
}
.avc-mockup-box.image-top {
  align-items: flex-start;
}
.avc-mockup-img-card {
  /* width: 100%; */
  /* max-width: 100%; */
  height: auto;
  display: block;
  object-fit: contain;
  /* transform: translateY(8%); */
  transition: transform 0.4s ease;
}
.app-val-card:hover .avc-mockup-img-card {
  transform: scale(1.03);
}
.avc-info {
  padding: 32px 28px 24px;
}
.avc-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--orange);
  margin-bottom: 12px;
  line-height: 1.3;
  font-weight: 700;
}
.avc-desc {
  font-size: 0.88rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: #4a5568;
  line-height: 1.6;
}

/* Vertical Timeline for App Steps */
.app-steps-section {
  padding: 80px 0;
  margin-top: 100px;
  background: var(--bg-white);
}
.app-steps-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.app-steps-left {
  display: flex;
  justify-content: center;
}
.app-steps-mockup-img {
  max-width: 550px;
  width: 100%;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.15));
}
.vertical-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 20px;
  margin-top: 36px;
}
.vertical-timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #e2e8f0;
}
.vt-item {
  position: relative;
  padding-left: 30px;
}
.vt-marker {
  position: absolute;
  left: -20px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--orange);
  z-index: 2;
}
.vt-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.vt-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* FAQ Section */
.app-faq-section {
  padding: 80px 0;
  background: var(--bg-light);
}
.app-faq-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}
.faq-item {
  background: #fff;
  border: var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.faq-header {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: #fff;
}
.faq-header h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--navy);
}
.faq-arrow {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--orange);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 22px;
}
.faq-item.active .faq-content {
  padding-bottom: 18px;
}
.faq-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.app-faq-right {
  display: block;
  /* justify-content: center; */
  background: linear-gradient(120deg, #0c2444 0%, #144891 100%);
  height: 510px;
  border-radius: 12px;
  position: relative;
  overflow: visible;
}
.faq-mockup-card {
  position: absolute;
  width: 78%;
  max-width: 260px;
}
.faq-mockup-card:nth-child(1) {
  top: -30px;
  left: 24px;
  z-index: 2;
}

/* Card 2: Buyer Onboarding — sits lower, offset to the right */
.faq-mockup-card:nth-child(2) {
  top: 280px;
  right: 24px;
  z-index: 1;
}

.faq-mockup-image1 {
  width: 100%;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.12));
}

.faq-mockup-image2 {
  width: 150% !important;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.12));
}

/* Bottom Download CTA */
.app-bottom-cta-section {
  padding: 60px 0;
  background: var(--bg-white);
}
.app-bottom-cta-card {
  background: linear-gradient(120deg, #0c2444 0%, #144891 100%);
  border-radius: var(--radius-xl);
  padding: 50px 60px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  overflow: visible;
}
.ab-left {
  height: 250px;
  position: relative;
  overflow: visible;
}
.ab-mockup-img-1 {
  position: absolute;
  top: -120px;
  left: 0;
  max-width: 430px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.ab-right {
  color: #fff;
}
.ab-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.ab-desc {
  font-size: 0.95rem;
  color: var(--text-offwhite);
  line-height: 1.6;
  margin-bottom: 28px;
}
.ab-download-badges {
  display: flex;
  gap: 12px;
}

/* --- Contact Page --- */
.contact-details-section {
  padding: 80px 0;
  background: var(--bg-light);
}
.contact-grid-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: var(--border-light);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
}

/* Left Card Panel */
.contact-info-panel {
  background: linear-gradient(120deg, #0c2444 0%, #144891 100%);
  color: #fff;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cip-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.cip-desc {
  font-size: 0.9rem;
  color: var(--text-offwhite);
  line-height: 1.5;
  margin-bottom: 40px;
}
.cip-items-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.cip-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.cip-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.cip-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}
.cip-item p {
  font-size: 0.85rem;
  color: var(--text-offwhite);
  line-height: 1.5;
}
.cip-socials {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}
.cs-label {
  font-size: 0.82rem;
  color: var(--text-offwhite);
  display: block;
  margin-bottom: 12px;
}
.cs-links {
  display: flex;
  gap: 12px;
}
.cs-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}
.cs-links a:hover {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}

/* Right Form Panel */
.contact-form-panel {
  padding: 50px;
}
.cfp-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 30px;
}
.cfp-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cfp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cfp-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cfp-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}
.cfp-group input {
  background: var(--bg-light);
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  color: var(--text-dark);
}
.cfp-group input:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(20, 72, 145, 0.1);
}
.cfp-submit-btn {
  align-self: flex-start;
  padding: 12px 36px;
}

/* Office Location Map */
.office-map-section {
  padding: 80px 0;
  background: var(--bg-white);
}
.map-iframe-container {
  width: 100%;
}

/* ==========================================================================
   SUBPAGES RESPONSIVE RULES
   ========================================================================== */

@media (max-width: 1024px) {
  /* About Page */
  .mission-vision-section {
    margin-left: 20px;
    margin-right: 20px;
    padding: 60px 0;
  }
  .our-story-grid,
  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .our-story-image-box {
    max-width: 600px;
    margin: 0 auto;
  }
  .gap-features-layout {
    flex-direction: column;
    gap: 40px;
  }
  .gap-features-col {
    width: 100%;
    gap: 30px;
  }
  .gap-center-images {
    order: -1;
    margin: 20px auto;
    width: 100%;
    max-width: 340px;
  }
  .leadership-grid {
    gap: 24px;
  }

  /* Services Page */
  .services-intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .services-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* App Page */
  .app-value-prop-section {
    max-height: none;
    padding: 60px 0 120px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .app-hero-grid,
  .app-steps-grid,
  .app-faq-grid,
  .app-bottom-cta-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .app-hero-download-badges,
  .ab-download-badges {
    justify-content: center;
  }
  .app-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .app-steps-left {
    order: -1;
  }
  .app-faq-right {
    display: none;
  }
  .ab-left {
    display: none;
  }
  .app-bottom-cta-card {
    padding: 40px;
  }

  /* Contact Page */
  .contact-grid-card {
    grid-template-columns: 1fr;
  }
  .contact-info-panel,
  .contact-form-panel {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  /* Common */
  .inner-hero-section {
    padding: 100px 0 50px;
  }

  /* About */
  .gap-center-images {
    max-width: 280px;
    height: 250px;
  }
  .gap-img {
    width: 160px;
    height: 210px;
  }
  .gap-img-left {
    transform: translateX(-40px) rotate(-8deg);
  }
  .gap-img-right {
    transform: translateX(40px) rotate(8deg);
  }
  .gap-center-images:hover .gap-img-left {
    transform: translateX(-50px) rotate(-12deg);
  }
  .gap-center-images:hover .gap-img-right {
    transform: translateX(50px) rotate(12deg);
  }
  .leadership-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Services */
  .services-detail-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .onboarding-action-box {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .oab-left {
    flex-direction: column;
  }

  /* App */
  .app-value-prop-section {
    padding: 40px 0 40px;
    margin-left: 15px;
    margin-right: 15px;
  }
  .app-value-grid {
    grid-template-columns: 1fr;
  }
  .vertical-timeline::before {
    left: 0;
  }
  .vt-marker {
    left: -25px;
  }
  .vertical-timeline {
    padding-left: 24px;
  }
}

@media (max-width: 480px) {
  /* Common */
  .inner-hero-title {
    font-size: 1.85rem;
  }
  .inner-hero-subtitle {
    font-size: 0.88rem;
  }

  /* About */
  .leader-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .mv-header {
    justify-content: center;
  }
  .mv-title {
    font-size: 1.25rem;
  }
  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  /* Services */
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* App */
  .app-hero-download-badges,
  .ab-download-badges {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .app-hero-download-badges .store-badge,
  .ab-download-badges .store-badge {
    width: 160px;
  }

  /* Contact */
  .cfp-row {
    grid-template-columns: 1fr;
  }
  .cfp-submit-btn {
    width: 100%;
  }
  .contact-info-panel,
  .contact-form-panel {
    padding: 30px 20px;
  }
}
