@keyframes float {
  0% { transform: translateX(-100px) translateY(-100px); }
  100% { transform: translateX(100px) translateY(100px); }
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.restaurant-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.restaurant-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.restaurant-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media (max-width: 768px) {
  section h2 {
    font-size: 2rem !important;
  }
  section h3 {
    font-size: 1.5rem !important;
  }
  .carousel-item p {
    font-size: 1rem !important;
  }
}
/* Hero Section Styles - Unique classes to avoid conflicts */
.cr-hero-container {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.cr-hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.cr-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cr-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cr-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.cr-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 10fvh;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

.cr-hero-title {
  color: white;
  font-weight: 800;
  font-size: 3.5rem;
  margin-bottom: 20px;
  margin-top: 0;
}

.cr-hero-subtitle {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 40px;
  max-width: 700px;
}

/* Search Form Styles */
.cr-search-form-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
}

.cr-search-form {
  background: white;
  border-radius: 15px;
  padding: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cr-search-input-group {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.cr-search-field {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 20px;
  min-height: 70px;
}

.cr-destination-field {
  border-right: 1px solid #e0e0e0;
}

.cr-search-label {
  font-size: 11px;
  font-weight: 600;
  color: #FC3323;
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
  text-align: left;
}

.cr-search-input {
  border: none;
  outline: none;
  font-size: 16px;
  color: #2c3e50;
  font-weight: 500;
  background: transparent;
  width: 100%;
  padding: 0;
}

.cr-search-input::placeholder {
  color: #999;
  font-weight: 400;
}

.cr-search-btn {
  background: #000;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 0 35px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cr-search-btn:hover {
  background: #FC3323;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(252, 51, 35, 0.3);
}

/* Suggestions Dropdown */
.cr-suggestions-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  margin-top: 8px;
  display: none;
  text-align: left;
}

.cr-suggestions-dropdown.active {
  display: block;
}

.cr-suggestion-item {
  padding: 12px 20px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}

.cr-suggestion-item:hover {
  background: #f8f9fa;
}

.cr-suggestion-item:last-child {
  border-bottom: none;
  text-align: left;
}

.cr-suggestion-city {
  font-weight: 600;
  color: #2c3e50;
  display: block;
}

.cr-suggestion-country {
  font-size: 0.85rem;
  color: #6c757d;
  display: block;
}

.cr-no-results {
  padding: 20px;
  text-align: center;
  color: #6c757d;
}

/* Restaurant Owner CTA */
.cr-owner-cta {
  margin-top: 30px;
  text-align: center;
}

.cr-owner-text {
  color: white;
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.cr-owner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #2c3e50;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.cr-owner-btn:hover {
  background: transparent;
  color: white;
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cr-hero-title {
    font-size: 2rem;
  }
  
  .cr-hero-subtitle {
    font-size: 1rem;
  }
  
  .cr-search-input-group {
    flex-direction: column;
  }
  
  .cr-destination-field {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .cr-search-btn {
    padding: 18px 20px;
    width: 100%;
  }
  
  .cr-search-field {
    min-height: 60px;
  }
}

@media (max-width: 576px) {
  .cr-hero-content {
    padding-top: 60px;
  }
  
  .cr-hero-title {
    font-size: 1.5rem;
  }
  
  .cr-search-form {
    padding: 6px;
  }
}
/* Country Selector Field */
.cr-country-field {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 20px;
  min-height: 70px;
  min-width: 200px;
}

.cr-country-select {
  border: none;
  outline: none;
  font-size: 16px;
  color: #2c3e50;
  font-weight: 500;
  background: transparent;
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232c3e50' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 20px;
}


/* Update search input group for 3 columns */
.cr-search-input-group {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.cr-country-field {
  border-right: 1px solid #e0e0e0;
  flex: 0 0 auto;
}

.cr-destination-field {
  flex: 1;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
  .cr-search-input-group {
    flex-direction: column;
  }
  
  .cr-country-field {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
    min-width: 100%;
  }
  
  .cr-destination-field {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .cr-search-btn {
    padding: 18px 20px;
    width: 100%;
  }
  
  .cr-search-field {
    min-height: 60px;
  }
}
/* Custom Select Styling */
.cr-custom-select {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.cr-select-selected {
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  color: #2c3e50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cr-select-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
  color: #6c757d;
}

.cr-custom-select.active .cr-select-arrow {
  transform: rotate(180deg);
}

.cr-select-items {
  position: absolute;
  top: calc(100% + 8px);
  left: -20px;
  right: -20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  max-height: 350px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  animation: crDropdownSlide 0.3s ease;
}

@keyframes crDropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cr-select-items.active {
  display: block;
}

.cr-select-item {
  padding: 12px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 15px;
  color: #2c3e50;
  border-bottom: 1px solid #f0f0f0;
}

.cr-select-item:first-child {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.cr-select-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.cr-select-item:hover {
  background: #f8f9fa;
  padding-left: 25px;
}

.cr-select-item.cr-selected {
  background: #FC3323;
  color: white;
  font-weight: 600;
}

.cr-select-item.cr-selected:hover {
  background: #e02d1d;
  padding-left: 25px;
}

/* Custom scrollbar for dropdown */
.cr-select-items::-webkit-scrollbar {
  width: 6px;
}

.cr-select-items::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.cr-select-items::-webkit-scrollbar-thumb {
  background: #FC3323;
  border-radius: 10px;
}

.cr-select-items::-webkit-scrollbar-thumb:hover {
  background: #e02d1d;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .cr-select-items {
    max-height: 250px;
  }
}


