/* Search Bar Section Styles */
.page-header.navbar .page-top {
  display: none !important;
}

.search-bar-section {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
}

.search-bar-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.search-input-wrapper {
  flex: 1;
  max-width: 600px;
  position: relative;
}

#searchInput {
  width: 100%;
  height: 50px;
  padding: 15px 25px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  background: #fff;
  color: #333;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  outline: none;
}

#searchInput:focus {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

#searchInput::placeholder {
  color: #999;
}

#searchButtonExternal {
  height: 50px;
  padding: 0 35px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #ff6b6b;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

#searchButtonExternal:hover {
  background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 107, 0.4);
}

#searchButtonExternal:active {
  transform: translateY(0);
}

#searchButtonExternal i {
  font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .search-bar-section {
    padding: 15px 0;
  }

  .search-bar-container {
    flex-direction: column;
    gap: 12px;
  }

  .search-input-wrapper {
    width: 100%;
    max-width: 100%;
  }

  #searchInput {
    height: 45px;
    font-size: 15px;
    padding: 12px 20px;
  }

  #searchButtonExternal {
    width: 100%;
    height: 45px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  #searchInput {
    height: 42px;
    font-size: 14px;
    padding: 10px 18px;
  }

  #searchButtonExternal {
    height: 42px;
    padding: 0 25px;
    font-size: 15px;
  }
}
