/* NAVBAR */

/* Reset */
* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, 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;
}
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, Helvetica, sans-serif;
    }

    body {
      background: #000;
      color: #fff;
    }

    a {
      text-decoration: none;
      color: inherit;
    }


    /* Hero Section */
    .service-hero {
      padding: 90px 0;
    }

    .service-container {
      max-width: 1200px;
      margin: auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 50px;
    }

    .service-left h1 {
      font-size: 52px;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .service-left h1 span {
      color: #ffc400;
    }

    .service-left h3 {
      color: #ffc400;
      font-size: 20px;
      margin-bottom: 22px;
    }

    .service-left p {
      color: #cfcfcf;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .service-left h4 {
      margin-top: 26px;
      margin-bottom: 12px;
      font-size: 18px;
    }

    .service-left ul {
      padding-left: 18px;
      margin-bottom: 22px;
    }

    .service-left ul li {
      margin-bottom: 8px;
      color: #e0e0e0;
    }

    /* Feature Cards */
    .service-right {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .feature-card {
      background: #121212;
      border-left: 4px solid #ffc400;
      padding: 28px;
      border-radius: 10px;
    }

    .feature-card h5 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .feature-card p {
      color: #cfcfcf;
      line-height: 1.6;
    }

    /* Bottom Content Section */
    .details-section {
      background: #0a0a0a;
      padding: 70px 0;
    }

    .details-container {
      max-width: 1100px;
      margin: auto;
      padding: 0 24px;
      color: #cfcfcf;
      line-height: 1.8;
    }

    .details-container h2 {
      font-size: 36px;
      color: #fff;
      margin-bottom: 18px;
    }

    .details-container h2 span {
      color: #ffc400;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .service-container {
        grid-template-columns: 1fr;
      }

      .service-left h1 {
        font-size: 40px;
      }

      header {
        flex-direction: column;
        gap: 14px;
      }
    }

    .perfect-for {
  background: #000;
  padding: 90px 0;
}

.perfect-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.perfect-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}

.perfect-header h2 {
  font-size: 42px;
  margin-bottom: 14px;
}

.perfect-header h2 span {
  color: #ffc400;
}

.perfect-header p {
  color: #cfcfcf;
  line-height: 1.7;
}

.perfect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}

.perfect-card {
  background: #121212;
  padding: 30px 26px;
  border-radius: 14px;
  border: 1px solid #1f1f1f;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.perfect-card:hover {
  transform: translateY(-6px);
  border-color: #ffc400;
}

.perfect-card .icon {
  font-size: 34px;
  margin-bottom: 14px;
}

.perfect-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.perfect-card p {
  color: #cfcfcf;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .perfect-header h2 {
    font-size: 34px;
  }
}

.why-maxi {
  background: #0a0a0a;
  padding: 100px 0;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Side */
.why-left h2 {
  font-size: 44px;
  margin-bottom: 30px;
}

.why-left h2 span {
  color: #ffc400;
}

.why-list {
  list-style: none;
  margin-bottom: 36px;
}

.why-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: #e0e0e0;
  line-height: 1.6;
}

.why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffc400;
  font-weight: bold;
}

.why-cta {
  display: inline-block;
  background: #ffc400;
  color: #000;
  padding: 16px 26px;
  border-radius: 40px;
  font-weight: 700;
  line-height: 1.3;
  transition: transform 0.3s ease;
}

.why-cta span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
}

.why-cta:hover {
  transform: translateY(-3px);
}

/* Right Cards */
.why-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-card {
  background: #121212;
  padding: 28px;
  border-radius: 14px;
  border-left: 4px solid #ffc400;
}

.why-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.why-card p {
  color: #cfcfcf;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .why-container {
    grid-template-columns: 1fr;
  }

  .why-left h2 {
    font-size: 36px;
  }
}
.maxi-assurance {
  background: #000;
  padding: 90px 0;
  border-top: 1px solid #1c1c1c;
}

.assurance-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.assurance-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.assurance-content h2 span {
  color: #ffc400;
}

.assurance-content p {
  color: #cfcfcf;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* Stats Boxes */
.assurance-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-box {
  background: #121212;
  padding: 26px 20px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #1f1f1f;
}

.stat-box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #ffc400;
  margin-bottom: 6px;
}

.stat-box p {
  color: #cfcfcf;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .assurance-container {
    grid-template-columns: 1fr;
  }

  .assurance-stats {
    grid-template-columns: 1fr;
  }

  .assurance-content h2 {
    font-size: 34px;
  }
}
.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);
}

.feature-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 14px;
}

/* ============================= */
/* GLOBAL MOBILE IMPROVEMENTS */
/* ============================= */

@media (max-width: 900px) {

  body {
    overflow-x: hidden;
  }

  section {
    padding: 70px 20px !important;
  }

  h1 {
    font-size: 34px !important;
    line-height: 1.2 !important;
  }

  h2 {
    font-size: 26px !important;
  }

  p {
    font-size: 15px !important;
  }

}


