:root {
  --navy: #0b1829;
  --navy-mid: #152238;
  --navy-light: #1e3254;
  --gold: #c9922b;
  --gold-lt: #e5ab48;
  --gold-pale: #f8edda;
  --cream: #faf8f4;
  --white: #ffffff;
  --text-body: #3a4b68;
  --text-muted-custom: #8090aa;
  --border-gold: rgba(201, 146, 43, .22);
}

section {
  padding: 100px 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
}

/* ── PAGE SWITCHING ── */
.page-section {
  display: none;
}

.page-section.active {
  display: block;
}

/* ── NAVBAR ── */
header {
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 146, 43, .25);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 !important;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 14px 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--navy);
}

.brand-text-top {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  display: block;
}

.brand-text-sub {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  line-height: 1.4;
}

.footer-col .mt-3 span {
  color: #fff;
  font-size: 16px;
}

.nav-link-custom {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  padding: 8px 16px !important;
  border-radius: 3px;
  transition: color .2s, background .2s;
  cursor: pointer;
}

.nav-link-custom:focus {
  color: #fff !important;
}

.nav-link-custom:hover,
.nav-link-custom.active-page {
  color: var(--gold) !important;
  background: rgba(201, 146, 43, .1);
}

.btn-nav-cta {
  font-size: 16px;
  letter-spacing: 0;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  padding: 9px 22px !important;
  border-radius: 3px;
  transition: background .2s;
}

.btn-nav-cta:hover {
  background: rgba(201, 146, 43, .1);
}

.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, .3) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ────────────────────────────────────
   HOME PAGE
──────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(201, 146, 43, .045) 59px, rgba(201, 146, 43, .045) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(201, 146, 43, .045) 59px, rgba(201, 146, 43, .045) 60px);
}

.hero-right-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 46%;
  background: var(--navy-mid);
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-accent-line {
  position: absolute;
  left: 54%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: .55;
  transform: skewX(-1.5deg);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-size: 20px;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.4rem;
}

.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 8vw, 104px);
  line-height: .9;
  letter-spacing: 2px;
  color: var(--white);
}

.hero-title .gold {
  color: var(--gold);
  display: block;
}

.hero-lead {
  line-height: 1.75;
  color: #fff;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 1px;
}

.stat-label {
  font-size: 13px;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 3px;
}

.hero-divider {
  border-color: rgba(255, 255, 255, .1) !important;
}

.hero-service-card {
  background: rgba(255, 255, 255, .04);
  border-radius: 0px;
  transition: background .25s, border-color .25s;
  border: 1px solid #dadada;
  min-height: 150px;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  box-shadow: rgb(0 0 0 / 3%) 1.95px 1.95px 2.6px;
}

.hero-service-card:hover {
  background: rgba(201, 146, 43, .07);
  border-color: rgba(201, 146, 43, .5);
}

.service-icon-box {
  width: 52px;
  height: 52px;
  background: rgba(201, 146, 43, .12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 1rem;
}

.hero-service-card h5 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px !important;
  letter-spacing: 0px;
  color: #000;
  font-weight: 600;
}

.hero-service-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  margin: 0;
  line-height: 1.6;
}

.phone-pill {
  background: var(--gold);
  color: var(--navy) !important;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  padding: 10px 28px;
  border-radius: 4px;
  display: inline-block;
  text-decoration: none;
  transition: background .2s;
}

.phone-pill:hover {
  background: var(--gold-lt);
}

.badge-est {
  background: transparent;
  border: 1px solid rgba(201, 146, 43, .4);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  display: inline-block;
}

/* Buttons */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s, transform .15s;
}

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
  color: var(--navy);
}

.btn-outline-gold {
  background: transparent;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, .3);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color .2s, color .2s;
}

.btn-outline-gold:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.sec-label {
  font-size: 20px;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .9rem;
}

.sec-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 50px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.sec-title em {
  font-style: normal;
  color: var(--gold);
}

.sec-desc {
  line-height: 1.75;
  color: #000;
}

/* Why Choose */
.why-card {
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  background: var(--white);
  transition: transform .2s, box-shadow .2s;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(11, 24, 41, .1);
}

.why-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.why-card h5 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: .5rem;
}

.why-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

/* Dark section */
.dark-section {
  background: var(--navy);
}

.dark-section .sec-title {
  color: var(--white);
}

.dark-section .sec-desc {
  color: #fff;
}

.dark-section .sec-label {
  color: var(--gold);
}

.dark-section .sec-label::before {
  background: var(--gold);
}

/* CTA Banner */
.cta-banner {
  background: var(--gold);
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: 'JETS TOWING';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 160px;
  letter-spacing: 4px;
  color: rgba(11, 24, 41, .08);
  white-space: nowrap;
  user-select: none;
}

