/* Day Trips Specific Styles */
body {
  background: linear-gradient(135deg, #000814 0%, #001d3d 100%);
  color: #fff;
  font-family: 'Exo 2', sans-serif;
}

.day-trips-section {
  padding-top: 130px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.day-trips-section h1 {
  color: #00b4d8;
  font-size: 3.2em;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 15px rgba(0, 180, 216, 0.5);
}

.subtitle {
  color: #90e0ef;
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.trip-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin: 60px 20px;
}

.trip-card {
  background: linear-gradient(145deg, rgba(0, 29, 61, 0.8) 0%, rgba(0, 53, 102, 0.8) 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 180, 216, 0.3);

  display: flex;
  flex-direction: column;
}

.trip-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 180, 216, 0.4);
}

.trip-image {
  height: 220px;
  overflow: hidden;
}

.trip-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.trip-card:hover .trip-image img {
  transform: scale(1.05);
}

.trip-content {
  padding: 25px;
  text-align: left;
}

.trip-content h2 {
  color: #90e0ef;
  font-size: 1.8em;
  margin-bottom: 15px;
  border-bottom: 2px solid #00b4d8;
  padding-bottom: 10px;
}

.trip-content p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 20px;
}

.trip-highlights {
  background: rgba(0, 180, 216, 0.1);
  padding: 15px;
  border-radius: 8px;
  margin: 20px 0;
}

.trip-highlights h3 {
  color: #00b4d8;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.trip-highlights ul {
  list-style-type: none;
  padding-left: 0;
}

.trip-highlights li {
  color: #90e0ef;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.trip-highlights li:before {
  content: "✓";
  color: #00b4d8;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.price-tag {
  display: inline-block;
  background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.3em;
  margin-top: 15px;
  box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

.media-gallery {
  margin: 80px 0;
  padding: 0 20px;
}

.media-gallery h2 {
  color: #00b4d8;
  font-size: 2.5em;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.media-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.media-item {
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.media-item:hover {
  transform: scale(1.03);
}

.media-item img, .media-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.media-item:hover .media-overlay {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .day-trips-section {
    padding-top: 100px;
  }
  
  .day-trips-section h1 {
    font-size: 2.5em;
  }
  
  .trip-cards {
    grid-template-columns: 1fr;
    margin: 40px 15px;
    gap: 30px;
  }
  
  .media-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

.trip-content {
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.trip-content p {
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* FOOTER */
.trip-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  flex-wrap: wrap;
}

/* BUTTON GROUP */
.trip-buttons {
  display: flex;
  gap: 10px;
}

/* BUTTON BASE */
.trip-buttons a {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 0.9em;
  letter-spacing: 0.5px;
  text-align: center;
}

/* DETAILS BUTTON */
.trip-details-btn {
  background: rgba(255,255,255,0.08);
  color: #90e0ef;
  border: 1px solid rgba(144, 224, 239, 0.4);
  backdrop-filter: blur(4px);
}

.trip-details-btn:hover {
  background: rgba(144, 224, 239, 0.15);
  border-color: #90e0ef;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(144, 224, 239, 0.2);
}

/* BOOK BUTTON */
.trip-book-btn {
  background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

.trip-book-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 180, 216, 0.45);
  background: linear-gradient(135deg, #00c6f0 0%, #0088cc 100%);
}

/* PRICE IMPROVEMENT */
.price-tag {
  display: inline-block;
  background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
  color: white;
  padding: 12px 22px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.15em;
  box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
  margin-top: 0;
}

/* MOBILE */
@media (max-width: 600px) {

  .trip-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .trip-buttons {
    width: 100%;
  }

  .trip-buttons a {
    flex: 1;
  }

  .price-tag {
    text-align: center;
    box-sizing: border-box;
    width: 100%;
  }
}