 body {
      background-color: #f9f9fb;
      font-family: 'Vazirmatn', Tahoma, sans-serif;
      color: #333;
          position: relative;

    }
    header {
      text-align: center;
      margin-bottom: 1rem;
      background-color: #fff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
     .alert-banner {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 0 0 16px 16px;
    text-align: center;
    font-size: 1.1rem;
  }

  .date-fields-container {
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    pointer-events: none; /* اگر نمی‌خوای کاربر بتونه تغییر بده */
  }

  .date-field {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.12);
    padding: 10px 15px;
    min-width: 140px;
    font-family: 'Vazir', Tahoma, sans-serif;
    text-align: center;
  }

  .date-field label {
    display: block;
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 6px;
    font-weight: 600;
  }

  .date-field input {
    border: none;
    background: transparent;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    pointer-events: none; /* غیرقابل ویرایش */
    width: 100%;
  }

  /* ریسپانسیو */
  @media (max-width: 576px) {
    .date-fields-container {
      flex-direction: column;
      bottom: 5px;
      left: 10px;
      right: 10px;
    }
    .date-field {
      min-width: auto;
      margin-bottom: 10px;
    }
  }
    .content-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      padding: 20px;
    }
    .left-panel {
      flex-basis: 20%;
      background-color: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      text-align: center;
    }
    .right-panel {
      flex-basis: 70%;
      background-color: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
   .carousel-item {
  position: relative;
  text-align: center;
}

.carousel-item img {
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  max-height: 400px;
  object-fit: cover;
  width: 70%;
  transition: transform 0.5s ease;
}

.carousel-item img:hover {
  transform: scale(1.02);
}

.carousel-caption-custom {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 15px;
  font-weight: bold;
  font-size: 1.1rem;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  direction: rtl;
}
    .trip-card .card {
      background: linear-gradient(to bottom, #fff, #fdfdfd);
      border: 2px solid gold;
      border-radius: 12px;
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .trip-card .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }
    .trip-card .card-body i {
      color: #ffc107;
      margin-left: 6px;
    }
    .btn {
      transition: all 0.3s ease;
    }
    .btn:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .alert-banner {
      background: linear-gradient(90deg, #ffd700, #ffffff);
      color: #333;
      text-align: center;
      padding: 12px;
      font-weight: bold;
      margin-bottom: 20px;
      border-radius: 0 0 16px 16px;
    }
    .notification-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, #ffd700, #ffec8b);
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.6);
    padding: 15px 25px;
    z-index: 1050;
    font-family: 'Vazir', Tahoma, sans-serif;
    color: #222;
    display: flex;
    align-items: center;
    gap: 20px;
    animation-duration: 0.6s;
  }
  .notification-image {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notification-image img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  display: block;
  object-fit: unset; /* عکس بریده نمی‌شود */
}


  .notification-text {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .notification-title {
    margin: 0;
    font-size: 1.3rem;
    color: #007bff; /* آبی روشن */
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  }

  .notification-description {
    margin: 0;
    font-size: 1rem;
    color: #444;
    line-height: 1.4;
  }

  .notification-date {
    align-self: flex-end;
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
    font-style: italic;
  }

  .notification-close {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0 8px;
    line-height: 1;
    flex-shrink: 0;
  }

  .notification-close:hover {
    color: #007bff;
  }

  /* واکنش‌گرایی */
  @media (max-width: 576px) {
    .notification-banner {
      flex-direction: column;
      align-items: flex-start;
      gap: 12px;
      padding: 15px 15px;
    }
    .notification-image img {
      width: 50px;
      height: 50px;
    }
    .notification-date {
      align-self: flex-start;
      font-size: 0.8rem;
    }
  }
  
  
  
  .news-card {
    display: flex;
    background: linear-gradient(135deg, #fffefa, #f0f8ff);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.1);
    padding: 15px 20px;
    gap: 15px;
    font-family: 'Vazir', Tahoma, sans-serif;
    max-width: 700px;
    margin: 20px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(33, 150, 243, 0.2);
  }

  .news-image img {
    width: 160px;
    height: 110px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    flex-shrink: 0;
  }

  .news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .news-title {
    margin: 0 0 8px 0;
    color: #007bff;
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
  }

  .news-summary {
    color: #444;
    font-size: 1rem;
    line-height: 1.5;
    flex-grow: 1;
  }

  .news-footer {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .news-date {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
  }

  .news-readmore {
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .news-readmore:hover {
    background-color: #007bff;
    color: #fff;
  }

  /* ریسپانسیو */
  @media (max-width: 600px) {
    .news-card {
      flex-direction: column;
      max-width: 100%;
    }
    .news-image img {
      width: 100%;
      height: 180px;
      margin-bottom: 12px;
    }
  }
  
   .comments-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Vazir', Tahoma, sans-serif;
    background: #fefefe;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.1);
  }
  .comments-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 30px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
  }
  .comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .comment-card {
    display: flex;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #ffffff, #f0f8ff);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  .comment-card:hover {
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    transform: translateY(-6px);
  }
  .comment-icon {
    color: #007bff;
    font-size: 2rem;
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 5px;
  }
  .comment-content {
    flex-grow: 1;
  }
  .comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  .comment-user {
    font-weight: 700;
    color: #004085;
    font-size: 1.1rem;
  }
  .comment-date {
    font-size: 0.85rem;
    color: #6c757d;
    font-style: italic;
  }
  .comment-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
  }

  /* ریسپانسیو */
  @media (max-width: 600px) {
    .comment-card {
      flex-direction: column;
    }
    .comment-icon {
      margin-bottom: 10px;
    }
    .comment-header {
      flex-direction: column;
      gap: 6px;
    }
  }
  
  
  
   .trip-status-filter {
    max-width: 900px;
    margin: 0 auto;
    padding: 15px 20px;
    background: linear-gradient(145deg, #fefefe, #e8f0fe);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(33, 150, 243, 0.15);
  }
  .status-btn {
    background: linear-gradient(135deg, #ffffff, #d9e8ff);
    border: 2px solid #2196f3;
    border-radius: 14px;
    padding: 12px 25px;
    font-size: 1.1rem;
    color: #1565c0;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(21, 101, 192, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 
      background 0.3s ease, 
      color 0.3s ease, 
      box-shadow 0.3s ease,
      transform 0.3s ease;
    user-select: none;
  }
  .status-btn i {
    font-size: 1.5rem;
  }
  .status-btn:hover,
  .status-btn.active {
    background: #2196f3;
    color: #fff;
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.5);
    transform: translateY(-4px);
  }
  .status-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.6);
  }

  /* ریسپانسیو */
  @media (max-width: 480px) {
    .status-btn {
      flex: 1 1 100%;
      justify-content: center;
      font-size: 1rem;
      padding: 12px 15px;
    }
  }
  
  .comment-form-section {
    background: linear-gradient(145deg, #f9fbff, #e4efff);
    box-shadow:  5px 5px 15px #c1c9d8,
                -5px -5px 15px #ffffff;
  }
  .btn-primary:hover {
    background-color: #0056b3 !important;
  }
  /* جهت راست‌چین بودن فرم */
  #commentForm label, 
  #commentForm input, 
  #commentForm textarea, 
  #commentForm button {
    direction: rtl;
  }
  
  
  
   .album-section {
    font-family: 'Vazir', Tahoma, sans-serif;
  }
  .album-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #e6f0ff);
    box-shadow:
      5px 5px 10px #b8c6ff,
      -5px -5px 10px #ffffff;
  }
  .album-card:hover {
    transform: scale(1.05);
    box-shadow:
      8px 8px 20px #9bb7ff,
      -8px -8px 20px #ffffff;
  }
  .album-img-wrapper img {
    border-radius: 20px 20px 0 0;
    object-fit: cover;
    height: 180px;
    width: 100%;
  }
  .album-info {
    border-radius: 0 0 20px 20px;
  }
  .album-title {
    color: #2a3fbb;
  }
  .news-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 26px #c6e0ff25;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow .3s;
}
.news-card:hover {
    box-shadow: 0 10px 36px #409fff16;
}
.news-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}
.news-content {
    padding: 18px 14px 14px 14px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
.news-title {
    font-size: 1.08rem;
    margin-bottom: 8px;
    font-weight: 700;
}
.news-summary {
    color: #577;
    margin-bottom: 11px;
    flex: 1 1 auto;
}
.news-footer {
    font-size: .98rem;
    color: #29a;
    margin-top: auto;
}
.news-readmore {
    margin-right: 10px;
}
.bus-btn-3d {
  font-family: Vazirmatn, sans-serif;
  border-radius: 1.7rem;
  font-size: 1.35rem;
  background: linear-gradient(98deg, #15df91 35%, #08be77 100%);
  border: none !important;
  box-shadow:
    0 3.5px 18px 0 rgba(32, 125, 55, 0.13),
    0 5.5px 0 0 #1ec786cc,
    0 13px 36px -6px #54ebc290;
  transition: 
    transform .13s cubic-bezier(.38, 1.49, .55, 1),
    box-shadow .13s,
    background .17s;
  color: #fff !important;
  text-shadow: 0 2px 8px #0b664c55;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  outline: none !important;
}
.bus-btn-3d .bi-bus-front {
  filter: drop-shadow(0 2px 2px #0b824133);
  color: #fffbe1;
}
.bus-btn-3d:hover, .bus-btn-3d:focus {
  background: linear-gradient(98deg, #35ffb9 0%, #1de894 100%);
  transform: translateY(-1.6px) scale(1.055);
  box-shadow:
    0 6px 28px 0 #57ecadb3,
    0 9px 0 0 #2ef9a0cc,
    0 18px 56px -12px #54ebc290;
}
.bus-btn-3d:active {
  background: linear-gradient(90deg,#19e092,#07a269 95%);
  transform: scale(.97) translateY(2.6px);
  box-shadow:
    0 2px 8px 0 #27bc8e66,
    0 2px 0 0 #10b88999;
}
  
  .news-cover {
  border: 2px solid #007bff;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(0,65,115,0.08);
  margin-bottom: 2rem;
}
.news-title {
  font-weight: bold;
  color: #0a2768;
  font-family: Vazirmatn,Tahoma,sans-serif;
  line-height: 1.4;
}
.news-summary {
  color: #434d5c;
  font-family: Vazirmatn,Tahoma,sans-serif;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.last-news-item:last-child {
  border-bottom: none !important;
}
.status-btn.btn-visit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
    background: #f9fbfd;
    border-radius: 20px;
    border: 2px solid #cce0ff;
    padding: 18px 20px 12px 20px;
    box-shadow: 0 2px 12px #eaf5ff85;
    font-size: 15.5px;
    transition: box-shadow .2s;
    margin-bottom: 0;
    user-select: none;
}
.status-btn.btn-visit i {
    font-size: 2rem;
    margin-bottom: 6px;
    margin-top: 0;
}
.status-btn.btn-visit .visit-count {
    font-size: 21px;
    margin-top: 2px;
    color: #1976d2; /* رنگ دلخواه عددها */
}
@media (max-width:560px) {
    .status-btn.btn-visit {min-width:96px; font-size:14px;}
    .status-btn.btn-visit i {font-size:1.4rem;}
    .status-btn.btn-visit .visit-count {font-size:16px;}
}
