/* =============================================
   ABOUT US PAGE REDESIGN — BA Transfer Brand Refresh
   Matches home-redesign.css design language
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ───────────────────────────── */
:root {
  --about-navy: #012169;
  --about-navy-light: #01449e;
  --about-red: #C8102E;
  --about-red-light: #ff607b;
  --about-dark: #0f172a;
  --about-gray-900: #1f2937;
  --about-gray-700: #374151;
  --about-gray-600: #4b5563;
  --about-gray-500: #6b7280;
  --about-gray-200: #e5e7eb;
  --about-gray-100: #f3f4f6;
  --about-gray-50: #f9fafb;
  --about-indigo-50: #eef2ff;
  --about-indigo-100: #e0e7ff;
  --about-indigo-200: #c7d2fe;
  --about-card-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  --about-card-hover-shadow: 0 12px 36px rgba(1, 33, 105, 0.12);
}

/* ── Hero Inner Banner ──────────────────────── */
.inner-banner {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(1, 33, 105, 0.88) 0%,
      rgba(1, 33, 105, 0.7) 50%,
      rgba(200, 16, 46, 0.5) 100%);
  z-index: 1;
}

.inner-banner .container {
  position: relative;
  z-index: 2;
}

.inner-banner h1 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 900 !important;
  font-size: 3.2rem !important;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.inner-banner .lead {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  font-size: 1.15rem !important;
  opacity: 0.9;
  margin-top: 8px;
}

/* Breadcrumb-like decoration */
.inner-banner .container::after {
  content: "Home  ›  About Us";
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  letter-spacing: 0.3px;
}

/* ── About Section Container ────────────────── */
.about-section {
  background: linear-gradient(180deg, #f7f8fc 0%, #fff 30%, #fff 70%, #f7f8fc 100%);
  font-family: 'Inter', sans-serif;
}

.about-section .container {
  max-width: 1100px;
}

/* ── Main Heading ───────────────────────────── */
.about-section h2.fw-bold {
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: 2.1rem !important;
  color: var(--about-dark) !important;
  letter-spacing: -0.5px;
  line-height: 1.3;
  margin-bottom: 1.5rem !important;
}

/* ── Introduction Text ──────────────────────── */
.about-section>.container>.row>.col-lg-10>p:first-of-type {
  font-size: 1.05rem;
  color: var(--about-gray-600);
  line-height: 1.75;
  border-left: 4px solid var(--about-navy);
  padding-left: 20px;
  margin-bottom: 2.5rem;
}

/* ── Section Headings (h3) ──────────────────── */
.about-section h3 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.45rem !important;
  color: var(--about-dark) !important;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--about-indigo-100);
  margin-top: 2.8rem !important;
  margin-bottom: 1.2rem !important;
}

/* Why Choose & Commitment & Company headings */
.about-section h3.fw-bold {
  font-size: 1.55rem !important;
  position: relative;
  border-bottom: none;
  padding-bottom: 0;
}

.about-section h3.fw-bold::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 3px;
  width: 60px;
  background: linear-gradient(90deg, var(--about-navy), var(--about-red));
  border-radius: 2px;
}

/* ── Body Paragraphs ────────────────────────── */
.about-section p {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--about-gray-600);
}

/* ── Airport List ───────────────────────────── */
.about-section ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
  margin: 1.2rem 0 1.5rem 0;
}

.about-section ul li {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--about-gray-700);
  background: var(--about-indigo-50);
  border: 1px solid var(--about-indigo-200);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  font-weight: 500;
}

.about-section ul li::before {
  content: "✈";
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-section ul li:hover {
  background: var(--about-indigo-100);
  border-color: var(--about-navy);
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(1, 33, 105, 0.08);
}

/* ── "Why Choose" Unstyled List ─────────────── */
.about-section .list-unstyled {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 1.5rem;
}

.about-section .list-unstyled li {
  grid-column: unset;
  background: white;
  border: 1px solid var(--about-gray-200);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--about-gray-700);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.25s ease;
}

.about-section .list-unstyled li::before {
  content: "✓";
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--about-navy), var(--about-navy-light));
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(1, 33, 105, 0.2);
}

.about-section .list-unstyled li:hover {
  border-color: var(--about-indigo-200);
  background: var(--about-indigo-50);
  transform: translateX(4px);
  box-shadow: 0 3px 12px rgba(1, 33, 105, 0.06);
}

/* ── Horizontal Dividers ────────────────────── */
.about-section hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--about-indigo-200) 20%,
      var(--about-indigo-200) 80%,
      transparent 100%);
  margin: 3rem 0 !important;
  opacity: 1;
}

