/* ===========================================================
   Winger "Home 2" recreation
   Replace the remote image URLs with your own licensed assets.
   =========================================================== */

:root {
  --accent: #2cc0ff;
  --accent-dark: #09212b;
  --dark: #0b2733;
  --darker: #0a1b22;
  --text: #5b6b73;
  --text-light: #a1b0b8;
  --white: #ffffff;
  --border: #e3e7ea;
  --heading-font: 'Jost', sans-serif;
  --body-font: 'Inter', sans-serif;
  --container: 1300px;
  --radius: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color .3s ease; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  color: var(--accent-dark);
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 25px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading-font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  padding: 16px 34px;
  border-radius: 40px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
}
.btn-small { padding: 12px 26px; }
.btn-dark { background: var(--accent-dark); color: #fff; }
.btn-dark:hover { background: var(--accent); color: #fff; }
.btn-outline { background: transparent; border-color: var(--border); color: var(--accent-dark); }
.btn-outline:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-light { background: #fff; color: var(--accent-dark); }
.btn-light:hover { background: var(--accent); color: #fff; }

.link-arrow {
  font-family: var(--heading-font);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--accent-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.link-arrow i { transition: transform .3s ease; color: var(--accent); }
.link-arrow:hover { color: var(--accent); }
.link-arrow:hover i { transform: translateX(6px); }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--accent-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader_wrap { display: flex; gap: 10px; }
.preloader_wrap .dot {
  width: 14px; height: 14px; border-radius: 50%; background: var(--accent);
  animation: bounce 1.4s infinite ease-in-out both;
}
.preloader_wrap .dot:nth-child(1) { animation-delay: -.32s; }
.preloader_wrap .dot:nth-child(2) { animation-delay: -.16s; }
@keyframes bounce { 0%,80%,100% { transform: scale(0); } 40% { transform: scale(1); } }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
  background: #fff; box-shadow: 0 1px 0 rgba(0,0,0,.05);
  transition: transform .4s ease, box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(9,33,43,.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 88px; gap: 24px; }
.logo img { height: 58px; width: auto; }

.main-nav .menu { display: flex; align-items: center; gap: 22px; }
.main-nav .menu > li > a {
  font-family: var(--heading-font);
  font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: .3px;
  color: var(--accent-dark); display: inline-flex; align-items: center; gap: 6px; padding: 12px 0;
  white-space: nowrap;
}
.main-nav .menu > li > a i { font-size: 10px; }
.main-nav .menu > li > a:hover { color: var(--accent); }
.main-nav .has-children { position: relative; }
.sub-menu {
  position: absolute; top: 100%; left: -20px; min-width: 210px;
  background: var(--accent-dark); padding: 14px 0; border-radius: 4px;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .3s ease; box-shadow: 0 20px 40px rgba(0,0,0,.2);
}
.has-children:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu li a {
  display: block; padding: 9px 24px; color: var(--text-light);
  font-family: var(--heading-font); font-size: 13px; text-transform: uppercase; letter-spacing: .5px;
}
.sub-menu li a:hover, .sub-menu li.current a { color: var(--accent); }

.header-right { display: flex; align-items: center; gap: 22px; }
.header-contact { display: flex; align-items: center; gap: 12px; padding: 10px 18px; border-radius: 50px; background: var(--accent-dark); color: #fff; transition: background .25s ease, color .25s ease; flex-shrink: 0; white-space: nowrap; }
.header-contact:hover { background: var(--accent); color: #fff; }
.header-contact-icon { font-size: 26px; line-height: 1; color: var(--accent); flex-shrink: 0; }
.header-contact:hover .header-contact-icon { color: #fff; }
.header-contact-text { display: flex; flex-direction: column; line-height: 1.25; white-space: nowrap; }
.header-contact-label { font-family: var(--heading-font); font-weight: 600; font-size: 13px; opacity: .85; white-space: nowrap; }
.header-contact-number { font-family: var(--heading-font); font-weight: 700; font-size: 16px; color: inherit; white-space: nowrap; }
.socials { display: flex; gap: 14px; }
.socials a { color: var(--accent-dark); font-size: 14px; }
.socials a:hover { color: var(--accent); }
.menu-toggle { display: none; background: none; border: 0; font-size: 22px; color: var(--accent-dark); cursor: pointer; }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 1000; background: var(--darker);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  opacity: 0; visibility: hidden; transition: all .4s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-close {
  position: absolute; top: 26px; right: 26px; z-index: 2;
  width: 40px; height: 40px; background: none; border: 0; color: #fff; font-size: 28px; cursor: pointer;
  transition: transform .3s ease, color .3s ease;
}
.mobile-close:hover { color: var(--accent); transform: rotate(90deg); }
.mobile-menu-inner { width: 100%; max-width: 480px; margin: 0 auto; padding: 60px 30px 50px; }
.mobile-logo { display: block; text-align: center; margin-bottom: 40px; }
.mobile-logo img { height: 52px; width: auto; display: inline-block; background: #fff; padding: 8px 14px; border-radius: 6px; }

.mobile-nav > ul { display: block; }
.mobile-nav li { border: 0; }
.m-item {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 0;
}
.mobile-nav .m-item a {
  font-family: var(--heading-font); font-weight: 600; text-transform: uppercase;
  color: #fff; font-size: 26px; letter-spacing: .5px; flex: 1;
}
.mobile-nav .current > .m-item a { color: var(--accent); }
.mobile-nav .m-item a:hover { color: var(--accent); }
.m-toggle {
  flex: 0 0 auto; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.06); border: 0; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  transition: background .3s ease, transform .3s ease;
}
.m-toggle:hover { background: var(--accent); color: #fff; }
.m-has-children.open > .m-item .m-toggle { transform: rotate(180deg); background: var(--accent); }

.m-sub {
  max-height: 0; overflow: hidden; transition: max-height .4s ease; padding-left: 4px;
}
.m-has-children.open > .m-sub { max-height: 500px; }
.m-sub li a {
  display: block; padding: 8px 0; color: var(--text-light);
  font-family: var(--heading-font); text-transform: uppercase; font-size: 15px; letter-spacing: .5px;
}
.m-sub li a:hover { color: var(--accent); }

.mobile-search { position: relative; margin: 30px 0; }
.mobile-search input {
  width: 100%; padding: 16px 50px 16px 24px; border: 0; border-radius: 40px;
  background: rgba(255,255,255,.06); color: #fff; font-family: var(--body-font); font-size: 15px;
}
.mobile-search input::placeholder { color: var(--text-light); }
.mobile-search input:focus { outline: 1px solid rgba(255,255,255,.2); }
.mobile-search button {
  position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  background: none; border: 0; color: #fff; font-size: 16px; cursor: pointer;
}
.mobile-search button:hover { color: var(--accent); }

.mobile-menu .socials { justify-content: center; gap: 26px; }
.mobile-menu .socials a { color: #fff; font-size: 18px; }
.mobile-menu .socials a:hover { color: var(--accent); }

/* ---------- Hero ---------- */

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; }
.hero-left { background: var(--accent); display: flex; align-items: flex-end; padding: 0 0 0 max(25px, calc((100vw - var(--container))/2 + 25px)); }
.hero-left-inner { max-width: 620px; padding: 80px 60px 80px 0; }
.hero-left h1 { color: #fff; font-size: 64px; line-height: 1.05; margin-bottom: 26px; }
.hero-left h1 b { font-weight: 700; }
.hero-sub { color: #fff; font-size: 18px; max-width: 480px; margin-bottom: 50px; }

.hero-card { display: flex; align-items: stretch; max-width: 560px; box-shadow: 0 30px 60px rgba(9,33,43,.18); transform: translateY(50px); }
.hero-card-media {
  flex: 0 0 38%;
  background: center top / cover no-repeat;
  display: flex; align-items: center; justify-content: center; min-height: 150px;
}
.play-btn {
  width: 64px; height: 64px; border-radius: 50%; background: #fff; color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: all .3s ease; position: relative;
}
.play-btn::after { content: ''; position: absolute; inset: -10px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5); animation: pulse 2s infinite; }
.play-btn:hover { background: var(--accent-dark); color: #fff; }
@keyframes pulse { 0% { transform: scale(.9); opacity: 1; } 100% { transform: scale(1.4); opacity: 0; } }
.hero-card-body { flex: 1; background: #fff; padding: 34px 36px; display: flex; flex-direction: column; gap: 18px; justify-content: center; }
.hero-card-body h5 { font-size: 18px; line-height: 1.4; }

.hero-right {
  background: url("https://sf50.devspirex.com/wp-content/uploads/2026/07/10-scaled.webp") center/cover no-repeat;
}

h1.reveal.in b {
    text-decoration: underline !important;
}

/* ---------- Home marquee ---------- */
.home-marquee {
  background: var(--accent-dark);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.marquee-slider { overflow: hidden; width: 100%; }
.marquee-slider-inner {
  display: flex;
  width: max-content;
  animation: sf50-marquee 55s linear infinite;
}
.marquee-slider:hover .marquee-slider-inner { animation-play-state: paused; }
.marquee-slide {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
}
.marquee-item {
  flex-shrink: 0;
  padding: 0 28px;
  white-space: nowrap;
}
.marquee-item .title {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
@keyframes sf50-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-slider-inner { animation: none; }
}

/* ---------- Excellence ---------- */
.excellence { padding: 120px 25px; }
.excellence-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: center; }
.excellence-text h4 { font-size: 34px; margin-bottom: 24px; }
.excellence-text p { margin-bottom: 18px; }
.excellence-text .btn { margin-top: 16px; }
.excellence-image {
  align-self: stretch; min-height: 420px; border-radius: 4px;
  background: center top / cover no-repeat;
}
.excellence-welcome { background: var(--dark); color: var(--text-light); padding: 50px; border-radius: 4px; align-self: stretch; }
.welcome-icon { color: var(--accent); font-size: 30px; margin-bottom: 30px; }
.welcome-text { color: #fff; font-size: 16px; font-weight: 500; line-height: 1.75; margin-bottom: 30px; }
.signature { width: 200px; max-width: 100%; height: auto; }
.signature-meta {
  margin-top: 12px;
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3px;
  line-height: 1.45;
}

/* ---------- Features ---------- */
.features { padding-bottom: 120px; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.feature-icon { font-size: 46px; color: var(--accent); display: inline-block; margin-bottom: 26px; }
.feature h4 { font-size: 20px; margin-bottom: 16px; }
.feature p { font-size: 15px; }

/* ---------- Pricing ---------- */
.pricing { position: relative; padding: 110px 0; isolation: isolate;
  background: url("../images/background-5-copyright.jpg") center/cover no-repeat fixed;
}
.pricing-overlay { position: absolute; inset: 0; background: #89999b; opacity: .5; z-index: -1; }
.pricing-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 50px; }
.pricing-head h4 { color: #fff; font-size: 34px; }
.pricing-head h4 b { color: #fff; }
.slider-controls { display: flex; gap: 12px; }
.slider-controls button {
  width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,.6);
  background: transparent; color: #fff; cursor: pointer; font-size: 15px; transition: all .3s ease;
}
.slider-controls button:hover { background: #fff; color: var(--accent-dark); }

.pricing-slider { overflow: hidden; }
.pricing-track { display: flex; gap: 30px; transition: transform .5s ease; }
.price-card {
  flex: 0 0 calc((100% - 60px) / 3); background: #fff; padding: 50px 45px; border-radius: 4px;
}
.price-label { font-family: var(--heading-font); font-weight: 700; color: var(--accent); font-size: 15px; letter-spacing: 2px; display: block; margin-bottom: 20px; }
.price-card h3 { font-size: 26px; margin-bottom: 12px; }
.price-card h6 { color: var(--accent-dark); font-size: 13px; margin-bottom: 22px; opacity: .65; }
.price-card p { font-size: 15px; margin-bottom: 28px; }
.price { display: flex; align-items: flex-start; color: var(--accent-dark); font-family: var(--heading-font); font-weight: 700; }
.price .cur { font-size: 22px; margin-top: 6px; }
.price .val { font-size: 52px; line-height: 1; }
.price .per { font-size: 15px; align-self: flex-end; margin-bottom: 8px; color: var(--text); font-weight: 500; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--dark); padding: 110px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.testimonial p { color: var(--text-light); margin-bottom: 30px; font-size: 15px; }
.t-author { display: flex; align-items: center; gap: 18px; }
.t-author img { width: 70px; height: 70px; border-radius: 50%; }
.t-author h4 { color: #fff; font-size: 18px; }
.t-author span { color: var(--accent); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Contact ---------- */
.contact { padding: 120px 25px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-info h4 { font-size: 34px; margin-bottom: 18px; }
.contact-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 480px;
}
.contact-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-row:first-child { padding-top: 4px; }
.c-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(44, 192, 255, .12);
  color: var(--accent);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-row-body { min-width: 0; display: flex; flex-direction: column; gap: 4px; padding-top: 4px; }
.contact-row-label {
  display: block;
  font-size: 13px;
  color: var(--text);
  letter-spacing: .2px;
  line-height: 1.4;
}
.contact-row-value {
  display: block;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-dark);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.35;
  word-break: break-word;
}
.contact-row-value:hover { color: var(--accent); }
.contact-row-address {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
}
.contact-map {
  min-height: 360px; border-radius: 4px; display: flex; align-items: center; justify-content: center;
  background: url("../images/map-image.jpg") center/cover no-repeat;
}

/* ---------- Sign up strip ---------- */
.signup { background: var(--accent); padding: 60px 0; }
.signup-form { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: center; }
.signup-form input[type="text"], .signup-form input[type="email"], .signup-form select {
  width: 100%; padding: 16px 20px; border: 0; border-radius: 40px; font-family: var(--body-font); font-size: 14px; color: var(--accent-dark);
}
.signup-form select { appearance: none; background: #fff; cursor: pointer; }
.signup-form .btn { justify-content: center; }
.signup-form .agree { grid-column: 1 / -1; color: #fff; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.signup-form .agree input { width: 18px; height: 18px; }

/* ---------- Home: hero extras ---------- */
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; color: #fff;
  font-family: var(--heading-font); font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; font-size: 13px; margin-bottom: 22px;
}
.hero-eyebrow::before { content: ""; width: 30px; height: 2px; background: rgba(255,255,255,.7); }
.hero-cta { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; margin-bottom: 50px; }
.hero-call { display: inline-flex; align-items: center; gap: 14px; color: #fff; }
.hero-call-icon {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.18); flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all .3s ease;
}
.hero-call small { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: .85; }
.hero-call strong { display: block; font-family: var(--heading-font); font-size: 20px; line-height: 1.2; }
.hero-call:hover .hero-call-icon { background: #fff; color: var(--accent-dark); }

/* ---------- Home: services & solutions ---------- */
.svc { padding: 110px 25px; background: #f3f6f7; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.svc-card {
  background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 44px 38px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(9,33,43,.12); border-color: transparent; }
.svc-icon {
  width: 64px; height: 64px; border-radius: 14px; background: rgba(44,192,255,.12); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 26px;
}
.svc-card h3 { font-size: 22px; text-transform: none; margin-bottom: 22px; }
.svc-list { display: grid; gap: 13px; }
.svc-list li { display: flex; gap: 12px; font-size: 15px; line-height: 1.5; color: var(--text); }
.svc-list li i { color: var(--accent); font-size: 13px; margin-top: 5px; flex: 0 0 auto; }

/* ---------- Home: stats ---------- */
.stat-strip { background: var(--accent-dark); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 64px 25px; text-align: center; }
.stat .num { display: block; font-family: var(--heading-font); font-weight: 700; color: #fff; font-size: 46px; line-height: 1; margin-bottom: 12px; }
.stat .num span { color: var(--accent); }
.stat .lbl { color: rgba(255,255,255,.72); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }

/* ---------- Home: latest articles ---------- */
.home-articles { padding-top: 110px; padding-bottom: 110px; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 50px; }
.sec-head h2 { font-size: 38px; text-transform: none; }
.sec-head .bx-eyebrow { margin-bottom: 12px; }
.sec-head-actions { display: flex; align-items: center; gap: 20px; }
.articles-controls { display: flex; gap: 12px; }
.articles-controls button {
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--border);
  background: #fff; color: var(--accent-dark); cursor: pointer; font-size: 15px; transition: all .3s ease;
}
.articles-controls button:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.articles-slider { overflow: hidden; }
.articles-track { display: flex; gap: 34px; transition: transform .5s ease; }
.articles-track > .bx-card { flex: 0 0 calc((100% - 68px) / 3); margin: 0; }
@media (max-width: 1024px) {
  .articles-track > .bx-card { flex-basis: calc((100% - 34px) / 2); }
}
@media (max-width: 767px) {
  .articles-track > .bx-card { flex-basis: 100%; }
}

/* ---------- Home: YouTube CTA ---------- */
.yt-cta { padding: 100px 25px; text-align: center; background: linear-gradient(135deg, var(--dark), var(--darker)); }
.yt-cta .container { max-width: 1120px; }
.yt-icon { display: inline-block; font-size: 60px; color: #ff0000; margin-bottom: 24px; }
.yt-cta h2 { color: #fff; font-size: 40px; text-transform: none; margin-bottom: 18px; }
.yt-cta > .container > p { color: rgba(255,255,255,.75); font-size: 16px; margin: 0 auto 40px; max-width: 760px; }
.yt-cta .btn i { margin-left: 8px; }

.yt-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  margin: 0 0 40px;
}
.yt-video-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
}
.yt-video-card .video-embed { background: #000; }
.yt-video-title {
  font-size: 15px;
  line-height: 1.4;
  margin: 0;
  padding: 14px 16px 16px;
  text-transform: none;
  font-weight: 600;
}
.yt-video-title a { color: #fff; }
.yt-video-title a:hover { color: var(--accent); }

@media (max-width: 992px) {
  .yt-videos { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .yt-videos { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- Home: contact lead ---------- */
.contact-lead-text { font-size: 16px; color: var(--text); margin-bottom: 28px; max-width: 440px; line-height: 1.7; }

@media (max-width: 992px) {
  .svc-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .hero-call strong { font-size: 18px; }
}
@media (max-width: 640px) {
  .sec-head h2 { font-size: 28px; }
  .yt-cta h2 { font-size: 30px; }
  .stat .num { font-size: 38px; }
}

/* ---------- Cirrus Vision Jet Support page ---------- */
.page-crumb { margin-top: 16px; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.85); font-size: 14px; }
.page-crumb a { color: #fff; }
.page-crumb a:hover { color: var(--accent); }
.page-crumb .current { color: rgba(255,255,255,.7); }

.vjs-banner .page-banner-overlay { opacity: .5; }

.vjs-intro { padding: 100px 25px; }
.vjs-intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.vjs-intro-copy h2 { font-size: 38px; text-transform: none; line-height: 1.15; margin-bottom: 24px; }
.vjs-intro-copy .bx-eyebrow { margin-bottom: 14px; }
.vjs-intro-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.vjs-intro-actions .btn i { margin-right: 8px; }
.vjs-copy p { margin-bottom: 18px; font-size: 16px; line-height: 1.8; }

.vjs-intro-media {
  position: relative; margin: 0; border-radius: 12px; overflow: hidden;
  box-shadow: 0 32px 64px rgba(9,33,43,.18); min-height: 480px;
}
.vjs-intro-media img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; object-position: top center; display: block; }
.vjs-media-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 70px 28px 24px; color: #fff; font-size: 14px;
  background: linear-gradient(transparent, rgba(9,33,43,.92));
}

.vjs-highlights { padding: 0 25px 90px; margin-top: -30px; }
.vjs-highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vjs-highlight {
  background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 34px 28px;
  box-shadow: 0 18px 40px rgba(9,33,43,.08); transition: transform .3s ease, box-shadow .3s ease;
}
.vjs-highlight:hover { transform: translateY(-6px); box-shadow: 0 28px 50px rgba(9,33,43,.12); }
.vjs-highlight-icon {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(44,192,255,.12); color: var(--accent); font-size: 20px; margin-bottom: 18px;
}
.vjs-highlight h3 { font-size: 20px; text-transform: none; margin-bottom: 10px; color: var(--accent-dark); }
.vjs-highlight p { margin: 0; font-size: 15px; line-height: 1.7; }

.vjs-expertise-section { padding: 90px 25px 100px; background: linear-gradient(180deg, #f3f6f7 0%, #eef2f4 100%); }
.vjs-expertise-head {
  display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: center; margin-bottom: 50px;
}
.vjs-expertise-head h2 { font-size: 36px; text-transform: none; margin-bottom: 14px; }
.vjs-expertise-head p { margin: 0; font-size: 16px; }
.vjs-expertise-photo {
  margin: 0; border-radius: 10px; overflow: hidden; box-shadow: 0 24px 48px rgba(9,33,43,.14); height: 280px;
}
.vjs-expertise-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }

.vjs-service-grid {
  list-style: none; margin: 0 0 50px; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.vjs-service-card {
  display: flex; align-items: flex-start; gap: 14px; background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 22px 20px; font-size: 15px; line-height: 1.55; color: var(--accent-dark);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.vjs-service-card:hover { border-color: rgba(44,192,255,.45); box-shadow: 0 16px 32px rgba(9,33,43,.08); }
.vjs-service-icon {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 11px; margin-top: 2px;
}

.vjs-contact-panel {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
  padding: 40px 44px; border-radius: 12px; background: linear-gradient(135deg, var(--dark), var(--darker));
}
.vjs-contact-panel h3 { color: #fff; font-size: 26px; text-transform: none; margin-bottom: 12px; }
.vjs-contact-panel p { color: rgba(255,255,255,.78); margin-bottom: 8px; font-size: 15px; }
.vjs-contact-panel a { color: var(--accent); font-weight: 600; }
.vjs-contact-panel a:hover { text-decoration: underline; }
.vjs-contact-panel-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.vjs-contact-panel-actions .btn i { margin-right: 8px; }

.vjs-testimonial-section { padding: 100px 25px; }
.vjs-quote-card {
  max-width: 920px; margin: 0 auto; background: #fff; border-left: 5px solid var(--accent);
  border-radius: 10px; padding: 48px 50px; box-shadow: 0 24px 50px rgba(9,33,43,.1);
}
.vjs-quote-mark { font-size: 42px; color: var(--accent); line-height: 1; margin-bottom: 16px; }
.vjs-quote-card blockquote {
  font-size: 20px; line-height: 1.75; color: var(--accent-dark); font-style: italic; margin: 0 0 22px;
}
.vjs-quote-card cite { font-style: normal; font-weight: 600; color: var(--accent); font-size: 15px; }

.vjs-newsletter-head { text-align: center; margin-bottom: 28px; color: #fff; }
.vjs-newsletter-head h2 { color: #fff; font-size: 32px; text-transform: none; margin-bottom: 10px; }
.vjs-newsletter-head p { color: rgba(255,255,255,.9); margin: 0; }

/* Legacy vjs layout (page-vision-jet-support.php fallback) */
.vjs-section { padding: 100px 25px; }
.vjs-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.vjs-text .bx-eyebrow { margin-bottom: 14px; }
.vjs-text h2 { font-size: 34px; text-transform: none; margin-bottom: 24px; line-height: 1.2; }
.vjs-text p { margin-bottom: 18px; }
.vjs-cta { margin-bottom: 28px; }
.vjs-cta .btn i { margin-right: 8px; }
.vjs-media { position: relative; margin: 0; border-radius: 10px; overflow: hidden; box-shadow: 0 30px 60px rgba(9,33,43,.16); height: 480px; }
.vjs-media img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.vjs-caption {
  position: absolute; left: 0; right: 0; bottom: 0; color: #fff; padding: 50px 26px 22px; font-size: 14px;
  background: linear-gradient(transparent, rgba(9,33,43,.88));
}
.vjs-expertise { background: #f3f6f7; }
.vjs-list-2 { grid-template-columns: repeat(2, 1fr); gap: 14px 30px; }
.vjs-note { margin-top: 28px; }
.vjs-note p { margin-bottom: 10px; font-size: 15px; }
.vjs-note a { color: var(--accent); font-weight: 600; }
.vjs-note a:hover { text-decoration: underline; }
.vjs-quote { max-width: 900px; margin: 0 auto; text-align: center; }
.vjs-quote .q-mark { font-size: 46px; color: var(--accent); line-height: 1; margin-bottom: 18px; }
.vjs-quote blockquote { font-size: 20px; line-height: 1.75; color: var(--accent-dark); font-style: italic; margin: 0 0 24px; }
.vjs-quote cite { font-style: normal; font-weight: 600; color: var(--accent); font-size: 15px; }

@media (max-width: 1024px) {
  .vjs-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .vjs-intro-media { min-height: 360px; }
  .vjs-intro-media img { min-height: 360px; }
  .vjs-highlight-grid { grid-template-columns: 1fr; }
  .vjs-expertise-head { grid-template-columns: 1fr; }
  .vjs-expertise-photo { height: 320px; }
  .vjs-service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .vjs-section { padding: 70px 25px; }
  .vjs-split { grid-template-columns: 1fr; gap: 36px; }
  .vjs-media { height: 360px; }
  .vjs-list-2 { grid-template-columns: 1fr; }
  .vjs-quote blockquote { font-size: 17px; }
}

@media (max-width: 767px) {
  .vjs-intro { padding: 70px 25px; }
  .vjs-intro-copy h2 { font-size: 30px; }
  .vjs-highlights { padding-bottom: 70px; }
  .vjs-expertise-section { padding: 70px 25px; }
  .vjs-expertise-head h2 { font-size: 28px; }
  .vjs-service-grid { grid-template-columns: 1fr; }
  .vjs-contact-panel { padding: 32px 26px; }
  .vjs-contact-panel-actions { width: 100%; }
  .vjs-contact-panel-actions .btn { width: 100%; justify-content: center; }
  .vjs-testimonial-section { padding: 70px 25px; }
  .vjs-quote-card { padding: 34px 26px; }
  .vjs-quote-card blockquote { font-size: 17px; }
}

/* ---------- Best SF50 Vision Jet Support Provider page ---------- */
.bsf-banner .page-banner-overlay { opacity: .5; }

.bsf-intro { padding: 100px 25px; }
.bsf-intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.bsf-intro-copy h2 { font-size: 38px; text-transform: none; line-height: 1.15; margin-bottom: 24px; }
.bsf-intro-copy .bx-eyebrow { margin-bottom: 14px; }
.bsf-intro-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.bsf-intro-actions .btn i { margin-right: 8px; }
.bsf-copy p { margin-bottom: 18px; font-size: 16px; line-height: 1.8; }
.bsf-tagline { margin-top: 8px; }
.tr-prep-heading {
  font-size: 30px; text-transform: none; line-height: 1.2; margin: 32px 0 0;
  color: var(--accent-dark);
}

.bsf-intro-media {
  position: relative; margin: 0; border-radius: 12px; overflow: hidden;
  box-shadow: 0 32px 64px rgba(9,33,43,.18); min-height: 480px;
}
.bsf-intro-media img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; object-position: top center; display: block; }
.bsf-media-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 70px 28px 24px; color: #fff; font-size: 14px;
  background: linear-gradient(transparent, rgba(9,33,43,.92));
}

.bsf-highlights { padding: 0 25px 90px; margin-top: -30px; }
.bsf-highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.bsf-highlight {
  background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 34px 28px;
  box-shadow: 0 18px 40px rgba(9,33,43,.08); transition: transform .3s ease, box-shadow .3s ease;
}
.bsf-highlight:hover { transform: translateY(-6px); box-shadow: 0 28px 50px rgba(9,33,43,.12); }
.bsf-highlight-icon {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(44,192,255,.12); color: var(--accent); font-size: 20px; margin-bottom: 18px;
}
.bsf-highlight h3 { font-size: 20px; text-transform: none; margin-bottom: 10px; color: var(--accent-dark); }
.bsf-highlight p { margin: 0; font-size: 15px; line-height: 1.7; }

.bsf-expertise { padding: 90px 25px 100px; background: linear-gradient(180deg, #f3f6f7 0%, #eef2f4 100%); }
.bsf-expertise-head { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.bsf-expertise-head h2 { font-size: 36px; text-transform: none; margin-bottom: 14px; }
.bsf-expertise-head p { font-size: 16px; margin: 0; }

.bsf-service-grid {
  list-style: none; margin: 0 0 50px; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.bsf-service-card {
  display: flex; align-items: flex-start; gap: 14px; background: #fff; border: 1px solid var(--border);
  border-radius: 8px; padding: 22px 20px; font-size: 15px; line-height: 1.55; color: var(--accent-dark);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.bsf-service-card:hover { border-color: rgba(44,192,255,.45); box-shadow: 0 16px 32px rgba(9,33,43,.08); }
.bsf-service-icon {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 11px; margin-top: 2px;
}

.bsf-contact-panel {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
  padding: 40px 44px; border-radius: 12px; background: linear-gradient(135deg, var(--dark), var(--darker));
}
.bsf-contact-panel h3 { color: #fff; font-size: 26px; text-transform: none; margin-bottom: 12px; }
.bsf-contact-panel p { color: rgba(255,255,255,.78); margin-bottom: 8px; font-size: 15px; }
.bsf-contact-panel a { color: var(--accent); font-weight: 600; }
.bsf-contact-panel a:hover { text-decoration: underline; }
.bsf-contact-panel-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.bsf-contact-panel-actions .btn i { margin-right: 8px; }
.btn-outline-light {
  border: 1px solid rgba(255,255,255,.35); color: #fff; background: transparent;
}
.btn-outline-light:hover { background: rgba(255,255,255,.1); color: #fff; }

.bsf-testimonial { padding: 100px 25px; }
.bsf-quote {
  max-width: 920px; margin: 0 auto; background: #fff; border-left: 5px solid var(--accent);
  border-radius: 10px; padding: 48px 50px; box-shadow: 0 24px 50px rgba(9,33,43,.1);
}
.bsf-quote-mark { font-size: 42px; color: var(--accent); line-height: 1; margin-bottom: 16px; }
.bsf-quote blockquote {
  font-size: 20px; line-height: 1.75; color: var(--accent-dark); font-style: italic; margin: 0 0 22px;
}
.bsf-quote cite { font-style: normal; font-weight: 600; color: var(--accent); font-size: 15px; }

.bsf-newsletter-head { text-align: center; margin-bottom: 28px; color: #fff; }
.bsf-newsletter-head h2 { color: #fff; font-size: 32px; text-transform: none; margin-bottom: 10px; }
.bsf-newsletter-head p { color: rgba(255,255,255,.9); margin: 0; }

@media (max-width: 1024px) {
  .bsf-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .bsf-intro-media { min-height: 360px; }
  .bsf-intro-media img { min-height: 360px; }
  .bsf-highlight-grid { grid-template-columns: 1fr; }
  .bsf-service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .bsf-intro { padding: 70px 25px; }
  .bsf-intro-copy h2 { font-size: 30px; }
  .bsf-highlights { padding-bottom: 70px; }
  .bsf-expertise { padding: 70px 25px; }
  .bsf-expertise-head h2 { font-size: 28px; }
  .bsf-service-grid { grid-template-columns: 1fr; }
  .bsf-contact-panel { padding: 32px 26px; }
  .bsf-contact-panel-actions { width: 100%; }
  .bsf-contact-panel-actions .btn { width: 100%; justify-content: center; }
  .bsf-testimonial { padding: 70px 25px; }
  .bsf-quote { padding: 34px 26px; }
  .bsf-quote blockquote { font-size: 17px; }
}

/* ---------- SF50 Ferry Pilots page (extends .bsf-*) ---------- */
.fp-intro .bsf-intro-grid { align-items: start; }
.fp-highlight-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 28px 0;
}
.fp-highlight {
  background: #f3f6f7; border: 1px solid var(--border); border-radius: 10px; padding: 22px 20px;
}
.fp-highlight-icon {
  width: 42px; height: 42px; border-radius: 50%; background: rgba(44,192,255,.12); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 16px; margin-bottom: 12px;
}
.fp-highlight h3 { font-size: 16px; text-transform: none; margin-bottom: 8px; color: var(--accent-dark); }
.fp-highlight p { margin: 0; font-size: 14px; line-height: 1.65; }

.fp-mission-grid { display: grid; gap: 14px; margin-bottom: 24px; }
.fp-mission-card {
  display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start;
  padding: 20px 22px; border-radius: 10px; border: 1px solid var(--border); background: #fff;
}
.fp-mission-icon {
  width: 44px; height: 44px; border-radius: 50%; background: var(--accent-dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.fp-mission-card h3 { font-size: 17px; text-transform: none; margin-bottom: 6px; color: var(--accent-dark); }
.fp-mission-card p { margin: 0; font-size: 14px; line-height: 1.65; }
.fp-phone-cta { margin: 0; font-size: 15px; line-height: 1.75; }
.fp-phone-cta a { color: var(--accent); }

@media (max-width: 767px) {
  .fp-highlight-grid { grid-template-columns: 1fr; }
}

/* ---------- SF50 Safety Briefing Video page ---------- */
.sbv-video-section { padding: 90px 25px 70px; background: #fff; }
.sbv-video-wrap { max-width: 980px; margin: 0 auto; }
.sbv-video-copy { text-align: center; margin-bottom: 36px; }
.sbv-video-copy h2 { font-size: 34px; text-transform: none; line-height: 1.15; margin-bottom: 14px; }
.sbv-video-copy p { margin: 0 auto; max-width: 760px; font-size: 16px; line-height: 1.75; }
.sbv-video-player {
  border-radius: 12px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(9,33,43,.1); background: #000;
}
.sbv-video-note {
  margin: 0; padding: 16px 22px; font-size: 13px; line-height: 1.6;
  color: rgba(255,255,255,.72); background: var(--accent-dark); text-align: center;
}
.sbv-expertise { padding-top: 70px; }

@media (max-width: 767px) {
  .sbv-video-section { padding: 70px 25px; }
  .sbv-video-copy h2 { font-size: 28px; }
}

/* ---------- Cirrus Vision Jet Dry Leasing page ---------- */
.cvl-banner .page-banner-overlay { opacity: .52; }

.cvl-hero-strip { padding: 36px 25px; background: #fff; border-bottom: 1px solid var(--border); }
.cvl-hero-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.cvl-hero-eyebrow {
  font-family: var(--heading-font); font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  font-size: 13px; color: var(--accent);
}
.cvl-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.cvl-ticker {
  overflow: hidden; background: var(--accent-dark); color: #fff; padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08);
}
.cvl-ticker-track {
  display: flex; width: max-content; gap: 80px;
  animation: cvlTicker 28s linear infinite;
}
.cvl-ticker-track span {
  white-space: nowrap; font-family: var(--heading-font); font-size: 15px; letter-spacing: .5px;
  text-transform: uppercase; font-weight: 600;
}
@keyframes cvlTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.cvl-section { padding: 100px 25px; }
.cvl-split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: start; }
.cvl-copy h2 { font-size: 36px; text-transform: none; margin-bottom: 22px; line-height: 1.15; }
.cvl-copy .bx-eyebrow { margin-bottom: 14px; }
.cvl-copy p { margin-bottom: 18px; line-height: 1.8; }

.cvl-audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.cvl-audience-card {
  background: #f3f6f7; border: 1px solid var(--border); border-radius: 10px; padding: 28px 24px;
}
.cvl-audience-card h3 {
  font-size: 18px; text-transform: none; margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.cvl-audience-card h3 i { color: var(--accent); font-size: 16px; }
.cvl-audience-card p { margin: 0; font-size: 15px; line-height: 1.7; }

.cvl-media {
  margin: 0; border-radius: 12px; overflow: hidden; box-shadow: 0 32px 64px rgba(9,33,43,.16);
  min-height: 520px; position: sticky; top: 120px;
}
.cvl-media img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; display: block; }

.cvl-safety { background: linear-gradient(180deg, #f3f6f7 0%, #eef2f4 100%); }
.cvl-section-head { max-width: 860px; margin: 0 auto 44px; text-align: center; }
.cvl-section-head h2 { font-size: 34px; text-transform: none; margin-bottom: 14px; }
.cvl-section-head p { margin: 0; font-size: 16px; line-height: 1.8; }

.cvl-safety-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 40px; }
.cvl-safety-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 30px 24px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.cvl-safety-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(9,33,43,.1); }
.cvl-safety-icon {
  width: 48px; height: 48px; border-radius: 50%; background: rgba(44,192,255,.12); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 16px;
}
.cvl-safety-card h3 { font-size: 17px; text-transform: none; margin-bottom: 10px; color: var(--accent-dark); }
.cvl-safety-card p { margin: 0; font-size: 14px; line-height: 1.65; }

.cvl-note { max-width: 920px; margin: 0 auto; }
.cvl-note p { margin-bottom: 16px; font-size: 15px; line-height: 1.75; }
.cvl-note-cta { font-weight: 600; color: var(--accent-dark); }
.cvl-note-cta a { color: var(--accent); }

.cvl-how { background: #fff; }
.cvl-how-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: start; }
.cvl-how-copy h2 { font-size: 34px; text-transform: none; margin-bottom: 20px; }
.cvl-how-copy .bx-eyebrow { margin-bottom: 14px; }
.cvl-how-copy p { margin-bottom: 16px; font-size: 15px; line-height: 1.8; }

.cvl-steps { display: grid; gap: 18px; }
.cvl-step {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start;
  padding: 24px 26px; border-radius: 10px; border: 1px solid var(--border); background: #f8fafb;
}
.cvl-step-num {
  font-family: var(--heading-font); font-size: 28px; font-weight: 700; color: var(--accent); line-height: 1;
}
.cvl-step h3 { font-size: 17px; text-transform: none; margin-bottom: 6px; }
.cvl-step p { margin: 0; font-size: 14px; line-height: 1.65; }

.cvl-availability { background: linear-gradient(135deg, var(--dark), var(--darker)); color: rgba(255,255,255,.82); }
.cvl-availability .cvl-section-head h2 { color: #fff; }
.cvl-availability .cvl-section-head p { color: rgba(255,255,255,.78); }

.cvl-location-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 36px; }
.cvl-location-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 10px;
  padding: 34px 22px; text-align: center; transition: background .3s ease, transform .3s ease;
}
.cvl-location-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.cvl-location-icon { font-size: 28px; color: var(--accent); margin-bottom: 14px; }
.cvl-location-card h3 { color: #fff; font-size: 17px; text-transform: none; margin: 0; }

.cvl-availability-foot {
  max-width: 860px; margin: 0 auto 30px; text-align: center; font-size: 16px; line-height: 1.75;
  color: rgba(255,255,255,.78);
}
.cvl-availability-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.cvl-availability-cta .btn-outline {
  border-color: rgba(255,255,255,.35); color: #fff; background: transparent;
}
.cvl-availability-cta .btn-outline:hover {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.cvl-availability-cta .btn i { margin-right: 8px; }

.cvl-newsletter-head { text-align: center; margin-bottom: 28px; color: #fff; }
.cvl-newsletter-head h2 { color: #fff; font-size: 32px; text-transform: none; margin-bottom: 10px; }
.cvl-newsletter-head p { color: rgba(255,255,255,.9); margin: 0; }

@media (max-width: 1024px) {
  .cvl-split, .cvl-how-grid { grid-template-columns: 1fr; gap: 40px; }
  .cvl-media { position: static; min-height: 360px; }
  .cvl-media img { min-height: 360px; }
  .cvl-audience-grid { grid-template-columns: 1fr; }
  .cvl-safety-grid { grid-template-columns: repeat(2, 1fr); }
  .cvl-location-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .cvl-section { padding: 70px 25px; }
  .cvl-copy h2, .cvl-how-copy h2, .cvl-section-head h2 { font-size: 28px; }
  .cvl-hero-inner { flex-direction: column; align-items: flex-start; }
  .cvl-hero-actions { width: 100%; }
  .cvl-hero-actions .btn { flex: 1; justify-content: center; }
  .cvl-safety-grid, .cvl-location-grid { grid-template-columns: 1fr; }
  .cvl-availability-cta .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .cvl-ticker-track { animation: none; }
}

/* ---------- Vision Jet Lease page (reuses .cvl-* layout) ---------- */
.vjl-benefits-lead { margin: 28px 0 12px; }
.vjl-benefits {
  list-style: none; margin: 0 0 28px; padding: 0;
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: #f8fafb;
}
.vjl-benefits li {
  position: relative; padding: 18px 22px 18px 54px; font-size: 15px; line-height: 1.7;
  border-bottom: 1px solid var(--border);
}
.vjl-benefits li:last-child { border-bottom: 0; }
.vjl-benefits li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 11px;
  position: absolute; left: 22px; top: 22px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.vjl-benefits li strong { color: var(--accent-dark); }
.vjl-lead-bold { margin-top: 8px; font-size: 15px; line-height: 1.75; }
.vjl-how-single .cvl-how-copy { max-width: 920px; margin: 0 auto; }

/* ---------- N818LL reservation page ---------- */
.n818ll-benefits { margin-top: 24px; }
.n818ll-aircraft-card h3 {
  color: #fff; font-size: 22px; text-transform: none; margin: 0 0 12px;
}
.n818ll-aircraft-card p {
  color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.7; margin-bottom: 18px;
}
.n818ll-tail-badge {
  display: inline-block; margin-bottom: 18px; padding: 10px 18px; border-radius: 8px;
  background: rgba(44,192,255,.18); border: 1px solid rgba(44,192,255,.35);
  font-family: var(--heading-font); font-weight: 700; letter-spacing: 2px; color: #fff;
}
.dsq-readonly {
  background: #eef2f4; color: var(--accent-dark); font-weight: 600; cursor: not-allowed;
}
.dsq-field-hint {
  margin: 8px 0 0; font-size: 13px; line-height: 1.6; color: #667781;
}

/* ---------- Flight reservation pages (.fr-*) ---------- */
.fr-banner .page-banner-overlay { opacity: .52; }
.fr-intro { padding: 70px 0 20px; background: var(--light); }
.fr-intro-grid {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 40px; align-items: start;
}
.fr-copy p { font-size: 16px; line-height: 1.8; margin: 0 0 16px; }
.fr-success-note { font-weight: 600; color: var(--accent-dark); }
.fr-ops-card {
  background: linear-gradient(145deg, var(--dark), var(--darker));
  color: #fff; border-radius: 14px; padding: 28px 24px;
  box-shadow: 0 18px 50px rgba(9,33,43,.14);
}
.fr-ops-card a { color: var(--accent); text-decoration: none; }
.fr-ops-card a:hover { text-decoration: underline; }
.fr-thanks { margin: 0 0 8px; font-size: 18px; }
.fr-tail-badge {
  display: inline-block; margin-bottom: 18px; padding: 10px 18px; border-radius: 8px;
  background: rgba(44,192,255,.18); border: 1px solid rgba(44,192,255,.35);
  font-family: var(--heading-font); font-weight: 700; letter-spacing: 2px; color: #fff;
}
.fr-form-section { padding-top: 40px; }

@media (max-width: 991px) {
  .fr-intro-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .fr-intro { padding-top: 50px; }
}

/* ---------- Vision Jet Professional Pilot Services page (.vps-*) ---------- */
.vps-banner .page-banner-overlay { opacity: .52; }
.vps-contact { padding: 70px 0 90px; }
.vps-contact-grid {
  display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 48px; align-items: start;
}
.vps-copy h2 {
  font-size: 38px; text-transform: none; margin: 0 0 18px; color: var(--accent-dark);
}
.vps-copy p { font-size: 16px; line-height: 1.8; margin: 0 0 16px; }
.vps-copy a { color: var(--accent); text-decoration: none; }
.vps-copy a:hover { text-decoration: underline; }
.vps-more-link { margin-top: 24px; }
.vps-form-card { margin: 0; }
.sf-inquiry-status { margin-top: 14px; font-size: 14px; }
.sf-inquiry-status.is-success { color: #1a7f37; }
.sf-inquiry-status.is-error { color: #b42318; }
.sf-newsletter-status { margin-top: 14px; font-size: 14px; }
.sf-newsletter-status.is-success { color: #1a7f37; }
.sf-newsletter-status.is-error { color: #b42318; }
.sf-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.sf-recaptcha-wrap { margin: 16px 0; clear: both; }
.sf-recaptcha-wrap .g-recaptcha { transform-origin: left top; }
.signup-form .sf-spam-fields-injected,
.signup-form .sf-recaptcha-wrap { grid-column: 1 / -1; }
.news-form .sf-spam-fields-injected { margin-bottom: 16px; }
.dsq-form .sf-recaptcha-wrap,
.csv-form .sf-recaptcha-wrap,
.sf-inquiry-form .sf-recaptcha-wrap { margin: 20px 0; }

@media (max-width: 991px) {
  .vps-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .vps-copy h2 { font-size: 30px; }
  .vps-contact { padding: 50px 0 70px; }
}

/* ---------- Calendly booking widget ---------- */
.sf50-calendly-section {
  padding: 100px 25px;
  background: linear-gradient(180deg, #f3f6f7 0%, #eef2f4 100%);
}
.sf50-calendly-head {
  max-width: 760px; margin: 0 auto 36px; text-align: center;
}
.sf50-calendly-head h2 {
  font-size: 34px; text-transform: none; line-height: 1.15; margin-bottom: 12px;
}
.sf50-calendly-head p { margin: 0; font-size: 16px; line-height: 1.75; }
.sf50-calendly-widget-wrap {
  max-width: 1040px; margin: 0 auto; background: #fff; border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; box-shadow: 0 24px 48px rgba(9,33,43,.08);
}
.sf50-calendly-widget-wrap .calendly-inline-widget { width: 100%; }

@media (max-width: 767px) {
  .sf50-calendly-section { padding: 70px 25px; }
  .sf50-calendly-head h2 { font-size: 28px; }
  .sf50-calendly-widget-wrap .calendly-inline-widget { height: 620px !important; }
}

/* ---------- Client Survey page ---------- */
.csv-banner .page-banner-overlay { opacity: .5; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.csv-section { padding: 90px 25px 110px; background: linear-gradient(180deg, #f8fafb 0%, #fff 100%); }
.csv-intro { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.csv-intro h2 { font-size: 34px; text-transform: none; margin-bottom: 12px; }
.csv-intro p { margin: 0; font-size: 16px; }

.csv-form { max-width: 980px; margin: 0 auto; }
.csv-form-card, .csv-form-grid {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 20px 44px rgba(9,33,43,.08);
}
.csv-form-card { padding: 34px 30px; margin-bottom: 24px; }
.csv-form-card h3 { font-size: 22px; text-transform: none; margin-bottom: 22px; }
.req { color: #d64545; }

.csv-table-wrap { overflow-x: auto; }
.csv-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.csv-table th, .csv-table td { border: 1px solid var(--border); padding: 12px 10px; text-align: center; vertical-align: middle; }
.csv-table thead th { background: #f3f6f7; font-family: var(--heading-font); font-size: 12px; text-transform: uppercase; letter-spacing: .4px; color: var(--accent-dark); }
.csv-table tbody th { text-align: left; font-weight: 600; font-size: 14px; background: #fafbfc; min-width: 220px; }

.csv-radio { display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }
.csv-radio input { position: absolute; opacity: 0; pointer-events: none; }
.csv-radio-ui {
  width: 18px; height: 18px; border-radius: 50%; border: 2px solid #c5d0d6; display: inline-block;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.csv-radio input:checked + .csv-radio-ui {
  border-color: var(--accent); background: var(--accent); box-shadow: inset 0 0 0 3px #fff;
}

.csv-form-grid { padding: 34px 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px 24px; margin-bottom: 24px; }
.csv-field { display: flex; flex-direction: column; gap: 8px; }
.csv-field-full { grid-column: 1 / -1; }
.csv-field label, .csv-label { font-family: var(--heading-font); font-weight: 600; font-size: 14px; color: var(--accent-dark); }
.csv-field input[type="text"],
.csv-field input[type="email"],
.csv-field input[type="tel"],
.csv-field textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px;
  font: inherit; color: var(--accent-dark); background: #fff; transition: border-color .2s ease;
}
.csv-field input:focus, .csv-field textarea:focus { outline: none; border-color: var(--accent); }
.csv-help { margin: 0; font-size: 13px; color: var(--text); }

.csv-choice-row { display: flex; flex-wrap: wrap; gap: 18px; }
.csv-choice {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid var(--border);
  border-radius: 999px; cursor: pointer; font-size: 14px; transition: border-color .2s ease, background .2s ease;
}
.csv-choice:has(input:checked) { border-color: var(--accent); background: rgba(44,192,255,.1); }
.csv-choice input { accent-color: var(--accent); }

.csv-stars { display: flex; gap: 8px; }
.csv-star { cursor: pointer; color: #d5dde2; font-size: 28px; line-height: 1; transition: color .2s ease; }
.csv-star input { position: absolute; opacity: 0; pointer-events: none; }
.csv-star.is-active { color: #f5b301; }

.csv-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.csv-actions { text-align: center; }
.csv-actions .btn { min-width: 180px; justify-content: center; }
.csv-status { margin-top: 16px; font-size: 15px; min-height: 22px; }
.csv-status.is-success { color: #1f8a4c; font-weight: 600; }
.csv-status.is-error { color: #c0392b; font-weight: 600; }

@media (max-width: 860px) {
  .csv-form-grid { grid-template-columns: 1fr; }
  .csv-table { min-width: 0; }
  .csv-table thead { display: none; }
  .csv-table tbody tr { display: block; margin-bottom: 18px; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
  .csv-table tbody th, .csv-table tbody td { display: block; width: 100%; text-align: left; border: 0; border-bottom: 1px solid var(--border); }
  .csv-table tbody th { background: #f3f6f7; }
  .csv-table tbody td { padding: 10px 14px; }
  .csv-table tbody td::before { content: attr(data-label); display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .4px; color: var(--text); margin-bottom: 8px; font-family: var(--heading-font); }
  .csv-choice-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 767px) {
  .csv-section { padding: 70px 25px 90px; }
  .csv-intro h2 { font-size: 28px; }
  .csv-form-card, .csv-form-grid { padding: 24px 18px; }
}

/* ---------- Cookie Policy page ---------- */
.ckp-banner .page-banner-overlay { opacity: .5; }

.ckp-section { padding: 90px 25px 110px; background: linear-gradient(180deg, #f8fafb 0%, #fff 100%); }
.ckp-wrap { max-width: 960px; margin: 0 auto; }

.ckp-intro {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 36px 40px;
  box-shadow: 0 18px 40px rgba(9,33,43,.07); margin-bottom: 32px;
}
.ckp-intro p { margin: 0; font-size: 16px; line-height: 1.85; color: var(--accent-dark); }
.ckp-intro a { color: var(--accent); font-weight: 600; }
.ckp-intro a:hover { text-decoration: underline; }

.ckp-block {
  background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 36px 40px;
  box-shadow: 0 18px 40px rgba(9,33,43,.07); margin-bottom: 28px;
}
.ckp-block-head { margin-bottom: 28px; }
.ckp-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  font-family: var(--heading-font); font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: 16px;
}
.ckp-badge-essential { background: rgba(44,192,255,.12); color: var(--accent); }
.ckp-badge-stats { background: rgba(9,33,43,.08); color: var(--accent-dark); }
.ckp-block h2 { font-size: 30px; text-transform: none; margin-bottom: 10px; }
.ckp-block-head > p { margin: 0; font-size: 15px; line-height: 1.7; }

.ckp-subhead {
  margin-bottom: 24px; padding: 22px 24px; border-radius: 10px; background: #f3f6f7;
  border: 1px solid var(--border);
}
.ckp-subhead h3 { font-size: 20px; text-transform: none; margin-bottom: 8px; }
.ckp-subhead p { margin: 0 0 12px; font-size: 15px; line-height: 1.7; }

.ckp-table-wrap { overflow-x: auto; }
.ckp-table { width: 100%; border-collapse: collapse; min-width: 680px; }
.ckp-table th, .ckp-table td {
  border: 1px solid var(--border); padding: 14px 16px; text-align: left; vertical-align: top;
  font-size: 14px; line-height: 1.65;
}
.ckp-table thead th {
  background: #f3f6f7; font-family: var(--heading-font); font-size: 12px; text-transform: uppercase;
  letter-spacing: .4px; color: var(--accent-dark);
}
.ckp-table tbody tr:nth-child(even) { background: #fafbfc; }
.ckp-table code {
  font-family: Consolas, Monaco, monospace; font-size: 13px; color: var(--accent-dark);
  background: rgba(44,192,255,.08); padding: 2px 6px; border-radius: 4px;
}

.ckp-footnote {
  text-align: center; padding: 28px 20px; border-top: 1px solid var(--border); margin-top: 10px;
}
.ckp-footnote p { margin: 0; font-size: 15px; }
.ckp-footnote a { color: var(--accent); font-weight: 600; }
.ckp-footnote a:hover { text-decoration: underline; }

@media (max-width: 767px) {
  .ckp-section { padding: 70px 25px 90px; }
  .ckp-intro, .ckp-block { padding: 26px 20px; }
  .ckp-block h2 { font-size: 26px; }
  .ckp-table { min-width: 0; }
  .ckp-table thead { display: none; }
  .ckp-table tbody tr { display: block; margin-bottom: 16px; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
  .ckp-table tbody td { display: block; border: 0; border-bottom: 1px solid var(--border); }
  .ckp-table tbody td:last-child { border-bottom: 0; }
  .ckp-table tbody td::before {
    content: attr(data-label); display: block; font-family: var(--heading-font); font-size: 11px;
    text-transform: uppercase; letter-spacing: .4px; color: var(--text); margin-bottom: 6px;
  }
}

/* ---------- Delivering Safety, Quality & Consistency page ---------- */
.dsq-banner .page-banner-overlay { opacity: .52; }
.dsq-banner h1 { max-width: 980px; font-size: clamp(28px, 4vw, 46px); line-height: 1.15; }

.dsq-hero-strip { padding: 36px 25px; background: #fff; border-bottom: 1px solid var(--border); }
.dsq-hero-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }
.dsq-hero-eyebrow {
  font-family: var(--heading-font); font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  font-size: 13px; color: var(--accent);
}
.dsq-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.dsq-ticker {
  overflow: hidden; background: var(--accent-dark); color: #fff; padding: 16px 0;
}
.dsq-ticker-track {
  display: flex; width: max-content; gap: 80px; animation: dsqTicker 40s linear infinite;
}
.dsq-ticker-track span {
  white-space: nowrap; font-family: var(--heading-font); font-size: 14px; letter-spacing: .5px;
  text-transform: uppercase; font-weight: 600;
}
@keyframes dsqTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.dsq-section { padding: 100px 25px; }
.dsq-intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: start; }
.dsq-intro h2 { font-size: 34px; text-transform: none; line-height: 1.15; margin-bottom: 22px; }
.dsq-intro .bx-eyebrow { margin-bottom: 14px; }
.dsq-intro p { margin-bottom: 18px; font-size: 16px; line-height: 1.8; }
.dsq-intro a { color: var(--accent); font-weight: 600; }
.dsq-tagline { margin-top: 8px; }

.dsq-quote-card {
  background: linear-gradient(135deg, var(--dark), var(--darker)); color: #fff; border-radius: 12px;
  padding: 40px 36px; box-shadow: 0 28px 56px rgba(9,33,43,.18);
}
.dsq-quote-mark { font-size: 36px; color: var(--accent); margin-bottom: 16px; }
.dsq-quote-card blockquote { font-size: 17px; line-height: 1.75; font-style: italic; margin: 0 0 28px; color: rgba(255,255,255,.88); }
.dsq-call-btn { width: 100%; justify-content: center; }
.dsq-call-btn i { margin-right: 8px; }

.dsq-services { background: linear-gradient(180deg, #f3f6f7 0%, #eef2f4 100%); }
.dsq-section-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.dsq-section-head h2 { font-size: 34px; text-transform: none; margin-bottom: 12px; }
.dsq-section-head p { margin: 0; }

.dsq-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 40px; }
.dsq-service-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 28px 22px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.dsq-service-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(9,33,43,.1); }
.dsq-service-icon {
  width: 46px; height: 46px; border-radius: 50%; background: rgba(44,192,255,.12); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 18px; margin-bottom: 16px;
}
.dsq-service-card h3 { font-size: 17px; text-transform: none; margin-bottom: 10px; color: var(--accent-dark); }
.dsq-service-card p { margin: 0; font-size: 14px; line-height: 1.65; }

.dsq-services-foot { max-width: 820px; margin: 0 auto; text-align: center; }
.dsq-services-foot p { margin-bottom: 14px; font-size: 16px; line-height: 1.75; }

.dsq-form-section { background: #fff; }
.dsq-form-head { max-width: 760px; margin: 0 auto 36px; text-align: center; }
.dsq-form-head h2 { font-size: 34px; text-transform: none; margin-bottom: 12px; }
.dsq-form-head p { margin: 0; font-size: 15px; }

.dsq-form { max-width: 920px; margin: 0 auto; }
.dsq-form-card {
  background: #f8fafb; border: 1px solid var(--border); border-radius: 12px; padding: 28px 28px 24px;
  margin-bottom: 20px;
}
.dsq-form-card h3 { font-size: 18px; text-transform: none; margin-bottom: 18px; color: var(--accent-dark); }

.dsq-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.dsq-field { display: flex; flex-direction: column; gap: 8px; }
.dsq-field-full { grid-column: 1 / -1; }
.dsq-field-split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dsq-field label {
  font-family: var(--heading-font); font-weight: 600; font-size: 13px; color: var(--accent-dark);
}
.dsq-field input, .dsq-field select, .dsq-field textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 8px; padding: 13px 15px;
  font: inherit; color: var(--accent-dark); background: #fff;
}
.dsq-field input:focus, .dsq-field select:focus, .dsq-field textarea:focus {
  outline: none; border-color: var(--accent);
}

.dsq-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.dsq-form-actions { text-align: center; padding-top: 8px; }
.dsq-form-actions .btn { min-width: 280px; justify-content: center; }
.dsq-status { margin-top: 16px; font-size: 15px; min-height: 22px; }
.dsq-status.is-success { color: #1f8a4c; font-weight: 600; }
.dsq-status.is-error { color: #c0392b; font-weight: 600; }
.dsq-form-foot { max-width: 820px; margin: 36px auto 0; text-align: center; font-size: 15px; line-height: 1.75; color: var(--text); }

.dsq-articles { padding: 100px 25px; background: #fff; }
.dsq-newsletter-head { text-align: center; margin-bottom: 28px; color: #fff; }
.dsq-newsletter-head h2 { color: #fff; font-size: 32px; text-transform: none; margin: 0; }

@media (max-width: 1024px) {
  .dsq-intro-grid { grid-template-columns: 1fr; }
  .dsq-service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .dsq-section { padding: 70px 25px; }
  .dsq-intro h2, .dsq-section-head h2, .dsq-form-head h2 { font-size: 28px; }
  .dsq-hero-inner { flex-direction: column; align-items: flex-start; }
  .dsq-hero-actions { width: 100%; }
  .dsq-hero-actions .btn { flex: 1; justify-content: center; }
  .dsq-service-grid { grid-template-columns: 1fr; }
  .dsq-form-grid, .dsq-field-split { grid-template-columns: 1fr; }
  .dsq-form-actions .btn { width: 100%; min-width: 0; }
  .dsq-articles { padding: 70px 25px; }
}

@media (prefers-reduced-motion: reduce) {
  .dsq-ticker-track { animation: none; }
}

.ilv-service-grid { grid-template-columns: repeat(3, 1fr); }
.ilv-capabilities .dsq-service-grid .dsq-service-card:last-child:nth-child(odd) {
  grid-column: span 1;
}
@media (max-width: 1024px) {
  .ilv-service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .ilv-service-grid { grid-template-columns: 1fr; }
}

.site-footer { background: var(--darker); color: var(--text-light); }
.footer-main {
  display: grid; grid-template-columns: 1.3fr 1fr .9fr 1.3fr; gap: 40px;
  padding: 90px 25px 60px; align-items: start;
}
.footer-col h5 { color: #fff; font-size: 18px; margin-bottom: 26px; }
.footer-logo { height: 110px; width: auto; margin-bottom: 22px; }
.footer-tagline { font-size: 16px; color: #fff; }
.footer-tagline em { font-style: italic; }

.footer-nav li { margin-bottom: 13px; }
.footer-nav a { font-size: 15px; color: var(--text-light); }
.footer-nav a:hover { color: var(--accent); }

.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: rgba(255,255,255,.75); font-size: 16px; }
.footer-socials a:hover { color: var(--accent); }

.footer-addr { font-size: 15px; line-height: 1.7; margin-bottom: 22px; }
.footer-addr strong { color: #fff; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; font-size: 15px; }
.footer-contact-list li i { color: var(--accent); margin-top: 4px; flex: 0 0 auto; }
.footer-contact-list a { color: var(--text-light); }
.footer-contact-list a:hover { color: var(--accent); }

.footer-bottom-bar { border-top: 1px solid rgba(255,255,255,.08); padding: 26px 25px; }
.footer-bottom-bar .copyright { font-size: 14px; text-align: center; color: var(--text-light); line-height: 1.7; }
.footer-bottom-bar .copyright a { color: var(--accent); }

/* ---------- Video popup ---------- */
.video-popup { position: fixed; inset: 0; z-index: 1100; display: none; align-items: center; justify-content: center; }
.video-popup.open { display: flex; }
.video-popup-overlay { position: absolute; inset: 0; background: rgba(9,33,43,.92); }
.video-popup-inner { position: relative; width: min(1100px, 90vw); z-index: 2; }
.video-close { position: absolute; top: -48px; right: 0; background: none; border: 0; color: #fff; font-size: 30px; cursor: pointer; }
.video-embed { position: relative; padding-bottom: 56.25%; height: 0; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed; right: 26px; bottom: 26px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(20px); transition: all .3s ease; z-index: 800;
}
.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--accent-dark); }

/* ---------- Scroll reveal animations ---------- */
.reveal { opacity: 0; will-change: transform, opacity; }
.reveal.in { opacity: 1; animation-duration: .9s; animation-fill-mode: both; }
.reveal.in[data-anim="fadeInUp"]    { animation-name: fadeInUp; }
.reveal.in[data-anim="slideInUp"]   { animation-name: slideInUp; }
.reveal.in[data-anim="fadeInLeft"]  { animation-name: fadeInLeft; }
.reveal.in[data-anim="fadeInRight"] { animation-name: fadeInRight; }
.reveal.in[data-anim="fadeIn"]      { animation-name: fadeIn; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInUp { from { opacity: 0; transform: translateY(90px); } to { opacity: 1; transform: translateY(50px); } } /* card sits +50 */
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===========================================================
   Services page
   =========================================================== */
.page-banner {
  position: relative; padding: 200px 0 110px; isolation: isolate; text-align: left;
  background: url("../images/banner-vision-jet.png") center/cover no-repeat;    margin-top: 68px;
}
.page-banner-overlay { position: absolute; inset: 0; background: #09212b; opacity: .4; z-index: -1; }
.page-banner h1 { color: #fff; font-size: 50px; }

.services-intro { padding: 110px 25px 0; }
.intro-grid { display: grid; grid-template-columns: 65% 35%; gap: 50px; align-items: center; }
.intro-slider { position: relative; border-radius: 4px; overflow: hidden; }
.intro-slides { position: relative; width: 100%; padding-bottom: 62%; }
.intro-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transition: opacity .8s ease;
}
.intro-slide.active { opacity: 1; }
.intro-dots { position: absolute; bottom: 18px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; z-index: 3; }
.dot-nav { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; transition: background .3s ease; }
.dot-nav.active { background: var(--accent); }
.intro-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 50px; height: 50px; border-radius: 50%; background: rgba(9,33,43,.4); color: #fff;
  display: flex; align-items: center; justify-content: center; transition: background .3s ease;
}
.intro-arrow:hover { background: var(--accent); }
.intro-prev { left: 16px; }
.intro-next { right: 16px; }

.intro-text h4 { font-size: 30px; margin-bottom: 22px; }
.intro-text p { margin-bottom: 26px; }
.check-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; }
.check-list li {
  position: relative; padding: 8px 0 8px 36px; color: var(--accent-dark);
  font-family: var(--heading-font); font-weight: 500; text-transform: uppercase; font-size: 14px; letter-spacing: .5px;
}
.check-list li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 11px;
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
}

.services-list { padding: 110px 25px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px 40px; }
.service-icon { font-size: 44px; color: var(--accent); display: inline-block; margin-bottom: 24px; }
.service-card h4 { font-size: 19px; margin-bottom: 14px; }
.service-card p { font-size: 15px; }

.cta-banner {
  position: relative; padding: 120px 0; isolation: isolate; text-align: center;
  background: url("../images/background-1-copyright.jpg") center/cover no-repeat fixed;
}
.cta-overlay { position: absolute; inset: 0; background: #89999b; opacity: .45; z-index: -1; }
.cta-inner { max-width: 680px; }
.cta-banner h3 { color: #fff; font-size: 34px; margin-bottom: 26px; }
.cta-banner h3 b { color: #fff; }
.cta-banner p { color: #fff; margin-bottom: 36px; }

.news-strip { background: var(--accent); padding: 55px 0; }
.news-grid { display: grid; grid-template-columns: 42% 58%; gap: 30px; align-items: center; }
.news-title { color: #fff; font-size: 22px; line-height: 1.4; }
.news-row { display: flex; gap: 16px; margin-bottom: 14px; }
.news-form input[type="email"] {
  flex: 1; padding: 16px 22px; border: 0; border-radius: 40px; font-family: var(--body-font); font-size: 14px; color: var(--accent-dark);
}
.news-form .agree { color: #fff; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.news-form .agree input { width: 18px; height: 18px; }
.news-form .agree a { color: #fff; text-decoration: underline; }

/* ===========================================================
   Contacts page
   =========================================================== */
.contact-info-block { padding: 110px 25px 0; }
.contact-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.info-item { display: flex; gap: 22px; align-items: flex-start; }
.info-icon {
  flex: 0 0 auto; width: 64px; height: 64px; border-radius: 50%;
  background: rgba(44,192,255,.12); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.info-details h4 { font-size: 20px; margin-bottom: 10px; }
.info-details p { font-size: 15px; line-height: 1.7; }
.info-details a { color: var(--text); }
.info-details a:hover { color: var(--accent); }

.get-in-touch { padding: 90px 25px 80px; max-width: 900px; }
.git-title { text-align: center; font-size: 30px; margin-bottom: 40px; }
.contact-form .cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%; padding: 16px 22px; border: 1px solid var(--border); border-radius: 6px;
  font-family: var(--body-font); font-size: 15px; color: var(--accent-dark); background: #fff;
  transition: border-color .3s ease;
}
.contact-form textarea { resize: vertical; margin-bottom: 24px; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent); }
.contact-form .agree {
  display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text); margin-bottom: 30px;
}
.contact-form .agree input { width: 18px; height: 18px; }
.cf-submit { text-align: center; }

.contact-map-section { line-height: 0; }
.contact-map-section iframe { width: 100%; height: 542px; border: 0; display: block; }

/* ===========================================================
   Our fleet page
   =========================================================== */
.fleet { padding: 100px 25px; }
.fleet-item { margin-bottom: 50px; }
.fleet-item:last-child { margin-bottom: 0; }
.fleet-head {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  background: var(--accent); border-radius: 6px; padding: 30px 40px;
}
.fleet-name { color: #fff; font-size: 22px; margin: 0; }
.fleet-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.fleet-stat { display: flex; align-items: center; gap: 12px; color: #fff; }
.fs-icon { font-size: 26px; line-height: 1; }
.fs-text { font-family: var(--heading-font); font-size: 15px; letter-spacing: .3px; }
.fs-text b { font-weight: 700; }

.fleet-body { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-top: 50px; }
.fleet-image img { width: 100%; height: auto; border-radius: 6px; display: block; }
.fleet-step { margin-bottom: 28px; }
.fleet-step:last-child { margin-bottom: 0; }
.fleet-step h6 { font-size: 17px; margin-bottom: 12px; }
.fleet-step p { font-size: 15px; }

.fleet-callus { background: var(--darker); text-align: center; padding: 90px 0; }
.fleet-callus h4 { color: #fff; font-size: 28px; margin: 0; }
.fleet-callus .callus-phone { margin-top: 14px; }
.fleet-callus .callus-phone a { color: var(--accent); }
.fleet-callus .callus-phone a:hover { color: #fff; }

/* ===========================================================
   Blog (All Posts) page
   =========================================================== */
.blog-wrap { padding: 100px 25px; }
.blog-grid { display: grid; grid-template-columns: 1fr 350px; gap: 60px; align-items: start; }

.post-card { margin-bottom: 60px; }
.post-card:last-of-type { margin-bottom: 50px; }
.post-card.sticky { border-left: 3px solid var(--accent); padding-left: 26px; position: relative; }
.post-flag {
  position: absolute; top: 4px; left: -13px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px;
}
.post-thumb { display: block; position: relative; overflow: hidden; border-radius: 6px; margin-bottom: 28px; }
.post-thumb img { width: 100%; height: auto; display: block; transition: transform .5s ease; }
.post-thumb:hover img { transform: scale(1.05); }
.thumb-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.6);
  width: 56px; height: 56px; border-radius: 50%; background: rgba(9,33,43,.6); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 18px; opacity: 0; transition: all .35s ease;
}
.post-thumb:hover .thumb-badge { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.thumb-badge.play { background: var(--accent); }

.post-title { font-size: 26px; margin-bottom: 16px; }
.post-title a { color: var(--accent-dark); }
.post-title a:hover { color: var(--accent); }

.post-meta { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13px; color: var(--text-light); margin-bottom: 20px; }
.post-meta a { color: var(--text-light); }
.post-meta a:hover { color: var(--accent); }
.post-meta .meta-author { color: var(--accent-dark); font-weight: 500; }
.post-meta .meta-x i { margin-right: 5px; }

.post-excerpt { font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.read-more { font-family: var(--heading-font); font-weight: 600; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); }
.read-more i { margin-left: 6px; transition: transform .3s ease; }
.read-more:hover i { transform: translateX(5px); }

.post-audio {
  display: flex; flex-direction: column; gap: 16px; background: var(--accent-dark);
  border-radius: 6px; padding: 36px 34px; margin-bottom: 28px;
}
.post-audio .audio-author { color: var(--accent); font-size: 13px; margin-bottom: 6px; }
.post-audio .audio-title { color: #fff; font-size: 20px; }
.post-audio audio { width: 100%; }

.post-quote {
  background: var(--accent); color: #fff; border-radius: 6px; padding: 40px 38px; margin: 0;
  position: relative;
}
.post-quote p { font-size: 18px; line-height: 1.7; margin-bottom: 18px; }
.post-quote cite { font-style: normal; font-weight: 600; font-family: var(--heading-font); }

.pagination { display: flex; gap: 10px; }
.page-num {
  width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading-font); font-weight: 600; color: var(--accent-dark); transition: all .3s ease;
}
.page-num:hover, .page-num.current { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Sidebar */
.blog-sidebar .widget { margin-bottom: 45px; }
.blog-sidebar .widget:last-child { margin-bottom: 0; }
.widget-title { font-size: 18px; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.widget-categories ul li { padding: 10px 0; border-bottom: 1px solid var(--border); }
.widget-categories ul li:last-child { border-bottom: 0; }
.widget-categories ul li a { color: var(--text); font-size: 15px; }
.widget-categories ul li a:hover { color: var(--accent); }

.sidebar-search { display: flex; gap: 10px; }
.sidebar-search input {
  flex: 1; min-width: 0; padding: 13px 16px; border: 1px solid var(--border); border-radius: 6px;
  font-family: var(--body-font); font-size: 14px;
}
.sidebar-search input:focus { outline: none; border-color: var(--accent); }
.sidebar-search button {
  padding: 0 20px; background: var(--accent-dark); color: #fff; border: 0; border-radius: 6px;
  font-family: var(--heading-font); font-weight: 600; cursor: pointer; transition: background .3s ease;
}
.sidebar-search button:hover { background: var(--accent); }

.featured-post { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.featured-post:last-child { margin-bottom: 0; }
.fp-thumb { flex: 0 0 auto; width: 80px; height: 64px; border-radius: 6px; background-size: cover; background-position: center; }
.fp-title { font-family: var(--heading-font); font-weight: 600; font-size: 15px; color: var(--accent-dark); line-height: 1.4; transition: color .3s ease; }
.featured-post:hover .fp-title { color: var(--accent); }

.calendar { width: 100%; border-collapse: collapse; text-align: center; font-size: 14px; }
.calendar caption { font-family: var(--heading-font); font-weight: 600; color: var(--accent-dark); margin-bottom: 12px; }
.calendar th { padding: 8px 0; font-family: var(--heading-font); color: var(--accent-dark); font-weight: 600; }
.calendar td { padding: 8px 0; color: var(--text); }
.calendar td.today { background: var(--accent); color: #fff; border-radius: 50%; }
.calendar-nav { margin-top: 14px; font-size: 14px; }
.calendar-nav a { color: var(--accent); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-cloud a {
  padding: 6px 14px; border: 1px solid var(--border); border-radius: 4px; color: var(--text);
  line-height: 1; transition: all .3s ease;
}
.tag-cloud a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ===========================================================
   Blog (Articles & Topics) — premium editorial layout (.bx)
   =========================================================== */
.bx { padding: 90px 25px 100px; }

.bx-lead { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.bx-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--heading-font);
  font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.bx-eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--accent); }
.bx-lead h2 { font-size: 38px; margin-bottom: 16px; text-transform: none; }
.bx-lead p { font-size: 16px; color: var(--text); }

/* Featured hero article */
.bx-featured {
  display: grid; grid-template-columns: 1.15fr 1fr; margin-bottom: 64px;
  background: #fff; border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 80px -42px rgba(9,33,43,.32);
}
.bx-featured-media { position: relative; min-height: 400px; overflow: hidden; }
.bx-featured-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s ease; }
.bx-featured:hover .bx-featured-media img { transform: scale(1.06); }
.bx-featured-media .bx-cat { position: absolute; top: 22px; left: 22px; z-index: 2; }
.bx-featured-body { padding: 52px 52px; display: flex; flex-direction: column; justify-content: center; }
.bx-featured-tag { font-family: var(--heading-font); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.bx-featured-body h3 { font-size: 30px; line-height: 1.25; margin-bottom: 18px; text-transform: none; }
.bx-featured-body h3 a { color: var(--accent-dark); }
.bx-featured-body h3 a:hover { color: var(--accent); }
.bx-featured-body p { font-size: 16px; line-height: 1.8; margin-bottom: 28px; }
.bx-featured-foot { display: flex; align-items: center; gap: 14px; }

/* Category chip */
.bx-cat {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--heading-font);
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  color: #fff; background: var(--accent); padding: 7px 14px; border-radius: 30px;
}

/* Toolbar / filters */
.bx-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 42px; }
.bx-filter { display: flex; flex-wrap: wrap; gap: 10px; }
.bx-pill {
  font-family: var(--heading-font); font-size: 13px; font-weight: 500; letter-spacing: .4px;
  padding: 10px 20px; border-radius: 30px; border: 1px solid var(--border); color: var(--accent-dark);
  background: #fff; cursor: pointer; transition: all .3s ease;
}
.bx-pill:hover { border-color: var(--accent); color: var(--accent); }
.bx-pill.active { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; }
.bx-search { position: relative; }
.bx-search input {
  width: 260px; max-width: 100%; padding: 12px 44px 12px 18px; border: 1px solid var(--border);
  border-radius: 30px; font-family: var(--body-font); font-size: 14px; background: #fff; color: var(--text);
}
.bx-search input:focus { outline: none; border-color: var(--accent); }
.bx-search > i { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--text-light); pointer-events: none; }

/* Card grid */
.bx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.bx-empty { grid-column: 1 / -1; text-align: center; color: var(--text-light); padding: 40px 0; display: none; }
.bx-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.bx-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px -30px rgba(9,33,43,.35); border-color: transparent; }
.bx-card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; display: block; }
.bx-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.bx-card:hover .bx-card-media img { transform: scale(1.08); }
.bx-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,33,43,.5), transparent 45%); opacity: 0; transition: opacity .4s ease; }
.bx-card:hover .bx-card-media::after { opacity: 1; }
.bx-card-media .bx-cat { position: absolute; top: 16px; left: 16px; z-index: 2; }
.bx-date {
  position: absolute; bottom: 16px; right: 16px; z-index: 2; display: flex; flex-direction: column;
  align-items: center; line-height: 1; background: rgba(255,255,255,.94); border-radius: 10px;
  padding: 9px 12px; font-family: var(--heading-font); color: var(--accent-dark);
}
.bx-date .d { font-size: 18px; font-weight: 700; }
.bx-date .m { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--text); margin-top: 2px; }

.bx-card-body { padding: 26px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.bx-card-title { font-size: 19px; line-height: 1.35; margin-bottom: 12px; text-transform: none;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bx-card-title a { color: var(--accent-dark); }
.bx-card-title a:hover { color: var(--accent); }
.bx-card-excerpt { font-size: 14.5px; line-height: 1.75; margin-bottom: 22px;
  display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.bx-card-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); }
.bx-avatar {
  flex: 0 0 auto; width: 38px; height: 38px; border-radius: 50%; background: var(--accent-dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--heading-font); font-size: 13px; font-weight: 600;
}
.bx-byline { display: flex; flex-direction: column; line-height: 1.3; }
.bx-byline .who { font-family: var(--heading-font); font-weight: 600; font-size: 14px; color: var(--accent-dark); }
.bx-byline .rt { font-size: 12px; color: var(--text-light); }
.bx-arrow { margin-left: auto; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--accent-dark); transition: all .3s ease; }
.bx-card:hover .bx-arrow { background: var(--accent); border-color: var(--accent); color: #fff; }
.bx-card.is-hidden { display: none; }

/* Pagination */
.bx-pagination { display: flex; justify-content: center; gap: 10px; margin-top: 64px; }
.bx-pagination a, .bx-pagination span {
  min-width: 46px; height: 46px; padding: 0 14px; border: 1px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading-font); font-weight: 600; color: var(--accent-dark); transition: all .3s ease;
}
.bx-pagination a:hover, .bx-pagination .current { background: var(--accent); border-color: var(--accent); color: #fff; }

@media (max-width: 991px) {
  .bx-featured { grid-template-columns: 1fr; }
  .bx-featured-media { min-height: 300px; }
  .bx-featured-body { padding: 38px 34px; }
  .bx-featured-body h3 { font-size: 25px; }
  .bx-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .bx-lead h2 { font-size: 32px; }
}
@media (max-width: 640px) {
  .bx { padding: 70px 20px 80px; }
  .bx-grid { grid-template-columns: 1fr; }
  .bx-toolbar { flex-direction: column; align-items: stretch; }
  .bx-search input { width: 100%; }
  .bx-lead h2 { font-size: 27px; }
}

/* ---------- Vision Jet Articles page ---------- */
.vja-banner .page-banner-overlay { opacity: .52; }
.vja-articles { padding-top: 70px; padding-bottom: 90px; }
.vja-intro { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.vja-intro-text {
  font-size: 15px; line-height: 1.75; color: var(--text); margin: 0 0 18px;
}
.vja-intro h2 {
  font-size: 34px; text-transform: none; margin: 0; color: var(--accent-dark);
}

@media (max-width: 767px) {
  .vja-intro h2 { font-size: 28px; }
  .vja-articles { padding-top: 50px; padding-bottom: 70px; }
}

/* ---------- Captain Don Medine page (.cdm-*) ---------- */
.cdm-banner .page-banner-overlay { opacity: .52; }
.cdm-profile { padding: 70px 0 40px; background: var(--light); }
.cdm-profile-grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 48px; align-items: start;
}
.cdm-copy h2 { font-size: 38px; margin: 0 0 8px; color: var(--accent-dark); text-transform: none; }
.cdm-email { margin: 0 0 24px; }
.cdm-email a { color: var(--accent); font-weight: 600; text-decoration: none; }
.cdm-email a:hover { text-decoration: underline; }
.cdm-copy p { font-size: 16px; line-height: 1.8; margin-bottom: 18px; color: var(--text); }
.cdm-about-block { margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--border); }
.cdm-services-list { margin: 0 0 18px; padding-left: 22px; }
.cdm-services-list li { margin-bottom: 8px; line-height: 1.6; }
.cdm-media img {
  width: 100%; border-radius: 14px; box-shadow: 0 18px 50px rgba(0,0,0,.12);
  object-fit: cover; aspect-ratio: 4 / 5;
}
.cdm-quote-section { padding-top: 20px; }
.cdm-bio { padding: 20px 0 70px; }
.cdm-bio-inner { max-width: 900px; margin: 0 auto; }
.cdm-bio-inner p { font-size: 16px; line-height: 1.8; margin-bottom: 18px; }
.cdm-articles { padding-top: 70px; }
.cdm-search { max-width: 520px; margin: 0 auto 36px; }

@media (max-width: 991px) {
  .cdm-profile-grid { grid-template-columns: 1fr; }
  .cdm-media { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 767px) {
  .cdm-copy h2 { font-size: 30px; }
  .cdm-profile { padding-top: 50px; }
}

/* ===========================================================
   Single post (.sp) + blog sidebar (.bx-side)
   =========================================================== */
.sp-hero {
  position: relative; padding: 180px 0 70px; isolation: isolate;
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--darker) 100%);
}
.sp-hero-overlay { position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 82% 18%, rgba(44,192,255,.18), transparent 55%); }
.sp-hero-inner { max-width: 900px; }
.sp-hero .bx-cat { margin-bottom: 18px; }
.sp-title { color: #fff; font-size: 44px; line-height: 1.15; text-transform: none; margin-bottom: 22px; }
.sp-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; color: rgba(255,255,255,.82); font-size: 14px; }
.sp-meta i { margin-right: 6px; color: var(--accent); }
.sp-meta strong { color: #fff; font-weight: 600; }
.sp-by { display: inline-flex; align-items: center; }
.sp-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-family: var(--heading-font);
  font-weight: 600; font-size: 14px; margin-right: 4px;
}

.sp-wrap { padding: 80px 25px 100px; }
.sp-grid { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 60px; align-items: start; }

.sp-feature { margin-bottom: 38px; border-radius: 16px; overflow: hidden; }
.sp-feature img { width: 100%; height: auto; display: block; }

/* Article typography */
.sp-content { font-size: 17px; line-height: 1.85; color: var(--text); }
.sp-content > * { margin-bottom: 24px; }
.sp-content > *:last-child { margin-bottom: 0; }
.sp-content h1, .sp-content h2, .sp-content h3, .sp-content h4, .sp-content h5, .sp-content h6 {
  color: var(--accent-dark); text-transform: none; letter-spacing: normal; margin-top: 8px; line-height: 1.3;
  font-weight: 900;
  font-size: 23px;
}
.sp-content h2 { font-size: 28px; }
.sp-content h3 { font-size: 23px; }
.sp-content h4 { font-size: 20px; }
.sp-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.sp-content a:hover { color: var(--accent-dark); }
.sp-content ul, .sp-content ol { padding-left: 22px; }
.sp-content ul { list-style: disc; }
.sp-content ol { list-style: decimal; }
.sp-content li { margin-bottom: 10px; }
.sp-content img { border-radius: 12px; height: auto; }
.sp-content blockquote {
  border-left: 4px solid var(--accent); background: #f5fafe; border-radius: 0 12px 12px 0;
  padding: 22px 28px; font-size: 19px; font-style: italic; color: var(--accent-dark);
}
.sp-content blockquote p:last-child { margin-bottom: 0; }
.sp-content pre { background: var(--accent-dark); color: #e8f6ff; padding: 22px; border-radius: 12px; overflow: auto; }
.sp-content code { background: #eef3f5; padding: 2px 7px; border-radius: 5px; font-size: .9em; }
.sp-content table { width: 100%; border-collapse: collapse; }
.sp-content th, .sp-content td { border: 1px solid var(--border); padding: 12px 14px; text-align: left; }

/* Tags + share toolbar */
.sp-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px;
  margin: 42px 0; padding: 26px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.sp-tags { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.sp-tags-label { color: var(--accent); }
.sp-tags a {
  font-size: 13px; padding: 7px 14px; border: 1px solid var(--border); border-radius: 30px; color: var(--text);
  transition: all .3s ease;
}
.sp-tags a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.sp-share { display: flex; align-items: center; gap: 10px; }
.sp-share-label { font-family: var(--heading-font); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-dark); }
.sp-share a, .sp-share button {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); background: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; color: var(--accent-dark); font-size: 14px; transition: all .3s ease;
}
.sp-share a:hover, .sp-share button:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: #fff; transform: translateY(-3px); }
.sp-share .sp-share-fb:hover { background: #1877f2; border-color: #1877f2; }
.sp-share .sp-share-in:hover { background: #0a66c2; border-color: #0a66c2; }
.sp-share-copy.copied { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Author box */
.sp-author {
  display: flex; gap: 26px; align-items: flex-start; background: var(--accent-dark); border-radius: 16px;
  padding: 38px 40px; color: #fff; margin-bottom: 60px;
}
.sp-author-avatar { position: relative; flex: 0 0 auto; width: 86px; height: 86px; }
.sp-author-avatar .sp-gravatar { width: 86px; height: 86px; border-radius: 50%; object-fit: cover; position: relative; z-index: 2; }
.sp-author-initials {
  position: absolute; inset: 0; z-index: 1; border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--heading-font); font-size: 28px; font-weight: 600;
}
.sp-author-eyebrow { font-family: var(--heading-font); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); }
.sp-author-body h4 { color: #fff; font-size: 22px; text-transform: none; margin: 6px 0 10px; }
.sp-author-body p { color: rgba(255,255,255,.78); font-size: 15px; margin-bottom: 16px; }
.sp-author-socials.socials a { color: rgba(255,255,255,.75); font-size: 15px; }
.sp-author-socials.socials a:hover { color: var(--accent); }

/* Related */
.sp-related { margin-bottom: 20px; }
.sp-related-title, .sp-comments-title { font-size: 24px; text-transform: none; margin-bottom: 28px; }
.sp-related-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Comments */
.sp-comments { margin-top: 60px; }
.sp-comment-list { margin-bottom: 30px; }
.sp-comment-list ol { list-style: none; }
.sp-comment-list .comment-body { padding: 22px 0; border-bottom: 1px solid var(--border); }
.sp-comment-list .comment-author { font-family: var(--heading-font); color: var(--accent-dark); }
.sp-comment-list img.avatar { border-radius: 50%; margin-right: 12px; float: left; }
.sp-comment-form { margin-top: 20px; }
.sp-comment-form input, .sp-comment-form textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: 8px;
  font-family: var(--body-font); font-size: 15px; margin-bottom: 16px; background: #fff;
}
.sp-comment-form input:focus, .sp-comment-form textarea:focus { outline: none; border-color: var(--accent); }
.sp-comment-form .submit {
  background: var(--accent-dark); color: #fff; border: 0; border-radius: 40px; padding: 14px 34px;
  font-family: var(--heading-font); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: background .3s ease;
}
.sp-comment-form .submit:hover { background: var(--accent); }
.comment-form-recaptcha { margin: 0 0 20px; clear: both; }
.comment-form-recaptcha .g-recaptcha { transform-origin: left top; }

/* ---- Sidebar ---- */
.bx-side { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 38px; }
.bx-widget { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 28px 26px; }
.bx-widget-title { font-size: 17px; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); position: relative; }
.bx-widget-title::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 46px; height: 2px; background: var(--accent); }

.bx-side-search { display: flex; gap: 8px; }
.bx-side-search input { flex: 1; min-width: 0; padding: 12px 15px; border: 1px solid var(--border); border-radius: 8px; font-family: var(--body-font); font-size: 14px; }
.bx-side-search input:focus { outline: none; border-color: var(--accent); }
.bx-side-search button { flex: 0 0 auto; width: 46px; border: 0; border-radius: 8px; background: var(--accent-dark); color: #fff; cursor: pointer; transition: background .3s ease; }
.bx-side-search button:hover { background: var(--accent); }

.bx-cat-list li { border-bottom: 1px solid var(--border); }
.bx-cat-list li:last-child { border-bottom: 0; }
.bx-cat-list a { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; color: var(--text); font-size: 15px; }
.bx-cat-list a:hover { color: var(--accent); }
.bx-count { min-width: 28px; height: 24px; padding: 0 8px; border-radius: 30px; background: #eef3f5; color: var(--accent-dark); font-size: 12px; font-family: var(--heading-font); display: inline-flex; align-items: center; justify-content: center; transition: all .3s ease; }
.bx-cat-list a:hover .bx-count { background: var(--accent); color: #fff; }

.bx-mini-list { display: flex; flex-direction: column; gap: 18px; }
.bx-mini { display: flex; gap: 14px; align-items: center; }
.bx-mini-thumb { flex: 0 0 auto; width: 68px; height: 60px; border-radius: 8px; background-size: cover; background-position: center; }
.bx-mini-title { display: block; font-family: var(--heading-font); font-weight: 600; font-size: 14px; line-height: 1.4; color: var(--accent-dark); transition: color .3s ease; }
.bx-mini:hover .bx-mini-title { color: var(--accent); }
.bx-mini-date { font-size: 12px; color: var(--text-light); }
.bx-mini-date i { margin-right: 5px; }

.bx-archive-list li { padding: 9px 0; border-bottom: 1px solid var(--border); }
.bx-archive-list li:last-child { border-bottom: 0; }
.bx-archive-list a { color: var(--text); font-size: 15px; }
.bx-archive-list a:hover { color: var(--accent); }

.bx-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.bx-tags a { padding: 7px 14px; border: 1px solid var(--border); border-radius: 30px; color: var(--text); font-size: 13px; transition: all .3s ease; }
.bx-tags a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

@media (max-width: 991px) {
  .sp-grid { grid-template-columns: 1fr; gap: 50px; }
  .bx-side { position: static; }
  .sp-title { font-size: 34px; }
  .sp-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .sp-hero { padding: 150px 0 50px; }
  .sp-title { font-size: 26px; }
  .sp-wrap { padding: 60px 20px 80px; }
  .sp-author { flex-direction: column; gap: 18px; padding: 30px 26px; }
  .sp-toolbar { flex-direction: column; align-items: flex-start; }
  .sp-related-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   Our features (About us) page
   =========================================================== */
.feature-intro { padding-top: 100px; }
.feature-intro-image { background-image: url('../images/img-2-copyright.jpg'); }

.team { padding: 100px 25px; text-align: center; }
.team-heading { font-size: 34px; margin-bottom: 55px; }
.team-heading b { color: var(--accent); font-weight: 700; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.team-member { text-align: center; }
.team-photo { position: relative; overflow: hidden; border-radius: 6px; margin-bottom: 24px; }
.team-photo img { width: 100%; height: auto; display: block; transition: transform .5s ease; }
.team-member:hover .team-photo img { transform: scale(1.05); }
.team-socials {
  position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: center; gap: 14px;
  padding: 18px 0; background: linear-gradient(to top, rgba(9,33,43,.85), transparent);
  transform: translateY(100%); opacity: 0; transition: all .35s ease;
}
.team-member:hover .team-socials { transform: translateY(0); opacity: 1; }
.team-socials a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.15); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 14px; transition: background .3s ease;
}
.team-socials a:hover { background: var(--accent); }
.team-socials .team-view { transition: background .3s ease, color .3s ease; }
.team-member:hover .team-socials .team-view { background: var(--accent); color: #fff; }
.team-member h5 { font-size: 20px; margin-bottom: 6px; }
.team-role { color: var(--accent); font-size: 14px; font-family: var(--heading-font); }
.team-action { margin-top: 55px; }
.team-member h5 a { color: inherit; }
.team-member h5 a:hover { color: var(--accent); }
.team-photo { display: block; }
.team-view {
  width: 44px; height: 44px; border-radius: 50%; background: #fff; color: var(--accent-dark);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}

/* ---------- Team single (CPT) ---------- */
.tm-hero { padding: 90px 25px 70px; }
.tm-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tm-exp-badge {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 120px; padding: 18px 24px; border-radius: 8px; background: var(--accent); color: #fff; margin-bottom: 24px;
}
.tm-exp-num { font-family: var(--heading-font); font-size: 34px; font-weight: 700; line-height: 1; }
.tm-exp-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; text-align: center; }
.tm-role-tag {
  display: inline-block; padding: 6px 14px; border-radius: 40px; background: rgba(44,192,255,.12);
  color: var(--accent); font-family: var(--heading-font); font-size: 13px; font-weight: 600; margin-bottom: 16px;
}
.tm-name { font-size: 38px; text-transform: none; margin-bottom: 18px; }
.tm-intro { font-size: 16px; line-height: 1.75; margin-bottom: 28px; max-width: 520px; }
.tm-contact-list { margin-bottom: 30px; }
.tm-contact-list li { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; font-size: 15px; }
.tm-contact-list i { color: var(--accent); margin-top: 4px; flex: 0 0 auto; width: 18px; text-align: center; }
.tm-contact-list a { color: var(--accent-dark); }
.tm-contact-list a:hover { color: var(--accent); }
.tm-contact-btn i { margin-right: 8px; }
.tm-photo { margin: 0; border-radius: 10px; overflow: hidden; box-shadow: 0 30px 60px rgba(9,33,43,.16); }
.tm-photo img { width: 100%; height: auto; display: block; }

.tm-section { padding: 80px 25px; }
.tm-section-alt { background: #f3f6f7; }
.tm-block { max-width: 900px; }
.tm-section-title { font-size: 32px; text-transform: none; margin-bottom: 30px; }
.tm-content { font-size: 16px; line-height: 1.8; }
.tm-content p { margin-bottom: 18px; }

.tm-exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.tm-exp-card {
  background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 36px 30px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tm-exp-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(9,33,43,.1); }
.tm-exp-card h4 { font-size: 18px; text-transform: none; margin-bottom: 14px; color: var(--accent-dark); }
.tm-exp-card p { font-size: 15px; line-height: 1.7; margin: 0; }

.tm-skills { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; max-width: 900px; }
.tm-skill-head { display: flex; justify-content: space-between; margin-bottom: 10px; font-family: var(--heading-font); font-weight: 600; font-size: 15px; }
.tm-skill-bar { height: 8px; background: #e8ecef; border-radius: 999px; overflow: hidden; }
.tm-skill-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-dark)); border-radius: 999px; }

.tm-cta { padding: 80px 25px; background: linear-gradient(135deg, var(--dark), var(--darker)); text-align: center; }
.tm-cta-inner { max-width: 640px; margin: 0 auto; }
.tm-cta h3 { color: #fff; font-size: 32px; text-transform: none; margin-bottom: 14px; }
.tm-cta p { color: rgba(255,255,255,.75); margin-bottom: 28px; }
.tm-comments { padding: 60px 25px 100px; }

.testimonials-heading { text-align: center; font-size: 30px; color: #fff; margin-bottom: 55px; }

/* ===========================================================
   Gallery Grid page
   =========================================================== */
.gallery-section { padding: 100px 25px; }
.gallery-filter {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 55px;
}
.gallery-filter button {
  background: transparent; border: 1px solid var(--border); color: var(--dark);
  font-family: var(--heading-font); font-size: 14px; letter-spacing: .4px;
  padding: 11px 26px; border-radius: 4px; cursor: pointer;
  transition: all .3s ease;
}
.gallery-filter button:hover { color: var(--accent); border-color: var(--accent); }
.gallery-filter button.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: 6px;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; text-align: center;
  background: rgba(9, 33, 43, .82); color: #fff;
  opacity: 0; transition: opacity .35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .g-zoom {
  width: 54px; height: 54px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 18px; color: #fff;
}
.gallery-overlay .g-title { font-family: var(--heading-font); font-size: 18px; }
.gallery-overlay .g-cat { font-size: 13px; color: var(--accent); }
.gallery-item.hide { display: none; }

/* ===========================================================
   Contact page redesign
   =========================================================== */
.contact-lead { max-width: 880px; margin: 0 auto; text-align: center; padding: 90px 25px 0; }
.contact-lead p { font-size: 17px; line-height: 1.9; margin-bottom: 18px; }
.contact-lead p:last-child { margin-bottom: 0; }

.contact-split {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px;
  padding: 60px 25px 100px; align-items: stretch;
}

.contact-aside {
  background: var(--accent-dark); color: #fff; border-radius: 10px;
  padding: 50px 42px;
}
.contact-aside h3 { color: #fff; font-size: 26px; margin-bottom: 8px; }
.ca-sub { color: rgba(255, 255, 255, .65); margin-bottom: 34px; }
.ca-item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 26px; }
.ca-icon {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: #fff; display: flex; align-items: center;
  justify-content: center; font-size: 17px;
}
.ca-label {
  display: block; font-family: var(--heading-font); font-size: 12px;
  letter-spacing: .6px; text-transform: uppercase; color: rgba(255, 255, 255, .55); margin-bottom: 5px;
}
.ca-value { color: #fff; font-size: 16px; line-height: 1.6; display: block; }
a.ca-value:hover { color: var(--accent); }
.ca-ceo { margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255, 255, 255, .12); }
.ca-ceo h5 { color: #fff; font-size: 18px; margin-bottom: 4px; }
.ca-ceo-title { display: block; color: rgba(255, 255, 255, .6); font-size: 13px; margin-bottom: 8px; }
.ca-ceo-mail { color: var(--accent); font-size: 14px; }
.ca-ceo-mail:hover { color: #fff; }
.ca-socials { display: flex; gap: 12px; margin-top: 30px; }
.ca-socials a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .1);
  color: #fff; display: flex; align-items: center; justify-content: center; transition: background .3s ease;
}
.ca-socials a:hover { background: var(--accent); }

.contact-form-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 50px 45px; box-shadow: 0 30px 60px rgba(9, 33, 43, .06);
}
.contact-form-card h3 { font-size: 26px; margin-bottom: 28px; }
.sf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.sf-field { display: flex; flex-direction: column; }
.sf-col-2 { grid-column: 1 / -1; }
.sf-field label { font-family: var(--heading-font); font-size: 13px; font-weight: 500; margin-bottom: 8px; color: var(--dark); }
.sf-field label.agree { font-weight: 400; }
.sf-field label span { color: var(--accent); }
.sf-field input, .sf-field select, .sf-field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: 6px;
  font-family: inherit; font-size: 15px; color: var(--text); background: #fff; transition: border-color .25s ease;
}
.sf-field input:focus, .sf-field select:focus, .sf-field textarea:focus { outline: none; border-color: var(--accent); }
.sf-field textarea { resize: vertical; }
.sf-field-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sf-field-split > div { display: flex; flex-direction: column; }
.sf-submit { margin-top: 6px; }
.contact-form-card .agree { font-size: 13px; color: var(--text); display: flex; flex-direction: row; gap: 10px; align-items: flex-start; text-align: left; }
.contact-form-card .agree input { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; }

/* International phone input (intl-tel-input) */
.sf-field .iti { width: 100%; display: block; }
.sf-field .iti__selected-dial-code { font-size: 15px; color: var(--text); }
.sf-field .iti--separate-dial-code .iti__selected-flag { background-color: #f5f7f8; border-radius: 6px 0 0 6px; }
.iti__country-list { font-size: 14px; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 1200px) {
  .hero-left h1 { font-size: 52px; }
  .excellence-grid { grid-template-columns: 1fr 1fr; }
  .excellence-image { display: none; }
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-intro { padding-top: 80px; }
  .services-list { padding: 80px 25px; }
  .page-banner { padding: 170px 0 80px; }
  .news-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-info-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-info-block { padding-top: 80px; }
  .contact-map-section iframe { height: 360px; }
  .fleet { padding: 80px 25px; }
  .fleet-body { grid-template-columns: 1fr; gap: 35px; }
  .fleet-stats { gap: 26px; }
  .blog-wrap { padding: 80px 25px; }
  .blog-grid { grid-template-columns: 1fr; gap: 60px; }
  .blog-sidebar { max-width: 540px; }
}

@media (max-width: 1300px) {
  .header-inner { gap: 16px; }
  .main-nav .menu { gap: 16px; }
  .main-nav .menu > li > a { font-size: 12px; letter-spacing: 0; }
  .header-right .socials { display: none; }
}

@media (max-width: 1024px) {
  .main-nav, .header-right .socials { display: none; }
  .header-contact-text { display: none; }
  .menu-toggle { display: block; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 360px; order: -1; }
  .hero-left { padding: 0 25px; }
  .hero-left-inner { padding: 70px 0; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 50px 40px; }
  .price-card { flex: 0 0 calc((100% - 30px) / 2); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px 30px; padding: 70px 25px 40px; }
  .team { padding: 80px 25px; }
  .team-grid { gap: 30px; }
  .tm-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .tm-photo { order: -1; max-width: 480px; margin: 0 auto; }
  .tm-exp-grid { grid-template-columns: 1fr 1fr; }
  .tm-skills { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .contact-split { grid-template-columns: 1fr; gap: 30px; padding-bottom: 80px; }
}

@media (max-width: 767px) {
  .hero-left h1 { font-size: 40px; }
  .hero-sub { font-size: 16px; }
  .hero-card { flex-direction: column; transform: translateY(30px); }
  .hero-card-media { min-height: 180px; }
  .excellence, .contact { padding: 70px 25px; }
  .excellence-grid { grid-template-columns: 1fr; gap: 40px; }
  .features { padding-bottom: 70px; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing { padding: 70px 0; background-attachment: scroll; }
  .pricing-head { flex-direction: column; align-items: flex-start; gap: 24px; }
  .price-card { flex: 0 0 100%; padding: 40px 30px; }
  .testimonials { padding: 70px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-rows { max-width: none; }
  .signup-form { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 60px 25px 30px; text-align: left; }
  .footer-logo { height: 90px; }
  /* services page */
  .page-banner { padding: 150px 0 60px; }
  .page-banner h1 { font-size: 36px; }
  .services-intro { padding-top: 60px; }
  .services-list { padding: 60px 25px; }
  .services-grid { grid-template-columns: 1fr; gap: 45px; }
  .check-cols { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 80px 0; background-attachment: scroll; }
  .news-row { flex-direction: column; }
  .news-form .btn { justify-content: center; }
  .get-in-touch { padding: 60px 25px; }
  .contact-form .cf-row { grid-template-columns: 1fr; gap: 20px; }
  .contact-map-section iframe { height: 280px; }
  /* fleet page */
  .fleet { padding: 60px 25px; }
  .fleet-head { padding: 25px 25px; }
  .fleet-name { font-size: 19px; }
  .fleet-stats { gap: 16px; flex-direction: column; align-items: flex-start; }
  .fleet-callus { padding: 60px 0; }
  .fleet-callus h4 { font-size: 23px; }
  /* blog page */
  .blog-wrap { padding: 60px 25px; }
  .post-title { font-size: 22px; }
  .post-meta { gap: 12px; }
  /* features page */
  .feature-intro { padding-top: 60px; }
  .team { padding: 60px 25px; }
  .team-heading { font-size: 27px; margin-bottom: 40px; }
  .team-grid { grid-template-columns: 1fr; gap: 35px; max-width: 380px; margin: 0 auto; }
  .tm-hero { padding: 60px 25px 50px; }
  .tm-name { font-size: 30px; }
  .tm-section { padding: 60px 25px; }
  .tm-section-title { font-size: 26px; }
  .tm-exp-grid { grid-template-columns: 1fr; }
  .tm-cta { padding: 60px 25px; }
  .tm-cta h3 { font-size: 26px; }
  .testimonials-heading { font-size: 24px; margin-bottom: 40px; }
  /* gallery page */
  .gallery-section { padding: 60px 25px; }
  .gallery-filter { margin-bottom: 40px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 20px; }
  /* contact page */
  .contact-lead { padding-top: 60px; }
  .contact-lead p { font-size: 15px; }
  .contact-split { padding: 45px 25px 60px; }
  .contact-aside { padding: 40px 28px; }
  .contact-form-card { padding: 35px 24px; }
  .sf-grid { grid-template-columns: 1fr; gap: 18px; }
  /* keep slideInUp card from drifting on small screens */
  @keyframes slideInUp { from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: translateY(30px); } }
}
