/**
* KCPT Flyers Flight School — Site Stylesheet
* Modeled on the DJS Aviation architecture, dressed in the KCPT Flyers brand.
* Brand: Premium / Gold Standard. Charcoal foundation, gold accent, crisp white.
*/

/* ==========================================================================
   #BRAND TOKENS
   ========================================================================== */
:root {
  --kcpt-gold:        #c9a961;
  --kcpt-gold-dark:   #a88840;
  --kcpt-gold-soft:   #e6cf94;
  --kcpt-charcoal:    #1a1a1a;
  --kcpt-ink:         #2b2b2b;
  --kcpt-body:        #4b4b4b;
  --kcpt-muted:       #707070;
  --kcpt-line:        #e9e3d4;
  --kcpt-bg:          #ffffff;
  --kcpt-bg-soft:     #faf7f0;
  --kcpt-shadow:      0 12px 36px rgba(26, 26, 26, 0.08);
  --kcpt-shadow-lg:   0 22px 60px rgba(26, 26, 26, 0.16);
}

/* ==========================================================================
   #GENERAL
   ========================================================================== */
body {
  font-family: "Open Sans", sans-serif;
  color: var(--kcpt-body);
  background: var(--kcpt-bg);
}

a {
  color: var(--kcpt-gold-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--kcpt-gold);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Muli", "Open Sans", sans-serif;
  color: var(--kcpt-charcoal);
}

.container {
  padding-left: 0;
  padding-right: 0;
  width: 90%;
  max-width: 90%;
}

img {
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   #BACK TO TOP BUTTON
   ========================================================================== */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--kcpt-gold);
  width: 42px;
  height: 42px;
  border-radius: 4px;
  transition: all 0.4s;
  box-shadow: var(--kcpt-shadow);
}

.back-to-top i {
  font-size: 28px;
  color: var(--kcpt-charcoal);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--kcpt-gold-dark);
}

.back-to-top:hover i {
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* ==========================================================================
   #PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--kcpt-charcoal);
  transition: all 0.5s ease-out;
}

#preloader:before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  border: 4px solid var(--kcpt-gold);
  border-top-color: transparent;
  border-radius: 50%;
  width: 50px; height: 50px;
  margin: -25px 0 0 -25px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ==========================================================================
   #TOP BAR
   ========================================================================== */
#topbar {
  background: var(--kcpt-charcoal);
  color: #fff;
  height: 40px;
  font-size: 14px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
}

#topbar .contact-info i {
  font-style: normal;
  color: var(--kcpt-gold);
  line-height: 0;
  display: inline-flex;
  align-items: center;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 6px;
  color: #ffffff;
  letter-spacing: 0.3px;
}

#topbar .contact-info i a:hover {
  color: var(--kcpt-gold);
}

#topbar .rental-info .rental-text {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid var(--kcpt-gold);
  color: var(--kcpt-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 3px;
}

@media (max-width: 991px) {
  #topbar { height: auto; padding: 8px 0; text-align: center; }
  #topbar .contact-info { justify-content: center; flex-wrap: wrap; gap: 6px 14px; }
}

/* ==========================================================================
   #HEADER
   ========================================================================== */
#header {
  background: rgba(255, 255, 255, 0.97);
  height: 100px;
  transition: all 0.4s;
  z-index: 997;
  padding: 0;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  border-bottom: 3px solid var(--kcpt-gold);
}

#header.header-scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.98);
}

#header .logo {
  display: flex;
  align-items: center;
}

#header .logo img {
  max-height: 60px;
  display: block;
}

#header .logo h1 {
  font-size: 26px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--kcpt-charcoal);
  font-family: "Poppins", sans-serif;
}

#header .logo h1 span {
  color: var(--kcpt-gold-dark);
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: var(--kcpt-charcoal);
  text-decoration: none;
}

/* ==========================================================================
   #DESKTOP NAVIGATION
   ========================================================================== */
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 28px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--kcpt-ink);
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 6px;
}

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 28px;
  background-color: var(--kcpt-gold);
  visibility: hidden;
  transition: 0.3s ease-in-out;
}

