:root {
  --navy: #0d1b2e;
  --navy-mid: #162844;
  --navy-light: #1e3a5f;
  --gold: #f0a500;
  --gold-light: #f7c048;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --grey: #8a9ab0;
  --text: #2c3e50;

  --font-heading: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;

  --max-width: 1280px;
  --gutter: 40px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  transition:
    background 0.4s,
    box-shadow 0.4s;
  padding: 0 var(--gutter);
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-mark {
  width: 44px;
  height: 44px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-logo-mark span {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -1px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text strong {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-logo-text small {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a,
.nav-links li a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 4px;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-links a:hover,
.nav-links li a:hover {
  color: var(--gold);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  padding: 8px;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.mobile-nav-links a,
.mobile-nav-links li a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
}
.mobile-nav-links a:hover {
  color: var(--gold);
}

.custom-logo-link {
  display: flex;
  align-items: center;
}

.custom-logo {
  max-height: 50px;
  width: auto !important;
  display: block;
}

.nav-logo-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
}

@media (max-width: 768px) {
  .custom-logo {
    max-height: 40px;
  }
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1565008447742-97f6f38c985c?w=1920&q=80");
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1.12);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(13, 27, 46, 0.92) 0%,
    rgba(13, 27, 46, 0.7) 50%,
    rgba(13, 27, 46, 0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(240, 165, 0, 0.15);
  border: 1px solid rgba(240, 165, 0, 0.4);
  border-radius: 2px;
  padding: 6px 16px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}
.hero h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.92;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero h1 .accent,
.accent {
  color: var(--gold);
}
.hero-sub {
  font-size: 19px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}
.hero-stats {
  position: absolute;
  bottom: 60px;
  right: 0;
  display: flex;
  gap: 2px;
  animation: fadeIn 1s 0.7s ease both;
  z-index: 2;
}
.hero-stat {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 28px;
  text-align: center;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 36px;
  color: var(--gold);
  line-height: 1;
}
.hero-stat span {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}
.counter-suffix {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.6em;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s 1s ease both;
}
.scroll-indicator span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 4px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(240, 165, 0, 0.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 32px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  transition:
    border-color 0.2s,
    color 0.2s;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--white);
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ── INFO BAR ── */
.info-bar {
  background: var(--gold);
  padding: 14px var(--gutter);
}
.info-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.info-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--navy);
}
.info-bar-item svg {
  flex-shrink: 0;
}

/* ── SECTIONS ── */
.section {
  padding: 100px var(--gutter);
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.section-title.light {
  color: var(--white);
}
.section-desc {
  font-size: 17px;
  font-weight: 300;
  color: var(--grey);
  line-height: 1.7;
  max-width: 580px;
  margin-top: 16px;
}
.section-desc.light {
  color: rgba(255, 255, 255, 0.65);
}

/* ── SERVICES GRID ── */
.services {
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 60px;
}
.service-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(13, 27, 46, 0.12);
  z-index: 1;
}
.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 28px;
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg {
  color: var(--gold);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey);
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 20px;
  transition: gap 0.2s;
}
.service-link:hover {
  gap: 10px;
}

/* ── COUNTER BAND ── */
.counter-band {
  background: var(--gold);
}
.counter-band-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.counter-item {
  padding: 50px var(--gutter);
  text-align: center;
  position: relative;
}
.counter-item + .counter-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  bottom: 25%;
  width: 1px;
  background: rgba(13, 27, 46, 0.2);
}
.counter-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 60px;
  color: var(--navy);
  line-height: 1;
}
.counter-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(13, 27, 46, 0.65);
  margin-top: 6px;
}

