/* =============================================
   MATLEX RIDE — Landing Page Styles
   ============================================= */

:root {
  --brand:       #F7B731;
  --brand-dark:  #d4991e;
  --brand-light: rgba(247,183,49,.12);
  --dark:        #1a1f2e;
  --dark2:       #242b3d;
  --dark3:       #0f1623;
  --body:        #ffffff;
  --gray-bg:     #f6f8fc;
  --text:        #3b3f5c;
  --muted:       #8a93a2;
  --border:      #e8eaf0;
  --success:     #28c76f;
  --info:        #00cfe8;
  --purple:      #7367f0;
  --danger:      #ea5455;
  --radius:      16px;
  --radius-sm:   10px;
  --tr:          0.3s ease;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.07);
  --shadow-md:   0 8px 32px rgba(0,0,0,.1);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.15);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--body);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* =============================================
   UTILITIES
   ============================================= */
.section-py { padding: 80px 0; }
.section-py-sm { padding: 60px 0; }

.section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--brand-light); color: var(--brand-dark);
  font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 6px 14px; border-radius: 30px;
  margin-bottom: 14px;
}
.section-tag i { font-size: 12px; }

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800; color: var(--dark); line-height: 1.2;
  margin-bottom: 14px;
}
.section-title span { color: var(--brand); }

.section-title.light { color: #fff; }
.section-title.light span { color: var(--brand); }

.section-desc {
  font-size: 15.5px; color: var(--muted); max-width: 560px;
  line-height: 1.7; margin-bottom: 32px;
}
.section-desc.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Reveal animation */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-brand {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand); color: var(--dark);
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 14.5px; font-weight: 700; border: none; cursor: pointer;
  transition: all var(--tr);
  box-shadow: 0 4px 16px rgba(247,183,49,.35);
  white-space: nowrap;
}
.btn-brand:hover {
  background: var(--brand-dark); color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247,183,49,.45);
}
.btn-brand:active { transform: translateY(0); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: #fff;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 14.5px; font-weight: 700; border: none; cursor: pointer;
  transition: all var(--tr);
}
.btn-dark:hover { background: var(--dark2); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-brand {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--brand);
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-size: 14.5px; font-weight: 700;
  border: 2px solid var(--brand); cursor: pointer;
  transition: all var(--tr);
}
.btn-outline-brand:hover { background: var(--brand); color: var(--dark); transform: translateY(-2px); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--dark);
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-size: 14.5px; font-weight: 700; border: none; cursor: pointer;
  transition: all var(--tr);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); color: var(--dark); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-size: 14.5px; font-weight: 700;
  border: 2px solid rgba(255,255,255,.4); cursor: pointer;
  transition: all var(--tr);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); color: #fff; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar-main {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px;
  padding: 0 0;
  transition: all var(--tr);
}
.navbar-main.scrolled {
  background: var(--dark) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.navbar-inner {
  height: 100%; display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo-icon {
  width: 38px; height: 38px; background: var(--brand);
  border-radius: 10px; display: grid; place-items: center;
  font-size: 18px; font-weight: 800; color: var(--dark);
  flex-shrink: 0;
}
.nav-logo-text { line-height: 1.15; }
.nav-logo-name { font-size: 15px; font-weight: 800; color: #fff; }
.nav-logo-sub  { font-size: 9px; color: var(--brand); text-transform: uppercase; letter-spacing: 1.5px; }

.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links li a {
  font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.7);
  padding: 8px 12px; border-radius: 8px;
  transition: all var(--tr); display: block;
}
.nav-links li a:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-links li a.active { color: var(--brand); }

.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta-login {
  font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.7);
  padding: 8px 14px; border-radius: 8px;
  transition: all var(--tr); cursor: pointer;
}
.nav-cta-login:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-cta-book {
  background: var(--brand); color: var(--dark);
  padding: 9px 20px; border-radius: 8px;
  font-size: 13.5px; font-weight: 700;
  transition: all var(--tr); cursor: pointer;
}
.nav-cta-book:hover { background: var(--brand-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(247,183,49,.4); color: var(--dark); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border-radius: 8px;
  transition: background var(--tr);
}
.hamburger:hover { background: rgba(255,255,255,.08); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--dark2);
  padding: 16px;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  border-top: 1px solid rgba(255,255,255,.07);
  transform: translateY(-10px); opacity: 0;
  transition: all var(--tr);
}
.mobile-nav.open { display: block; transform: translateY(0); opacity: 1; }
.mobile-nav a {
  display: block; padding: 12px 16px;
  color: rgba(255,255,255,.8); font-size: 14px; font-weight: 600;
  border-radius: 10px; transition: all var(--tr);
}
.mobile-nav a:hover { background: rgba(255,255,255,.07); color: #fff; }
.mobile-nav-ctas { display: flex; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.07); }
.mobile-nav-ctas a { flex: 1; text-align: center; padding: 12px; border-radius: 10px; font-size: 13.5px; font-weight: 700; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--dark3) 0%, var(--dark) 50%, var(--dark2) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 70px;
}