.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before {
  visibility: visible;
  width: 26px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--kcpt-gold-dark);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 22px;
  top: calc(100% + 24px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  border-top: 3px solid var(--kcpt-gold);
  box-shadow: var(--kcpt-shadow);
  transition: 0.3s;
  border-radius: 0 0 4px 4px;
  min-width: 240px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 13px;
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--kcpt-ink);
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: var(--kcpt-gold-dark);
  background: var(--kcpt-bg-soft);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

/* Book a Flight CTA in header */
.book-a-flight-btn {
  margin-left: 24px;
  background: var(--kcpt-charcoal);
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 4px;
  border: 2px solid var(--kcpt-charcoal);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.book-a-flight-btn:hover {
  background: var(--kcpt-gold);
  color: var(--kcpt-charcoal) !important;
  border-color: var(--kcpt-gold);
}

/* ==========================================================================
   #MOBILE NAVIGATION
   ========================================================================== */
.mobile-nav-toggle {
  color: var(--kcpt-charcoal);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle { display: block; }
  .navbar ul { display: none; }
  .book-a-flight-btn { display: none; }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  inset: 0;
  background: rgba(26, 26, 26, 0.96);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 60px;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 12px 22px;
  font-size: 15px;
  color: var(--kcpt-charcoal);
}

.navbar-mobile > ul > li > a:before {
  display: none;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--kcpt-gold-dark);
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 8px 18px;
  padding: 8px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: none;
  border: 1px solid var(--kcpt-line);
  border-top: 3px solid var(--kcpt-gold);
}

.navbar-mobile .dropdown ul li { min-width: 200px; }
.navbar-mobile .dropdown ul a { padding: 10px 20px; }

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/* ==========================================================================
   #HERO
   ========================================================================== */
#hero {
  width: 100%;
  height: 92vh;
  min-height: 620px;
  background: var(--kcpt-charcoal);
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

#hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(26,26,26,0.85) 100%);
  z-index: 2;
}

#hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url("../img/hero-bg2.JPG") center center / cover no-repeat;
  z-index: 1;
  filter: contrast(1.08) brightness(0.9);
  animation: heroZoom 30s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.12); }
}

#hero .container {
  position: relative;
  z-index: 5;
}

#hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--kcpt-gold);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

#hero .hero-eyebrow:before,
#hero .hero-eyebrow:after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--kcpt-gold);
}

#hero h1 {
  margin: 0 0 18px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  font-family: "Poppins", sans-serif;
  letter-spacing: -1px;
}

#hero h1 span {
  color: var(--kcpt-gold);
  font-style: italic;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 720px;
}

#hero h2 strong { color: var(--kcpt-gold-soft); font-weight: 700; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.btn-primary-gold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  background: var(--kcpt-gold);
  color: var(--kcpt-charcoal);
  border: 2px solid var(--kcpt-gold);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-gold:hover {
  background: var(--kcpt-gold-dark);
  border-color: var(--kcpt-gold-dark);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-light {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 4px;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--kcpt-charcoal);
}

.hero-meta {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 30px 48px;
}

.hero-meta-item {
  color: #fff;
}

.hero-meta-item .num {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--kcpt-gold);
  line-height: 1;
}

.hero-meta-item .label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 6px;
}

.hero-video-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 8px;
  padding: 22px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.hero-video-card .play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 14px;
  background: var(--kcpt-gold);
  border: none;
  padding: 0;
  border-radius: 50%;
  color: var(--kcpt-charcoal);
  font-size: 28px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  outline: none;
}

.hero-video-card .play-btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.5);
}

.hero-video-card .play-btn:before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--kcpt-gold);
  animation: pulse 1.5s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0;   }
}

.hero-video-card .play-btn i {
  margin-left: 4px;
}

.hero-video-card .play-btn:hover {
  background: var(--kcpt-gold-dark);
  color: #fff;
  transform: scale(1.05);
}

.hero-video-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-style: italic;
  margin: 0;
  letter-spacing: 0.3px;
}

@media (max-width: 991px) {
  #hero { height: auto; padding: 100px 0 70px; min-height: 0; }
  #hero h1 { font-size: 42px; }
  #hero h2 { font-size: 18px; }
  .hero-actions { justify-content: flex-start; }
  .hero-meta { gap: 22px 32px; }
  .hero-meta-item .num { font-size: 26px; }
}

