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

:root {
  --red: #b5121b;
  --red-dark: #9c0f17;
  --dark: #111111;
  --gray-bg: #f2f2f2;
  --gray-light: #f7f7f7;
  --text: #1a1a1a;
  --text-muted: #555555;
  --border: #e3e3e3;
}

body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.5;
}

img, svg { display: block; }
a { text-decoration: none; color: inherit; }

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

.red { color: var(--red); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 13px 22px;
  border-radius: 5px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-icon { width: 16px; height: 16px; }

.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dark); }

.btn-small { padding: 10px 20px; font-size: 13px; }

.btn-outline-light {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.18); }

.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: #f0f0f0; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.12); }

/* ============ HEADER ============ */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-size: 26px;
  font-weight: 900;
  font-style: italic;
  color: var(--red);
  letter-spacing: 0.5px;
}
.logo-sub {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 4.5px;
  color: var(--dark);
  margin-top: 3px;
}

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  padding: 6px 0;
}
.main-nav a:hover { color: var(--red); }
.main-nav .nav-active {
  color: var(--red);
  font-weight: 700;
  border-bottom: 2px solid var(--red);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  /* Apni storefront photo isi folder me hero.jpg naam se save karein */
  background: #2a2320 url("hero.jpg") right 30% / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 45%, rgba(0,0,0,0.15) 100%);
}
.hero-content { position: relative; z-index: 1; width: 100%; }
.hero h1 {
  color: #fff;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.5px;
}
.hero-sub {
  color: #e8e8e8;
  font-size: 17px;
  margin: 22px 0 30px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ STATS BAR ============ */
.stats-bar { background: var(--dark); padding: 26px 0; }
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.stat { display: flex; align-items: center; gap: 14px; color: #fff; }
.stat-icon { width: 38px; height: 38px; color: #fff; }
.stat-text { display: flex; flex-direction: column; line-height: 1.2; }
.stat-text strong { font-size: 24px; font-weight: 800; }
.stat-text span { font-size: 12.5px; color: #cccccc; margin-top: 3px; }
.stat-divider { width: 1px; height: 44px; background: rgba(255,255,255,0.25); }

/* ============ SECTION COMMON ============ */
.section { padding: 64px 0; }
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--dark);
}
.title-underline {
  width: 56px;
  height: 4px;
  background: var(--red);
  margin: 14px auto 44px;
  border-radius: 2px;
}
.title-underline.left { margin: 14px 0 24px; }

/* ============ WHY BOBO'S ============ */
.why-section { background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 34px 22px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.why-card:hover { box-shadow: 0 10px 26px rgba(0,0,0,0.08); transform: translateY(-3px); }
.card-icon { width: 52px; height: 52px; color: var(--red); margin: 0 auto 20px; }
.why-card h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
  color: var(--dark);
}
.why-card p { font-size: 13px; color: var(--text-muted); }

/* ============ INVESTMENT ============ */
.invest-section { background: var(--gray-bg); }
.invest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.invest-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.invest-card:hover { box-shadow: 0 10px 26px rgba(0,0,0,0.08); transform: translateY(-3px); }
.invest-icon { width: 44px; height: 44px; color: var(--dark); margin-bottom: 18px; }
.invest-card strong { font-size: 26px; font-weight: 900; }
.invest-card span {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.4px;
  margin-top: 8px;
  line-height: 1.4;
}

/* ============ WHAT YOU GET ============ */
.get-section { background: #fff; }
.get-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.get-item {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid var(--border);
}
.get-item:last-child { border-right: none; }
.get-icon { width: 44px; height: 44px; color: var(--dark); margin: 0 auto 16px; }
.get-item h3 {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.35;
}
.get-item p { font-size: 12px; color: var(--text-muted); }

/* ============ GROWTH / MAP ============ */
.growth-section { background: var(--gray-light); }
.growth-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: center;
}
.growth-title {
  font-size: 34px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
}
.growth-sub { font-size: 14.5px; color: var(--text-muted); margin-bottom: 30px; max-width: 340px; }

.growth-timeline { list-style: none; position: relative; }
.growth-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 14px;
  width: 2px;
  background: var(--red);
}
.growth-timeline li {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
  position: relative;
}
.growth-timeline li:last-child { margin-bottom: 0; }
.timeline-dot {
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--red);
  margin-top: 2px;
  z-index: 1;
}
.growth-timeline strong {
  display: block;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--dark);
}
.growth-timeline li div span { font-size: 12.5px; color: var(--text-muted); }

.map-wrap { position: relative; }
.usa-map-img { width: 100%; height: auto; display: block; }
.map-pin {
  position: absolute;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -100%);
  filter: drop-shadow(0 3px 4px rgba(0, 0, 0, 0.3));
}
.map-pin svg { width: 100%; height: 100%; }
.pin-black path { fill: var(--dark); }
.pin-red path { fill: var(--red); }
.pin-red { animation: pin-pulse 2s ease-in-out infinite; }
@keyframes pin-pulse {
  0%, 100% { transform: translate(-50%, -100%) scale(1); }
  50% { transform: translate(-50%, -100%) scale(1.12); }
}

.map-legend {
  display: flex;
  gap: 36px;
  justify-content: center;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--dark);
}
.map-legend span { display: flex; align-items: center; gap: 8px; }
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.legend-dot.black { background: var(--dark); }
.legend-dot.red { background: var(--red); }

/* ============ JOURNEY ============ */
.journey-section { background: #fff; }
.journey-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
}
.journey-step {
  flex: 1;
  text-align: center;
  min-width: 0;
}
.journey-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--red);
}
.journey-circle svg { width: 40px; height: 40px; }
.journey-step h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--dark);
  margin-bottom: 8px;
}
.journey-step p { font-size: 11.5px; color: var(--text-muted); padding: 0 4px; }
.journey-arrow {
  color: var(--red);
  font-size: 15px;
  margin-top: 36px;
  flex: none;
}

/* ============ CTA BAND ============ */
.cta-band { background: var(--red); padding: 44px 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-text h2 {
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0.4px;
}
.cta-text p { color: rgba(255,255,255,0.9); font-size: 14.5px; margin-top: 8px; }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.site-footer { background: #141414; color: #cfcfcf; padding: 56px 0 44px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 44px;
}
.footer-brand .logo-sub { color: #fff; }
.footer-brand p { font-size: 12.5px; margin-top: 16px; line-height: 1.7; max-width: 250px; }

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 12.5px;
  color: #cfcfcf;
  margin-bottom: 11px;
}
.footer-col a:hover { color: #fff; }

.footer-contact {
  display: flex !important;
  align-items: center;
  gap: 10px;
}
.footer-contact svg { width: 16px; height: 16px; flex: none; }

.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #262626;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.footer-social a:hover { background: var(--red); }
.footer-social svg { width: 16px; height: 16px; color: #fff; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .invest-grid { grid-template-columns: repeat(3, 1fr); }
  .get-grid { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .get-item:nth-child(3n) { border-right: none; }
  .journey-grid { flex-wrap: wrap; }
  .journey-arrow { display: none; }
  .journey-step { flex: 1 1 30%; margin-bottom: 28px; }
  .growth-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { display: none; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 38px; }
  .hero { min-height: 480px; }
  .why-grid, .invest-grid { grid-template-columns: 1fr; }
  .get-grid { grid-template-columns: 1fr; }
  .get-item { border-right: none; }
  .journey-step { flex: 1 1 45%; }
  .stats-inner { justify-content: flex-start; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-text h2 { font-size: 21px; }
}
