/* ═══════════════════════════════════════════════
   MITROTSAV — Landing Page Styles
   Navy #1B2A5E | Gold #C9A84C
═══════════════════════════════════════════════ */

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

:root {
  --navy:       #1B2A5E;
  --navy-dark:  #0D1A3A;
  --navy-light: #2E4080;
  --gold:       #C9A84C;
  --gold-light: #F5E6C0;
  --gold-dark:  #A8893A;
  --white:      #FFFFFF;
  --text:       #1a1a2e;
  --text-secondary: #6b7280;
  --bg-light:   #F8F9FF;
  --radius:     16px;
  --shadow:     0 4px 24px rgba(27,42,94,0.10);
  --shadow-lg:  0 8px 48px rgba(27,42,94,0.16);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3 { line-height: 1.2; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--text-secondary); line-height: 1.7; }

.gold-text { color: var(--gold); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-nav {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  padding: 10px 22px;
}
.btn-nav:hover { background: var(--gold-dark); transform: translateY(-2px); }

.btn-store img {
  height: 52px;
  transition: var(--transition);
}
.btn-store img:hover { transform: translateY(-3px); filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2)); }

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header p {
  max-width: 560px;
  margin: 12px auto 0;
  font-size: 1.05rem;
}
.section-badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section-badge.light {
  background: rgba(201,168,76,0.2);
  color: var(--gold);
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(27,42,94,0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon { font-size: 1.6rem; }
.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.navbar:not(.scrolled) .logo-text { color: var(--white); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
}
.navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
.nav-links a:hover { color: var(--gold); }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--navy);
  margin-left: auto;
}
.navbar:not(.scrolled) .hamburger { color: var(--white); }
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px 24px;
  background: var(--white);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg { position: absolute; inset: 0; }
.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--gold);
}
.c1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.c2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }
.c3 { width: 200px; height: 200px; top: 40%; left: 30%; background: var(--white); opacity: 0.04; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.2);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero-title { color: var(--white); margin-bottom: 20px; }
.hero-subtitle { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 36px; max-width: 500px; }

.hero-actions { display: flex; flex-direction: column; gap: 28px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 1.4rem; font-weight: 800; color: var(--white); }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.2); }

/* Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-mockup {
  width: 260px;
  background: var(--white);
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  position: relative;
}
.phone-screen { display: flex; flex-direction: column; gap: 10px; }
.mock-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}
.mock-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--navy));
  display: block;
}
.mock-greeting { font-size: 0.75rem; font-weight: 600; color: var(--text); }
.mock-card {
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
}
.mock-card span { font-size: 1.4rem; }
.mock-card-title { font-weight: 700; color: var(--white); font-size: 0.75rem; }
.mock-card-sub { color: rgba(255,255,255,0.75); font-size: 0.68rem; }
.gold-card { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }
.navy-card { background: linear-gradient(135deg, var(--navy), var(--navy-light)); }
.light-card { background: var(--bg-light); }
.light-card .mock-card-title { color: var(--navy); }
.light-card .mock-card-sub { color: var(--text-secondary); }
.mock-bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 10px 0 4px;
  border-top: 1px solid #f0f0f0;
  font-size: 1.2rem;
}

.floating-tag {
  position: absolute;
  background: var(--white);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  color: var(--navy);
  white-space: nowrap;
  animation: float 3s ease-in-out infinite;
}
.tag1 { top: 10%; left: -20%; animation-delay: 0s; }
.tag2 { top: 45%; right: -15%; animation-delay: 1s; }
.tag3 { bottom: 15%; left: -15%; animation-delay: 2s; }

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

/* ═══════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════ */
.features {
  padding: 100px 0;
  background: var(--bg-light);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.feature-card.featured {
  border-color: var(--navy);
  background: var(--navy);
}
.feature-card.featured h3 { color: var(--white); }
.feature-card.featured p { color: rgba(255,255,255,0.75); }
.feature-card.featured .feature-list li { color: rgba(255,255,255,0.85); }
.feature-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 12px; color: var(--navy); }
.feature-card p { font-size: 0.9rem; margin-bottom: 16px; }
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature-list li { font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; }
.feature-card.featured .feature-list li { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════ */
.how-it-works { padding: 100px 0; }
.steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step h3 { color: var(--navy); margin-bottom: 12px; }
.step p { font-size: 0.9rem; }
.step-arrow {
  font-size: 2rem;
  color: var(--gold);
  padding: 0 16px;
  font-weight: 300;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   VENDORS
═══════════════════════════════════════════════ */
.vendors {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
}
.vendors-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.vendors-text h2 { color: var(--white); margin-bottom: 20px; }
.vendors-text p { color: rgba(255,255,255,0.75); margin-bottom: 32px; font-size: 1rem; }
.vendors-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.vendors-list li { display: flex; align-items: flex-start; gap: 16px; }
.vendors-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.vendors-list li strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 2px; }
.vendors-list li p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin: 0; }
.vendors-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.vendors-actions .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.4); }
.vendors-actions .btn-outline:hover { background: rgba(255,255,255,0.1); }

/* Vendor Card */
.vendor-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.vendor-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.vendor-avatar {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.vendor-name { font-weight: 700; color: var(--white); font-size: 1rem; }
.vendor-status { font-size: 0.78rem; color: #4ade80; font-weight: 500; margin-top: 2px; }
.vendor-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
}
.vendor-stat-num { font-size: 1.1rem; font-weight: 800; color: var(--gold); }
.vendor-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 2px; }
.vendor-order {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
}
.vendor-order:last-child { border-bottom: none; }
.order-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.order-dot.pending { background: var(--gold); }
.order-dot.delivered { background: #4ade80; }
.order-time { margin-left: auto; color: rgba(255,255,255,0.4); font-size: 0.75rem; }

/* ═══════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════ */
.about { padding: 100px 0; background: var(--bg-light); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p { margin-bottom: 16px; font-size: 1rem; }
.about-text strong { color: var(--navy); }
.about-text em { color: var(--gold-dark); font-style: normal; font-weight: 600; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.value {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 10px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
}
.value strong { color: var(--navy); font-weight: 600; }
.about-visual { display: flex; justify-content: center; }
.about-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 300px;
}
.about-emoji { font-size: 4rem; margin-bottom: 20px; }
.about-quote {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.contact-icon { font-size: 2rem; margin-bottom: 12px; }
.contact-label { font-size: 0.8rem; color: var(--text-secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.contact-value { font-size: 0.9rem; font-weight: 600; color: var(--navy); }

/* ═══════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════ */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
}
.cta-inner h2 { color: var(--white); margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--navy-dark);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.5); margin-top: 12px; font-size: 0.9rem; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover { background: rgba(201,168,76,0.2); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.footer-col h4 { color: var(--white); font-size: 0.88rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: block; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-actions { align-items: center; }
  .hero-stats { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .vendors-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .contact-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
}
