body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

/* ✅ Navbar */
.navbar {
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar-brand {
  color: #005489 !important;
}

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #005489;
}

.navbar .btn-outline-primary {
  border-radius: 50px;
  font-weight: 500;
  border-color: #005489;
  color: #005489;
}

.navbar .btn-outline-primary:hover {
  background-color: #005489;
  color: white;
}

.navbar .btn-warning {
  border-radius: 50px;
  background-color: #ff9000;
  border: none;
  font-weight: 500;
}

/* ✅ Hero Section */
.hero-section {
  background: linear-gradient(180deg, #005489 0%, #0066A3 50%, #005489 100%);
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  
}

.hero-section h1 {
  font-weight: 700;
}

.hero-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  
}

.hero-curve svg {
  position: relative;
  display: block;
  width: calc(130% + 1.3px);
  height: 80px;
  left: -20px;

}

/* ✅ Trusted Badge */
.trusted-badge {
  background-color: orange;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 16777200px;
  width: 305.56px;
  height: 51.19px;
  justify-content: center;
  position: relative;
  top: -11.67px;
  box-shadow: 0 4px 10px rgba(255, 144, 0, 0.3);
}

.trusted-badge i {
  color: #fff;
  font-size: 18px;
}

/* ✅ App Store Buttons */
.store-btn {
  height: 98px;
  transition: transform 0.3s ease;
}

.store-btn:hover {
  transform: translateY(-4px);
}

/* ✅ Phone Mockup */
.phone-img {
  max-width: 60%;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ✅ Stats */
.stats {
  margin-top:0;
}

.stats div {
  padding: 12px 18px;
  
   background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.stats div:last-child {
  border-right: none;
}

/* ✅ Responsive */
@media (max-width: 992px) {
  .navbar-nav {
    text-align: center;
    gap: 1rem;
  }

  .hero-section {
    text-align: center;
    padding-top: 80px;
  
  }

  .trusted-badge {
    margin: 0 auto 1rem auto;
    top: 0;
    height: 31.19px;
  }
  /* Centering FEATURES */
  .features-mobile-center {
    justify-content: center !important;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center !important;
  }

  .features-mobile-center > div {
    width: 100%;
  }

  /* Center Store buttons */
  .store-buttons-mobile-center {
    justify-content: center;
  }

  .store-buttons-mobile-center img {
    margin: 0 auto;
  }

  /* Center stats + shadow boxes */
  .stats {
    justify-content: center !important;
    gap: 1.5rem !important;
    text-align: center;
  }

  .stats div {
    border-right: none !important;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
  }

 
}


/* ✅ Features Section */
.features-section {
    background-color:#F2F9FF;
    padding: 72px 0;
    text-align: center;
  }

  .amazing-badge {
    display: inline-block;
    background-color: var(--brand-light);
    color: var(--brand-blue);
    padding: 6px 18px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  }

  .features-section h2 { font-size: 28px; line-height: 1.15; }
  .features-section p.lead { color: #556; }

  /* Phone mockups container:
     Desktop -> grid (3 columns)
     Mobile  -> horizontal scroll (flex)
  */
  .phone-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
    justify-items: center;
    margin-bottom: 40px;
  }

  .phone-frame {
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    width: 100%;
    max-width: 260px; /* desktop frame width */
  }

  .phone-frame img { display:block; width:100%; border-radius: 22px; }

  .phone-frame:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
  }

  /* Feature cards */
  .feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 26px 18px;
    transition: all 0.25s ease;
    min-height: 200px;
    text-align: center;
  }

  .feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    margin: 0 auto 12px auto;
  }

  .mini-feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  }

  .text-purple { color: var(--purple); }
  .border-purple { border-color: var(--purple) !important; }

  /* small helpers */
  .mb-40 { margin-bottom: 40px !important; }

  /* Mobile: convert phone-slider to horizontal scroll */
  @media (max-width: 768px) {
    .features-section {
      padding: 48px 12px;
    }

    .phone-slider {
      display: flex;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      gap: 16px;
      padding-bottom: 8px;
      scroll-snap-type: x mandatory;
      justify-content: flex-start;
      align-items: center;
      margin-bottom: 24px;
    }

    /* hide scrollbar */
    .phone-slider::-webkit-scrollbar { display: none; }
    .phone-slider { -ms-overflow-style: none; scrollbar-width: none; }

    .phone-slide {
      flex: 0 0 78%;
      max-width: 78%;
      scroll-snap-align: center;
      display: flex;
      justify-content: center;
    }

    .phone-frame { max-width: 90%; border-radius: 20px; }

    /* feature cards stacking on smaller screens */
    .feature-card { min-height: unset; padding: 20px; }

    /* mini boxes - make them full width and stacked for tiny screens */
    .mini-feature-card { justify-content: center; }
  }

  /* Desktop tweaks */
  @media (min-width: 992px) {
    .features-section h2 { font-size: 34px; }
    .feature-card { min-height: 220px; }
  }

  /* Stats / small highlight row spacing */
  .mini-row { margin-top: 10px; }

  /* Horizontal scroll for mini features on mobile */
