/* ==========================================================================
   The Gatiman Packers and Movers — Design System
   Palette: Navy #0A2540 · Orange #FF6A13 · BG #FFFFFF · Light #F8FAFC
   Signature motif: the "Route Line" — a dashed path that carries a marker
   through the hero and the working-process timeline, echoing a relocation
   journey from pickup to delivery.
   ========================================================================== */

:root {
  --navy: #0A2540;
  --navy-2: #12314f;
  --navy-3: #163a5c;
  --orange: #FF6A13;
  --orange-2: #ff8a45;
  --bg: #FFFFFF;
  --bg-light: #F8FAFC;
  --heading: #0A2540;
  --text: #4B5563;
  --border: #E5E7EB;
  --white: #ffffff;

  --font-base: 'Poppins', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 12px 30px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 37, 64, 0.16);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Base ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--text);
  background: var(--bg);
  font-weight: 400;
  line-height: 1.75;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-base);
  color: var(--heading);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

a {
  text-decoration: none;
  color: inherit;
}

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

::selection {
  background: var(--orange);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.section {
  padding: 50px 0;
  position: relative;
}

.section-sm {
  padding: 64px 0;
}

@media (max-width: 767.98px) {
  .section {
    padding: 64px 0;
  }

  .section-sm {
    padding: 44px 0;
  }
}

.bg-light-alt {
  background: var(--bg-light);
}

.bg-navy {
  background: var(--navy);
}

/* ---------- Eyebrow / Section Heading ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text);
  max-width: 640px;
  font-size: 1.02rem;
}

.section-head {
  margin-bottom: 48px;
}

.section-head.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--font-base);
  font-weight: 600;
  border-radius: 50px;
  padding: 13px 30px;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all .35s var(--ease);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-brand {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 106, 19, 0.30);
}

.btn-brand:hover,
.btn-brand:focus {
  background: var(--navy);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(10, 37, 64, 0.28);
}

.btn-outline-brand {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.btn-outline-brand:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-3px);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-outline-light:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
}

/* Ripple */
.btn.ripple {}

.ripple-dot {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-anim .6s var(--ease);
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

@keyframes ripple-anim {
  to {
    transform: scale(2.6);
    opacity: 0;
  }
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--navy);
  color: #cfd8e3;
  font-size: 0.85rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-phones {
  gap: 24px;
}

.top-bar-phones li {
  display: flex;
}

.top-bar-phones a,
.top-bar-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e7ebf1;
  font-weight: 500;
  letter-spacing: .01em;
  text-decoration: none;
  white-space: nowrap;
  transition: color .3s var(--ease);
}

.top-bar-phones a:hover,
.top-bar-email:hover {
  color: var(--orange-2);
}

.top-bar-phones i,
.top-bar-email i {
  color: var(--orange);
  font-size: 0.95em;
  width: 14px;
  text-align: center;
  flex-shrink: 0;
}

.top-bar-tag {
  font-size: 0.72rem;
  font-weight: 400;
  color: #9fb0c3;
}

@media (max-width: 991.98px) {
  .top-bar-phones {
    gap: 16px;
  }
}

@media (max-width: 767.98px) {
  .top-bar .container {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .top-bar-phones {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .top-bar {
    font-size: 0.78rem;
  }

  .top-bar-phones {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
  }

  .top-bar-phones li {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    padding: 4px 0;
  }

  .top-bar-phones li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .top-bar-phones a,
  .top-bar-email {
    white-space: normal;
    justify-content: center;
    text-align: center;
  }

  .top-bar-tag {
    display: block;
    width: 100%;
    margin-left: 22px;
  }
}

/* ---------- Navbar ---------- */
.site-header {
  position: static;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  transition: all .4s var(--ease);
  padding: 0;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px rgba(10, 37, 64, 0.08);
  padding: 10px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.navbar-brand span.brand-accent {
  color: var(--orange);
}

.navbar-brand small {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}

.main-nav .nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  margin: 0 14px;
  padding: 8px 0 !important;
  position: relative;
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width .3s var(--ease);
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  width: 100%;
}

.main-nav .nav-link.active {
  color: var(--orange);
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

@media (max-width: 991.98px) {
  .site-header {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 18px rgba(10, 37, 64, 0.08);
    padding: 14px 20px;
  }

  .main-nav {
    background: #fff;
    margin-top: 16px;
    border-radius: var(--radius-md);
    padding: 10px 18px;
    box-shadow: var(--shadow-md);
  }

  .main-nav .nav-link {
    margin: 6px 0;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  padding: 170px 0 120px;
  overflow: hidden;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 85% 20%, rgba(255, 106, 19, 0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255, 106, 19, 0.10), transparent 40%);
  pointer-events: none;
}

.hero .eyebrow {
  color: var(--orange-2);
}

.hero .eyebrow::before {
  background: var(--orange-2);
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange-2);
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-slide {
  display: none;
}

.hero-slide.active {
  display: block;
  animation: fadeUp .7s var(--ease);
}

.hero-badges {
  display: flex;
  gap: 26px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge i {
  color: var(--orange-2);
  font-size: 1.4rem;
}

.hero-badge span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  display: block;
}

.hero-badge strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

/* Route-line signature element (hero visual) */
.route-card {
  background: #0e2a44;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(6px);
}

.route-line {
  position: relative;
  padding-left: 34px;
}

.route-line::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 0;
  border-left: 2px dashed rgba(255, 255, 255, 0.3);
}

.route-stop {
  position: relative;
  padding-bottom: 26px;
}

.route-stop:last-child {
  padding-bottom: 0;
}

.route-stop::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 106, 19, 0.18);
}

.route-stop.is-end::before {
  background: #fff;
}

.route-stop h6 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.route-stop small {
  color: rgba(255, 255, 255, 0.6);
}

.hero-truck-track {
  position: relative;
  height: 3px;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0 10px, transparent 10px 20px);
  margin: 46px 0 10px;
}