/* ── Company Info Block ─────────────────────── */
.about-section .company-info-card {
  background: linear-gradient(135deg, var(--about-navy) 0%, var(--about-navy-light) 100%);
  border: none;
  border-radius: 16px;
  padding: 28px 32px;
  line-height: 2.2;
  margin-top: 1.5rem;
  color: white !important;
  box-shadow: 0 6px 24px rgba(1, 33, 105, 0.15);
  position: relative;
  overflow: hidden;
}

.about-section .company-info-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.about-section .company-info-card strong {
  color: white;
  font-weight: 700;
}

.about-section .company-info-card a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}

.about-section .company-info-card a:hover {
  color: white;
  border-bottom-color: white;
}

/* ── Commitment Section Paragraph ───────────── */
.about-section .commitment-text {
  background: linear-gradient(135deg, var(--about-navy) 0%, var(--about-navy-light) 100%);
  color: white !important;
  border-radius: 16px;
  padding: 28px 32px;
  line-height: 1.85;
  font-size: 1rem;
  border: none;
  box-shadow: 0 6px 24px rgba(1, 33, 105, 0.15);
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}

.about-section .commitment-text::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.about-section .commitment-text::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

/* ── Stats/Trust Bar ────────────────────────── */
.about-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 3rem 0;
}

.about-trust-item {
  text-align: center;
  padding: 28px 16px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--about-gray-200);
  transition: all 0.3s ease;
}

.about-trust-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--about-card-hover-shadow);
  border-color: var(--about-indigo-200);
}

.about-trust-item .trust-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
  color: white;
}

.about-trust-item:nth-child(1) .trust-icon {
  background: linear-gradient(135deg, var(--about-navy), var(--about-navy-light));
  box-shadow: 0 4px 12px rgba(1, 33, 105, 0.2);
}

.about-trust-item:nth-child(2) .trust-icon {
  background: linear-gradient(135deg, var(--about-red), var(--about-red-light));
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.2);
}

.about-trust-item:nth-child(3) .trust-icon {
  background: linear-gradient(135deg, #059669, #34d399);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.about-trust-item:nth-child(4) .trust-icon {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

.about-trust-item .trust-number {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--about-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.about-trust-item .trust-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--about-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Service Feature Cards Grid ─────────────── */
.about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 2.5rem 0;
}

.about-service-card {
  background: white;
  border: 1px solid var(--about-gray-200);
  border-radius: 18px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--about-navy), var(--about-red));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--about-card-hover-shadow);
  border-color: var(--about-indigo-200);
}

.about-service-card:hover::before {
  opacity: 1;
}

.about-service-card .service-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: white;
}

.about-service-card:nth-child(1) .service-icon {
  background: linear-gradient(135deg, var(--about-navy) 0%, var(--about-navy-light) 100%);
  box-shadow: 0 4px 12px rgba(1, 33, 105, 0.2);
}

.about-service-card:nth-child(2) .service-icon {
  background: linear-gradient(135deg, var(--about-red) 0%, var(--about-red-light) 100%);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.2);
}

.about-service-card:nth-child(3) .service-icon {
  background: linear-gradient(135deg, #059669 0%, #34d399 100%);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.about-service-card h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--about-dark);
  margin-bottom: 10px;
}

.about-service-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--about-gray-500);
  margin-bottom: 0;
}

/* ── CTA Banner ─────────────────────────────── */
.about-cta {
  background: linear-gradient(135deg,
      var(--about-navy) 0%,
      var(--about-navy-light) 60%,
      var(--about-red) 100%);
  border-radius: 20px;
  padding: 48px 40px;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.about-cta::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.about-cta h3 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: 1.8rem !important;
  color: white !important;
  border-bottom: none !important;
  margin-top: 0 !important;
  margin-bottom: 12px !important;
  padding-bottom: 0 !important;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 24px;
}

.about-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--about-navy);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 14px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 1;
}

.about-cta .btn-cta:hover {
  background: transparent;
  color: white;
  border-color: white;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.15);
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 991px) {
  .about-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .inner-banner h1 {
    font-size: 2.4rem !important;
  }

  .about-cta {
    padding: 36px 28px;
  }
}

@media (max-width: 576px) {
  .about-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .about-trust-item {
    padding: 20px 12px;
  }

  .about-trust-item .trust-number {
    font-size: 1.6rem;
  }

  .inner-banner {
    min-height: 260px;
  }

  .inner-banner h1 {
    font-size: 2rem !important;
  }

  .about-section h2.fw-bold {
    font-size: 1.6rem !important;
  }

  .about-section ul {
    grid-template-columns: 1fr;
  }

  .about-cta {
    padding: 28px 20px;
    border-radius: 14px;
  }

  .about-cta h3 {
    font-size: 1.4rem !important;
  }
}