/* Horizontal scroll for mini features on mobile */
/* Fix mini-row scroll on mobile */
@media (max-width: 768px) {

  .mini-row {
    display: flex !important;
    flex-wrap: nowrap !important;   /* STOP wrap */
    overflow-x: auto !important;    /* ENABLE scroll */
    overflow-y: hidden;
     justify-content: flex-start !important;
    gap: 16px;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .mini-row::-webkit-scrollbar {
    display: none;
  }

  .mini-row > div {
    flex: 0 0 auto !important;
    width: 70% !important;       /* card width */
    max-width: 70% !important;
    scroll-snap-align: center;
  }

  .mini-feature-card {
    width: 100%;
  }
}




/* ✅ Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

/* Badge */
.why-badge {
  background-color: #ff9000;
  color: #fff;
  display: inline-block;
  padding: 6px 20px;
  font-weight: 600;
  border-radius: 40px;
  font-size: 15px;
}

/* Cards */
.trust-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 25px;
  position: relative;
  transition: all 0.3s ease;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Icons */
.trust-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* Number */
.trust-number {
  position: absolute;
  top: 12px;
  right: 20px;
  font-weight: 600;
  color: #b9ddff;
  font-size: 16px;
}

/* List styling */
.trust-list li {
  font-size: 14px;
  color: #333;
  text-align: left;
  margin-bottom: 6px;
}
.small-dot {
  font-size: 8px;
}

/* Stats Bar */
.stats-bar {
  background: linear-gradient(90deg, #005489 0%, #0066a3 100%);
  max-width: 900px;
}
.stats-bar h5 {
  font-size: 20px;
}
.stats-bar small {
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .trust-card {
    padding: 25px 20px;
  }
  .trust-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .stats-bar h5 {
    font-size: 18px;
  }
}
/* Section Header */
    .section-badge {
      background-color: #e9f2ff;
      color: #083d77;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 20px;
      display: inline-block;
      font-size: 0.9rem;
    }

    .section-title {
      font-weight: 700;
      font-size: 2rem;
      color: #083d77;
    }

    .section-title span {
      color: #ff8c00;
    }

    .section-desc {
      color: #6c757d;
      font-size: 0.95rem;
      max-width: 600px;
      margin: 10px auto 30px;
    }

    /* Process Toggle Buttons */
    .process-toggle {
      display: inline-flex;
      background-color: #f7f7f7;
      border-radius: 50px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      margin-bottom: 50px;
    }

    .process-toggle button {
      border: none;
      padding: 10px 35px;
      font-weight: 600;
      background: transparent;
      color: #333;
      transition: all 0.3s ease;
    }

    .process-toggle button.active {
      background: linear-gradient(90deg, #ff8c00, #ffa733);
      color: #fff;
      border-radius: 50px;
      box-shadow: 0 4px 8px rgba(255, 140, 0, 0.3);
    }

    /* Step Cards */
    .step-box {
      position: relative;
      text-align: center;
    }

    .step-number {
      background: #ff8c00;
      color: #fff;
      border-radius: 50%;
      width: 38px;
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 16px;
      margin: 0 auto 15px;
      box-shadow: 0 4px 8px rgba(255, 140, 0, 0.3);
    }

    .step-icon {
      width: 90px;
      height: 90px;
      background-color: #0b66c2;
      color: #fff;
      font-size: 36px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      box-shadow: 0 6px 10px rgba(11, 102, 194, 0.3);
    }

    .step-title {
      font-weight: 600;
      color: #083d77;
      margin-bottom: 8px;
    }

    .step-desc {
      font-size: 0.9rem;
      color: #6c757d;
      max-width: 230px;
      margin: 0 auto;
    }

    /* Arrows Between Steps */
    .connector {
      position: absolute;
      top: 65px;
      right: -40px;
      width: 60px;
      height: 2px;
      background-color: #ff8c00;
    }

    @media (max-width: 991px) {
      .connector {
        display: none;
      }
    }

    /* CTA Button */
    .btn-orange {
      background: linear-gradient(90deg, #ff8c00, #ffa733);
      color: #fff;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      padding: 12px 30px;
      box-shadow: 0 6px 10px rgba(255, 140, 0, 0.3);
      transition: all 0.3s ease;
    }

    .btn-orange:hover {
      background: linear-gradient(90deg, #ffa733, #ff8c00);
      transform: translateY(-3px);
    }

    /* Features Below */
    .feature-box {
      background-color: #f7f9fc;
      border-radius: 12px;
      padding: 25px 15px;
      text-align: center;
      transition: all 0.3s ease;
    }

    .feature-box i {
      color: #ff8c00;
      font-size: 26px;
      margin-bottom: 10px;
    }

    .feature-box:hover {
      background-color: #fff;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    }


    /* Base Section */
.trusted-section {
  background: linear-gradient(to bottom, #f8fbff 0%, #ffffff 100%);
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Trusted Feature Boxes */
.trusted-box {
  transition: all 0.3s ease-in-out;
  border: 1px solid #eef1f6;
}
.trusted-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 102, 255, 0.1);
}


/* Enable horizontal scrolling ONLY on mobile */
@media (max-width: 576px) {
  .trusted-scroll {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    gap: 15px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .trusted-scroll > div {
    min-width: 75%;
    scroll-snap-align: start;
  }

  /* Hide scrollbar (optional) */
  .trusted-scroll::-webkit-scrollbar {
    display: none;
  }
}


/* Review Boxes */
.review-box {
  border: 1px solid #eef1f6;
  transition: all 0.3s ease;
}
.review-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}



/* Stars */
.stars i {
  margin-right: 2px;
  color: #ffb400;
}

/* Featured in Section */
.featured-in span {
  font-weight: 500;
  color: #666;
  transition: color 0.3s;
}
.featured-in span:hover {
  color: #0d6efd;
}

/* Text Colors */
.text-muted {
  color: #6c757d !important;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .trusted-box {
    margin-bottom: 20px;
  }
  .review-box {
    margin-bottom: 20px;
  }
}

/* ------- Reviews Row: Mobile Horizontal Scroll ------- */
@media (max-width: 768px) {
  .reviews-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden;
    gap: 16px;
    padding-bottom: 10px;

    justify-content: flex-start !important; /* disable center on mobile */

    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .reviews-row::-webkit-scrollbar {
    display: none;
  }

  .reviews-row > div {
    flex: 0 0 80% !important;     /* each review card width */
    max-width: 80% !important;
    scroll-snap-align: center;
  }

  .review-box {
    width: 100%;
  }
}



/* ====== Section Background ====== */
    .sell-section-area {
      background: linear-gradient(180deg, #005489 0%, #0066A3 50%, #005489 100%);
      color: #fff;
      padding: 90px 0;
      font-family: 'Poppins', sans-serif;
    }

    /* ====== Left Side Content ====== */
    .sell-content-btn {
      background-color: #ff8c00;
      color: #fff;
      border: none;
      border-radius: 30px;
      padding: 10px 24px;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .sell-content-title {
      font-size: 2.6rem;
      font-weight: 700;
    }

    .sell-content-title span {
      color: #ff8c00;
    }

    .sell-content-desc {
      margin-top: 15px;
      font-size: 1rem;
      line-height: 1.7;
      color: #e9e9e9;
    }

    /* ====== Features Grid ====== */
    .sell-feature-item {
      background-color: #fff;
      color: #333;
      border-radius: 12px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      transition: all 0.3s ease;
    }

    .sell-feature-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    }

    .sell-feature-icon {
      font-size: 1.8rem;
      color: #ff8c00;
      margin-bottom: 10px;
    }

    .sell-feature-item h6 {
      font-weight: 600;
      margin-bottom: 6px;
    }

    .sell-feature-item p {
      font-size: 0.9rem;
      margin-bottom: 0;
      color: #555;
    }

    /* ====== CTA Button ====== */
    .sell-cta-btn {
      background-color: #ff8c00;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 12px 28px;
      font-weight: 600;
      margin-top: 25px;
    }

    /* ====== Stats ====== */
    .sell-stats {
      margin-top: 25px;
      font-weight: 500;
    }

    /* ====== Right Image Column ====== */
    .sell-image-column {
      text-align: center;
    }

    .sell-right-image {
      max-width: 400px;
      width: 100%;
      height: auto;
      filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.3));
      transition: transform 0.3s ease, filter 0.3s ease;
    }

    .sell-right-image:hover {
      transform: scale(1.03);
      filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
    }

    @media (max-width: 992px) {
      .sell-section-area {
        text-align: center;
        padding: 70px 0;
      }
      .sell-right-image {
        max-width: 300px;
        margin-top: 40px;
      }
    }

    /* ====== SECTION BASE ====== */
    .app-download-section {
      background: linear-gradient(180deg, #f4faff 0%, #ffffff 100%);
      padding: 90px 0 40px;
      font-family: 'Poppins', sans-serif;
      text-align: center;
    }

    /* ====== BUTTON TOP ====== */
    .app-download-btn {
      background-color: #ff8c00;
      color: #fff;
      border: none;
      border-radius: 30px;
      padding: 10px 24px;
      font-weight: 600;
      margin-bottom: 20px;
      transition: all 0.3s ease;
    }
    .app-download-btn:hover {
      background-color: #ff9e24;
    }

    /* ====== HEADING ====== */
    .app-download-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #003b70;
    }

    .app-download-title span {
      color: #ff8c00;
    }

    .app-download-subtitle {
      color: #666;
      font-size: 1.05rem;
      max-width: 680px;
      margin: 15px auto 50px;
    }

    /* ====== PHONE IMAGES ====== */
    .app-phone-group {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 80px;
    }

    .app-phone {
      max-width: 40%;
      width: 100%;
      height: auto;
      transition: transform 0.3s ease;
      filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.2));
    }

    .app-phone.center {
      transform: scale(1.1);
      z-index: 2;
    }

    .app-phone:hover {
      transform: translateY(-8px);
    }

    /* ====== INFO BOXES ====== */
    .app-info-box {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      padding: 30px;
      text-align: left;
      height: 100%;
    }

    .app-info-box h5 {
      color: #004b7d;
      font-weight: 600;
      margin-bottom: 20px;
    }

    .app-feature-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .app-feature-list li {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      font-size: 0.95rem;
    }

    .app-feature-list li i {
      color: #00c26f;
      font-size: 1.2rem;
      margin-right: 8px;
    }

    .app-rating {
      margin-top: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
    }

    .app-rating p {
      margin: 0;
      font-size: 0.95rem;
      color: #444;
    }

    /* ====== DOWNLOAD BOX ====== */
    .app-download-box {
      background: linear-gradient(180deg, #004b7d 0%, #0068a9 100%);
      color: #fff;
      border-radius: 16px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
      padding: 40px 30px;
      text-align: left;
      height: 100%;
    }

    .app-download-box h5 {
      font-weight: 600;
      margin-bottom: 20px;
    }

    .store-buttons img {
      height: 45px;
      margin-right: 15px;
      transition: transform 0.3s ease;
    }

    .store-buttons img:hover {
      transform: scale(1.05);
    }

    /* ====== BOTTOM OFFER ====== */
    .app-offer-banner {
      background-color: #ff8c00;
      color: #fff;
      border-radius: 12px;
      padding: 25px 20px;
      margin-top: 70px;
      text-align: center;
    }

    .app-offer-banner h6 {
      font-weight: 600;
      font-size: 1.05rem;
      margin-bottom: 10px;
    }

    .app-offer-banner p {
      font-size: 0.9rem;
      margin: 0;
    }

    .app-offer-badge {
      background-color: #fff;
      color: #ff8c00;
      border-radius: 25px;
      display: inline-block;
      padding: 5px 14px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-top: 8px;
    }

    @media (max-width: 992px) {
      .app-download-title {
        font-size: 2rem;
      }
      .app-phone-group {
        margin-bottom: 60px;
      }
      .app-offer-banner {
        margin-top: 40px;
      }
    }


/* ===== FOOTER BASE ===== */
    .site-footer {
      background: linear-gradient(180deg, #005489 0%, #0066A3 50%, #005489 100%);
      color: #fff;
      padding: 70px 0 20px;
      font-family: 'Poppins', sans-serif;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
    }

    .footer-logo-icon {
      background-color: #ff8c00;
      color: #fff;
      font-size: 1.2rem;
      border-radius: 8px;
      padding: 8px;
    }

    .footer-logo h5 {
      margin: 0;
      font-weight: 600;
    }

    .footer-about p {
      font-size: 0.95rem;
      line-height: 1.6;
      color: #e5e5e5;
      margin-bottom: 20px;
    }

    .footer-contact p {
      margin: 0 0 8px;
      font-size: 0.95rem;
    }

    .footer-contact i {
      color: #ff8c00;
      margin-right: 8px;
    }

    /* ===== FOOTER LINKS ===== */
    .footer-links h6 {
      font-weight: 600;
      margin-bottom: 20px;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links ul li {
      margin-bottom: 10px;
    }

    .footer-links ul li a {
      color: #e5e5e5;
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 0.95rem;
    }

    .footer-links ul li a:hover {
      color: #ffb84d;
    }

    /* ===== SOCIAL ICONS ===== */
    .footer-social {
      margin-top: 15px;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      background: #fff;
      color: #005489;
      border-radius: 50%;
      margin-right: 8px;
      font-size: 1.1rem;
      transition: all 0.3s ease;
    }

    .footer-social a:hover {
      background: #ff8c00;
      color: #fff;
    }

    /* ===== BOTTOM BAR ===== */
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      margin-top: 50px;
      padding-top: 15px;
      font-size: 0.9rem;
      color: #cfd9e2;
    }

    .footer-bottom a {
      color: #cfd9e2;
      text-decoration: none;
      margin: 0 10px;
      transition: color 0.3s ease;
    }

    .footer-bottom a:hover {
      color: #ffb84d;
    }

    .footer-payment-icons img {
      width: 35px;
      height: 25px;
      border-radius: 5px;
      background-color: #fff;
      padding: 4px;
      margin-left: 6px;
    }

    @media (max-width: 992px) {
      .footer-links {
        margin-top: 30px;
      }
    }