.hero-truck-track i {
  position: absolute;
  top: -13px;
  color: var(--orange-2);
  font-size: 1.6rem;
  animation: driveAlong 6s linear infinite;
}

@keyframes driveAlong {
  0% {
    left: 0%;
  }

  100% {
    left: calc(100% - 22px);
  }
}

/* ---------- Breadcrumb / Page Banner ---------- */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 150px 0 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 10%, rgba(255, 106, 19, 0.16), transparent 45%);
}

.page-banner h1 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 10px;
}

.breadcrumb-nav {
  position: relative;
}

.breadcrumb-nav .breadcrumb {
  background: transparent;
  margin: 0;
  padding: 0;
}

.breadcrumb-nav .breadcrumb-item,
.breadcrumb-nav .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.breadcrumb-nav .breadcrumb-item.active {
  color: var(--orange-2);
}

.breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Cards ---------- */
.card-brand {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  height: 100%;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}

.card-brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s var(--ease);
}

.card-brand:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card-brand:hover::before {
  transform: scaleY(1);
}

.icon-box {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(255, 106, 19, 0.10);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  transition: all .35s var(--ease);
}

.card-brand:hover .icon-box {
  background: var(--orange);
  color: #fff;
  transform: rotate(-8deg) scale(1.05);
}

.card-brand h3,
.card-brand h5 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.card-brand p {
  font-size: 0.94rem;
  margin-bottom: 18px;
}

.card-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-link i {
  transition: transform .3s var(--ease);
}

.card-link:hover i {
  transform: translateX(5px);
}

/* Service card with image */
.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 100%;
  transition: all .4s var(--ease);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-card .img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.service-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.service-card:hover .img-wrap img {
  transform: scale(1.1);
}

.service-card .img-wrap .icon-box {
  position: absolute;
  bottom: -26px;
  left: 24px;
  margin: 0;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.service-card .card-body {
  padding: 40px 26px 26px;
}

/* ---------- Why Choose Us ---------- */
.feature-row {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.feature-row .icon-box {
  flex-shrink: 0;
  margin-bottom: 0;
  width: 54px;
  height: 54px;
  font-size: 1.2rem;
}

.feature-row h6 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.feature-row p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

/* ---------- Process Timeline (route motif) ---------- */
.process-track {
  position: relative;
}

.process-track .track-line {
  position: absolute;
  top: 34px;
  left: 0;
  right: 0;
  height: 0;
  border-top: 2px dashed var(--border);
  z-index: 0;
}

@media (max-width: 991.98px) {
  .process-track .track-line {
    display: none;
  }
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-num {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  transition: all .35s var(--ease);
}

.process-step:hover .process-num {
  background: var(--orange);
  color: #fff;
  transform: scale(1.08);
}

.process-step h6 {
  font-size: 1.02rem;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
}

/* ---------- Counters ---------- */
.counter-stat {
  text-align: center;
  color: #fff;
}

.counter-stat .num {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--orange-2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.counter-stat p {
  color: rgba(255, 255, 255, 0.7);
  margin: 6px 0 0;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.counters-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.counters-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 60px);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  height: 100%;
}

.testimonial-card .stars {
  color: var(--orange);
  margin-bottom: 16px;
  font-size: 0.85rem;
}

.testimonial-card p.quote {
  font-size: 0.96rem;
  color: var(--text);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.testimonial-author .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.testimonial-author h6 {
  margin: 0;
  font-size: 0.95rem;
}

.testimonial-author small {
  color: var(--text);
}

/* ---------- Gallery ---------- */
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 26px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 37, 64, 0) 40%, rgba(10, 37, 64, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .4s var(--ease);
}

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

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

.gallery-item .overlay h6 {
  color: #fff;
  margin: 0;
  font-size: 0.98rem;
}

.gallery-item .overlay small {
  color: var(--orange-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-item .zoom-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.7);
  transition: all .35s var(--ease);
}

.gallery-item:hover .zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-filters {
  margin-bottom: 40px;
}

.gallery-filters button {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 9px 20px;
  border-radius: 50px;
  margin: 0 6px 10px 0;
  transition: all .3s var(--ease);
}

.gallery-filters button.active,
.gallery-filters button:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* ---------- FAQ / Accordion ---------- */
.accordion-brand .accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-brand .accordion-button {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
  padding: 20px 24px;
  background: #fff;
}

.accordion-brand .accordion-button:not(.collapsed) {
  color: var(--orange);
  background: rgba(255, 106, 19, 0.05);
  box-shadow: none;
}

.accordion-brand .accordion-button:focus {
  box-shadow: none;
  border-color: var(--border);
}

.accordion-brand .accordion-button::after {
  flex-shrink: 0;
}

.accordion-brand .accordion-body {
  color: var(--text);
  font-size: 0.94rem;
  padding: 4px 24px 24px;
}

/* ---------- CTA ---------- */
.cta-section {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-3) 100%);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 20%, rgba(255, 106, 19, 0.22), transparent 50%);
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .cta-section {
    padding: 40px 26px;
    text-align: center;
  }
}