@media (max-width: 575px) {
  #hero h1 { font-size: 34px; }
  .btn-primary-gold, .btn-outline-light { padding: 14px 24px; font-size: 13px; }
}

/* ==========================================================================
   #SECTIONS GENERAL
   ========================================================================== */
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background: var(--kcpt-bg-soft);
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 600;
  padding: 0;
  line-height: 1px;
  margin: 0 0 8px 0;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--kcpt-gold-dark);
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 80px;
  height: 1px;
  display: inline-block;
  background: var(--kcpt-gold);
  margin: 6px 8px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: var(--kcpt-charcoal);
  line-height: 1.15;
}

.section-title p span { color: var(--kcpt-gold-dark); }

@media (max-width: 575px) {
  .section-title p { font-size: 28px; }
}

/* ==========================================================================
   #CTA BANDS  (hiring, stats, etc.)
   ========================================================================== */
.cta-band {
  background: var(--kcpt-charcoal);
  background-image: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 60%, #1a1a1a 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-band:before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--kcpt-gold), transparent);
}

.cta-band h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
  font-family: "Poppins", sans-serif;
}

.cta-band h3 span { color: var(--kcpt-gold); }

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  margin: 10px 0 0;
}

.cta-band .cta-btn-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cta-band .cta-btn {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  display: inline-block;
  padding: 14px 30px;
  border-radius: 4px;
  transition: 0.3s;
  border: 2px solid var(--kcpt-gold);
  color: var(--kcpt-charcoal);
  background: var(--kcpt-gold);
}

.cta-band .cta-btn:hover {
  background: transparent;
  color: var(--kcpt-gold);
}

@media (max-width: 991px) {
  .cta-band { text-align: center; }
  .cta-band .cta-btn-container { justify-content: center; margin-top: 24px; }
}

/* ==========================================================================
   #ABOUT
   ========================================================================== */
.about .content h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--kcpt-gold-dark);
  font-family: "Poppins", sans-serif;
  margin-bottom: 18px;
}

.about .content h2 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: var(--kcpt-charcoal);
  margin-bottom: 24px;
}

.about .content h2 span { color: var(--kcpt-gold-dark); }

.about .content p {
  color: var(--kcpt-body);
  font-size: 16px;
  line-height: 1.75;
}

.about .content ul {
  list-style: none;
  padding: 16px 0 8px;
  margin: 0;
}

.about .content ul li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--kcpt-ink);
  font-size: 15px;
  line-height: 1.5;
}

.about .content ul i {
  color: var(--kcpt-gold-dark);
  font-size: 22px;
  line-height: 1.2;
  flex-shrink: 0;
}

.about .about-img {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--kcpt-shadow-lg);
}

.about .about-img img {
  width: 100%;
  display: block;
}

.about-quote {
  background: var(--kcpt-bg-soft);
  border-left: 4px solid var(--kcpt-gold);
  padding: 26px 28px;
  margin-top: 30px;
  border-radius: 0 6px 6px 0;
}

.about-quote p {
  font-style: italic;
  color: var(--kcpt-ink);
  font-size: 16px;
  margin: 0 0 10px 0;
  line-height: 1.6;
}

.about-quote cite {
  color: var(--kcpt-gold-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-style: normal;
}

@media (max-width: 575px) {
  .about .content h2 { font-size: 28px; }
}

/* ==========================================================================
   #WHY US
   ========================================================================== */
.why-us .box {
  padding: 40px 30px;
  background: #fff;
  text-align: left;
  border-radius: 6px;
  height: 100%;
  border: 1px solid var(--kcpt-line);
  border-top: 4px solid var(--kcpt-gold);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-us .box:after {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 100px;
  height: 100px;
  background: var(--kcpt-bg-soft);
  border-radius: 50%;
  opacity: 0.6;
  z-index: 0;
}

.why-us .box:hover {
  transform: translateY(-6px);
  box-shadow: var(--kcpt-shadow-lg);
  border-color: var(--kcpt-line);
  border-top-color: var(--kcpt-gold-dark);
}

.why-us .box > * { position: relative; z-index: 1; }

.why-us .box span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--kcpt-gold-dark);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.why-us .box h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--kcpt-charcoal);
  font-family: "Poppins", sans-serif;
  margin-bottom: 16px;
  line-height: 1.3;
}