a.footer-link-phon {
  font-weight: 600;
  color: #c9922b;
  text-decoration: none;
}

.cta-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 50px);
  color: var(--navy);
  letter-spacing: 2px;
}

.cta-banner p {
  margin: 0;
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background .2s;
}

.btn-navy:hover {
  background: var(--navy-light);
  color: var(--white);
}

/* ────────────────────────────────────
   ABOUT PAGE
──────────────────────────────────── */
.page-hero-inner {
  background: var(--navy);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.page-hero-bg-text {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  letter-spacing: 8px;
  color: rgba(255, 255, 255, .03);
  white-space: nowrap;
  user-select: none;
}

.page-hero-inner .eyebrow {
  margin-bottom: 1rem;
}

.page-hero-inner h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 90px);
  color: var(--white);
  letter-spacing: 2px;
  line-height: .95;
}

.page-hero-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, .6);
  max-width: 500px;
  line-height: 1.75;
}

/* Portrait block */
.portrait-wrap {
  position: relative;
}

.portrait-bg {
  background: var(--navy-mid);
  border-radius: 8px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.portrait-big-initials {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 180px;
  letter-spacing: 8px;
  color: rgba(255, 255, 255, .06);
  user-select: none;
}

.portrait-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.75rem;
  background: linear-gradient(transparent, rgb(0 0 0 / 92%));
  padding-bottom: 33px;
  padding-top: 80px;
}

.portrait-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--white);
}

.portrait-role {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
  font-weight: 600;
}

.portrait-side-badge {
  position: absolute;
  top: 2rem;
  right: -1.25rem;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  padding: .7rem 1rem;
  border-radius: 3px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 600;
}

.about-lead {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: normal;
  color: var(--navy);
  line-height: 1.55;
}

.about-body {
  line-height: 1.8;
  color: #000;
}

section.dark-section p.about-body {
  color: #fff;
}

.about-blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.about-blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--navy);
}

.responsibility-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-gold);
}

.responsibility-item:last-child {
  border-bottom: none;
}

.responsibility-item .ri-icon {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.responsibility-item p {
  color: #000;
  margin: 0;
  line-height: 1.5;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(201, 146, 43, .3);
}

.tl-item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}

.tl-dot {
  position: absolute;
  left: -5px;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 146, 43, .2);
}

.tl-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 4px;
}

.tl-event {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}

.tl-detail {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.6;
}

/* Partner logos strip */
.partner-strip {
  background: var(--cream);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 1.5rem 0;
}

.partner-badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--text-muted-custom);
  padding: .5rem 1.5rem;
  border: 1px solid rgba(58, 75, 104, .15);
  border-radius: 3px;
  white-space: nowrap;
}

/* ────────────────────────────────────
   BLOG PAGE
──────────────────────────────────── */
.blog-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: var(--white);
  transition: transform .2s, box-shadow .2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(11, 24, 41, .12);
}

.blog-card-thumb {
  height: 200px;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-thumb-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, .06);
  user-select: none;
  position: absolute;
}

.blog-card-thumb-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.blog-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 2px;
}

.blog-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-date {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: #c9922b;
  margin-bottom: .75rem;
  color: #fff;
  padding: 0px 7px;
  display: flex;
  width: max-content;
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #000;
  line-height: 1.35;
  margin-bottom: .75rem;
  font-weight: 500;
}

.blog-excerpt {
  color: #000;
  line-height: 1.65;
  flex: 1;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.blog-readmore {
  font-size: 16px;
  letter-spacing: 0px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 0px;
  text-decoration: none;
  cursor: pointer;
}

.blog-readmore::after {
  content: '→';
  transition: transform .2s;
}

.blog-readmore:hover {
  color: var(--gold-lt);
}

.blog-readmore:hover::after {
  transform: translateX(4px);
}

.blog-featured {
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(201, 146, 43, .2);
}

.blog-featured-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-featured-bg-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  letter-spacing: 10px;
  color: rgba(255, 255, 255, .04);
  user-select: none;
}

.blog-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 20%, rgba(11, 24, 41, .9) 70%);
}

.blog-featured-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem;
}

.blog-featured-content .blog-tag {
  position: static;
  display: inline-block;
  margin-bottom: 1rem;
}

.blog-featured-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--white);
  line-height: 1.25;
  margin-bottom: .75rem;
}

.blog-featured-excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 1.25rem;
}

/* Sidebar */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 1.45rem;
}

.sidebar-widget+.sidebar-widget {
  margin-top: 1.5rem;
}

.sidebar-widget h6 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--navy);
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: .75rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.sidebar-post {
  display: flex;
  gap: 12px;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border-gold);
}

.sidebar-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-post-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--gold);
  opacity: .5;
  line-height: 1;
  flex-shrink: 0;
  min-width: 28px;
}

.sidebar-post-title {
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
}