/* ============================= */
/* NAVBAR MOBILE */
/* ============================= */

@media (max-width: 900px) {

  .navbar-inner {
    height: 70px;
  }

  .logo img {
    height: 60px;
  }


}


/* ============================= */
/* HERO MOBILE */
/* ============================= */

@media (max-width: 900px) {

  .hero {
    padding: 100px 20px;
    height: auto;
    min-height: 90vh;
  }

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

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

  .stats {
    flex-direction: column;
    gap: 10px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

}

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

  .navbar-inner {
    height: 70px;
    justify-content: space-between;
  }

  .mobile-call {
    display: inline-block;
    padding: 6px 14px;
    background: #ffc107;
    color: #000;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
  }
}


/* ============================= */
/* VEHICLE GRID MOBILE */
/* ============================= */

@media (max-width: 900px) {

  .vehicle-section {
    padding: 60px 20px;
  }

  .vehicle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .vehicle-card {
    padding: 20px 15px;
  }

}

@media (max-width: 600px) {

  .vehicle-grid {
    grid-template-columns: 1fr;
  }

}


/* ============================= */
/* ABOUT SECTION MOBILE */
/* ============================= */

@media (max-width: 900px) {

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    flex-direction: column;
    align-items: center;
  }

}


/* ============================= */
/* FEATURES SECTION MOBILE */
/* ============================= */

@media (max-width: 900px) {

  .features {
    flex-direction: column;
    align-items: center;
  }

}


/* ============================= */
/* CTA SECTION MOBILE */
/* ============================= */

@media (max-width: 900px) {

  .cta-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 25px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 14px;
  }

}


/* ============================= */
/* STEPS SECTION MOBILE */
/* ============================= */

@media (max-width: 900px) {

  .steps-cards {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
  }

}


/* ============================= */
/* FOOTER MOBILE */
/* ============================= */

@media (max-width: 1000px) {

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

}

/* ===================== */
/* MOBILE NAVBAR */
/* ===================== */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #ffc107;
  border-radius: 3px;
  transition: 0.3s;
}

/* Mobile styles */
@media (max-width: 900px) {

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    padding: 25px 20px;
    gap: 18px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .nav.active {
    opacity: 1;
    visibility: visible;
    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;
  }
}


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

}
/* =========================
   FORCE MOBILE NAVBAR SIMPLIFY
   ========================= */

@media (max-width: 768px) {

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

  /* Hide dropdowns completely */
  .navbar .dropdown,
  .navbar .dropdown-panel {
    display: none !important;
  }

  /* Keep logo and CTA only */
  .navbar-inner {
    justify-content: space-between !important;
  }

  /* Optional: reduce navbar height for mobile */
  .navbar-inner {
    height: 70px !important;
  }

  .logo img {
    height: 60px !important;
  }

}
.booking-cta {
  background: #111;
  padding: 80px 20px;
  text-align: center;
}

.booking-container h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.booking-container p {
  color: #cfcfcf;
  margin-bottom: 30px;
}

.booking-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}





/* =========================
   NAVBAR COMPLETE CSS
   ========================= */

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

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

/* Logo container */
.logo {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  color: #ffc107 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

.logo span {
  color: #fff !important;
}

.logo img {
  height: 95px !important;
  width: auto !important;
  object-fit: contain !important;
  transform: translateY(4px) !important;
}

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

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

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

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

.dropdown-panel {
  position: absolute !important;
  top: 130% !important;
  left: 0 !important;
  background: #111 !important;
  min-width: 200px !important;
  border-radius: 12px !important;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(10px) !important;
  transition: 0.25s ease !important;
  z-index: 9999 !important;
}

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

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

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

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

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

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

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

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

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

/* =========================
   MOBILE NAVBAR
   ========================= */

@media (max-width: 768px) {

  .navbar-inner {
    height: 70px !important;
    justify-content: space-between !important;
  }

  .logo img {
    height: 60px !important;
  }

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

  /* Hide dropdown completely */
  .navbar .dropdown,
  .navbar .dropdown-panel {
    display: none !important;
  }

  /* Mobile button */
  .mobile-only {
    display: inline-block !important;
    background: #ffc107 !important;
    color: #000 !important;
    padding: 5px 16px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
  }

  .mobile-only:hover {
    background: #e0a800 !important;
  }

  .desktop-only {
    display: none !important;
  }

  .cta-Tertiary-mobile {
    display: inline-block !important;
    border: 2px solid #ffc107 !important;
    color: #ffc107 !important;
    padding: 13px 26px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 999px !important;
    text-decoration: none !important;
  }

  .cta-Tertiary-mobile:hover {
    background: #ffc107 !important;
    color: #000 !important;
  }
}

/* Hide mobile-only button on desktop */
@media (min-width: 768px) {
  .cta-Tertiary-mobile {
    display: none !important;
  }
}



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