/* ============================================================
   MIGHTYTAXI — Premium Dark  ×  Bright Orange Design System
   Background: #0B0D1A (deep navy)
   Accent:     #FF7A2F (vivid warm orange)
   Font:       DM Sans + Playfair Display
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&family=Playfair+Display:wght@700;800&display=swap');

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

/* ── TOKENS — LIGHT THEME ── */
:root {
  --bg:          #F8F7F4;
  --bg-2:        #FFFFFF;
  --bg-card:     #FFFFFF;
  --bg-card2:    #F3F2EF;
  --orange:      #E8620A;
  --orange-light:#FF7A2F;
  --orange-dim:  rgba(232,98,10,0.08);
  --orange-glow: rgba(232,98,10,0.20);
  --white:       #FFFFFF;
  --text:        #0F0F0F;
  --muted:       #5A5A6A;
  --dim:         #9A9AAA;
  --border:      rgba(0,0,0,0.08);
  --border-o:    rgba(232,98,10,0.28);
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  22px;
  --r-xl:  32px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-o:    0 0 40px rgba(232,98,10,0.18);
  --ease: cubic-bezier(0.4,0,0.2,1);
  --t: all 0.25s var(--ease);
}

html  { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR light ── */
::-webkit-scrollbar-track { background: #F0EEE9; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

/* ── SHARED UTILITIES ── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.section-badge::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

.heading-xl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}
.heading-xl .accent { color: var(--orange); }

.heading-lg {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

.body-text {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white) !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--orange-light);
  box-shadow: var(--shadow-o);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text) !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  transition: var(--t);
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--border-o);
  color: var(--orange) !important;
  background: var(--orange-dim);
}

/* ── CONTENT PAGE OFFSET ── */
.content-page { padding-top: 0; }

/* offset anchor targets so fixed navbar doesn't cover them */
section[id], div[id] {
  scroll-margin-top: 72px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  background: rgba(248,247,244,0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  box-shadow: 0 1px 12px rgba(0,0,0,0.07);
}

.nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  flex-shrink: 0;
}

.nav-img { border-radius: 10px; }

.nav-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text) !important;
  letter-spacing: -0.02em;
}

/* center nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted) !important;
  text-decoration: none !important;
  padding: 6px 14px;
  border-radius: var(--r-sm);
  transition: var(--t);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text) !important;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 14px; right: 14px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* hide old bootstrap nav toggler conflicts */
.navbar-toggler { display: none !important; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions .btn-outline { display: none; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
  padding: calc(72px + 4rem) 2rem 4rem;
}

/* subtle warm glow */
.hero-section::before {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55%; height: 120%;
  background: radial-gradient(ellipse at 70% 40%,
    rgba(232,98,10,0.07) 0%,
    rgba(232,98,10,0.02) 40%,
    transparent 70%);
  pointer-events: none;
}

/* dot pattern */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(232,98,10,0.12) 1px, transparent 1px),
    radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px;
  background-position: 0 0, 40px 40px;
  opacity: 0.6;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

/* ── LEFT copy ── */
.hero-copy { max-width: 560px; }

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.hero-check svg {
  width: 18px; height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 2rem;
}

/* ── RIGHT collage ── */
.hero-collage {
  position: relative;
  height: 520px;
}

.collage-main {
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 75%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.collage-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: none;
}

.collage-tr {
  position: absolute;
  top: 0; right: 0;
  width: 37%;
  height: 44%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.collage-tr img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: none;
}

.collage-br {
  position: absolute;
  bottom: 0; right: 0;
  width: 40%;
  height: 43%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.collage-br img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: none;
}

/* floating label tags */
.collage-tag {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-o);
  border-radius: var(--r-sm);
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  z-index: 5;
}

.tag-main  { bottom: 16px; left: 44px; }
.tag-tr    { bottom: 12px; right: 4px; }
.tag-br    { bottom: 12px; right: 4px; }

/* floating stat pill top-right */
.collage-pill {
  position: absolute;
  top: -14px; right: 36px;
  background: var(--orange);
  border-radius: 999px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(255,122,47,0.4);
  z-index: 6;
}

.pill-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pill-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

/* accredited badge bottom-left */
.collage-accred {
  position: absolute;
  bottom: 14px; left: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 6;
}

.accred-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.accred-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.accred-sub {
  font-size: 0.68rem;
  color: var(--muted);
}