/* Decorative background elements */
.hero-bg-circle {
  position: absolute; border-radius: 50%;
  pointer-events: none;
}
.hero-bg-circle.c1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(247,183,49,.08) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-bg-circle.c2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(115,103,240,.06) 0%, transparent 70%);
  bottom: -100px; left: -50px;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(247,183,49,.12); border: 1px solid rgba(247,183,49,.25);
  color: var(--brand); font-size: 12px; font-weight: 700;
  padding: 7px 16px; border-radius: 30px; margin-bottom: 22px;
}
.hero-badge .badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--success);
  animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(40,199,111,.4); }
  50%       { box-shadow: 0 0 0 6px rgba(40,199,111,.0); }
}

.hero-title {
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 800; color: #fff; line-height: 1.12;
  margin-bottom: 20px;
}
.hero-title .highlight {
  color: var(--brand);
  position: relative; display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 4px; background: var(--brand); border-radius: 2px; opacity: .4;
}

.hero-desc {
  font-size: 17px; color: rgba(255,255,255,.6);
  line-height: 1.75; margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }

.hero-trust {
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.5);
}
.trust-item i { color: var(--brand); font-size: 14px; }

/* Hero visual — phone mockup style */
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-phone-wrap {
  position: relative;
  animation: hero-float 4s ease-in-out infinite alternate;
}
@keyframes hero-float {
  from { transform: translateY(0); }
  to   { transform: translateY(-16px); }
}
.hero-phone-bg {
  width: 300px; height: 560px;
  background: linear-gradient(145deg, var(--dark2), #1e2840);
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 0 0 2px #2e3650,
    0 40px 80px rgba(0,0,0,.5),
    0 0 80px rgba(247,183,49,.06);
  position: relative;
}
.hero-phone-screen {
  background: linear-gradient(145deg, #1a2e50 0%, #0f1e38 100%);
  border-radius: 34px; height: 100%;
  overflow: hidden; position: relative;
}
/* Mini map inside phone */
.hps-map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 30px 30px;
}
.hps-road {
  position: absolute; background: rgba(255,255,255,.1);
}
.hps-road.h { left: 0; right: 0; height: 8px; }
.hps-road.v { top: 0; bottom: 0; width: 8px; }
.hps-my-dot {
  position: absolute; width: 16px; height: 16px; border-radius: 50%;
  background: var(--brand); border: 3px solid #fff;
  box-shadow: 0 0 0 8px rgba(247,183,49,.2);
  animation: pulse-me 2s infinite;
  top: 50%; left: 48%; transform: translate(-50%,-50%);
}
@keyframes pulse-me {
  0%, 100% { box-shadow: 0 0 0 8px rgba(247,183,49,.2); }
  50%       { box-shadow: 0 0 0 16px rgba(247,183,49,.04); }
}
.hps-driver {
  position: absolute; font-size: 18px;
  animation: float-driver 3s ease-in-out infinite alternate;
}
@keyframes float-driver { from { transform: translateY(0); } to { transform: translateY(-5px); } }

/* UI overlay on hero phone */
.hps-top-bar {
  position: absolute; top: 0; left: 0; right: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.6), transparent);
  padding: 16px 14px 30px;
  z-index: 5;
}
.hps-app-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.hps-greeting { font-size: 12px; font-weight: 700; color: #fff; }
.hps-greeting span { color: var(--brand); }
.hps-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--brand); display: grid; place-items: center;
  font-size: 11px; font-weight: 800; color: var(--dark);
}
.hps-nearby { font-size: 10px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 4px; }
.hps-nearby i { color: var(--success); }

