/* ===== GENERAL ===== */
body {
  font-family: 'Poppins', sans-serif;
  background: #f4f6fb;
  color: #1e293b;
}

.container {
  width: 100%;
  max-width: 1500px;
  margin: auto;
  padding: 0 20px;
}
/* ===== HERO ===== */
.atpl-hero {
  position: relative;
  background: url("../images/aviation-bg.jpg") center/cover no-repeat;
  color: #fff;
  height: 800px;
  display: flex;
  align-items: center;
}


.atpl-hero .container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: 120px;
}


.image-card {
  padding: 0;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.program-content {
  padding: 28px;
}


.hero-badge {
  background: #002f6c;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 15px;
}


.hero-text h1 {
  font-size: 44px;
  line-height: 1.25;
  color: #ffffff;
}

.hero-text h1 span {
  color: #9ec3ff; /* subtle aviation blue */
}

.hero-text p {
  color: #ffffff;
  font-size: 20px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: #002f6c;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}


.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background: #ffffff;
  color: #002f6c;
}

/* ===== WHY ATPL ===== */
.why-atpl {
  padding: 80px 0;
  text-align: center;
}

.why-atpl h2 {
  color: #002f6c;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  margin-top: 40px;
  width: 100%;
}

.why-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 47, 108, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0,47,108,0.08);
  transition: transform 0.3s ease;
}

.why-card:hover {
  transform: translateY(-8px);
}

.why-card h3 {
  color: #002f6c;
  margin-bottom: 10px;
}

/* ===== PROGRAMS ===== */
.atpl-programs {
  padding: 80px 0;
}

.atpl-programs h2 {
  text-align: center;
  color: #002f6c;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.program-card {
  background: #ffffff;
  padding: 36px;
  border-radius: 20px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border-top: 5px solid #002f6c;
}

.program-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 47, 108, 0.15);
}

.program-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #002f6c;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
}

.program-card h3 {
  color: #002f6c;
  margin-bottom: 10px;
}

.program-card ul {
  margin-top: 15px;
  padding-left: 20px;
}

.program-card ul li {
  margin-bottom: 6px;
}

/* ===== CAREER PATH ===== */
.career-path {
  background: #002f6c;
  padding: 80px 0;
  color: #ffffff;
  text-align: center;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.career-card {
  background: rgba(255, 255, 255, 0.12);
  padding: 26px;
  border-radius: 16px;
  font-weight: 500;
}

/* ===== ENQUIRY (PROFESSIONAL) ===== */
.atpl-enquiry {
  padding: 90px 0;
  background: #ffffff;
  border-top: 1px solid rgba(0,47,108,0.08);
}

.enquiry-inner {
  max-width: 820px;
  margin: auto;
  text-align: center;
}

.atpl-enquiry h2 {
  font-size: 32px;
  color: #002f6c;
  margin-bottom: 14px;
}

.atpl-enquiry p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 30px;
}

.enquiry-btn {
  padding: 12px 34px;
  border-radius: 6px;
  font-size: 15px;
}


.section-divider {
  height: 80px;
  background: linear-gradient(
    to bottom,
    rgba(0,47,108,0.15),
    rgba(0,47,108,0.02),
    transparent
  );
}

.program-link {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  color: #002f6c;
  text-decoration: none;
}

.program-link:hover {
  text-decoration: underline;
}

.atpl-highlights {
  padding: 70px 0;
  background: #f8fbff;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.highlight-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  border-left: 5px solid #002f6c;
  box-shadow: 0 10px 25px rgba(0,47,108,0.08);
}

.highlight-card h3 {
  color: #002f6c;
  margin-bottom: 8px;
}

.aircraft-svg {
  position: absolute;
  top: 55%;
  left: -120px;
  width: 120px;
  opacity: 0.15;
}

.extra-footer {
  background: linear-gradient(180deg, #001f47, #062c56);  
  padding: 90px 0;
  color: #e5e5e5;
  font-family: "Inter", sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: auto;
}

/* LOGO + TEXT */
.footer-logo {
  height: 90px;
  margin-bottom: 25px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: #cfcfcf;
  max-width: 420px;
}

/* SOCIAL */
.footer-social {
  margin-top: 25px;
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #b08d57;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #ffffff;
  color: #000;
}

/* LINK COLUMNS */
.footer-links h4 {
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  font-size: 14px;
  color: #cfcfcf;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-links ul li:hover {
  color: #ffffff;
}

.footer-links ul li {
  margin-bottom: 12px;
}

/* anchor styling */
.footer-links ul li a {
  display: inline-block;
  color: #cfcfcf;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* hover effect */
.footer-links ul li a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {

  /* HERO */
  .atpl-hero {
    height: auto;
    padding: 120px 0 80px;
  }

  .atpl-hero .container {
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .btn-primary,
  .btn-outline {
    width: fit-content;
  }
}

@media (max-width: 768px) {

  .why-grid,
  .program-grid,
  .career-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .program-card {
    padding: 0;
  }

  .program-content {
    padding: 22px;
  }

  .program-card img {
    height: 180px;
  }
}

@media (max-width: 768px) {

  .atpl-enquiry {
    padding: 60px 0;
  }

  .atpl-enquiry h2 {
    font-size: 26px;
  }

  .atpl-enquiry p {
    font-size: 15px;
  }
}

@media (max-width: 900px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo {
    height: 70px;
  }

  .footer-about p {
    max-width: 100%;
  }
}




/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid,
  .why-grid,
  .program-grid,
  .career-grid {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 32px;
  }
}
