 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
/* 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;
}
          

.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;
  }}


  @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;
  }
  
}

@media (max-width: 900px) {

  .navbar-inner {
    height: 70px;
  }

  .logo img {
    height: 60px;
  }

}



/* 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;
  }
}







body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #0b0b0b;
  color: #fff;
}

/* Section wrapper */
.contact-hero {
  background: linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.75)
  ), url("hero-bg.jpg") center/cover no-repeat;
  padding: 80px 20px;
}

/* Top info cards */
.contact-info {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.15);
}

.icon {
  width: 60px;
  height: 60px;
  margin: auto;
  border-radius: 50%;
  background: #f5b400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #000;
}

.info-card h3 {
  margin: 18px 0 10px;
  letter-spacing: 1px;
}

.info-card p {
  color: #ddd;
  line-height: 1.6;
  font-size: 15px;
}

/* Form section */
.contact-form-section {
  max-width: 1200px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.form-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  padding: 45px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.15);
}

.form-box h2 {
  margin-bottom: 30px;
  letter-spacing: 1px;
}

form input,
form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: none;
  outline: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 14px;
}

form textarea {
  height: 130px;
  resize: none;
}

form button {
  background: #f5b400;
  border: none;
  padding: 14px 34px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  color: #000;
  transition: 0.3s;
}

form button:hover {
  background: #ffcc33;
}

/* Image */
.contact-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

/* Responsive */
@media(max-width: 900px) {
  .contact-info {
    grid-template-columns: 1fr;
  }
  .contact-form-section {
    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;
}



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

  .footer-content-adv {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* 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) {

  /* 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;
  }

}