.why-us .box p {
  color: var(--kcpt-body);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   #SERVICES (training programs icon boxes)
   ========================================================================== */
.services .icon-box {
  background: #fff;
  border: 1px solid var(--kcpt-line);
  padding: 36px 28px;
  border-radius: 6px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
  position: relative;
}

.services .icon-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--kcpt-shadow-lg);
  border-color: var(--kcpt-gold-soft);
}

.services .icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--kcpt-bg-soft);
  border-radius: 50%;
  color: var(--kcpt-gold-dark);
  margin-bottom: 22px;
  transition: all 0.3s;
  font-size: 32px;
}

.services .icon-box:hover .icon {
  background: var(--kcpt-gold);
  color: var(--kcpt-charcoal);
}

.services .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--kcpt-charcoal);
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
}

.services .icon-box h4 a {
  color: var(--kcpt-charcoal);
  transition: 0.3s;
}

.services .icon-box:hover h4 a {
  color: var(--kcpt-gold-dark);
}

.services .icon-box p {
  color: var(--kcpt-body);
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ==========================================================================
   #FLEET (portfolio)
   ========================================================================== */
.fleet #fleet-flters {
  padding: 0;
  margin: 0 auto 36px;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.fleet #fleet-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--kcpt-ink);
  margin: 4px;
  transition: all 0.3s;
  border-radius: 3px;
  border: 2px solid transparent;
}

.fleet #fleet-flters li:hover {
  color: var(--kcpt-gold-dark);
}

.fleet #fleet-flters li.filter-active {
  background: var(--kcpt-charcoal);
  color: var(--kcpt-gold);
  border-color: var(--kcpt-charcoal);
}

.fleet-item {
  margin-bottom: 32px;
}

.fleet-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--kcpt-line);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--kcpt-shadow-lg);
}

.fleet-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--kcpt-bg-soft);
}

.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-card-img img {
  transform: scale(1.06);
}

.fleet-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--kcpt-gold);
  color: var(--kcpt-charcoal);
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 3px;
}

.fleet-card-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fleet-card-body h4 {
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin: 0 0 4px 0;
  color: var(--kcpt-charcoal);
}

.fleet-card-body h4 a { color: inherit; }
.fleet-card-body h4 a:hover { color: var(--kcpt-gold-dark); }

.fleet-card-body .tail {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--kcpt-gold-dark);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.fleet-card-body p {
  color: var(--kcpt-body);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
}

.fleet-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--kcpt-line);
}

.fleet-card-price {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--kcpt-charcoal);
}

.fleet-card-price small {
  font-size: 11px;
  font-weight: 500;
  color: var(--kcpt-muted);
  letter-spacing: 0.5px;
  display: block;
  margin-top: 2px;
}

.fleet-card-link {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--kcpt-charcoal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.fleet-card-link:hover {
  color: var(--kcpt-gold-dark);
  gap: 10px;
}

/* ==========================================================================
   #PRICING TABLE
   ========================================================================== */
.pricing-section .price-table {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--kcpt-shadow);
  border: 1px solid var(--kcpt-line);
}

.pricing-section table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}

.pricing-section th {
  background: var(--kcpt-charcoal);
  color: var(--kcpt-gold);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 20px;
  text-align: left;
  border: none;
}

.pricing-section td {
  padding: 18px 20px;
  border-top: 1px solid var(--kcpt-line);
  color: var(--kcpt-body);
  font-size: 15px;
  vertical-align: top;
}

.pricing-section tr:hover td {
  background: var(--kcpt-bg-soft);
}

.pricing-section .rate {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--kcpt-charcoal);
  font-size: 16px;
}

.pricing-section .tail-num {
  color: var(--kcpt-gold-dark);
  font-weight: 600;
  letter-spacing: 1px;
}

/* ==========================================================================
   #FAQ
   ========================================================================== */
.faq .faq-list {
  padding: 0;
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
}

