/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap");

/* ============================================
   ROOT VARIABLES & TYPOGRAPHY
   ============================================ */

:root {
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-100: #ffedd5;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --purple-500: #a855f7;
  --red-500: #ef4444;
  --yellow-400: #fbbf24;
  --green-400: #4ade80;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

/* Typography Base */
p,
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Animation Utility Classes */
.animate-bounce {
  animation: bounce 2s infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-spin {
  animation: spin 8s linear infinite;
}

.fade-in {
  animation: fadeIn 0.3s ease-in;
}

/* ============================================
   TOP BAR STYLES
   ============================================ */

.top-bar {
  background-color: #1a2332;
  padding: 12px 0;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
}

.contact-item i {
  color: #ff6b35;
  font-size: 16px;
}

.contact-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ff6b35;
}

.divider {
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.2);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 50%;
}

.social-icon:hover {
  color: #ff6b35;
}

/* ============================================
   NAVBAR STYLES
   ============================================ */

.navbar-custom {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-img {
  height: 20px;
}

.location-btn {
  color: var(--gray-700);
  font-weight: 500;
}

.nav-link-custom {
  color: var(--gray-700);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link-custom:hover {
  color: #ff6b35;
}

.btn-orange {
  background-color: var(--orange-500);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.btn-orange:hover {
  background-color: var(--orange-600);
  color: white;
  transform: scale(1.05);
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: var(--gray-700);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background-color: white;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  z-index: 1050;
  overflow-y: auto;
}

.mobile-menu-overlay.active {
  left: 0;
}

.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1049;
}

.mobile-menu-backdrop.active {
  display: block;
}

.mobile-menu-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-700);
  cursor: pointer;
}

.mobile-menu-items {
  padding: 1rem 0;
}

.mobile-nav-link {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.mobile-nav-link:hover {
  background-color: var(--gray-50);
  color: #ff6b35;
}

/* ============================================
   POPUP/MODAL STYLES
   ============================================ */

.app-popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  animation: fadeIn 0.3s ease;
}