/* ── ABOUT ── */
.about {
  background: var(--navy);
}
.about-grid {
  max-width: 700px;
}
.about-content {
  padding: 20px 0;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(240, 165, 0, 0.1);
  border: 1px solid rgba(240, 165, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon svg {
  color: var(--gold);
}
.about-feature h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.about-feature p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--navy);
  overflow: hidden;
  padding: 100px 0;
}
.testimonials .section-inner {
  padding: 0 var(--gutter);
}
.testimonials-track-wrap {
  overflow: hidden;
  margin-top: 50px;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  animation: scrollTrack 30s linear infinite;
  width: max-content;
}
.testimonials-track:hover {
  animation-play-state: paused;
}
@keyframes scrollTrack {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px;
  min-width: 400px;
  max-width: 400px;
  flex-shrink: 0;
  border-top: 3px solid var(--gold);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 4px;
}
.testimonial-card p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  text-transform: uppercase;
}
.testimonial-author span {
  font-size: 12px;
  color: var(--gold);
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 60px;
  max-width: 800px;
}
.faq-item {
  background: var(--off-white);
  border-left: 4px solid transparent;
  transition: border-color 0.2s;
  overflow: hidden;
}
.faq-item.open {
  border-left-color: var(--gold);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.faq-question span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.faq-toggle {
  width: 28px;
  height: 28px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.2s,
    transform 0.3s;
  color: var(--white);
  font-size: 18px;
  font-weight: 300;
}
.faq-item.open .faq-toggle {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey);
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  padding: 80px var(--gutter);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(240, 165, 0, 0.1) 0%,
    transparent 70%
  );
}
.cta-band-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(36px, 4vw, 56px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.cta-band p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
  max-width: 460px;
  line-height: 1.6;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
.footer {
  background: #0a1525;
  padding: 80px var(--gutter) 0;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 300px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition:
    background 0.2s,
    color 0.2s;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-heading);
}
.footer-social:hover {
  background: var(--gold);
  color: var(--navy);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a,
.footer-links li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}
.footer-links a:hover,
.footer-links li a:hover {
  color: var(--gold);
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a,
.footer-contact-item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  transition: color 0.2s;
}
.footer-contact-item a:hover {
  color: var(--gold);
}
.footer-bottom {
  max-width: var(--max-width);
  margin: 60px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ── PAGE HERO (inner pages) ── */
.page-hero,
.service-hero {
  position: relative;
  padding: 180px var(--gutter) 100px;
  background: var(--navy);
  text-align: center;
}
.page-hero h1,
.service-hero h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.service-hero .hero-sub {
  color: rgba(255, 255, 255, 0.7);
  margin: 16px auto 32px;
  max-width: 600px;
}

/* ── SERVICE SINGLE LAYOUT ── */
.service-content-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: start;
}
.service-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}
.service-body h2,
.service-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin: 32px 0 12px;
}
.service-body h2 {
  font-size: 28px;
}
.service-body h3 {
  font-size: 22px;
}
.service-body p {
  margin-bottom: 16px;
}
.service-body ul,
.service-body ol {
  margin: 0 0 16px 20px;
}
.service-body li {
  margin-bottom: 8px;
  list-style: disc;
}
.sidebar-cta {
  background: var(--navy);
  padding: 36px;
  margin-bottom: 24px;
}
.sidebar-cta h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.sidebar-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}
.sidebar-cta .btn-primary {
  margin-bottom: 10px;
}
.sidebar-cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
}
.sidebar-services {
  background: var(--off-white);
  padding: 28px;
}
.sidebar-services h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: 1px;
}
.sidebar-services ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-services li {
  list-style: none;
}
.sidebar-services a {
  font-size: 14px;
  color: var(--text);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-services a::before {
  content: "\203A";
  color: var(--gold);
  font-size: 18px;
}
.sidebar-services a:hover {
  color: var(--gold);
}

/* ── PAGE CONTENT ── */
.page-content {
  max-width: 800px;
  font-size: 16px;
  line-height: 1.8;
}
.page-content h2,
.page-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin: 32px 0 12px;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .service-content-grid {
    grid-template-columns: 1fr;
  }
  .counter-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .counter-item + .counter-item::before {
    display: none;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  :root {
    --gutter: 24px;
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .section {
    padding: 70px var(--gutter);
  }
  .hero-stats {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .counter-band-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer {
    padding: 60px var(--gutter) 0;
  }
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .testimonial-card {
    min-width: 300px;
    max-width: 300px;
  }
}

/* Service Main Image Styling */
.service-main-image {
  margin-bottom: 40px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.service-main-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.trust-bar {
  background: #f8f9fb;
  padding: 80px var(--gutter);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  text-align: center;
}

.trust-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--grey);
  margin-bottom: 48px;
  opacity: 0.8;
}

.trust-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.trust-logo {
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.trust-logo figure,
.trust-logo .wp-block-image {
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.trust-logo img {
  max-width: 100% !important;
  max-height: 65% !important;
  width: auto !important;
  height: auto !important;
  display: block;
  object-fit: contain !important;
}

.trust-logo:hover {
  transform: translateY(-8px);
}

@media (max-width: 1024px) {
  .trust-logo {
    width: 160px;
    height: 70px;
  }
}

@media (max-width: 768px) {
  .trust-bar {
    padding: 60px var(--gutter);
  }
  .trust-logos-grid {
    gap: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
  .trust-logo {
    width: 100%;
    height: 60px;
  }
  .trust-label {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .trust-logos-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