.faq .faq-list li {
  background: #fff;
  padding: 22px 26px;
  margin-bottom: 14px;
  border: 1px solid var(--kcpt-line);
  border-radius: 6px;
  transition: all 0.3s;
}

.faq .faq-list li:hover {
  border-color: var(--kcpt-gold-soft);
}

.faq .faq-list .question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  color: var(--kcpt-charcoal);
  transition: 0.3s;
  line-height: 1.4;
}

.faq .faq-list .question:hover {
  color: var(--kcpt-gold-dark);
}

.faq .faq-list .question i {
  font-size: 22px;
  color: var(--kcpt-gold-dark);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq .faq-list .icon-close { display: none; }
.faq .faq-list .question:not(.collapsed) .icon-show { display: none; }
.faq .faq-list .question:not(.collapsed) .icon-close { display: block; }

.faq .faq-list .question:not(.collapsed) {
  color: var(--kcpt-gold-dark);
}

.faq .faq-list .collapse {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--kcpt-line);
}

.faq .faq-list .collapse p {
  color: var(--kcpt-body);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

/* ==========================================================================
   #GALLERY
   ========================================================================== */
.gallery .gallery-item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}

.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery .gallery-item:hover img {
  transform: scale(1.08);
}

.gallery .gallery-item:after {
  content: "\F4D7";
  font-family: "bootstrap-icons";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.5);
  color: var(--kcpt-gold);
  font-size: 32px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery .gallery-item:hover:after { opacity: 1; }

/* ==========================================================================
   #PARTNER / RECOMMEND
   ========================================================================== */
.partner {
  background: var(--kcpt-charcoal);
  background-image: linear-gradient(135deg, #1a1a1a 0%, #2b2b2b 60%, #1a1a1a 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
}

.partner:before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--kcpt-gold), transparent);
}

.partner h2 {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--kcpt-gold);
  margin: 0 0 12px;
}

.partner h2 strong { font-weight: 700; }

.partner h3 {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
}

.partner h3 span { color: var(--kcpt-gold-soft); font-style: italic; }

.partner p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.partner .partner-logo {
  display: inline-block;
  padding: 24px 30px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 6px;
  transition: all 0.3s;
}

.partner .partner-logo:hover {
  border-color: var(--kcpt-gold);
  background: rgba(255,255,255,0.08);
}

.partner .partner-logo img {
  max-height: 70px;
  width: auto;
  filter: brightness(1.1);
}

/* ==========================================================================
   #CONTACT
   ========================================================================== */
.contact .info {
  background: #fff;
  padding: 20px 0;
}

.contact .info-box {
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--kcpt-line);
  border-radius: 6px;
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s;
}

.contact .info-box:hover {
  border-color: var(--kcpt-gold-soft);
  box-shadow: var(--kcpt-shadow);
}

.contact .info-box i {
  font-size: 26px;
  color: var(--kcpt-gold-dark);
  background: var(--kcpt-bg-soft);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact .info-box h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--kcpt-gold-dark);
  margin: 0 0 6px 0;
  font-family: "Poppins", sans-serif;
}

.contact .info-box p {
  margin: 0;
  font-size: 15px;
  color: var(--kcpt-ink);
  line-height: 1.5;
}

.contact .info-box p a { color: var(--kcpt-ink); }
.contact .info-box p a:hover { color: var(--kcpt-gold-dark); }

.contact-form {
  background: #fff;
  padding: 36px 32px;
  border: 1px solid var(--kcpt-line);
  border-radius: 6px;
}

.contact-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--kcpt-ink);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--kcpt-line);
  border-radius: 4px;
  font-size: 15px;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--kcpt-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}

.contact-form button {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 4px;
  background: var(--kcpt-charcoal);
  color: var(--kcpt-gold);
  border: 2px solid var(--kcpt-charcoal);
  cursor: pointer;
  transition: all 0.3s;
}

.contact-form button:hover {
  background: var(--kcpt-gold);
  color: var(--kcpt-charcoal);
  border-color: var(--kcpt-gold);
}

.map-wrapper {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--kcpt-line);
  box-shadow: var(--kcpt-shadow);
  margin-bottom: 30px;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  border: 0;
  height: 380px;
}