/* ---------- Map ---------- */
.map-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Contact cards ---------- */
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  height: 100%;
  transition: all .35s var(--ease);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.contact-card .icon-box {
  margin: 0 auto 18px;
}

/* ---------- Forms ---------- */
.form-brand .form-control,
.form-brand .form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.94rem;
  background: var(--bg-light);
}

.form-brand .form-control:focus,
.form-brand .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 19, 0.12);
  background: #fff;
}

.form-brand label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

/* ---------- Sidebar (service details) ---------- */
.sidebar-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  margin-bottom: 26px;
}

.sidebar-box h5 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.sidebar-list li {
  border-bottom: 1px solid var(--border);
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 4px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: color .3s;
}

.sidebar-list a:hover,
.sidebar-list a.active {
  color: var(--orange);
}

.sidebar-box.quote-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: #fff;
}

.sidebar-box.quote-box h5 {
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.sidebar-box.quote-box p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding-top: 80px;
}

.site-footer h6 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}

.site-footer p,
.site-footer li,
.site-footer a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.site-footer a:hover {
  color: var(--orange-2);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--orange);
  font-size: 0.75rem;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--orange);
  margin-top: 3px;
}

.footer-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand span {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
  padding: 24px 0;
  font-size: 0.85rem;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
}

.social-icons a:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-4px);
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 10px;
}

.newsletter-form input {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 50px 0 0 50px;
  padding: 12px 18px;
  font-size: 0.88rem;
  flex: 1;
  min-width: 0;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
  border-radius: 0 50px 50px 0;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 0 20px;
}

/* ---------- Back to Top ---------- */
#backToTop {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all .35s var(--ease);
  z-index: 999;
  border: none;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTop:hover {
  background: var(--navy);
}

/* ---------- Scroll reveal (vanilla, AOS-like) ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="fade"] {
  transform: none;
}

[data-reveal="zoom"] {
  transform: scale(0.92);
}

[data-reveal="zoom"].in-view {
  transform: scale(1);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Lightbox ---------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 37, 64, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease);
  padding: 20px;
}

.lightbox-overlay.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: all .3s;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--orange);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 575.98px) {

  .lightbox-prev,
  .lightbox-next {
    width: 38px;
    height: 38px;
  }
}

/* ---------- Misc ---------- */
.divider-dashed {
  border-top: 2px dashed var(--border);
  margin: 0;
}

.text-orange {
  color: var(--orange) !important;
}

.badge-soft {
  background: rgba(255, 106, 19, 0.1);
  color: var(--orange);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-block;
}

.img-round {
  border-radius: var(--radius-lg);
}

.about-media {
  position: relative;
}

.about-media .exp-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 20px 26px;
  text-align: center;
}

@media (max-width: 575.98px) {
  .about-media .exp-badge {
    left: 10px;
    bottom: -18px;
    padding: 14px 18px;
  }
}

.exp-badge .num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
}

.exp-badge small {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}

.value-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.value-item .num-badge {
  font-weight: 700;
  font-size: 1.3rem;
  color: rgba(10, 37, 64, 0.15);
  min-width: 46px;
}

.team-card {
  text-align: center;
}

.team-card .photo {
  width: 100%;
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}

.team-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h6 {
  margin-bottom: 2px;
}

.team-card small {
  color: var(--orange);
}

.info-table {
  width: 100%;
}

.info-table tr {
  border-bottom: 1px solid var(--border);
}

.info-table td {
  padding: 14px 4px;
  font-size: 0.94rem;
}

.info-table td:first-child {
  color: var(--navy);
  font-weight: 600;
  width: 40%;
}