:root {
  --ppa-gold: #f0b429;
  --ppa-bg: #fff8e5;
  --ppa-dark: #0a0a0a;
}

/* FULL WIDTH */
.ppa-flyingtraining,
.ppa-flyingtraining * {
  box-sizing: border-box;
}

.ppa-flyingtraining {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--ppa-bg);
}

.container {
  max-width: 100%;
  width: 100%;
  padding: 0 5%;
}

/* HERO */
.ppa-ft-hero {
  width: 100%;
  min-height: 90vh;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('/wp-content/uploads/flyingtraining/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ppa-ft-hero-overlay {
  width: 100%;
  padding: 120px 5%;
  text-align: center;
}

.ppa-ft-hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
}

.ppa-ft-kicker {
  color: var(--ppa-gold);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ppa-ft-hero h1 {
  font-size: 3.3rem;
  color: var(--ppa-gold);
  margin-bottom: 20px;
  line-height: 1.15;
}

.ppa-ft-hero p {
  font-size: 1.2rem;
  line-height: 1.7;
  max-width: 850px;
  margin: 0 auto 30px;
}

/* BUTTONS */
.ppa-btn {
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  font-size: 1rem;
  display: inline-block;
  margin: 6px;
}

.ppa-btn-primary {
  background: var(--ppa-gold);
  color: #000;
}

.ppa-btn-outline {
  border: 2px solid var(--ppa-gold);
  color: var(--ppa-gold);
}

.ppa-btn-primary:hover,
.ppa-btn-outline:hover {
  background: var(--ppa-gold);
  color: #fff;
}

/* INTRO */
.ppa-intro {
  background: var(--ppa-bg);
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ppa-dark);
  padding: 60px 10%;
}

.ppa-intro p {
  max-width: 1100px;
  margin: 0 auto 20px;
}

/* SECTIONS */
.ppa-section {
  background: var(--ppa-bg);
  padding: 80px 5%;
}

.ppa-section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ppa-dark);
  margin-bottom: 40px;
}

.ppa-section-subtitle {
  text-align: center;
  max-width: 850px;
  margin: -20px auto 35px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* CARDS */
.ppa-features-grid,
.ppa-courses-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 25px !important;
  max-width: 1200px;
  margin: 0 auto;
}

.ppa-feature,
.ppa-course-card {
  background: #fff;
  border: 2px solid var(--ppa-gold);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.ppa-feature h3,
.ppa-course-card h3 {
  color: #C69300;
  margin-bottom: 12px;
  font-weight: 700;
}

.ppa-feature p,
.ppa-course-card p {
  color: #333;
  line-height: 1.7;
}

/* SLIDER */
.ppa-ft-slider-section {
  padding: 70px 5%;
  background: #fff8e5;
}

#flyingtraining-slider {
  max-width: 1200px;
  margin: 0 auto;
}

.splide__slide img {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.splide__slide img:hover {
  transform: scale(1.03);
}

.splide__track {
  overflow: hidden;
}

.splide__arrow {
  background: var(--ppa-gold);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  opacity: 0.85;
  transition: 0.3s;
}

.splide__arrow:hover {
  opacity: 1;
  background: #d9a124;
}

/* ROADMAP */
.ppa-ft-roadmap {
  background: linear-gradient(180deg, #fff8e5 0%, #fdf3d0 100%);
}

.ppa-ft-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.ppa-ft-steps div {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  border: 2px solid var(--ppa-gold);
}

.ppa-ft-steps span {
  width: 45px;
  height: 45px;
  background: var(--ppa-gold);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  margin-bottom: 15px;
}

.ppa-ft-steps h3 {
  color: #C69300;
}

/* FAQ */
.ppa-ft-faq {
  max-width: 1000px;
  margin: 0 auto;
}

.ppa-ft-faq details {
  background: #fff;
  border: 1px solid var(--ppa-gold);
  border-radius: 14px;
  margin-bottom: 15px;
  padding: 18px 22px;
}

.ppa-ft-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #111;
}

.ppa-ft-faq p {
  margin-top: 12px;
  line-height: 1.7;
}

/* FINAL CTA */
.ppa-ft-final-cta {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 80px 5%;
}

.ppa-ft-final-cta h2 {
  color: var(--ppa-gold);
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.ppa-ft-final-cta p {
  max-width: 800px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ppa-ft-hero {
    min-height: 75vh;
  }

  .ppa-ft-hero h1 {
    font-size: 2.1rem;
  }

  .ppa-ft-hero p {
    font-size: 1rem;
  }

  .ppa-section-title {
    font-size: 1.8rem;
  }

  .splide__slide img {
    height: 240px;
  }
}
.ppa-ft-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.ppa-ft-content p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #222;
  margin-bottom: 20px;
}

.ppa-ft-country-grid {
  margin-top: 40px;
}

.ppa-ft-faq details {
  transition: 0.3s ease;
}

.ppa-ft-faq details[open] {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.ppa-ft-faq summary {
  list-style: none;
}

.ppa-ft-faq summary::-webkit-details-marker {
  display: none;
}