/* ===== Global ===== */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #e3fdfd, #ffe6fa);
  color: #333;
  scroll-behavior: smooth;
}

/* ===== Navbar ===== */
.navbar {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  flex-wrap: wrap;
}
.logo {
  font-weight: 700;
  font-size: 22px;
  color: #6c5ce7;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}
.nav-links a:hover {
  color: #6c5ce7;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.cta-btn {
  background: linear-gradient(135deg, #00c853, #ffeb3b);
  color: #000;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

/* ===== Sections ===== */
.section {
  padding: 80px 20px;
  text-align: center;
}
.features-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

/* ===== Cards ===== */
.card {
  background: linear-gradient(145deg, #ffffff, #e6e6e6);
  padding: 30px;
  border-radius: 20px;
  width: 270px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
}
.gradient-card {
  background: linear-gradient(135deg, #a8edea, #fed6e3);
}
.stat-card {
  background: linear-gradient(135deg, #c3ecf9, #e2d1f9);
}

/* ===== Tracker Section ===== */
#tracker {
  background: linear-gradient(135deg, #f0f4ff, #ffe8f4);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.tracker-card {
  background: linear-gradient(145deg, #ffffff, #f9f5ff);
  border-radius: 30px;
  padding: 40px 30px;
  box-shadow: 0 25px 50px rgba(108, 92, 231, 0.2);
  color: #374151;
  position: relative;
  max-width: 900px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tracker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 60px rgba(108, 92, 231, 0.3);
}

/* ===== Tracker Input/Search ===== */
.search {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.input {
  padding: 16px;
  width: 300px;
  border-radius: 50px;
  border: none;
  outline: none;
  box-shadow: 0 0 15px rgba(108,92,231,0.2);
  transition: 0.4s;
  font-size: 16px;
  background: #fff;
}
.input:focus {
  box-shadow: 0 0 25px rgba(108,92,231,0.5);
}

/* ===== Buttons ===== */
.btn-sm {
    padding: 0.35rem 1rem;
    font-size: 0.9rem;
    border-radius: 0.5rem; 
    width: 80px;
    height: 50px;
}

.btn-gradient-primary {
    background: linear-gradient(90deg, #28a745, #20c997);
    color: #fff;
    border: none;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.btn-gradient-primary:hover {
    background: linear-gradient(90deg, #218838, #17a2b8);
    transform: translateY(-1px);
}

.btn-gradient-secondary {
    background: linear-gradient(90deg, #ff758c, #ff7eb3);
    color: #fff;
    border: none;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.btn-gradient-secondary:hover {
    background: linear-gradient(90deg, #e14b6b, #e573a0);
    transform: translateY(-1px);
}

/* ===== Timeline ===== */
.timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 40px 0;
  position: relative;
  flex-wrap: wrap;
}
.track {
  height: 12px;
  background: #f3e6ff;
  border-radius: 999px;
  flex: 1;
  margin: 8px;
  position: relative;
  overflow: hidden;
}
.fill {
  width:0%;
  height:100%;
  background: linear-gradient(90deg, #ff7fbd, #b18bff);
  border-radius: 999px;
  transition: width 0.8s ease;
  animation: fill-glow 2s infinite alternate;
}
.dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.dot {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #ccc;
  font-size: 22px;
  transition: all 0.5s;
}
.dot.active {
  border-color: #ff7fbd;
  box-shadow: 0 0 20px #ff7fbd;
  animation: pulse 1.5s infinite;
}
.dot.completed {
  background:#ff7fbd;
  color:#fff;
  border-color:#ff7fbd;
}
.label { font-size:14px; color:#6b2b59; font-weight:600; }
@keyframes pulse {
  0%,100%{ box-shadow:0 0 20px #ff7fbd; }
  50%{ box-shadow:0 0 35px #ff7fbd; }
}

/* ===== Grid & Slots ===== */
.grid { display:grid; gap:16px; margin-top:30px; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); }
.slot {
  background:#fff; border-radius:20px; padding:16px;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(0);
  transition: transform 0.4s, box-shadow 0.4s;
}
.slot:hover { transform: translateY(-5px); box-shadow:0 12px 25px rgba(108,92,231,0.2);}
.slot h4 { margin:0 0 10px; font-size:14px; color:#6b2b59; font-weight:600;}
.stat { font-weight:700; font-size:16px; color:#374151; }

/* ===== Pills ===== */
.pills { margin-top:20px; display:flex; gap:12px; flex-wrap:wrap; }
.pill { padding:10px 16px; border-radius:50px; font-weight:600; background: linear-gradient(90deg,#ffe8f4,#f0eaff); color:#7a3d6f; border:1px solid #f7e2ff; transition:0.3s; }
.pill:hover { box-shadow:0 0 15px rgba(255,127,189,0.4); transform:translateY(-2px); }

/* ===== Error Messages ===== */
.error-message { 
  color: #ff3b3b;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.5s, transform 0.5s;
}
.error-message.show { 
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ===== Order Status ===== */
#order-status {
  background: linear-gradient(135deg, #fff0f5, #e0f7fa);
  padding: 80px 20px;
  position: relative;
}
#order-status h2 {
  font-size: 36px;
  color: #6b2b59;
  margin-bottom: 10px;
}
#order-status p {
  color: #7a3d6f;
  margin-bottom: 40px;
  font-size: 16px;
}
.status-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
}
.status-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  width: 220px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(108, 92, 231, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.status-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(108, 92, 231, 0.25);
}
.status-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}
.status-card h4 {
  font-size: 18px;
  color: #6b2b59;
  margin-bottom: 10px;
}
.status-card p { font-size: 14px; color: #374151; }

/* ===== Accordion / FAQ ===== */
#faq h2 {
    font-weight: 700;
    color: #343a40;
}
.accordion-button {
    font-weight: 600;
    color: #007BFF;
    position: relative;
}
.accordion-icon {
    font-size: 1.25rem;
    transition: transform 0.3s;
}
.accordion-button:not(.collapsed) .accordion-icon {
    transform: rotate(45deg);
}
.accordion-body {
    color: #495057;
    font-size: 0.95rem;
}

/* ===== Footer ===== */
.footer {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 0;
  text-align: center;
  font-weight: 500;
  color: #555;
}

/* ===== Responsive ===== */
@media(max-width:1200px){
  .nav-container { padding: 15px 20px; }
  .features-grid, .stats-grid { gap: 20px; }
}

@media(max-width:992px){
  .hero-content h1 { font-size:2.5rem; }
  .hero-content p { font-size:1.1rem; }
  .tracker-card { padding:30px 20px; }
  .status-card { width:200px; }
}

@media(max-width:768px){
  .hero-content h1 { font-size:2rem; }
  .hero-content p { font-size:1rem; }
  .nav-links { justify-content:center; gap:15px; }
  .tracker-card { padding:25px 15px; }
  .search { flex-direction: column; gap:10px; }
  .input { width:100%; max-width:300px; }
  .status-cards { flex-direction:column; gap:20px; align-items:center; }
  .grid { grid-template-columns: 1fr; }
}

@media(max-width:576px){
  .hero-content h1 { font-size:1.75rem; }
  .hero-content p { font-size:0.9rem; }
  .cta-btn { padding:10px 20px; font-size:0.9rem; }
  .btn-sm { width:70px; height:45px; font-size:0.85rem; }
  .card { width:100%; padding:20px; }
}