/* ==========================================================================
   #BREADCRUMBS
   ========================================================================== */
.breadcrumbs {
  padding: 32px 0;
  background: var(--kcpt-bg-soft);
  border-bottom: 1px solid var(--kcpt-line);
}

.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--kcpt-charcoal);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  align-items: center;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--kcpt-muted);
  content: "/";
}

.breadcrumbs ol li a {
  color: var(--kcpt-gold-dark);
}

.breadcrumbs ol li {
  color: var(--kcpt-muted);
}

/* ==========================================================================
   #AIRCRAFT DETAIL PAGES
   ========================================================================== */
.aircraft-hero {
  padding: 60px 0 40px;
  background: var(--kcpt-bg-soft);
  text-align: center;
}

.aircraft-hero .tail {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--kcpt-gold-dark);
  margin-bottom: 12px;
}

.aircraft-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 12px;
  font-family: "Poppins", sans-serif;
  color: var(--kcpt-charcoal);
}

.aircraft-hero p.lead {
  font-size: 18px;
  color: var(--kcpt-body);
  max-width: 720px;
  margin: 0 auto;
}

.aircraft-section {
  padding: 60px 0;
}

.aircraft-section h2 {
  font-size: 30px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 16px;
  color: var(--kcpt-charcoal);
}

.aircraft-section h3 {
  font-size: 22px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 12px;
  color: var(--kcpt-charcoal);
}

.aircraft-section .rate-pill {
  display: inline-block;
  background: var(--kcpt-gold);
  color: var(--kcpt-charcoal);
  padding: 6px 16px;
  border-radius: 3px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.aircraft-section p {
  color: var(--kcpt-body);
  font-size: 16px;
  line-height: 1.75;
}

.aircraft-section ul.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
}

.aircraft-section ul.feature-list li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--kcpt-ink);
  font-size: 15.5px;
  line-height: 1.5;
}

.aircraft-section ul.feature-list i {
  color: var(--kcpt-gold-dark);
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.2;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  background: var(--kcpt-bg-soft);
  border-radius: 6px;
  padding: 24px;
  margin-top: 12px;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-item .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--kcpt-muted);
  margin-bottom: 2px;
}

.spec-item .value {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--kcpt-charcoal);
}

/* ==========================================================================
   #FOOTER
   ========================================================================== */
#footer {
  background: var(--kcpt-charcoal);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  border-top: 4px solid var(--kcpt-gold);
}

#footer .footer-top {
  padding: 70px 0 30px;
}

#footer .footer-info h3 {
  font-size: 22px;
  margin: 0 0 18px 0;
  font-weight: 700;
  color: #fff;
  font-family: "Poppins", sans-serif;
  letter-spacing: 1px;
}

#footer .footer-info h3 img {
  max-height: 60px;
  display: block;
  filter: brightness(0) invert(1);
}

#footer .footer-info p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

#footer .footer-info strong { color: var(--kcpt-gold); font-weight: 600; }

#footer .social-links {
  margin-top: 22px;
  display: flex;
  gap: 10px;
}

#footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  transition: all 0.3s;
}

#footer .social-links a:hover {
  background: var(--kcpt-gold);
  border-color: var(--kcpt-gold);
  color: var(--kcpt-charcoal);
}

#footer h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--kcpt-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 22px 0;
  position: relative;
  padding-bottom: 12px;
  font-family: "Poppins", sans-serif;
}

#footer h4:after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--kcpt-gold);
}

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

#footer .footer-links ul li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

#footer .footer-links ul i {
  color: var(--kcpt-gold);
  font-size: 14px;
}

#footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.72);
  transition: 0.3s;
  font-size: 14px;
}

#footer .footer-links ul a:hover {
  color: var(--kcpt-gold);
  padding-left: 4px;
}

#footer .footer-newsletter p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

#footer .footer-newsletter form {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  overflow: hidden;
}

#footer .footer-newsletter input[type="email"] {
  flex: 1;
  padding: 12px 14px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 14px;
}

#footer .footer-newsletter input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

#footer .footer-newsletter input[type="email"]:focus { outline: none; }

