  .restaurant-modal {
  backdrop-filter: blur(4px);
}


  .restaurant-modal .modal-container {
    max-width: 61%;
    max-height: 90vh;
    overflow-y: auto;
    margin: 0 auto;
    scrollbar-width: none;
    /* Firefox */
  }

  /* Chrome / Safari / Edge */
  .restaurant-modal .modal-container::-webkit-scrollbar {
  
    display: none;
  }

  .restaurant-modal .modal-image {
    width: 100%;
    height: 45vh;
    object-fit: cover;
    border-top-right-radius: 1rem;
  }


  @keyframes openModalSlideUpnimation {
    from {
      opacity: 0;
      transform: translateY(50px) scale(0.95);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .restaurant-modal .animate-modal {
    animation: openModalSlideUpnimation 0.3s ease-out;
  }

  /* Custom Scrollbar */
  /* .restaurant-modal .modal-container::-webkit-scrollbar {
    width: 8px;
  } */

  .restaurant-modal .modal-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }

  .restaurant-modal .modal-container::-webkit-scrollbar-thumb {
    background: #fb923c;
    border-radius: 10px;
  }

  .restaurant-modal .modal-container::-webkit-scrollbar-thumb:hover {
    background: #f97316;
  }



   .restaurant-modal .modalBades {
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 6px;
    padding-right: 8px;

  }

  .restaurant-modal .textMenu {
    font-size: 10px;
    line-height: 1rem;
  }

  

  /* For tablets and smaller screens */
  @media (max-width: 768px) {
    .restaurant-modal .modal-image {
      height: 40vh;
      /* Adjust height for smaller screens */
    }

    .restaurant-modal .modal-container {
      max-width: 80%;
      /* Increase modal width for better fit on smaller screens */
    }
  }

  /* For mobile screens */
  @media (max-width: 480px) {
    .restaurant-modal .modal-image {
      height: 35vh;
      /* Adjust height even further for very small screens */
    }

    .restaurant-modal .modal-container {
      max-width: 90%;
      /* Further increase width on mobile */
    }
  }


/*===================================================================================================== */

    /* Dropdown Styles */
  .city-dropdown-item #city-dropdown {
    position: absolute;
    z-index: 50;
    width: 100%;
    max-height: 320px;
    overflow-y: auto;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-top: 0.5rem;
    border: 1px solid #e5e7eb;
  }

  .city-dropdown-item #city-dropdown::-webkit-scrollbar {
    width: 6px;
  }

  .city-dropdown-item #city-dropdown::-webkit-scrollbar-track {
    background: #f9fafb;
    border-radius: 10px;
  }

  .city-dropdown-item #city-dropdown::-webkit-scrollbar-thumb {
    background: #fb923c;
    border-radius: 10px;
  }

  .city-dropdown-item #city-dropdown::-webkit-scrollbar-thumb:hover {
    background: #f97316;
  }

  /* Active Item Highlight */
  .city-dropdown-item.city-item.active-item>div {
    background-color: #fff7ed !important;
    border-left: 3px solid #fb923c;
  }

  .city-dropdown-item .city-item.active-item p {
    color: #fb923c !important;
  }

  .city-dropdown-item .city-item.active-item svg:last-child {
    opacity: 1 !important;
    color: #fb923c !important;
  }

  /* Loading Animation */
  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  .city-dropdown-item.animate-spin {
    animation: spin 1s linear infinite;
  }

  /* Smooth Transitions */
  .city-dropdown-item #city-dropdown li {
    transition: all 0.2s ease;
  }

  /* Focus Styles */
  .city-dropdown-item #searchInput:focus {
    outline: none;
    border-color: #fb923c;
    box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.1);
  }

/*===================================================================================================== */


    .restaurant-cards-badges {
    padding-top: 5px;
    padding-bottom: 4px;
    padding-left: 6px;
    padding-right: 12px;
    font-size: 9px;
    font-weight: 700;
  }


/*===================================================================================================== */




.hero-section {
  background: #FF6D1F; /* orange */
 
  position: relative;
  overflow: hidden;
}


