* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

body {
  background: #0d0d0d;
  color: white;
}

/* ================= HEADER ================= */
header {
  background: rgba(20, 20, 20, 0.95);
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.25);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ✅ BRAND LOGO + NAME */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 55px;
  width: 55px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.brand-text h1 {
  font-size: 20px;
  font-weight: 800;
  color: #d4af37;
  margin: 0;
  line-height: 1.2;
}

.brand-text p {
  font-size: 12px;
  color: #aaa;
  margin: 0;
  line-height: 1.2;
}

/* ================= NAV LINKS ================= */
nav a {
  margin: 0 8px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  color: #ddd;
  transition: 0.3s;
}

nav a:hover {
  color: #d4af37;
}

/* ================= BUTTON ================= */
.btn {
  padding: 10px 20px;
  background: linear-gradient(90deg, #d4af37, #ffcc70);
  color: black;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.7);
}

/* ================= HERO SECTION ================= */
.hero {
  text-align: center;
  padding: 120px 20px;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1 {
  font-size: 70px;
  font-weight: 900;
  color: #ffcc70;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero p {
  margin-top: 20px;
  font-size: 18px;
  color: #bbb;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn {
  display: inline-block;
  margin-top: 45px;
  padding: 14px 40px;
  font-size: 18px;
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: 1px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  transition: 0.4s ease;
}

.hero .btn:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.9);
}

/* ================= SECTIONS ================= */
section {
  padding: 80px;
}

.title {
  text-align: center;
  font-size: 45px;
  margin-bottom: 60px;
  color: #ffcc70;
  text-shadow: 0 0 20px rgba(212,175,55,0.3);
}

/* ================= GRID ================= */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* ================= CARD ================= */
.card {
  background: #1a1a1a;
  padding: 35px;
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
  transition: 0.3s;
}

.card h3 {
  color: #d4af37;
  margin-bottom: 12px;
}

.card p {
  color: #ccc;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 30px rgba(212,175,55,0.4);
}

/* ================= PRICING ================= */
.price {
  font-size: 30px;
  color: #ffcc70;
  font-weight: bold;
  margin: 15px 0;
}

/* ================= TESTIMONIAL SLIDER ================= */
.slider {
  width: 100%;
  max-width: 750px;
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none;
  text-align: center;
  padding: 45px;
  border-radius: 18px;
  background: #1a1a1a;
  border: 1px solid rgba(212,175,55,0.3);
}

.slide.active {
  display: block;
  animation: fade 1s;
}

@keyframes fade {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* ================= CONTACT FORM ================= */
form input,
form textarea,
form select {
  width: 100%;
  padding: 14px;
  margin: 12px 0;
  border-radius: 12px;
  border: none;
  outline: none;
  background: #111;
  color: white;
  font-size: 15px;
}

form textarea {
  resize: none;
}

/* ================= FOOTER ================= */
footer {
  background: black;
  color: #d4af37;
  text-align: center;
  padding: 35px;
  margin-top: 60px;
  font-weight: bold;
  border-top: 1px solid rgba(212,175,55,0.3);
}

/* ✅ Premium Popup Modal */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-box {
  background: #1a1a1a;
  padding: 45px;
  border-radius: 22px;
  text-align: center;
  border: 2px solid #d4af37;
  animation: popupFade 0.6s ease;
  width: 90%;
  max-width: 420px;
}

.popup-box h2 {
  color: #ffcc70;
  margin-bottom: 15px;
}

.popup-box h3 {
  margin: 20px 0;
  color: #d4af37;
  font-size: 30px;
  font-weight: bold;
}

.popup-box button {
  margin-top: 20px;
  padding: 12px 30px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg,#d4af37,#ffcc70);
  font-weight: bold;
  cursor: pointer;
}

@keyframes popupFade {
  from {transform: scale(0.7); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

/* ✅ Tracking Page UI */
.tracking-box {
  max-width: 650px;
  margin: auto;
  text-align: center;
}

/* ================= MOBILE FIX ================= */
@media(max-width: 768px) {

  header {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    margin: 6px;
  }

  .btn {
    margin-top: 10px;
  }

  .hero h1 {
    font-size: 45px;
  }

  section {
    padding: 50px 20px;
  }
}