#footer .footer-newsletter input[type="submit"] {
  background: var(--kcpt-gold);
  color: var(--kcpt-charcoal);
  border: none;
  padding: 0 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}

#footer .footer-newsletter input[type="submit"]:hover {
  background: var(--kcpt-gold-dark);
  color: #fff;
}

#footer .footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#footer .copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

#footer .copyright strong span { color: var(--kcpt-gold); }

#footer .credits {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  margin-top: 4px;
}

@media (max-width: 575px) {
  #footer .footer-top { padding: 50px 0 20px; }
}

/* ==========================================================================
   #UTILITY / AOS RESET
   ========================================================================== */
[data-aos] { transition-property: transform, opacity; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 8px 12px;
  z-index: 99999;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus { left: 8px; top: 8px; }

/*--------------------------------------------------------------
# Sub-page styles (rates, costs, faq, rules, contact, legal, 404)
--------------------------------------------------------------*/

/* Header on inner pages — always has solid background */
.header-inner-pages {
  background: rgba(255,255,255,0.98) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Page section wrapper */
.page-section {
  padding: 130px 0 80px 0;
  background: #fff;
}
.page-section .section-title { margin-bottom: 40px; }

/* Buttons */
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--kcpt-gold);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--kcpt-gold);
  margin: 6px;
}
.btn-primary-cta:hover {
  background: var(--kcpt-gold-dark);
  border-color: var(--kcpt-gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,169,97,0.35);
}
.btn-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--kcpt-charcoal);
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid var(--kcpt-charcoal);
  margin: 6px;
}
.btn-secondary-cta:hover {
  background: var(--kcpt-charcoal);
  color: #fff;
  transform: translateY(-2px);
}
.btn-small {
  display: inline-block;
  background: var(--kcpt-gold);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-small:hover { background: var(--kcpt-gold-dark); color: #fff; }

/* Pricing table */
.pricing-table-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table thead th {
  background: var(--kcpt-charcoal);
  color: #fff;
  padding: 18px 16px;
  text-align: left;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pricing-table tbody td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--kcpt-line);
  vertical-align: middle;
}
.pricing-table tbody tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--kcpt-bg-soft); }
.rate-pill {
  display: inline-block;
  background: var(--kcpt-gold);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
}

/* Info boxes (used in rates, contact, etc.) */
.info-box {
  background: var(--kcpt-bg-soft);
  border-radius: 10px;
  padding: 30px 28px;
  border-left: 4px solid var(--kcpt-gold);
  margin-bottom: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.info-box i {
  color: var(--kcpt-gold);
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.info-box h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--kcpt-charcoal);
  margin-bottom: 10px;
}
.info-box p { margin-bottom: 6px; color: var(--kcpt-body); }
.info-box a { color: var(--kcpt-gold-dark); text-decoration: none; font-weight: 600; }
.info-box a:hover { color: var(--kcpt-gold); }

.info-box-soft {
  background: #fff;
  border: 1px solid var(--kcpt-line);
  border-left: 4px solid var(--kcpt-gold);
}

.info-box-wrap .info-box { margin-bottom: 20px; }

/* Check list */
.check-list {
  list-style: none;
  padding-left: 0;
}
.check-list li {
  padding: 6px 0 6px 30px;
  position: relative;
}
.check-list li::before {
  content: "\F26B"; /* bi-check-lg */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--kcpt-gold);
  font-weight: 700;
}