/* =====================================================HEader */


    body { font-family: 'Inter', sans-serif; }
    .header-blur { backdrop-filter: blur(12px); }
    .nav-link { position: relative; }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 2px;
      background: #f97316;
      transform: translateX(-50%);
      transition: width 0.3s ease;
    }
    .nav-link:hover::after { width: 80%; }
    .nav-link.active { color: #f97316; font-weight: 600; }
    .nav-link.active::after { width: 80%; }
    .mobile-menu-enter {
      animation: slideIn 0.3s ease-out forwards;
    }
    .mobile-menu-exit {
      animation: slideOut 0.3s ease-out forwards;
    }
    @keyframes slideIn {
      from { transform: translateX(-100%); }
      to { transform: translateX(0); }
    }
    @keyframes slideOut {
      from { transform: translateX(0); }
      to { transform: translateX(-100%); }
    }
    .modal-show {
      display: flex !important;
      animation: fadeIn 0.2s ease-out;
    }
    .modal-show #modalContent {
      animation: scaleIn 0.3s ease-out forwards;
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    @keyframes scaleIn {
      from { transform: scale(0.9); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }
    .btn-primary {
      background: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
      transition: all 0.3s ease;
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(220, 38, 38, 0.3);
    }


/* this for dropdown height  */



  @media (max-width: 600px) {
    .g-recaptcha {
      transform: scale(0.8);
      transform-origin: 0 0;
    }
  }

/*  */


/*=========================================================16 jan 2026====================================================================== */

  @keyframes fadeInData {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-fadeIn {
    animation: fadeInData 0.25s ease-out;
  }


  /* ============================================================== */


/*========================================================================================== */



  .cinematic-overlay {
    background:
      radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%),
      linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  }

  /* Minimal fade in */
  .fade-in {
    animation: fadeInValue 1.2s ease-out backwards;
  }

  @keyframes fadeInValue {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .delay-100 {
    animation-delay: 0.1s;
  }

  .delay-200 {
    animation-delay: 0.2s;
  }

  .delay-300 {
    animation-delay: 0.3s;
  }

  /* Elegant underline effect */
  .elegant-underline {
    position: relative;
    display: inline-block;
  }

  .elegant-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    animation: expandLine 1.5s ease-out 0.5s forwards;
  }

  @keyframes expandLine {
    to {
      width: 100%;
    }
  }

  /* Ultra-modern frosted card */
  .frosted-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
      0 25px 50px -12px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  /* Search wrapper positioning */
  .search-wrapper {
    position: relative;
  }

  /* Smooth input transition */
  .sleek-input {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .sleek-input:focus {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }

  /* Dropdown suggestions */
  .suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;

    z-index: 9999;
    display: none;
    /* NEW FIX — LEFT ALIGN ALL TEXT */
    text-align: left !important;
  }

  .suggestions-dropdown.active {
    max-height: 300px;
    opacity: 1;
    display: block;
    /* ✅ transition ONLY when active */
    transition: max-height 0.3s ease, opacity 0.2s ease;
  }

  .suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;

    /* NEW FIX — LEFT ALIGN */
    text-align: left !important;
    justify-content: flex-start;
  }

  /* Also force text inside the inner div to align left */
  .suggestion-item div {
    text-align: left !important;
  }

  .suggestion-item:last-child {
    border-bottom: none;
  }

  .suggestion-item:hover {
    background: rgba(255, 215, 0, 0.15);
    padding-left: 20px;
  }

  .suggestion-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }

  /* Premium button design */
  .premium-btn {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }

  .premium-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0.75rem;
    padding: 2px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .premium-btn:hover::before {
    opacity: 1;
  }

  .premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  }

  /* Particle effect */
  .particle-bg::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow:
      100px 200px 0 rgba(255, 255, 255, 0.2),
      300px 100px 0 rgba(255, 255, 255, 0.3),
      500px 300px 0 rgba(255, 255, 255, 0.2),
      700px 150px 0 rgba(255, 255, 255, 0.3),
      900px 250px 0 rgba(255, 255, 255, 0.2),
      200px 400px 0 rgba(255, 255, 255, 0.3),
      600px 450px 0 rgba(255, 255, 255, 0.2),
      800px 350px 0 rgba(255, 255, 255, 0.3);
    animation: sparkle 3s ease-in-out infinite;
  }

  @keyframes sparkle {

    0%,
    100% {
      opacity: 0.3;
    }

    50% {
      opacity: 1;
    }
  }

  @media (max-width: 600px) {
    .g-recaptcha {
      transform: scale(0.8);
      transform-origin: 0 0;
    }
  }


  .hero-margin {
    margin-top: 12px;
  }

  /* Desktop (lg) par margin top hide */
  @media (min-width: 1024px) {
    .hero-margin {
      margin-top: 35px;
    }
  }

  /*===============================================================================================*/

   /*======================================================================*/

   /* Ensure flex context */
  .hero-container {
    display: flex;
    flex-direction: column;
  }

  /* MOBILE (default) */
  .hero-search {
    order: 1;
    /* top */
  }

  .hero-text {
    order: 2;
    /* bottom */
  }

  /* DESKTOP FORCE */
  @media (min-width: 1024px) {
    .hero-search {
      order: 2;
      /* bottom */
    }

    .hero-text {
      order: 1;
      /* top */
    }
  }

/*======================================================================*/

/* Modal overflow control */
#announcement-v2 {
  overflow: visible;
}

/* Captcha wrapper */
.captcha-wrapper {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* reCAPTCHA scale down */
.captcha-wrapper .g-recaptcha {
  transform: scale(0.72);
  transform-origin: center top;
}

@media (max-width: 480px) {
  .captcha-wrapper .g-recaptcha {
    transform: scale(0.62);
  }
}




