  /* Navbar shell */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 1000;
}

.navbar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;      
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px; 
}

/* Logo */
.logo {
  color: #ffc107;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.logo span {
  color: #fff;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 95px;                 /* bigger than navbar height */
  width: auto;
  object-fit: contain;
  transform: translateY(4px);   /* fine-tune vertical centering */
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a,
.dropdown-btn {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav a:hover,
.dropdown-btn:hover {
  color: #ffc107;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: 130%;
  left: 0;
  background: #111;
  min-width: 200px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: 9999;
}

.dropdown-panel a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
}

.dropdown-panel a:hover {
  background: rgba(255,193,7,0.15);
  color: #ffc107;
}

.dropdown-panel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* CTA Buttons */
.cta {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn.call {
  background: #ffc107;
  color: #000;
}

.btn.outline {
  border: 2px solid #ffc107;
  color: #ffc107;
}

.btn.call:hover {
  background: #ffcd38;
}

.btn.outline:hover {
  background: #ffc107;
  color: #000;
}

    :root {
      --primary: #f4c430;
      --dark: #111111;
      --gray: #2a2a2a;
      --light: #f7f7f7;
    }
    body {
      font-family: "Segoe UI", Arial, sans-serif;
      background: #0f0f0f;
      margin: 0;
      padding: 0;
      color: #eaeaea;
    }
    .top-bar {
      background: var(--dark);
      padding: 18px 0;
      text-align: center;
      border-bottom: 2px solid var(--primary);
    }
    .top-bar h1 {
      margin: 0;
      color: var(--primary);
      font-size: 28px;
      letter-spacing: 1px;
    }
    .container {
      max-width: 1150px;
      margin: 40px auto;
      background: #151515;
      padding: 40px;
      border-radius: 14px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    }
    h2 {
      text-align: center;
      margin-bottom: 35px;
      color: #ffffff;
      font-size: 22px;
      font-weight: 600;
    }
    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
    }
    label {
      font-weight: 600;
      margin-bottom: 8px;
      font-size: 14px;
      color: #dddddd;
    }
    input, select, textarea {
      padding: 13px 14px;
      border-radius: 8px;
      border: 1px solid #333;
      font-size: 14px;
      background: #1e1e1e;
      color: #ffffff;
    }
    input:focus, select:focus, textarea:focus {
      outline: none;
      border-color: var(--primary);
    }
    textarea {
      resize: vertical;
      min-height: 130px;
    }
    .full-width {
      grid-column: 1 / -1;
    }
    small {
      font-size: 12px;
      color: #aaaaaa;
      margin-top: 5px;
    }
    .checkbox-group {
      margin-top: 35px;
      padding-top: 20px;
      border-top: 1px solid #2c2c2c;
    }
    .checkbox-group label {
      font-weight: normal;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
      font-size: 14px;
      color: #cccccc;
    }
    .checkbox-group input {
      accent-color: var(--primary);
    }
    .submit-btn {
      display: block;
      margin: 45px auto 0;
      background: var(--primary);
      color: #000;
      border: none;
      padding: 15px 55px;
      font-size: 17px;
      font-weight: 700;
      border-radius: 30px;
      cursor: pointer;
      letter-spacing: 1px;
    }
    .submit-btn:hover {
      background: #e0b321;
    }
    @media (max-width: 900px) {
      .form-grid {
        grid-template-columns: 1fr;
      }
    }

    .footer-advanced {
  position: relative;
  background: radial-gradient(circle at top, #111 0%, #080808 60%);
  padding: 100px 6% 40px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: rgba(255, 193, 7, 0.15);
  filter: blur(120px);
  z-index: 0;
}

.footer-wrapper {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 70px;
  position: relative;
  z-index: 1;
}

/* BRAND */
.footer-logo-adv {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon-adv {
  background: #ffc107;
  color: #000;
  padding: 10px;
  border-radius: 14px;
  font-size: 18px;
}

.logo-text-adv {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}

.footer-desc {
  margin-top: 18px;
  color: #bdbdbd;
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
}

.footer-stats {
  margin-top: 30px;
  display: flex;
  gap: 30px;
}

.footer-stats h3 {
  color: #ffc107;
  font-size: 22px;
}

.footer-stats span {
  font-size: 13px;
  color: #aaa;
}

/* RIGHT CONTENT */
.footer-content-adv {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 26px;
}

.footer-card h4 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 15px;
}

.footer-card a {
  display: block;
  color: #bdbdbd;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
}

.footer-card a:hover {
  color: #ffc107;
}

.download-card p {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 16px;
}

.store-btns {
  display: flex;
  gap: 10px;
}

.store-btn {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
}

.store-btn.primary {
  background: #ffc107;
  color: #000;
  border: none;
  font-weight: 600;
}

/* BOTTOM */
.footer-bottom-adv {
  max-width: 1300px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #999;
}

.trust-pill {
  background: rgba(255,193,7,0.15);
  color: #ffc107;
  padding: 6px 16px;
  border-radius: 999px;
}

/* Contact card */
.contact-card .footer-contact-item {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-card .footer-contact-item:hover {
  color: #ffc107;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 15px; /* space between icons */
  align-items: center;
}

.social-icons a img {
  width: 35px;  /* icon size */
  height: 35px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.1); /* slight zoom on hover */
  opacity: 0.8;
}

@media (max-width: 900px) {

  .navbar-inner {
    height: 70px;
  }

  .logo img {
    height: 60px;
  }


}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-content-adv {
    grid-template-columns: repeat(2, 1fr);
  }
}

.status-box {
  margin-top: 15px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
  display: none; /* hidden by default */
  border: 1px solid transparent;
}

.status-success {
  display: block;
  color: #0b6e2a;
  background: #e6f7ed;
  border-color: #5ad07a;
}

.status-fail {
  display: block;
  color: #7a1b1b;
  background: #fde6e6;
  border-color: #f27a7a;
}

.status-loading {
  display: block;
  color: #1a1a1a;
  background: #f1f1f1;
  border-color: #d1d1d1;
}

.container {
      max-width: 1150px;
      margin: 40px auto;
      background: #151515;
      padding: 40px;
      border-radius: 14px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    }

/* Slide-up animation */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   MOBILE RESPONSIVE FIX
   =========================== */

@media (max-width: 768px) {

  /* HERO FIX */
  .hero {
    flex-direction: column;
    justify-content: center;
    padding: 120px 20px 60px 20px;
    text-align: center;
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
  }

  .stats {
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-cta {
    justify-content: center;
  }

  /* CTA SECTION FIX */
  .cta-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 20px;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 15px;
  }

  .cta-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }


  /* STEPS SECTION FIX */
  .main-title {
    font-size: 30px;
  }

  .step-card {
    width: 100%;
    max-width: 320px;
  }

  /* REVIEWS FIX */
  .reviews-title {
    font-size: 32px;
  }

  .reviews-subtitle {
    font-size: 15px;
  }

  /* ABOUT SECTION FIX */
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-stats {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* FOOTER FIX */
  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content-adv {
    grid-template-columns: 1fr;
  }

  .footer-bottom-adv {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

}

@media (max-width: 768px) {
  .navbar-inner {
    justify-content: space-between;
  }
}
/* Hide call button on desktop */
.mobile-call {
  display: none;
}

/* Show simple call button on mobile */
@media (max-width: 900px) {

  .navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
  }

  .mobile-call {
    display: inline-block;
    padding: 6px 14px;
    background: #ff7a00;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
  }
}
/* ===========================
   MOBILE: LOGO ONLY NAVBAR
   =========================== */

@media (max-width: 768px) {

  /* Hide navigation links */
  .nav {
    display: none;
  }
  
}



/* Hamburger button - mobile only */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #ffc107;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 70px; /* below navbar */
  right: 20px;
  width: 220px;
  background: rgba(0,0,0,0.95);
  border-radius: 12px;
  padding: 15px;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.mobile-menu a,
.mobile-menu summary {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  padding: 8px 10px;
  border-radius: 8px;
}

.mobile-menu a:hover,
.mobile-menu summary:hover {
  background: #ffc107;
  color: #000;
}

.mobile-menu details {
  display: block;
}

.mobile-menu details summary {
  cursor: pointer;
  list-style: none;
}

/* Show hamburger and hide desktop nav on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: inline-block;
  }

  .nav,
  .cta {
    display: none !important;
  }
}