:root {
  --primary: #4D148C;
  --accent: #FF6200;
  --primary-dark: #3a0f6e;
  --accent-dark: #e05500;
  --light: #f8f4ff;
}
body { font-family: 'Segoe UI', Arial, sans-serif; color: #222; }
a { color: var(--primary); }

/* NAVBAR */
.navbar-brand img { max-height: 50px; }
.navbar-brand .brand-text { color: #fff; font-size: 1.4rem; font-weight: 700; letter-spacing: 1px; }
.navbar-brand span.accent { color: var(--accent); }
.site-navbar { background: var(--primary) !important; }
.site-navbar .nav-link { color: rgba(255,255,255,.85) !important; font-weight: 500; }
.site-navbar .nav-link:hover { color: var(--accent) !important; }
.btn-accent { background: var(--accent); color: #fff; border: none; font-weight: 600; border-radius: 4px; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn-primary-brand { background: var(--primary); color: #fff; border: none; font-weight: 600; border-radius: 4px; }
.btn-primary-brand:hover { background: var(--primary-dark); color: #fff; }

/* HERO */
.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 60%, var(--accent) 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.hero-title { font-size: 2.8rem; font-weight: 800; color: #fff; line-height: 1.2; }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,.85); }
.hero-badge { background: var(--accent); color: #fff; padding: 4px 14px; border-radius: 20px; font-size: .8rem; font-weight: 700; display: inline-block; margin-bottom: 12px; letter-spacing: 1px; text-transform: uppercase; }

/* TRACK FORM */
.track-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  padding: 32px;
}
.track-card h3 { color: var(--primary); font-weight: 700; }
.track-input { border: 2px solid #ddd; border-radius: 6px 0 0 6px; font-size: 1.05rem; padding: 12px 16px; }
.track-input:focus { border-color: var(--primary); box-shadow: none; outline: none; }
.track-btn { background: var(--accent); border: none; color: #fff; font-weight: 700; border-radius: 0 6px 6px 0; padding: 12px 24px; font-size: 1rem; }
.track-btn:hover { background: var(--accent-dark); }

/* STATS BAR */
.stats-bar { background: var(--primary); padding: 28px 0; }
.stats-bar .stat-item { text-align: center; color: #fff; }
.stats-bar .stat-number { font-size: 2.2rem; font-weight: 800; color: var(--accent); }
.stats-bar .stat-label { font-size: .9rem; opacity: .85; }

/* SERVICES */
.service-card { border-radius: 12px; border: none; box-shadow: 0 2px 16px rgba(77,20,140,.08); transition: transform .2s, box-shadow .2s; padding: 24px; text-align: center; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 8px 32px rgba(77,20,140,.15); }
.service-icon { width: 70px; height: 70px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.service-icon i { font-size: 2rem; color: var(--primary); }
.service-card h5 { color: var(--primary); font-weight: 700; }

/* STEPS */
.step-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: #fff; font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.step-connector { flex: 1; height: 2px; background: #ddd; margin: 0 8px; align-self: center; position: relative; top: -20px; }

/* WHY US */
.why-card { background: #fff; border-radius: 10px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.07); height: 100%; }
.why-icon { font-size: 2.2rem; color: var(--accent); margin-bottom: 12px; }

/* TESTIMONIALS */
.testimonial-card { background: #fff; border-radius: 10px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.07); border-left: 4px solid var(--accent); }
.testimonial-card .stars { color: #ffc107; }

/* FOOTER */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,.8); }
.site-footer h5 { color: #fff; font-weight: 700; border-bottom: 2px solid var(--accent); padding-bottom: 8px; display: inline-block; }
.site-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }
.footer-bottom { background: rgba(0,0,0,.2); }

/* TRACKING PAGE */
.tracking-timeline { position: relative; padding-left: 32px; }
.tracking-timeline::before { content: ''; position: absolute; left: 14px; top: 0; bottom: 0; width: 2px; background: #e0e0e0; }
.timeline-item { position: relative; margin-bottom: 24px; }
.timeline-dot { position: absolute; left: -32px; width: 28px; height: 28px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .8rem; z-index: 1; }
.timeline-dot.active { background: var(--accent); box-shadow: 0 0 0 4px rgba(255,98,0,.2); }
.timeline-content { background: #fff; border-radius: 8px; padding: 14px 18px; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.timeline-content .time { font-size: .8rem; color: #888; }

/* STATUS PROGRESS */
.status-steps { display: flex; justify-content: space-between; align-items: flex-start; margin: 20px 0 30px; }
.status-step { flex: 1; text-align: center; position: relative; }
.status-step::before { content: ''; position: absolute; top: 20px; left: 50%; right: -50%; height: 3px; background: #e0e0e0; z-index: 0; }
.status-step:last-child::before { display: none; }
.status-step .step-icon { width: 42px; height: 42px; border-radius: 50%; background: #e0e0e0; display: flex; align-items: center; justify-content: center; margin: 0 auto 8px; position: relative; z-index: 1; font-size: 1.1rem; color: #999; }
.status-step.done .step-icon { background: var(--primary); color: #fff; }
.status-step.active .step-icon { background: var(--accent); color: #fff; box-shadow: 0 0 0 4px rgba(255,98,0,.2); }
.status-step.done::before { background: var(--primary); }
.status-step .step-label { font-size: .72rem; color: #666; font-weight: 500; }
.status-step.done .step-label, .status-step.active .step-label { color: var(--primary); font-weight: 700; }

/* Invoice */
.invoice-header { background: var(--primary); color: #fff; padding: 30px; }
.invoice-title { font-size: 2rem; font-weight: 800; letter-spacing: 2px; }
.invoice-table td, .invoice-table th { padding: 10px 16px; }

/* Section headings */
.section-title { color: var(--primary); font-weight: 800; font-size: 1.9rem; }
.section-title span { color: var(--accent); }
.section-subtitle { color: #666; font-size: 1rem; }
.section-divider { height: 4px; width: 60px; background: var(--accent); border-radius: 2px; margin: 10px auto 0; }

/* Hero image side */
.hero-img-wrap { position: relative; }
.hero-img-wrap img { border-radius: 12px; box-shadow: 0 16px 48px rgba(0,0,0,.3); }

/* Feature image row */
.feature-img { border-radius: 12px; object-fit: cover; width: 100%; height: 280px; }
.feature-img-card { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.12); position: relative; }
.feature-img-card .overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(77,20,140,.85)); color: #fff; padding: 20px 16px 14px; }
.feature-img-card .overlay h5 { margin: 0; font-weight: 700; }
.feature-img-card .overlay p { margin: 0; font-size: .85rem; opacity: .9; }

/* CTA Band */
.cta-band { background: linear-gradient(90deg, var(--primary), var(--accent)); padding: 60px 0; }

/* Responsive */
@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .status-step .step-label { font-size: .65rem; }
  .status-steps { overflow-x: auto; }
}
