/* Airport Transfer — kamanatravels.com/airport-transfer-rewa */
.airport-page {
  font-family: var(--sans), "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

.airport-page .ap-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Alert */
.airport-page .ap-alert {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: #fff;
  padding: 0.9rem 1.25rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
  animation: ap-pulse 2s infinite;
}

@keyframes ap-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

/* Hero */
.airport-page .ap-hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 50%, #004085 100%);
  color: #fff;
  padding: 6.5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.airport-page .ap-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M20,50 Q30,30 40,50 T60,50' stroke='rgba(255,255,255,0.1)' fill='none' stroke-width='2'/%3E%3Ccircle cx='75' cy='25' r='3' fill='rgba(255,255,255,0.1)'/%3E%3Crect x='15' y='75' width='6' height='6' fill='rgba(255,255,255,0.08)' rx='1'/%3E%3C/svg%3E");
  animation: ap-airport-move 20s infinite linear;
  pointer-events: none;
}

@keyframes ap-airport-move {
  0% { transform: translateX(-100px); }
  100% { transform: translateX(100px); }
}

.airport-page .ap-hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.airport-page .ap-hero h1 {
  font-family: var(--sans);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  margin: 0 0 1.25rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  color: #fff;
  line-height: 1.2;
}

.airport-page .ap-hero__lead {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  margin: 0 auto 2.5rem;
  opacity: 0.95;
  line-height: 1.65;
  color: #fff;
}

.airport-page .ap-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.airport-page .ap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  margin: 0.35rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.airport-page .ap-btn--primary {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: #fff;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.airport-page .ap-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(40, 167, 69, 0.4);
  background: linear-gradient(45deg, #218838, #1e7e34);
  color: #fff;
}

.airport-page .ap-btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid #ffc107;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.2);
}

.airport-page .ap-btn--outline:hover {
  background: #ffc107;
  color: #212529;
  transform: translateY(-3px);
}

.airport-page .ap-btn--whatsapp {
  background: #25d366;
  color: #fff;
}

.airport-page .ap-btn--whatsapp:hover {
  color: #fff;
  transform: translateY(-3px);
}

.airport-page .ap-btn--expert {
  background: #ffc107;
  color: #212529;
  border: none;
  text-transform: none;
  letter-spacing: 0;
}

.airport-page .ap-btn--expert:hover {
  color: #212529;
  transform: translateY(-2px);
}

/* Section headings */
.airport-page .ap-section-title {
  text-align: center;
  font-family: var(--sans);
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: #007bff;
  margin: 0 0 1rem;
  font-weight: 700;
}

.airport-page .ap-section-title--bar::after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, #007bff, #28a745);
  margin: 1.25rem auto 0;
  border-radius: 2px;
}

.airport-page .ap-section-sub {
  text-align: center;
  font-size: 1.15rem;
  color: #666;
  margin: 0 auto 3.5rem;
  max-width: 800px;
  line-height: 1.65;
}

/* Routes */
.airport-page .ap-routes {
  padding: 5.5rem 1.25rem;
  background: #fff;
}

.airport-page .ap-routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 2.5rem;
  margin-bottom: 1rem;
}

.airport-page .ap-route-card {
  background: #fff;
  border-radius: 15px;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-top: 5px solid #007bff;
}

.airport-page .ap-route-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.02), rgba(40, 167, 69, 0.02));
  pointer-events: none;
}

.airport-page .ap-route-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.airport-page .ap-route-card:nth-child(2) { border-top-color: #28a745; }
.airport-page .ap-route-card:nth-child(3) { border-top-color: #ffc107; }

.airport-page .ap-route-card__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.airport-page .ap-route-card__icon {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 2.75rem;
  line-height: 1;
  opacity: 0.9;
}

.airport-page .ap-route-card h3 {
  color: #007bff;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
  font-family: var(--sans);
}

.airport-page .ap-route-card__details {
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.airport-page .ap-route-card__details p {
  color: #555;
  margin: 0 0 0.5rem;
  font-size: 1rem;
  line-height: 1.55;
}

.airport-page .ap-route-card__price {
  background: #f8f9fa;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  border-left: 4px solid #007bff;
  position: relative;
  z-index: 1;
}

.airport-page .ap-route-card__amount {
  font-size: 1.45rem;
  font-weight: 700;
  color: #007bff;
  display: block;
}

.airport-page .ap-route-card__price small {
  font-size: 0.88rem;
  color: #666;
}

/* Why choose */
.airport-page .ap-features {
  padding: 5.5rem 1.25rem;
  background: #f8f9fa;
}

.airport-page .ap-features .ap-section-title {
  margin-bottom: 3.5rem;
}

.airport-page .ap-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 2.5rem;
}

.airport-page .ap-feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.airport-page .ap-feature-card:hover {
  transform: translateY(-8px);
}

.airport-page .ap-feature-card__icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.35);
}

