/* Top Bars Section */
.top-bars-section {
    padding: 60px 20px;

    color: #fff;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 20px;
  }
  
  .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #dcdcdc;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  .bars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .bar-card {
    display: flex;
    flex-direction: column;
    background-color: #292929;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .bar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.8);
  }
  
  .bar-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
  
  .bar-content {
    padding: 20px;
  }
  
  .bar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffa500;
    margin-bottom: 10px;
  }
  
  .bar-location {
    font-size: 1rem;
    color: #dcdcdc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .bar-features {
    font-size: 0.9rem;
    color: #dcdcdc;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .bar-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 15px;
    font-size: 1rem;
    color: #fff;
    background-color: #4caf50;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .bar-btn:hover {
    background-color: #3d8b3e;
  }
  
  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
  }
  
  .modal-content {
    background-color: #292929;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    color: #fff;
    position: relative;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
  }
  
  .modal h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #ffa500;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    font-size: 1rem;
    color: #dcdcdc;
    margin-bottom: 5px;
  }
  
  .form-group input,
  .form-group select {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    color: #000;
    border-radius: 5px;
    border: none;
    margin-bottom: 10px;
  }
  
  .submit-btn {
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
  }
  
  .submit-btn:hover {
    background-color: #3d8b3e;
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    .bars-grid {
      grid-template-columns: 1fr;
    }
  
    .bar-card {
      margin-bottom: 20px;
    }
  }
  


  .special-section {
    padding: 60px 20px;
    background-color: #141414;
    color: #fff;
  }
  
  .special-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  
  .special-image-container {
    flex: 1;
    text-align: center;
  }
  
  .special-image {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
  }
  
  .special-content {
    flex: 1;
    text-align: left;
  }
  
  .special-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 20px;
  }
  
  .special-description {
    font-size: 1.2rem;
    color: #dcdcdc;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .special-list {
    list-style-type: none;
    padding: 0;
  }
  
  .special-list li {
    font-size: 1rem;
    color: #ffc107;
    margin-bottom: 10px;
    position: relative;
  }
  
  .special-list li::before {
    content: "•";
    color: #ffc107;
    position: absolute;
    left: -20px;
  }
  
  @media (max-width: 768px) {
    .special-wrapper {
      flex-direction: column;
      text-align: center;
    }
  
    .special-image-container {
      margin-bottom: 20px;
    }
  
    .special-content {
      text-align: center;
    }
  }
  