.hps-bottom-sheet {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: #fff; border-radius: 18px 18px 0 0;
  padding: 10px 14px 14px;
  z-index: 5;
}
.hps-handle { width: 32px; height: 3px; border-radius: 2px; background: #dde0e7; margin: 0 auto 10px; }
.hps-where {
  background: #f4f6f9; border-radius: 10px; padding: 10px 12px;
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; color: #8a93a2;
  margin-bottom: 8px;
}
.hps-where i { color: var(--brand); font-size: 12px; }
.hps-quick { display: flex; gap: 6px; }
.hps-qd {
  flex: 1; background: #f4f6f9; border-radius: 8px; padding: 7px 4px;
  text-align: center; font-size: 9px; font-weight: 700; color: #3b3f5c;
}
.hps-qd i { display: block; color: var(--brand); font-size: 12px; margin-bottom: 3px; }

/* Floating chips around the phone */
.hero-chip {
  position: absolute;
  background: var(--card-bg, #fff);
  border-radius: 12px; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  white-space: nowrap; z-index: 3;
  animation: chip-float 5s ease-in-out infinite alternate;
}
.hero-chip.chip1 {
  top: 15%; right: -30px;
  animation-delay: .5s;
}
.hero-chip.chip2 {
  bottom: 30%; left: -20px;
  animation-delay: 1.5s;
}
.hero-chip.chip3 {
  bottom: 12%; right: -10px;
  animation-delay: 1s;
}
@keyframes chip-float {
  from { transform: translateY(0) rotate(-1deg); }
  to   { transform: translateY(-8px) rotate(1deg); }
}
.chip-icon { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-size: 14px; flex-shrink: 0; }
.chip-val  { font-size: 14px; font-weight: 800; color: var(--dark, #1a1f2e); line-height: 1.1; }
.chip-lbl  { font-size: 10px; color: var(--muted, #8a93a2); }

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--brand);
  padding: 24px 0;
}
.stats-inner {
  display: flex; flex-wrap: wrap;
  justify-content: space-around; gap: 20px;
}
.stat-item { text-align: center; padding: 8px 24px; }
.stat-number {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; color: var(--dark); line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(26,31,46,.65); font-weight: 600; margin-top: 4px; }
.stat-divider {
  width: 1px; background: rgba(26,31,46,.15); align-self: stretch; margin: 8px 0;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-img-wrap {
  position: relative;
}
.about-main-img {
  width: 100%; border-radius: 20px;
  background: linear-gradient(145deg, var(--dark), var(--dark2));
  min-height: 420px; display: flex; align-items: center; justify-content: center;
  font-size: 80px; overflow: hidden; position: relative;
}
.about-main-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(145deg, #1a2e50 0%, #0f1e38 100%);
}
.about-main-img-content { position: relative; z-index: 2; }
.about-badge-card {
  position: absolute; background: #fff; border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.about-badge-card.bc1 { bottom: -20px; left: -20px; }
.about-badge-card.bc2 { top: 20px; right: -20px; }
.abc-icon { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 18px; flex-shrink: 0; }
.abc-value { font-size: 18px; font-weight: 800; color: var(--dark); line-height: 1.1; }
.abc-label { font-size: 11px; color: var(--muted); margin-top: 1px; }

.mission-card {
  background: var(--gray-bg); border-radius: 14px; padding: 20px;
  border-left: 4px solid var(--brand); margin-bottom: 16px;
}
.mission-card h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.mission-card p  { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.6; }

/* =============================================
   WHY MATLEX (FEATURES)
   ============================================= */
.features-bg { background: var(--gray-bg); }

.feature-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  transition: all var(--tr);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--brand); transform: scaleX(0);
  transition: transform var(--tr); transform-origin: left;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; font-size: 22px;
  margin-bottom: 18px;
}
.feature-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.feature-desc  { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* =============================================
   SERVICES
   ============================================= */
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all var(--tr);
  cursor: pointer;
  position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.service-card-top {
  padding: 28px 24px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.service-icon-wrap {
  width: 60px; height: 60px; border-radius: 16px;
  display: grid; place-items: center;
  font-size: 26px; margin-bottom: 16px;
}
.service-name { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.service-desc { font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.service-tag  { font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.service-card-bottom {
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.service-price { font-size: 13.5px; font-weight: 700; }
.service-eta   { font-size: 12px; display: flex; align-items: center; gap: 5px; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.hiw-bg { background: var(--dark); position: relative; overflow: hidden; }
.hiw-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hiw-tabs { display: flex; background: rgba(255,255,255,.06); border-radius: 12px; padding: 5px; margin-bottom: 40px; }
.hiw-tab {
  flex: 1; text-align: center; padding: 10px;
  border-radius: 9px; font-size: 13.5px; font-weight: 700;
  color: rgba(255,255,255,.4); cursor: pointer; transition: all var(--tr);
}
.hiw-tab.active { background: var(--brand); color: var(--dark); }

.hiw-step {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 28px; position: relative;
}
.hiw-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px; top: 56px;
  width: 2px; height: 28px;
  background: rgba(255,255,255,.1);
}
.hiw-step-num {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(247,183,49,.12); border: 2px solid rgba(247,183,49,.3);
  display: grid; place-items: center;
  font-size: 18px; font-weight: 800; color: var(--brand);
  flex-shrink: 0;
}
.hiw-step-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.hiw-step-desc  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; }

/* =============================================
   JOIN US — DRIVER SECTION
   ============================================= */
.join-driver {
  background: linear-gradient(135deg, var(--dark3) 0%, var(--dark) 100%);
  position: relative; overflow: hidden;
}
.join-driver::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,183,49,.08) 0%, transparent 70%);
  pointer-events: none;
}

.driver-benefit {
  display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px;
}
.db-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center; font-size: 18px; flex-shrink: 0;
  background: rgba(247,183,49,.1);
}
.db-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.db-desc  { font-size: 12.5px; color: rgba(255,255,255,.5); line-height: 1.5; }

.driver-earning-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 20px;
}
.dec-title   { font-size: 12px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.dec-amount  { font-size: 36px; font-weight: 800; color: var(--brand); margin-bottom: 4px; }
.dec-sub     { font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.dec-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 12.5px; }
.dec-row .lbl { color: rgba(255,255,255,.4); }
.dec-row .val { color: #fff; font-weight: 600; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-bg { background: var(--gray-bg); }

.testimonial-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  transition: all var(--tr);
  position: relative;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 16px; right: 22px;
  font-size: 72px; color: var(--brand); opacity: .15;
  font-family: Georgia, serif; line-height: 1;
}
.tc-stars { color: var(--brand); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.tc-text  { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 16px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.tc-name   { font-size: 13.5px; font-weight: 700; color: var(--dark); }
.tc-role   { font-size: 11.5px; color: var(--muted); margin-top: 1px; }
.tc-badge  { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 20px; background: var(--brand-light); color: var(--brand-dark); margin-top: 3px; display: inline-block; }

/* =============================================
   DOWNLOAD APP
   ============================================= */
.download-section {
  background: linear-gradient(135deg, var(--dark3) 0%, #1a2744 50%, var(--dark) 100%);
  position: relative; overflow: hidden;
}
.download-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.download-section::after {
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,183,49,.07) 0%, transparent 70%);
}

.app-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 14px; padding: 12px 20px;
  cursor: pointer; transition: all var(--tr);
}
.app-badge:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); transform: translateY(-2px); }
.app-badge-icon { font-size: 28px; }
.app-badge-sub  { font-size: 10px; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .8px; }
.app-badge-name { font-size: 15px; font-weight: 800; color: #fff; margin-top: 1px; }

/* Phone pair graphic */
.phones-pair {
  position: relative; display: flex; justify-content: center;
  padding: 20px 0;
}
.pp-phone {
  border-radius: 32px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
  animation: pair-float 4s ease-in-out infinite alternate;
  flex-shrink: 0;
}
.pp-phone:nth-child(2) { animation-delay: 1s; }
@keyframes pair-float {
  from { transform: translateY(0); }
  to   { transform: translateY(-12px); }
}
.pp-phone.main { width: 180px; background: var(--dark2); padding: 8px; }
.pp-phone.side { width: 150px; background: var(--dark3); padding: 7px; margin-top: 40px; margin-left: -20px; z-index: 2; }
.pp-screen {
  border-radius: 26px; overflow: hidden;
  background: linear-gradient(145deg, #1a2e50 0%, #0f1e38 100%);
}
.pp-screen.main-s { height: 330px; }
.pp-screen.side-s { height: 270px; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-card {
  background: var(--dark); border-radius: var(--radius);
  padding: 28px 24px; text-align: center; height: 100%;
  transition: all var(--tr);
}
.contact-card:hover { transform: translateY(-4px); }
.contact-card-icon {
  width: 64px; height: 64px; border-radius: 18px;
  display: grid; place-items: center; font-size: 24px;
  margin: 0 auto 16px;
}
.contact-card-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.contact-card-text  { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 12px; }
.contact-card-action { font-size: 13.5px; font-weight: 700; color: var(--brand); }

.contact-form-wrap {
  background: var(--gray-bg); border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.cf-title { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.cf-sub   { font-size: 13.5px; color: var(--muted); margin-bottom: 24px; }

.form-input-wrap { position: relative; margin-bottom: 16px; }
.form-input-wrap i {
  position: absolute; left: 14px; top: 50%;
  transform: translateY(-50%); color: var(--muted); font-size: 14px;
  pointer-events: none;
}
.form-input-wrap.textarea-wrap i { top: 16px; transform: none; }
.cf-input {
  width: 100%; padding: 13px 14px 13px 42px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; color: var(--dark); font-family: inherit;
  background: #fff; outline: none; transition: border var(--tr);
}
.cf-input:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(247,183,49,.12); }
.cf-input::placeholder { color: var(--muted); }
.cf-select {
  width: 100%; padding: 13px 14px 13px 42px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; color: var(--dark);
  background: #fff; outline: none; cursor: pointer;
  transition: border var(--tr); appearance: none;
}
.cf-select:focus { border-color: var(--brand); }
.cf-textarea {
  width: 100%; padding: 13px 14px 13px 42px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; color: var(--dark); font-family: inherit;
  background: #fff; outline: none; resize: vertical; min-height: 120px;
  transition: border var(--tr);
}
.cf-textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 3px rgba(247,183,49,.12); }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--dark3); padding: 60px 0 0; }

.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon {
  width: 36px; height: 36px; background: var(--brand);
  border-radius: 10px; display: grid; place-items: center;
  font-size: 16px; font-weight: 800; color: var(--dark);
}
.footer-logo-name { font-size: 16px; font-weight: 800; color: #fff; }

.footer-desc { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: 20px; max-width: 280px; }

.footer-social { display: flex; gap: 8px; }
.social-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.07); display: grid; place-items: center;
  color: rgba(255,255,255,.6); font-size: 15px;
  transition: all var(--tr); cursor: pointer;
}
.social-icon:hover { background: var(--brand); color: var(--dark); }

.footer-heading { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--brand); margin-bottom: 14px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.5); transition: color var(--tr); }
.footer-links a:hover { color: var(--brand); }

.footer-newsletter-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.footer-newsletter-desc  { font-size: 13px; color: rgba(255,255,255,.45); margin-bottom: 14px; line-height: 1.5; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-input {
  flex: 1; padding: 11px 14px;
  background: rgba(255,255,255,.07); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 10px; color: #fff; font-size: 13px; outline: none;
  transition: border var(--tr);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.3); }
.newsletter-input:focus { border-color: var(--brand); }
.newsletter-btn {
  padding: 11px 16px; background: var(--brand); color: var(--dark);
  border: none; border-radius: 10px; font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all var(--tr); white-space: nowrap;
}
.newsletter-btn:hover { background: var(--brand-dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 40px; padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-bottom-text { font-size: 12.5px; color: rgba(255,255,255,.3); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,.35); transition: color var(--tr); }
.footer-bottom-links a:hover { color: var(--brand); }

/* =============================================
   STICKY BOOKING BAR (mobile)
   ============================================= */
.sticky-book-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--dark); border-top: 1px solid rgba(255,255,255,.08);
  padding: 12px 16px; z-index: 900;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.sticky-book-bar a { width: 100%; text-align: center; }

/* =============================================
   BACK TO TOP
   ============================================= */
.back-to-top {
  position: fixed; bottom: 80px; right: 20px; z-index: 800;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand); color: var(--dark);
  display: grid; place-items: center; font-size: 16px;
  box-shadow: 0 4px 16px rgba(247,183,49,.4);
  cursor: pointer; transition: all var(--tr);
  opacity: 0; pointer-events: none;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-3px); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991.98px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-visual { margin-top: 40px; }
  .section-py { padding: 60px 0; }
  .hero-bg-circle.c1 { width: 300px; height: 300px; }
  .about-badge-card.bc1 { bottom: -10px; left: -5px; }
  .about-badge-card.bc2 { display: none; }
}

@media (max-width: 767.98px) {
  .section-py { padding: 48px 0; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a, .hero-ctas button { width: 100%; justify-content: center; }
  .stats-inner { gap: 0; }
  .stat-item { width: 50%; border-right: 1px solid rgba(26,31,46,.15); border-bottom: 1px solid rgba(26,31,46,.15); }
  .stat-divider { display: none; }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(n+3) { border-bottom: none; }
  .hero-phone-bg { width: 240px; height: 460px; }
  .hero-chip.chip1 { right: -10px; }
  .hero-chip.chip2 { left: -5px; }
  .hero-chip.chip3 { right: -5px; }
  .hiw-tabs { flex-direction: column; }
  .download-section .d-flex { flex-direction: column; }
  .contact-form-wrap { padding: 24px 18px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .sticky-book-bar { display: block; }
  body { padding-bottom: 70px; }
  .newsletter-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hero-phone-bg { width: 210px; height: 400px; }
  .hero-chip { padding: 8px 10px; gap: 6px; }
  .chip-val { font-size: 12px; }
  .chip-lbl { font-size: 9px; }
  .chip-icon { width: 28px; height: 28px; font-size: 12px; }
}