.app-popup-overlay.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-popup-container {
  background-color: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 500px;
  animation: slideUp 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 9999;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.app-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.app-popup-close:hover {
  color: #ff6b35;
  transform: rotate(90deg);
}

.app-popup-header {
  background: linear-gradient(135deg, #ff6b35 0%, #ff6b35 100%);
  color: white;
  padding: 40px 30px;
  text-align: center;
/*  height: 320px;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.app-popup-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.app-popup-icon {
  font-size: 3rem;
  margin: 15px 0 10px 0;
  line-height: 1;
}

.app-popup-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 8px 0;
  line-height: 1.2;
}

.app-popup-subtitle {
  font-size: 0.95rem;
  opacity: 0.95;
  margin: 5px 0 0 0;
  line-height: 1.2;
}

.app-popup-content {
  padding: 30px;
  text-align: center;
}

.app-popup-description {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.app-popup-buttons {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.app-download-btn {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  width: 100%;
}

.app-download-btn-primary {
  background-color: #ff6b35;
  color: white;
}

.app-download-btn-primary:hover {
  background-color: #e55a24;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.app-download-btn-secondary {
  background-color: #f0f0f0;
  color: #333;
  border: 2px solid #e0e0e0;
}

.app-download-btn-secondary:hover {
  background-color: #e8e8e8;
  border-color: #ff6b35;
  color: #ff6b35;
}

.app-popup-footer {
  padding: 0 30px 20px;
  text-align: center;
  color: #999;
  font-size: 0.85rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

#home {
  position: relative;
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url("../images/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.6);
}

.content-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
}

.main-heading {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.25;
}

.subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--gray-50);
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

.icon-spacing {
  margin-right: 0.5rem;
}

.typed-cursor {
  font-weight: bold;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

#services {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--gray-50);
}

.service-card {
  background-color: #172554;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease;
  width: 100%;
}

.service-card:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  transform: translateY(-0.5rem);
}

.service-image {
  height: 12rem;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.25rem;
  color: white;
}

.service-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.feature-icon {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.375rem;
  border-radius: 0.5rem;
  margin-right: 0.75rem;
}

.feature-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-100);
}

.service-button {
  width: 100%;
  background-color: rgba(75, 85, 99, 0.2);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  font-size: 0.875rem;
  margin-top: 1.25rem;
}

.service-button:hover,
.service-card:hover .service-button {
  background-color: rgba(75, 85, 99, 0.4);
}

.section-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--orange-500);
  margin-bottom: 1rem;
}

.section-description,
.section-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 48rem;
  margin: 0 auto;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */

#download {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}

.app-container {
  background-color: #162556;
  border-radius: 0.75rem;
  padding: 1.5rem 2rem;
  color: white;
  max-width: 80rem;
  margin: 0 auto;
}

.lottie-container {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-container {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
}

.text-container h2 {
  font-weight: bold;
  margin-bottom: 0;
  font-size: 2.25rem;
  color: #fb923c;
}

.text-container p {
  font-size: 1.25rem;
  margin-top: 0.5rem;
  opacity: 0.8;
}

.qr-container {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-container img {
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  width: 152px;
  height: 152px;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-item {
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  margin-bottom: 0.5rem;
  min-height: 3.5rem;
}

.faq-item:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-header,
.faq-button {
  width: 100%;
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
  min-height: 3.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.faq-button:active {
  background-color: #f5f5f5;
}

.faq-button:focus {
  outline: 2px solid #ff9900;
  outline-offset: -2px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.show {
  max-height: 500px;
}

/* ============================================
   CATEGORY & BRAND CARDS
   ============================================ */

.category-card,
.brand-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.category-card {
  background-color: var(--gray-50);
}

.category-card:hover,
.brand-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.brand-card {
  min-width: 150px;
  flex-shrink: 0;
}

.brand-card:hover {
  background-color: #fff7ed;
}

.category-card img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 1rem;
}

.brand-logo-container {
  height: 3rem;
  width: 5rem;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 0;
}

/* ============================================
   SEARCH CONTAINER
   ============================================ */

.search-container {
  background-color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
}

/* ============================================
   MARQUEE & CAROUSEL
   ============================================ */

.marquee-container {
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: flex;
  gap: 1.5rem;
  animation: marquee 5s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.carousel-container {
  overflow: hidden;
  border-radius: 1.5rem;
  position: relative;
  max-width: 72rem;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  min-width: 100%;
  flex: 0 0 100%;
  flex-shrink: 0;
  padding: 0 1rem;
}

/* ============================================
   ICONS & VISUAL ELEMENTS
   ============================================ */

.icon-circle {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
  background-color: #ff6f00;
  margin: 0 auto 15px;
  transition: transform 0.3s;
}

.icon-circle i {
  font-size: 32px;
}

.icon-circle:hover {
  transform: scale(1.1);
}

.icon-container,
.icon-box {
  width: 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.lucide-icon {
  width: 48px;
  height: 48px;
}

.lucide-icon-sm {
  width: 20px;
  height: 20px;
}

.lucide-icon-md {
  width: 24px;
  height: 24px;
}

.card-hover {
  transition: all 0.3s ease;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.card-hover h3 {
  transition: color 0.3s ease;
}

.card-hover:hover h3 {
  color: var(--blue-600);
}

.card-hover:nth-child(3):hover h3 {
  color: #9333ea;
}

/* Icon Wrapper with Animations */
.icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
}

.icon-wrapper .ping,
.pulse-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: var(--orange-500);
  opacity: 0.2;
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pulse-bg {
  background: linear-gradient(to right, var(--orange-500), var(--purple-500));
  animation: pulse 3s ease-in-out infinite;
}

.icon-wrapper .icon-gradient {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(to bottom right, var(--orange-500), var(--red-500));
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.icon-wrapper .icon-gradient i {
  color: white;
  font-size: 36px;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(249, 115, 22, 0.1), rgba(239, 68, 68, 0.1));
}

/* ============================================
   PARTICLES & BACKGROUND
   ============================================ */

.bg-particle,
.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(249, 115, 22, 0.3);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.particle {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #fed7aa;
  animation: pulse 3s infinite;
}

/* ============================================
   PROGRESS & TIMELINE
   ============================================ */

.progress-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.progress-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--gray-200);
  transition: all 0.3s;
}

.progress-dot.active {
  background-color: var(--orange-500);
  transform: scale(1.25);
}

.progress-line {
  width: 2rem;
  height: 2px;
  background-color: var(--gray-200);
  margin: 0 8px;
}

.step-card,
.process-card {
  background: linear-gradient(to bottom right, var(--bg-from), var(--bg-to));
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--gray-200);
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.step-number,
.step-bg-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 6rem;
  font-weight: 900;
  color: var(--gray-200);
  opacity: 0.5;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.step-bg-number {
  top: -3rem;
}

/* Visual/Animated Circles */
.visual-container {
  position: relative;
  width: 256px;
  height: 256px;
}

.visual-bg-circle,
.animated-circle {
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  opacity: 0.1;
  animation: pulse 3s ease-in-out infinite;
}

.rotating-border {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  border: 4px dashed;
  opacity: 0.3;
  animation: spin 8s linear infinite;
}

.central-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.floating-particle {
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.6;
}

/* ============================================
   TIMELINE STYLES
   ============================================ */

.timeline-line {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--blue-500), var(--purple-500), var(--orange-500));
  border-radius: 9999px;
  transform: translateY(-50%);
}

.timeline-step {
  width: 224px;
  padding: 0 0.5rem;
  position: relative;
}

.timeline-number {
  position: absolute;
  top: -3rem;
  font-size: 6rem;
  font-weight: 900;
  color: var(--gray-600);
  opacity: 0.5;
  line-height: 1;
  pointer-events: none;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-step:hover .timeline-number {
  opacity: 0.7;
}

.timeline-icon-wrapper {
  position: relative;
  z-index: 20;
  margin-top: 68px;
  margin-bottom: 2rem;
}

.timeline-icon {
  position: relative;
  width: 4rem;
  height: 4rem;
  background-color: var(--orange-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 4px solid white;
  transition: transform 0.3s;
  margin: 0 auto;
}

.timeline-step:hover .timeline-icon {
  transform: scale(1.1);
}

.timeline-icon-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--orange-500), var(--purple-500));
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
  opacity: 0.2;
}

.mobile-timeline-line {
  position: absolute;
  left: 2rem;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--orange-500), var(--purple-500), var(--blue-500));
  border-radius: 9999px;
}

/* ============================================
   NAVIGATION BUTTONS
   ============================================ */

.nav-btn,
.nav-btn-left,
.nav-btn-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  cursor: pointer;
  z-index: 20;
}

.nav-btn:hover,
.nav-btn-left:hover,
.nav-btn-right:hover {
  background-color: var(--gray-50);
  transform: translateY(-50%) scale(1.1);
}

.nav-btn-prev,
.nav-btn-left {
  left: -4rem;
}

.nav-btn-next,
.nav-btn-right {
  right: -4rem;
}

/* ============================================
   TESTIMONIALS & CARDS
   ============================================ */

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.star-rating {
  color: var(--yellow-400);
  margin-bottom: 1rem;
}

.star-filled {
  color: var(--yellow-400);
}

.testimonial-text {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.75;
}

.avatar,
.avatar-circle {
  width: 3rem;
  height: 3rem;
  background-color: var(--orange-500);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.125rem;
}

.avatar-circle {
  width: 48px;
  height: 48px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.customer-name {
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.25rem;
}

.customer-details {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.blog-card {
  transition: all 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.blog-image {
  height: 192px;
  background-size: cover;
  background-position: center;
}

/* ============================================
   AUCTION PROCESS & INSIGHTS
   ============================================ */

.auction-process {
  background-color: var(--gray-50);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.insight-card {
  background-color: #101828;
  color: var(--gray-300);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

/* ============================================
   FOOTER & APP BADGES
   ============================================ */

.app-badge {
  height: 56px;
  transition: transform 0.3s ease;
}

.app-badge:hover {
  transform: scale(1.05);
}

.footer-link {
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--orange-500);
  text-decoration: none;
}

/* ============================================
   MOCKUP CONTAINER
   ============================================ */

.mockup-container {
  position: relative;
  display: inline-block;
  padding: 2rem;
}

.mockup-left {
  position: absolute;
  left: -4rem;
  top: 2rem;
  width: 10rem;
  height: 16rem;
  object-fit: contain;
  opacity: 0.7;
  transform: rotate(-10deg);
  z-index: 0;
}

.mockup-right {
  position: absolute;
  right: -4rem;
  top: 2rem;
  width: 10rem;
  height: 16rem;
  object-fit: contain;
  opacity: 0.7;
  transform: rotate(10deg);
  z-index: 0;
}

.mockup-center {
  position: relative;
  z-index: 10;
  width: 14rem;
  height: 24rem;
  object-fit: contain;
  margin: 0 auto 1.5rem;
}

/* ============================================
   DROPDOWN MENU
   ============================================ */

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  min-width: 280px;
  padding: 0;
  margin-top: 0.5rem;
  background-color: white;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.user-welcome {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.bg-gray-50 {
  background-color: var(--gray-50);
}

.bg-gray-800 {
  background-color: var(--gray-800);
}

.bg-gray-900 {
  background-color: var(--gray-900);
}

.text-orange-500 {
  color: var(--orange-500);
}

.text-gray-600 {
  color: var(--gray-600);
}

.text-gray-700 {
  color: var(--gray-700);
}

.text-gray-800 {
  color: var(--gray-800);
}

.text-gray-300 {
  color: var(--gray-300);
}

.text-gray-400 {
  color: var(--gray-400);
}

.text-green-400 {
  color: var(--green-400);
}

.bg-orange-50 {
  background-color: #fff7ed;
}

.bg-orange-500 {
  background-color: var(--orange-500);
}

.bg-orange-500:hover,
.hover-bg-orange-600:hover {
  background-color: var(--orange-600);
}

.hover-bg-gray-900:hover {
  background-color: var(--gray-900);
}

.bg-dark-custom {
  background-color: #101828;
}

.bg-gradient-dark {
  background: linear-gradient(to right, var(--gray-900), var(--gray-800), var(--gray-900));
}

.border-gray-700 {
  border-color: var(--gray-700);
}

.hover-orange-50:hover {
  background-color: #fff7ed;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.py-20,
.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

section {
  padding: 5rem 0;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Top Bar Responsive */
@media (max-width: 991px) {
  .top-bar {
    padding: 8px 0;
  }

  .top-bar .row {
    margin: 0;
  }

  .top-bar .col-md-8,
  .top-bar .col-md-4 {
    padding: 0;
  }

  .contact-info {
    gap: 0.75rem;
    flex: 1;
  }

  .contact-item span {
    display: none;
  }

  .divider {
    display: none;
  }

  .contact-item i {
    font-size: 18px;
  }

  .social-links {
    gap: 0.75rem;
    flex: 1;
  }
}

@media (max-width: 425px) {
  .top-bar .container-fluid {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .contact-info {
    gap: 0.5rem;
  }

  .contact-item i {
    font-size: 16px;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .logo-img {
    height: 16px;
  }

  .btn-orange {
    padding: 0.4rem 0.65rem;
    font-size: 0.7rem;
  }

  .btn-orange i {
    font-size: 0.7rem;
    margin-right: 0.2rem;
  }

  .navbar-custom .container-fluid {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .hamburger-menu {
    padding: 0.25rem;
  }

  .hamburger-menu span {
    width: 22px;
    height: 2.5px;
  }

  .app-popup-container {
    width: 98%;
    max-width: 50%;
  }

  /*.app-popup-header {
    padding: 25px 15px 15px;
    height: 280px;
  }*/

  .app-popup-title {
    font-size: 1.3rem;
  }

  .app-popup-content {
    padding: 15px;
  }

  .app-popup-description {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .app-download-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 320px) {
  .logo-img {
    height: 14px;
  }

  .navbar-custom .container-fluid {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .hamburger-menu {
    padding: 0.15rem;
  }

  .hamburger-menu span {
    width: 18px;
    height: 2px;
    margin: 2px 0;
  }

  .btn-orange {
    padding: 0.3rem 0.5rem;
    font-size: 0.65rem;
    border-radius: 12px;
  }

  .btn-orange i {
    font-size: 0.65rem;
    margin-right: 0.15rem;
  }

  .navbar-brand {
    padding: 0;
    margin-right: 0;
    flex-shrink: 0;
  }

  .d-flex.align-items-center {
    flex-shrink: 0;
  }

  .d-flex.align-items-center.gap-3 {
    gap: 0 !important;
    padding: 0 !important;
  }
}

/* Navbar Responsive */
@media (max-width: 991px) {
  .navbar-custom .container-fluid {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .hamburger-menu {
    display: flex;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-brand {
    z-index: 10;
  }

  .d-flex.align-items-center {
    z-index: 10;
  }

  .btn-orange {
    /* padding: 0.5rem 1rem; */
    font-size: 0.85rem;
  }

  .mega-menu {
    width: 100%;
    left: 0;
    transform: none;
  }

  .app-container {
    flex-direction: column;
    text-align: center;
  }

  .qr-container {
    width: 100%;
    margin: 1rem 0;
  }

  .text-container {
    padding: 1rem 0;
  }

  .nav-btn-prev,
  .nav-btn-left {
    left: 0;
  }

  .nav-btn-next,
  .nav-btn-right {
    right: 0;
  }

  .visual-container {
    width: 192px;
    height: 192px;
  }

  .timeline-line {
    display: none;
  }
}

/* FAQ Responsive */

/* Extra Small Devices (320px - 424px) */
@media (max-width: 424px) {
  .faq-item {
    margin-bottom: 0.4rem;
    /* Tighter spacing for very small screens */
  }

  .faq-header,
  .faq-button {
    padding: 1rem 0.75rem;
    /* Minimal padding to maximize content space */
    font-size: 0.95rem;
    /* Slightly reduced font for readability */
  }

  .faq-answer.show {
    max-height: 450px;
    /* Reduced max-height for small screens */
  }

  .lucide-icon-sm {
    width: 18px;
    height: 18px;
    /* Slightly smaller icons */
  }

  .faq-button:focus {
    outline: 2px solid #ff9900;
    outline-offset: -1px;
    /* Tighter focus outline for small screens */
  }
}

/* Small Devices (Tablets - 425px and up) */
@media (min-width: 425px) and (max-width: 575px) {
  .faq-item {
    margin-bottom: 0.6rem;
  }

  .faq-header,
  .faq-button {
    padding: 1.125rem 1.125rem;
    /* Balanced padding */
    font-size: 0.98rem;
  }

  .faq-answer.show {
    max-height: 550px;
    /* Transitional max-height */
  }
}

/* Medium Devices (Tablets - 576px and up) */
@media (min-width: 576px) {
  .faq-item {
    margin-bottom: 0.75rem;
  }

  .faq-header,
  .faq-button {
    padding: 1.5rem 1.5rem;
  }

  .faq-answer.show {
    max-height: 600px;
  }
}

@media (min-width: 768px) {
  .faq-item {
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  }

  .faq-header,
  .faq-button {
    padding: 1.5rem 2rem;
    font-size: 1.05rem;
  }

  .faq-button:hover {
    background-color: #fafafa;
  }

  .faq-answer.show {
    max-height: 700px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description,
  .section-subtitle {
    font-size: 1rem;
  }

  .main-heading {
    font-size: 1.875rem;
  }

  .nav-btn {
    display: none;
  }

  .step-number {
    font-size: 4rem;
  }

  .step-card,
  .process-card {
    min-height: auto;
  }

  .animated-circle {
    width: 12rem;
    height: 12rem;
  }

  .rotating-border {
    width: 8rem;
    height: 8rem;
  }

  .central-icon {
    width: 5rem;
    height: 5rem;
  }

  .mockup-left,
  .mockup-right {
    display: none;
  }

  section {
    padding: 3rem 0;
  }

  .app-popup-container {
    max-width: 90%;
    width: 95%;
  }

  .app-popup-header {
    padding: 30px 20px 20px;
  }

  .app-popup-title {
    font-size: 1.5rem;
  }

  .app-popup-content {
    padding: 20px;
  }

  .app-popup-buttons {
    flex-direction: column;
  }
}

@media (min-width: 992px) {
  .faq-item {
    margin-bottom: 1.25rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .faq-header,
  .faq-button {
    padding: 1.75rem 2.25rem;
    font-size: 1.1rem;
  }

  .faq-button:hover {
    background-color: #f9f9f9;
  }

  .faq-answer.show {
    max-height: 800px;
  }
}

@media (min-width: 1200px) {
  .faq-item {
    margin-bottom: 1.5rem;
    border-radius: 0.875rem;
  }

  .faq-header,
  .faq-button {
    padding: 2rem 2.5rem;
    font-size: 1.125rem;
  }

  .faq-answer.show {
    max-height: 900px;
  }
}

@media (min-width: 576px) {
  .main-heading {
    font-size: 3.25rem;
  }

  .subtitle {
    font-size: 1.5rem;
  }

  .button-container {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .main-heading {
    font-size: 3.75rem;
  }
}

/* ============================================
   CROSS-BROWSER & ACCESSIBILITY
   ============================================ */

.faq-item,
.faq-header,
.faq-button,
.faq-answer {
  box-sizing: border-box;
}

.faq-item,
.faq-button,
.faq-answer {
  -webkit-transition: box-shadow 0.3s ease, background-color 0.2s ease, max-height 0.3s ease;
  transition: box-shadow 0.3s ease, background-color 0.2s ease, max-height 0.3s ease;
}

.faq-header,
.faq-button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.faq-button {
  min-height: 2.75rem;
}

@media (prefers-reduced-motion: reduce) {
  .faq-item,
  .faq-button,
  .faq-answer {
    transition: none;
  }
}

@media (max-width: 319px) {
  /* Top Bar - Hide on ultra-small screens to save space */
  .top-bar {
    padding: 4px 0;
    /* Reduce padding dramatically */
  }

  .top-bar .container-fluid {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .contact-info {
    gap: 0.25rem;
    /* Minimal gap */
    flex: 1;
  }

  .contact-item {
    gap: 2px;
    font-size: 11px;
    /* Smaller font */
  }

  .contact-item i {
    font-size: 12px;
  }

  .social-links {
    gap: 0.25rem;
    flex: 1;
  }

  .social-icon {
    width: 24px;
    height: 24px;
    font-size: 11px;
    /* Smaller icons */
  }

  /* Navbar - Critical fixes */
  .navbar-custom {
    padding: 0;
    /* Remove all padding */
    background-color: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    /* Reduced shadow */
  }

  .navbar-custom .container-fluid {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    min-height: 40px;
    /* Reduced from default height */
  }

  /* Logo - Ultra-compact */
  .navbar-brand {
    padding: 0;
    margin-right: 0;
    flex-shrink: 0;
  }

  .logo-img {
    height: 12px;
    /* Very small logo */
  }

  /* Hamburger Menu - Ultra-compact */
  .hamburger-menu {
    padding: 0.1rem;
    display: flex;
  }

  .hamburger-menu span {
    width: 16px;
    height: 1.5px;
    margin: 1.5px 0;
    background-color: var(--gray-700);
  }

  /* Download Button - Hide or make minimal */
  .btn-orange {
    padding: 0.2rem 0.3rem;
    font-size: 0.55rem;
    /* Extremely small button */
    border-radius: 8px;
    min-width: 0;
    flex-shrink: 0;
  }

  .btn-orange i {
    font-size: 0.55rem;
    margin-right: 0;
    /* Remove margin */
  }

  /* Location button - Hide on ultra-small */
  .location-btn {
    display: none;
  }

  /* Nav links - Hide on ultra-small */
  .nav-link-custom {
    display: none;
  }

  /* Flex container spacing */
  .d-flex.align-items-center {
    gap: 0;
    /* No gap */
  }

  .d-flex.align-items-center.gap-3 {
    gap: 0 !important;
    padding: 0 !important;
  }

  /* Mobile Menu - Ensure it's accessible */
  .mobile-menu-overlay {
    width: 75%;
    max-width: 280px;
  }

  /* Prevent any overflow */
  body {
    overflow-x: hidden;
  }

  /* Hero section should not have top margin */
  .hero-section {
    margin-top: 0;
    padding-top: 0;
  }

  /* Main content area */
  main {
    margin-top: 0;
  }

  section {
    margin-top: 0;
  }
}

/* ===== Small Screens: Below 425px ===== */
@media (max-width: 424px) {
  .top-bar {
    padding: 6px 0;
  }

  .top-bar .container-fluid {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .contact-info {
    gap: 0.5rem;
    flex: 1;
  }

  .contact-item {
    gap: 4px;
    font-size: 12px;
  }

  .contact-item i {
    font-size: 13px;
  }

  .social-links {
    gap: 0.5rem;
    flex: 1;
  }

  .social-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .divider {
    display: none;
  }

  .navbar-custom {
    padding: 6px 0;
  }

  .navbar-custom .container-fluid {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    gap: 0.5rem;
  }

  .navbar-brand {
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    min-width: fit-content;
  }

  .logo-img {
    height: 16px;
    width: auto;
  }

  .location-btn,
  .nav-link-custom {
    display: none;
  }

  .hamburger-menu {
    display: flex;
    padding: 0.25rem;
    margin: 0;
    flex-shrink: 0;
  }

  .hamburger-menu span {
    width: 18px;
    height: 2px;
    margin: 2px 0;
  }

  .btn-orange {
    flex-shrink: 0;
    padding: 0.5rem 0.75rem;
    font-size: 0.65rem;
    border-radius: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s;
  }

  .btn-orange i {
    font-size: 0.65rem;
    flex-shrink: 0;
  }
}

/* ===== Extra Small: 320px - 374px ===== */
@media (max-width: 374px) {
  .top-bar {
    padding: 4px 0;
  }

  .contact-item {
    font-size: 11px;
  }

  .contact-item i {
    font-size: 12px;
  }

  .social-icon {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .navbar-custom .container-fluid {
    min-height: 48px;
    gap: 0.25rem;
  }

  .logo-img {
    height: 14px;
  }

  .hamburger-menu {
    padding: 0.2rem;
  }

  .hamburger-menu span {
    width: 16px;
    height: 2.5px;
    margin: 1.5px 0;
  }

  .btn-orange {
    padding: 0.1rem 0.1rem;
    width: 120px;
    font-size: 0.2rem;
    border-radius: 20px;
    white-space: nowrap;
  }

  .btn-orange i {
    font-size: 0.6rem;
    margin-right: 0.2rem;
  }

  .small-btn {
    font-size: 12px !important;  Bootstrap */
    padding: 0.25rem 0.5rem;   
  }

  .small-btn i {
    font-size: 10px;            
  }
}

/* ===== Ultra Small: Below 320px ===== */
@media (max-width: 319px) {
  .top-bar {
    padding: 3px 0;
  }

  .top-bar .container-fluid {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .contact-info {
    gap: 0.25rem;
  }

  .contact-item {
    gap: 2px;
    font-size: 10px;
  }

  .contact-item i {
    font-size: 11px;
  }

  .social-links {
    gap: 0.25rem;
  }

  .social-icon {
    width: 22px;
    height: 22px;
    font-size: 10px;
  }

  .navbar-custom .container-fluid {
    min-height: 44px;
    gap: 0.2rem;
  }

  .logo-img {
    height: 12px;
  }

  .hamburger-menu {
    padding: 0.15rem;
  }

  .hamburger-menu span {
    width: 14px;
    height: 1.5px;
    margin: 1px 0;
  }

  .btn-orange {
    padding: 0.35rem;
    min-width: 32px;
    min-height: 32px;
    border-radius: 50%;
    font-size: 0;
  }

  .btn-orange i {
    font-size: 0.65rem;
  }
}

/* ===== Small Mobile: 375px - 424px ===== */
@media (min-width: 375px) and (max-width: 424px) {
  .navbar-custom .container-fluid {
    min-height: 50px;
  }

  .logo-img {
    height: 16px;
  }

  .hamburger-menu span {
    width: 18px;
    height: 2px;
    margin: 2px 0;
  }

  .btn-orange {
    padding: 0.5rem 0.75rem;
    font-size: 0.65rem;
    border-radius: 20px;
  }

  .btn-orange i {
    font-size: 0.65rem;
    margin-right: 0.2rem;
  }
}

/* ===== Tablet: 425px - 768px ===== */
@media (min-width: 425px) and (max-width: 768px) {
  .navbar-custom {
    padding: 8px 0;
  }

  .navbar-custom .container-fluid {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    min-height: 56px;
    gap: 1rem;
  }

  .logo-img {
    height: 18px;
  }

  .hamburger-menu {
    display: flex;
    padding: 0.5rem;
  }

  .hamburger-menu span {
    width: 20px;
    height: 2.5px;
    margin: 3px 0;
  }

  .btn-orange {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
  }

  .btn-orange i {
    font-size: 0.75rem;
    margin-right: 0.3rem;
  }
}

/* ===== Desktop: 769px+ ===== */
@media (min-width: 769px) {
  .hamburger-menu {
    display: none;
  }

  .mobile-menu-overlay,
  .mobile-menu-backdrop {
    display: none !important;
  }

  .navbar-custom .container-fluid {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    min-height: auto;
  }

  .logo-img {
    height: 20px;
  }

  .location-btn,
  .nav-link-custom {
    display: flex;
  }

  .btn-orange {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn-orange i {
    margin-right: 0.5rem;
  }
}

/* ===== Prevent overflow ===== */
body {
  overflow-x: hidden;
}

.navbar-custom {
  overflow: hidden;
}