.sidebar-post-date {
  color: #c9922b;
  font-weight: 700;
}

.sidebar-widget p {
  color: #fff !important;
  font-size: 16px !important;
}

.category-pill {
  display: inline-block;
  background: var(--gold-pale);
  color: #000;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(201, 146, 43, .3);
  margin: 4px;
  cursor: pointer;
  transition: background .2s;
}

.category-pill:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ────────────────────────────────────
   CONTACT PAGE
──────────────────────────────────── */
.contact-info-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 2.5rem;
  height: 100%;
}

.contact-info-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.contact-detail:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: rgba(201, 146, 43, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-detail-label {
  letter-spacing: 0px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}

.contact-detail-value {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
  text-decoration: none;
}

a.contact-detail-value:hover {
  color: var(--gold);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 2.5rem;
}

.contact-form-wrap h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 35px;
  letter-spacing: 0px;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.form-label-custom {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted-custom);
  font-weight: 500;
  margin-bottom: .4rem;
  display: block;
}

.form-control-custom {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid rgba(58, 75, 104, .2);
  border-radius: 0px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--navy);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 146, 43, .12);
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 130px;
}

select.form-control-custom {
  cursor: pointer;
}

.map-placeholder {
  background: var(--navy-mid);
  border-radius: 8px;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 146, 43, .2);
  position: relative;
  overflow: hidden;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(201, 146, 43, .07) 39px, rgba(201, 146, 43, .07) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(201, 146, 43, .07) 39px, rgba(201, 146, 43, .07) 40px);
}

.map-pin {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

.map-pin-icon {
  font-size: 48px;
  color: var(--gold);
}

.map-pin-label {
  background: var(--navy);
  border: 1px solid rgba(201, 146, 43, .4);
  color: var(--white);
  font-size: 13px;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 4px;
}

.map-pin-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, .5);
  letter-spacing: 2px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(201, 146, 43, .2);
  padding: 3rem 0 2rem;
}

.footer-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
}