/* Cost cards */
.cost-card {
  background: #fff;
  border: 1px solid var(--kcpt-line);
  border-radius: 12px;
  padding: 32px 28px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.cost-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.cost-card h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--kcpt-charcoal);
  margin-bottom: 8px;
  font-size: 22px;
}
.cost-card-featured {
  background: linear-gradient(135deg, #fff 0%, var(--kcpt-bg-soft) 100%);
  border: 2px solid var(--kcpt-gold);
}
.cost-table {
  width: 100%;
  margin-top: 18px;
}
.cost-table td {
  padding: 10px 0;
  border-bottom: 1px dashed var(--kcpt-line);
  vertical-align: middle;
}
.cost-table tr:last-child td { border-bottom: none; }
.cost-table .total-row td {
  border-top: 2px solid var(--kcpt-charcoal);
  border-bottom: none;
  padding-top: 14px;
  font-size: 17px;
  color: var(--kcpt-charcoal);
}

/* FAQ accordion */
.faq-list {
  background: #fff;
}
.faq-item {
  border: 1px solid var(--kcpt-line);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.faq-item.open {
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  border-color: var(--kcpt-gold);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: #fff;
  border: none;
  padding: 18px 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--kcpt-charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease;
}
.faq-question:hover { background: var(--kcpt-bg-soft); }
.faq-question i {
  transition: transform 0.3s ease;
  color: var(--kcpt-gold);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: var(--kcpt-bg-soft);
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 18px 24px;
}
.faq-answer p {
  margin: 0;
  color: var(--kcpt-body);
  line-height: 1.7;
}

/* Rules blocks */
.rules-block {
  background: #fff;
  border: 1px solid var(--kcpt-line);
  border-radius: 10px;
  padding: 30px 32px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.rules-block h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--kcpt-charcoal);
  font-size: 22px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--kcpt-gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.rules-block h3 i { color: var(--kcpt-gold); }
.rules-list {
  padding-left: 22px;
  color: var(--kcpt-body);
}
.rules-list li {
  padding: 6px 0;
  line-height: 1.7;
}
.rules-list li::marker { color: var(--kcpt-gold); font-weight: 700; }

/* PDF embed */
.pdf-embed-wrap {
  position: relative;
  width: 100%;
  height: 800px;
  background: var(--kcpt-bg-soft);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--kcpt-line);
}
.pdf-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact map */
.contact-map {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
}

/* Contact form labels */
.contact-form label {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--kcpt-charcoal);
  margin-bottom: 6px;
}
.contact-form .form-control {
  border: 1px solid var(--kcpt-line);
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 16px;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form .form-control:focus {
  border-color: var(--kcpt-gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,0.15);
  outline: none;
}

/* Legal pages */
.legal-content h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--kcpt-charcoal);
  font-size: 20px;
  margin-top: 28px;
  margin-bottom: 12px;
}
.legal-content p, .legal-content ul {
  color: var(--kcpt-body);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul { padding-left: 24px; }
.legal-content a { color: var(--kcpt-gold-dark); text-decoration: underline; }
.legal-content a:hover { color: var(--kcpt-gold); }

/* 404 page */
.error-404 {
  padding: 160px 0 100px 0;
  text-align: center;
}
.error-404 h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  line-height: 1;
}
.error-404 .list-inline-item {
  margin: 0 12px;
}
.error-404 .list-inline-item a {
  color: var(--kcpt-gold-dark);
  text-decoration: none;
  font-weight: 600;
}
.error-404 .list-inline-item a:hover {
  color: var(--kcpt-gold);
  text-decoration: underline;
}

/* Breadcrumbs adjustments for inner pages */
.breadcrumbs ol li a { color: var(--kcpt-gold-dark); text-decoration: none; }
.breadcrumbs ol li a:hover { color: var(--kcpt-gold); }

/* Mobile responsive tweaks */
@media (max-width: 768px) {
  .page-section { padding: 110px 0 60px 0; }
  .pricing-table thead { display: none; }
  .pricing-table tbody td {
    display: block;
    padding: 8px 14px;
    border-bottom: 1px solid var(--kcpt-line);
  }
  .pricing-table tbody tr {
    display: block;
    margin-bottom: 16px;
    border: 1px solid var(--kcpt-line);
    border-radius: 8px;
    overflow: hidden;
  }
  .pdf-embed-wrap { height: 600px; }
  .btn-primary-cta, .btn-secondary-cta { display: block; margin: 8px auto; max-width: 280px; justify-content: center; }
}

/* Hero video modal */
.hero-video-modal .modal-content {
  background: #000;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}
.hero-video-modal .modal-header {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
  padding: 0;
  background: transparent;
}
.hero-video-modal .btn-close {
  background-color: rgba(0,0,0,0.6);
  border-radius: 50%;
  padding: 12px;
  opacity: 0.9;
}
.hero-video-modal .btn-close:hover { opacity: 1; }
.hero-video-modal .modal-body { background: #000; }
