/* ===== SHUTTLE PAGE ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  color: #1f488a;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #1f488a, transparent);
  border-radius: 2px;
}

.section-header p {
  color: #888;
  font-size: 16px;
  margin-top: 18px;
}

/* ===== SHUTTLE INTRO ===== */
.shuttle-intro {
  padding: 80px 0;
  background: #fff;
}

.shuttle-intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.shuttle-intro-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: 12px;
  background: #f8fafc;
  transition: transform 0.3s, box-shadow 0.3s;
}

.shuttle-intro-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(31, 72, 138, 0.12);
}

.intro-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #1f488a, #2d5aa0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}

.shuttle-intro-item h3 {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.shuttle-intro-item p {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== SHUTTLE ROUTES ===== */
.shuttle-routes {
  padding: 80px 0;
  background: #f5f7fa;
}

.routes-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.route-tab {
  padding: 12px 28px;
  border: 2px solid #e0e5ec;
  background: #fff;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s;
}

.route-tab:hover {
  border-color: #1f488a;
  color: #1f488a;
}

.route-tab.active {
  background: #1f488a;
  border-color: #1f488a;
  color: #fff;
}

.route-content {
  display: none;
}

.route-content.active {
  display: block;
}

.route-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 24px 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}

.map-placeholder {
  background: #e8edf4;
  border-radius: 12px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.map-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-placeholder-text {
  color: #999;
  font-size: 16px;
}

.route-info h4 {
  color: #1f488a;
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e8edf4;
}

.route-stops {
  list-style: none;
}

.route-stops li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #e8edf4;
}

.route-stops li:last-child {
  border-bottom: none;
}

.stop-num {
  width: 28px;
  height: 28px;
  background: #1f488a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  margin-right: 14px;
  flex-shrink: 0;
}

.stop-name {
  flex: 1;
  color: #333;
  font-weight: 500;
}

.stop-time {
  color: #1f488a;
  font-size: 14px;
  font-weight: 600;
}

.route-timetable {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.route-timetable h4 {
  color: #1f488a;
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e8edf4;
}

.timetable-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.timetable-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #f5f7fa;
  border-radius: 10px;
  border-left: 4px solid #1f488a;
}

.t-label {
  background: #1f488a;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

.t-time {
  color: #555;
  font-size: 15px;
  font-weight: 500;
}

/* ===== BOOKING ===== */
.shuttle-booking {
  padding: 80px 0;
  background: #fff;
}

.booking-form {
  max-width: 800px;
  margin: 0 auto;
  background: #f8fafc;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e0e5ec;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  background: #fff;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1f488a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.btn-primary,
.btn-secondary {
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: #1f488a;
  color: #fff;
  border: 2px solid #1f488a;
}

.btn-primary:hover {
  background: #16407a;
  border-color: #16407a;
}

.btn-secondary {
  background: #fff;
  color: #666;
  border: 2px solid #ddd;
}

.btn-secondary:hover {
  border-color: #1f488a;
  color: #1f488a;
}

/* ===== NOTICE ===== */
.shuttle-notice {
  padding: 80px 0;
  background: #f5f7fa;
}

.notice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.notice-item {
  display: flex;
  gap: 16px;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s;
}

.notice-item:hover {
  transform: translateY(-3px);
}

.notice-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1f488a, #2d5aa0);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notice-text h4 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.notice-text p {
  color: #888;
  font-size: 14px;
  line-height: 1.6;
}

/* ===== CONTACT ===== */
.shuttle-contact {
  padding: 60px 0;
  background: linear-gradient(135deg, #1f488a, #2d5aa0);
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-phone {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-time {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.contact-actions {
  display: flex;
  gap: 16px;
}

.btn-contact-phone,
.btn-contact-book {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-contact-phone {
  background: #fff;
  color: #1f488a;
}

.btn-contact-phone:hover {
  background: #f0f4ff;
  transform: translateY(-2px);
}

.btn-contact-book {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-contact-book:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-contact-phone img,
.btn-contact-book img {
  width: 20px;
  height: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .shuttle-intro{
    padding: 30px 0;
  }
  
  .shuttle-intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .route-map {
    grid-template-columns: 1fr;
  }
  
  .route-timetable {
    margin-top: 0;
  }
  
  .timetable-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .notice-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 24px;
  }
  
  .contact-phone {
    font-size: 28px;
  }
  
  .contact-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-contact-phone,
  .btn-contact-book {
    justify-content: center;
  }
  
  .booking-form {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .shuttle-intro-grid {
    grid-template-columns: 1fr;
  }
  
  .route-tab {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .timetable-grid {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}