.footer-brand-sub {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

footer p {
  color: #fff;
  line-height: 1.7;
}

.footer-link {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 10px 0;
  cursor: pointer;
  transition: color .2s;
  font-size: 16px;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-heading {
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-divider {
  border-color: rgb(255 255 255) !important;
}

.border-line {
  border-top: 1px solid #ffffff33;
  width: max-content;
  padding-top: 10px;
}

.footer-copy {
  color: #fff;
}

.banner_img img {
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
  position: relative;
  z-index: 9;
}

.banner_img {
  position: relative;
}

.banner_img::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #c9922b;
  left: 10px;
  top: 10px;
}

.portait_img {
  width: 100%;
}

.portait_img img {
  width: 100%;
}

.charlie_img {
  width: 100%;
}

.charlie_img img {
  width: 100%;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp .6s ease forwards;
}

.anim-d1 {
  animation-delay: .1s;
  opacity: 0;
}

.anim-d2 {
  animation-delay: .25s;
  opacity: 0;
}

.anim-d3 {
  animation-delay: .4s;
  opacity: 0;
}

.anim-d4 {
  animation-delay: .55s;
  opacity: 0;
}

.con-footer .Emergency {
  color: #c9922b;
  font-size: 20px;
  font-weight: 600;
}

.con-footer .Call {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  margin-top: 10px;
}

/* Responsive */
@media(max-width:991px) {
  .hero-right-panel {
    display: none;
  }

  .hero-accent-line {
    display: none;
  }

  .portrait-side-badge {
    display: none;
  }

  .page-hero-bg-text {
    display: none;
  }
}

@media(max-width:767px) {
  .hero-title {
    font-size: clamp(52px, 15vw, 80px);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}


.contact-form-wrap .form-label-custom {
  color: #000;
  font-size: 15px;
  letter-spacing: 0px;
  font-weight: 500;
  text-transform: capitalize;
}

.root-block {
  display: flex;
  justify-content: space-between;
}

.contact-form-wrap p {
  color: #000 !important;
  font-size: 15px !important;
}

.error {
  background: red;
  display: block;
  color: #fff !important;
  padding: 0px 2px;
}


.Thank-Page {
  background: #fff;
  padding: 215px 0px;
}

/* 
.navbar-toggler {
  display: none;
} */


.cta-banner .container {
  position: relative;
  z-index: 1212;
}


.Charles_img {
  height: 100%;
}

.Charles_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-btn {
  display: flex;
  gap: 15px;
}

.post-thumbnail img {
  background: #fff;
  box-shadow: 0 0 5px #cecece;
  padding: 15px;
  height: 380px;
  width: 557px;
  object-fit: cover;
  float: inline-end;
  margin-left: 30px;
  margin-bottom: 25px;
}

.site-post :is(h1,

  h2,

  h3,

  h4,

  h5,

  h6) {
  font-weight: 500;
  font-size: clamp(35px, 28px, 36px);
  color: #000;
  border-left: 4px solid #c9922b;
  background: #b1b1b117;
  display: flex;
  padding: 10px 15px;
  margin: 30px 0px 20px 0px;
}

.site-post {
  background: #FFF;
}

.blog_listing .row.g-4 {
  justify-content: center;
}

.blog_listing .section_head {
  text-align: center;
}

.blog_listing .sec-label {
  justify-content: center;
}


.page-id-8 .blog-card .blog-title a {
  font-size: 20px;
  color: #000;
  text-decoration: none;
}

.sidebar-post-title a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
}

.footer-copy a {
  display: none;
}

.page-id-8 .blog-excerpt {
  color: #000;
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.ib-text h2 {
  text-align: center;
  font-size: 40px;
}

.ib-text a {
  display: flex;
  text-decoration: none;
  justify-content: center;
}

.Error-section {
  padding: 200px 0px;
}

.mobile-top-bar {
  display: none;
}

.content-lg-end {
  display: flex;
  gap: 10px;
}

ul.responsibility-list {
  padding: 0px;
}

.cta-banner .row {
  justify-content: space-between;
}


.blog-card .blog-title a {
  font-size: 20px;
  color: #000;
  text-decoration: none;
}

.blog-card-body p {
  color: #000;
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-widget a {
  font-size: 17px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  padding-bottom: 10px !important;
  margin-bottom: 10px !important;
  border-bottom: 1px solid #deee;
  display: block;
}

p:empty {
  display: none !important;
}

.jets-about-section .offset-lg-1 {
  display: none;
}

.jets-about-section .col-lg-5 {
    width: 100%;
    max-width: 55%;
    text-align: center;
    margin-inline: auto;
}

.jets-about-section .sec-label {
  justify-content: center;
}
.footer-end-section p {
    margin-bottom: 0px;
}

@media (max-width: 1260.98px) {

  .cta-banner::before {
    display: none;
  }

  .root-block {
    flex-direction: column;
  }



  .post-thumbnail img {
    float: unset;
    margin: 0px;
    height: 250px;
    padding: 10px;
  }

  .content-lg-end {
    flex-direction: column;
    width: 70%;
    text-align: center;
  }

  .content-lg-end .btn-navy {
    justify-content: center;
  }


}

@media (max-width: 991.98px) {

  .hero-btn {
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: 60%;
  }

  .site-post :is(h1,

    h2,

    h3,

    h4,

    h5,

    h6) {
    font-size: 28px;
  }

  .mobile-top-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-top-bar a {
    font-weight: 600;
    text-decoration: none;
    background: #c9922b;
    text-align: center;
    padding: 10px 0px;
    color: #fff;
  }



  .mobile-top-bar a+a {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    color: #0b1829;
  }

  header .container {
    width: 100%;
    max-width: 100%;
  }

  .hero .eyebrow {
    font-size: 17px;
  }

  .hero .eyebrow {
    justify-content: center;
  }

  .hero-title {
    text-align: center;
    font-size: 60px;
  }

  .hero-lead {
    text-align: center;
  }

  .hero-btn {
    flex-direction: column;
    text-align: center;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    align-items: center;
  }

  .hero-btn a {
    width: 50%;
  }

  .hero-stats {
    justify-content: center;
  }

  section.jets-about-section {
    padding: 3rem 0 !important;
  }

  .blog_listing .col-md-4 {
    width: 50%;
  }

  .cta-banner h2 {
    text-align: center;
    font-size: 35px;
  }

  .cta-banner p {
    text-align: center;
  }

  .content-lg-end {
    justify-content: center;
    flex-direction: column;
    width: 80%;
    text-align: center;
    margin-inline: auto;
  }

  .btn-navy {

    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .hero-title {
    font-size: 45px;
  }

  .stat-num {
    font-size: 30px;

    text-align: center;
  }

  .hero-btn a {
    width: 70%;
  }

  .stat-label {
    margin-top: 8px;
  }

  .sec-label {
    font-size: 17px;
    letter-spacing: 0px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: .9rem;
  }

  .hero-service-card h5 {
    text-align: center;
  }

  .hero-service-card {
    justify-content: center;
    align-items: center;
  }

  .portrait-bottom {

    padding: 25px;
  }

  section {
    padding: 40px 0 !important;
  }

  .portrait-name {
    font-size: 25px;
  }

  .portrait-role {
    font-size: 15px;
  }

  .blog_listing .row {
    justify-content: center;
    margin-top: 0px;
  }

  .blog_listing .col-md-4 {
    width: 100%;
  }

  .blog-card-body {
    padding: 0.75rem;
  }

  .contact-form-wrap {
    padding: 1.5rem;
  }

  .btn-nav-cta {
    width: fit-content;
  }
}