﻿/* ===========================================================
   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: 46px; 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: 44px; 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: url("../images/post-4-copyright.jpg") center/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("../images/post-7-copyright.jpg") center/cover no-repeat;
}

/* ---------- 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: url("../images/img-1-copyright.jpg") top center/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: 168px; }

/* ---------- 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: 40px; }
.contact-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-row { display: flex; gap: 18px; }
.c-icon { color: var(--accent); font-size: 30px; }
.contact-row h5 { font-size: 20px; margin-bottom: 8px; }
.contact-row p { font-size: 14px; }
.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: 760px; }
.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 p { color: rgba(255,255,255,.75); font-size: 16px; margin-bottom: 32px; }
.yt-cta .btn i { margin-left: 8px; }

/* ---------- Home: contact lead ---------- */
.contact-lead-text { font-size: 16px; color: var(--text); margin-bottom: 36px; max-width: 440px; }

@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-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: 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; }
}

/* ---------- Footer ---------- */
.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/header-bg-copyright.jpg") center/cover no-repeat;
}
.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; }
}

/* ===========================================================
   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); }

/* ---- 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-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; }

.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; }
  .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 { grid-template-columns: 1fr; }
  .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; }
  .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); } }
}