.airport-page .ap-feature-card__icon {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 2.25rem;
  line-height: 1;
}

.airport-page .ap-feature-card h3 {
  color: #007bff;
  font-size: 1.3rem;
  margin: 0 0 1rem;
  font-weight: 600;
  font-family: var(--sans);
}

.airport-page .ap-feature-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

/* Booking steps */
.airport-page .ap-steps {
  padding: 5.5rem 1.25rem;
  background: #fff;
}

.airport-page .ap-steps .ap-section-title {
  margin-bottom: 3.5rem;
}

.airport-page .ap-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.85rem;
  max-width: 1000px;
  margin: 0 auto;
}

.airport-page .ap-step {
  text-align: center;
}

.airport-page .ap-step__num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  font-family: var(--sans);
}

.airport-page .ap-step h3 {
  color: #007bff;
  font-size: 1.2rem;
  margin: 0 0 0.85rem;
  font-weight: 600;
}

.airport-page .ap-step p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Testimonials */
.airport-page .ap-testimonials {
  padding: 5.5rem 1.25rem;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
}

.airport-page .ap-testimonials .ap-section-title {
  color: #fff;
  margin-bottom: 3.5rem;
}

.airport-page .ap-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2.5rem;
}

.airport-page .ap-testimonial {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.25rem 1.75rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  position: relative;
}

.airport-page .ap-testimonial::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  font-size: 4rem;
  opacity: 0.3;
  line-height: 1;
}

.airport-page .ap-testimonial p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.25rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.airport-page .ap-testimonial__author {
  font-weight: 600;
  font-size: 1.05rem;
}

.airport-page .ap-testimonial__trip {
  opacity: 0.85;
  font-size: 0.92rem;
  margin-top: 0.35rem;
}

/* Contact */
.airport-page .ap-contact {
  padding: 5.5rem 1.25rem;
  background: #212529;
  color: #fff;
  text-align: center;
}

.airport-page .ap-contact .ap-section-title {
  color: #fff;
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.airport-page .ap-contact__lead {
  font-size: 1.15rem;
  margin: 0 auto 3rem;
  opacity: 0.9;
  max-width: 640px;
}

.airport-page .ap-contact__facts {
  display: flex;
  justify-content: center;
  gap: 2.5rem 3.5rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

.airport-page .ap-contact__fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
}

.airport-page .ap-contact__fact-icon {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  font-size: 2.75rem;
  line-height: 1;
}

.airport-page .ap-contact__fact strong {
  display: block;
  margin-bottom: 0.25rem;
}

.airport-page .ap-contact__fact a {
  color: #fff;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
}

.airport-page .ap-contact__fact a:hover {
  text-decoration: underline;
}

.airport-page .ap-contact__fact p {
  margin: 0;
  opacity: 0.95;
}

.airport-page .ap-contact__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.airport-page .ap-expert-box {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.airport-page .ap-expert-box h3 {
  font-size: 1.4rem;
  margin: 0 0 1rem;
  color: #fff;
  font-weight: 700;
}

.airport-page .ap-expert-box p {
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
  opacity: 0.95;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .airport-page .ap-hero {
    padding: 4.5rem 1.25rem;
  }

  .airport-page .ap-hero__cta,
  .airport-page .ap-contact__btns {
    flex-direction: column;
    align-items: center;
  }

  .airport-page .ap-btn {
    width: 100%;
    max-width: 300px;
  }

  .airport-page .ap-contact__facts {
    flex-direction: column;
    gap: 1.5rem;
  }
}