/* corner frame accents */
.frame-tl, .frame-br-c {
  position: absolute;
  width: 24px; height: 24px;
  border-color: var(--orange-light);
  border-style: solid;
  opacity: 0.6;
}
.frame-tl {
  top: -6px; left: 24px;
  border-width: 2px 0 0 2px;
  border-top-left-radius: 4px;
}
.frame-br-c {
  bottom: -6px; right: -6px;
  border-width: 0 2px 2px 0;
  border-bottom-right-radius: 4px;
}

/* ── SCROLL INDICATOR ── */
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  color: var(--dim);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--orange);
  border-top: none;
  border-bottom: none;
  padding: 2.2rem 2rem;
}

.stats-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 110px;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
}

/* ============================================================
   OUR MISSION
   ============================================================ */
.mission-section {
  padding: 7rem 2rem;
  background: var(--bg);
}

.mission-section .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.mission-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.mission-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(255,122,47,0.18) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.our-mission-img {
  width: 100%;
  border-radius: var(--r-xl);
  display: block;
  filter: none;
}

.mission-copy .our-mission-h1 {
  color: var(--text);
  margin-bottom: 1.5rem;
}

.mission-copy .our-mission-p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.mission-copy .our-mission-p p { margin-bottom: 1rem; }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.why-section {
  background: #F2F0EC;
  padding: 6.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.why-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.why-header .section-badge { justify-content: center; }
.why-header .section-badge::before { display: none; }

.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: var(--t);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: var(--t);
}

.why-card:hover {
  border-color: var(--border-o);
  transform: translateY(-5px);
  box-shadow: var(--shadow-o), var(--shadow-card);
}

.why-card:hover::before { opacity: 1; }

.why-icon-wrap {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--orange-dim);
  border: 1px solid var(--border-o);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--t);
}

.why-card:hover .why-icon-wrap {
  background: var(--orange);
}

.why-icon-wrap img {
  width: 28px; height: 28px;
  object-fit: contain;
  filter: brightness(1.4);
}

.why-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.why-p-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  max-height: 85px;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.why-card.expanded .why-p-text { max-height: 400px; }

.read-more, .read-less {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange) !important;
  cursor: pointer;
  margin-top: 0.75rem;
  display: inline-block;
  transition: var(--t);
  background: none;
  border: none;
  padding: 0;
}

.read-more:hover, .read-less:hover { color: var(--orange-light) !important; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--bg-2);
  padding: 6.5rem 2rem;
}

.testimonials-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.testimonials-header .section-badge { justify-content: center; }
.testimonials-header .section-badge::before { display: none; }

.testimonials-header h2 { margin-bottom: 0.6rem; }

#testimonialCarousel {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  background: #F8F6F2 !important;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--r-xl);
  padding: 2.5rem 2.5rem !important;
  height: auto !important;
  display: flex !important;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: 24px;
  font-size: 9rem;
  color: rgba(255,122,47,0.08);
  font-family: 'Playfair Display', serif;
  pointer-events: none;
}

.testimonial-item {
  flex: 1;
  min-width: 0;
}

.testimonial-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}

.testimonial-p {
  color: var(--muted) !important;
  font-size: 0.95rem;
  line-height: 1.8;
  height: auto !important;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.testimonial-item h5 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange) !important;
}

.marbot-30 { margin-bottom: 1rem !important; }

.testimonial-image-div .profile-image-wrapper {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

.profile-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-o);
}

.profile-border-img { display: none; }

/* carousel dots */
.carousel-indicators {
  position: static !important;
  margin: 2rem 0 0 !important;
  justify-content: center;
  gap: 6px;
}

.carousel-indicators [data-bs-target] {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: var(--dim) !important;
  border: none !important;
  opacity: 1 !important;
  transition: var(--t) !important;
}

.carousel-indicators .active {
  background: var(--orange) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* ============================================================
   DOWNLOAD / CTA
   ============================================================ */
.download-section-outer {
  background: #F2F0EC;
  padding: 6.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.download-section-outer::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -150px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,47,0.07), transparent 65%);
  pointer-events: none;
}

.download-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.download-copy .download-now { margin-bottom: 1rem; }

.download-subtitle {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 460px;
}

.app-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.web-icon-img {
  width: 148px;
  height: auto;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--t);
  filter: brightness(0.9);
}

.web-icon-img:hover {
  border-color: var(--border-o);
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-o);
}

.download-phone {
  display: flex;
  justify-content: center;
}

