/**
 * About Page Styles - EasyFlyTrip
 * Used by: aboutpage.php only
 * Version: 1.0
 * Date: February 21, 2026
 */

/* ============================================
   LIGHTWEIGHT BOOTSTRAP GRID (about page only)
   ============================================ */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
[class*="col-"] {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}
.align-items-center {
  align-items: center !important;
}
@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 16.6667%;
    max-width: 16.6667%;
  }
  .col-lg-5 {
    flex: 0 0 41.6667%;
    max-width: 41.6667%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333%;
    max-width: 83.3333%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ============================================
   HERO
   ============================================ */
.ab-hero {
  background: linear-gradient(135deg, #0d2653 0%, #1565c0 100%);
  color: #fff;
  text-align: center;
  padding: 46px 20px 40px;
  position: relative;
  overflow: hidden;
}
.ab-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.ab-hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
  position: relative;
}
.ab-hero p {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* ============================================
   STATS BAR
   ============================================ */
.ab-stats {
  background: #fff;
  border-bottom: 1px solid #eef0f4;
  padding: 0;
}
.ab-stats-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ab-stat {
  flex: 1 1 150px;
  text-align: center;
  padding: 24px 20px;
  border-right: 1px solid #eef0f4;
}
.ab-stat:last-child {
  border-right: none;
}
.ab-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #1565c0;
  line-height: 1;
  display: block;
}
.ab-stat-lbl {
  font-size: 0.78rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-top: 4px;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.ab-section {
  padding: 56px 0;
}
.ab-section.ab-alt {
  background: #f7f8fa;
}
.ab-section-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #1565c0;
  margin-bottom: 8px;
}
.ab-section-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  color: #0d2653;
  margin: 0 0 14px;
  line-height: 1.25;
}
.ab-section-body {
  font-size: 0.97rem;
  color: #555;
  line-height: 1.8;
}
.ab-section-body p {
  margin-bottom: 14px;
}
.ab-section-body p:last-child {
  margin-bottom: 0;
}
.ab-divider {
  width: 48px;
  height: 4px;
  background: #1565c0;
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ============================================
   STORY TIMELINE ICON BLOCKS
   ============================================ */
.ab-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ab-tl-item {
  display: flex;
  gap: 20px;
  padding-bottom: 36px;
  position: relative;
}
.ab-tl-item:last-child {
  padding-bottom: 0;
}
.ab-tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.ab-tl-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #1565c0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.ab-tl-line {
  width: 2px;
  flex: 1;
  background: #dce7f9;
  margin-top: 8px;
}
.ab-tl-item:last-child .ab-tl-line {
  display: none;
}
.ab-tl-content {
  padding-top: 6px;
}
.ab-tl-year {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #1565c0;
  margin-bottom: 4px;
}
.ab-tl-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d2653;
  margin: 0 0 8px;
}
.ab-tl-content p {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.75;
  margin: 0;
}

/* ============================================
   PROMISE / VALUE CARDS
   ============================================ */
.ab-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.ab-promise-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  padding: 30px 26px;
  flex: 1 1 240px;
  max-width: 300px;
  text-align: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.ab-promise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.11);
}
.ab-promise-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 16px;
}
.ab-promise-icon.ic1 {
  background: #1565c0;
}
.ab-promise-icon.ic2 {
  background: #0097a7;
}
.ab-promise-icon.ic3 {
  background: #388e3c;
}
.ab-promise-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0d2653;
  margin: 0 0 8px;
}
.ab-promise-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

/* ============================================
   SIDE IMAGE SECTION
   ============================================ */
.ab-side-icon {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(135deg, #eaf4ff 0%, #f8fbff 100%);
  border: 1px solid #dbeafe;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  min-height: 340px;
  text-align: center;
  margin: 0 auto;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.ab-side-icon img {
  width: 92%;
  max-width: 520px;
  height: auto;
  border-radius: 18px;
  display: block;
}

/* ============================================
   CONTACT CTA STRIP
   ============================================ */
.ab-cta {
  background: linear-gradient(135deg, #0d2653 0%, #1565c0 100%);
  color: #fff;
  padding: 32px 20px;
  text-align: center;
}
.ab-cta h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 10px;
}
.ab-cta p {
  font-size: 0.97rem;
  opacity: 0.88;
  margin: 0 0 26px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.ab-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.ab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.ab-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}
.ab-btn-white {
  background: #fff;
  color: #1565c0;
}
.ab-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.ab-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
  .ab-hero {
    padding: 34px 16px 30px;
  }
  .ab-section {
    padding: 36px 0;
  }
  .ab-stat-num {
    font-size: 1.6rem;
  }
  .ab-stat {
    padding: 18px 12px;
  }
  .ab-tl-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .ab-promise-card {
    max-width: 100%;
  }
  .ab-cta {
    padding: 36px 16px;
  }
  .ab-cta h2 {
    font-size: 1.3rem;
  }
  .ab-side-icon {
    padding: 14px;
    min-height: auto;
  }
  /* override inline padding-left on story column */
  .col-md-12[style*="padding-left"] {
    padding-left: 15px !important;
  }
}
