/* Bütün bölmələr üçün ümumi container */ 
.section.container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  background: #fff; /* arxa fon ağ */
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  font-family: Arial, sans-serif;
}

/* Başlıqlar */
.section h2 {
  margin-bottom: 20px;
  color: #07c369;
}

/* Info Cards */
.info-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.info-card {
  flex: 1 1 150px;
  background: #f6f7f8;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.info-card i {
  font-size: 26px;
  color: #07c369;
  margin-bottom: 10px;
}

.info-card .value {
  font-weight: bold;
  font-size: 18px;
}

.info-card .label {
  font-size: 14px;
  color: #555;
}

/* Toggle Buttons */
.toggle-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.toggle-buttons button {
  flex: 1;
  padding: 12px 0;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.toggle-buttons button.active-toggle {
  background: #07c369;
  color: #fff;
  box-shadow: 0 4px 8px rgba(7,195,105,0.5);
}

/* Ticket info */
.ticket-info {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.ticket-info .highlight {
  background: #e6f9e8;
  border-left: 6px solid #07c369;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #07c369;
}

.ticket-info .price {
  font-weight: bold;
  font-size: 28px;
  color: #353333;
  margin-bottom: 10px;
}

.ticket-info .desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 8px;
}

.ticket-info .details {
  font-size: 14px;
  color: #777;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

thead tr {
  background: #f0f9f5;
  color: #07c369;
  font-weight: 700;
  text-align: left;
}

th, td {
  padding: 12px 10px;
}

tbody tr {
  border-top: 1px solid #eee;
  color: #353333;
  font-weight: 500;
}

/* Airport tabs */
.airport-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

.airport-tab {
  flex: 1;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
}

.airport-tab.active {
  background: #07c369;
  color: #fff;
  box-shadow: 0 4px 8px rgba(7,195,105,0.4);
}

.airport-tab:not(.active) {
  background: #f0f0f0;
  color: #07c369;
  box-shadow: none;
}

/* Airport content */
.airport-content {
  display: none;
}

.airport-content h3 {
  color: #07c369;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 16px;
}

.airport-content ul {
  color: #353333;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  margin-left: 20px;
}

/* FAQ */
.faq-section {
  margin: 40px auto;
  max-width: 900px;
}

.faq-section h2 {
  font-size: 28px;
  margin-bottom: 8px;
  color: #07C369;
}

.faq-subtitle {
  color: #666;
  margin-bottom: 30px;
  font-size: 16px;
}

.faq-item {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 12px;
  padding: 18px 22px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 30px;
  font-size: 16px;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 20px;
  color: #07C369;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 12px;
  line-height: 1.7;
  color: #444;
  font-size: 15px;
}