.download-phone img {
  max-width: 300px;
  width: 100%;
  filter: drop-shadow(0 24px 56px rgba(255,122,47,0.22));
  animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% { transform: translateY(0px);   }
  50%       { transform: translateY(-18px); }
}

/* ============================================================
   FOOTER
   ============================================================ */
/* ============================================================
   FOOTER — Modern Black
   ============================================================ */
.footer {
  background: #0D0D0D !important;
  background-image: none !important;
  border-top: none;
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* top orange accent line */
.footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--orange) 30%, var(--orange-light) 60%, transparent 100%);
}

/* subtle background texture */
.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,122,47,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.footer-container {
  padding: 3.5rem 2rem 0 !important;
  position: relative;
  z-index: 1;
}

/* brand column */
.footer-brand-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-heading {
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  margin-bottom: 1.4rem !important;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-content,
.footer-link,
.hover-stop {
  color: #666 !important;
  font-size: 0.875rem !important;
  line-height: 2.2 !important;
  transition: color 0.2s, padding-left 0.2s !important;
  text-decoration: none !important;
  display: block;
}

.hover-stop:hover,
.footer-link:hover {
  color: var(--orange) !important;
  padding-left: 4px;
}

.footer-pages-content {
  color: #666 !important;
  font-size: 0.875rem;
  line-height: 2.2;
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}
.footer-pages-content:hover {
  color: var(--orange) !important;
  padding-left: 4px;
}

/* contact links */
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666 !important;
  font-size: 0.875rem;
  text-decoration: none !important;
  margin-bottom: 0.9rem;
  transition: color 0.2s;
}

.footer-contact-link:hover { color: var(--orange) !important; }

.footer-contact-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,122,47,0.1);
  border: 1px solid rgba(255,122,47,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 0.8rem;
  transition: var(--t);
}

.footer-contact-link:hover .footer-contact-icon {
  background: var(--orange);
  color: #fff;
}

/* social icons */
.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 1.4rem;
}

.footer .info-share { display: flex !important; gap: 8px; margin-top: 1.4rem; }

.footer .info-share .list-inline-item { margin: 0; }

.footer .info-share .list-inline-item a,
.footer-social-btn {
  width: 36px; height: 36px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #2A2A2A !important;
  color: #666 !important;
  font-size: 0.85rem;
  text-decoration: none !important;
  transition: var(--t);
  background: transparent;
}

.footer .info-share .list-inline-item a:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* divider */
.footer .divider {
  border: none;
  border-top: 1px solid #1E1E1E;
  margin: 3rem 0 1.75rem;
}

/* bottom bar */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 1.75rem;
}

.footer-brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-name {
  font-weight: 800 !important;
  font-size: 1rem !important;
  color: #FFFFFF !important;
  letter-spacing: -0.01em;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.terms-condition {
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  color: #444 !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
  letter-spacing: 0.02em;
}
.terms-condition:hover { color: var(--orange) !important; }

.copyright {
  font-size: 0.78rem !important;
  color: #333 !important;
  background: #080808;
  padding: 1rem 2rem !important;
  border-top: 1px solid #1A1A1A;
  margin-top: 0 !important;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px)  { .footer-container { padding: 3.5rem 3rem 0 !important; } }
@media (min-width: 992px)  { .footer-container { padding: 3.5rem 5rem 0 !important; } }
@media (min-width: 1300px) { .footer-container { padding: 3.5rem 7rem 0 !important; } }

/* ============================================================
   TERMS / PRIVACY
   ============================================================ */
.terms-service, .privacy-policy { margin-top: 2rem; }
.terms-service p, .terms-service ul li,
.privacy-policy p, .privacy-policy ul li {
  color: var(--muted) !important;
  font-size: 0.95rem;
  line-height: 1.8;
}
.pages { margin-top: 4rem; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-collage { height: 420px; }
  .mission-section .inner { gap: 3rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .download-inner { gap: 3rem; }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-copy { max-width: 100%; margin: 0 auto; }
  .hero-checks { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-collage { display: none; }
  .scroll-hint { display: none; }
  .mission-section .inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .download-inner { grid-template-columns: 1fr; text-align: center; }
  .download-subtitle { margin: 0 auto 2rem; }
  .app-badges { justify-content: center; }
  .download-phone { margin-top: 1rem; }
  .testimonial { flex-direction: column; gap: 1.5rem; }
  .testimonial-image-div { display: none !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .fade-up { opacity: 1; transform: none; }
}
