:root {
  --clr-primary: #e85d04;
  --clr-primary-dark: #b94d03;
  --clr-primary-light: #fde9da;

  --clr-accent: #ffb703;

  --clr-dark: #1a1a1a;
  --clr-dark-soft: #2a2a2a;
  --clr-light: #f4f7fa;
  --clr-white: #ffffff;

  --clr-text: #14202b;
  --clr-muted: #5b6b7b;
  --clr-border: #e1e7ec;
  --clr-success: #00a758;

  --font-display: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(10, 27, 46, 0.08);
  --shadow-lg: 0 20px 50px rgba(10, 27, 46, 0.14);
}
html {
  overflow-x: hidden;
}
body {
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
}
/* ==========================================================
   BASE
   ========================================================== */
body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-light);
}
h1,
h2,
h3,
h4,
h5,
.brand-font {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--clr-dark);
  letter-spacing: -0.02em;
}
a {
  text-decoration: none;
}
.section-pad {
  padding: 90px 0;
}
@media (max-width: 768px) {
  .section-pad {
    padding: 56px 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-primary-light);
  color: var(--clr-primary-dark);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.eyebrow--dark {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.text-muted-brand {
  color: var(--clr-muted);
}
.bg-dark-brand {
  background: var(--clr-dark);
  color: #fff;
}
.bg-light-brand {
  background: var(--clr-light);
}

/* Buttons */
.btn-primary-brand {
  background: var(--clr-primary);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 50px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-brand:hover {
  background: var(--clr-primary-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-brand {
  border: 1.5px solid var(--clr-border);
  color: var(--clr-dark);
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 50px;
  background: transparent;
  transition: all 0.2s ease;
}
.btn-outline-brand:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}
.btn-light-pill {
  background: #fff;
  color: var(--clr-dark);
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 50px;
  border: none;
}

/* ==========================================================
   TOPBAR + NAVBAR
   ========================================================== */
.topbar {
  background: var(--clr-dark);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  padding: 8px 0;
}
.topbar-info span {
  margin-right: 22px;
}
.topbar-info i {
  color: var(--clr-primary);
  margin-right: 6px;
}
.topbar-social a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 14px;
}
.topbar-social a:hover {
  color: var(--clr-primary);
}

.site-navbar {
  background: #fff;
  padding: 16px 0;
  box-shadow: 0 2px 18px rgba(20, 23, 31, 0.05);
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--clr-dark);
}
.logo-text span,
.logo-text::after {
  color: var(--clr-primary);
}
.logo-text--light {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
}
.logo-img {
  height: 75px;
  width: auto;
}

.site-navbar .nav-link {
  color: var(--clr-text);
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 50px;
  transition: all 0.2s ease;
}
.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
  color: var(--clr-primary-dark);
  background: var(--clr-primary-light);
}

/* ==========================================================
   HERO (signature: animated shipping route line)
   ========================================================== */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      120deg,
      rgba(10, 10, 10, 0.88) 15%,
      rgba(20, 20, 20, 0.55) 55%,
      rgba(10, 10, 10, 0.85) 100%
    ),
    url("../assets/hero-bg.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  padding: 40px 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-route {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  pointer-events: none;
}
.hero-route path {
  fill: none;
  stroke: var(--clr-primary);
  stroke-width: 2;
  stroke-dasharray: 8 10;
  opacity: 0.5;
}
.hero-route circle.pin {
  fill: var(--clr-primary);
}
.hero-route .pulse {
  fill: none;
  stroke: var(--clr-primary);
  stroke-width: 2;
  animation: pulseRing 2.4s ease-out infinite;
  transform-origin: center;
}
.hero-route .courier-dot {
  fill: #fff;
  offset-path: path("M40,240 C220,60 420,340 620,120 S980,60 1180,180");
  animation: moveDot 6s linear infinite;
}
@keyframes moveDot {
  0% {
    offset-distance: 0%;
  }
  100% {
    offset-distance: 100%;
  }
}
@keyframes pulseRing {
  0% {
    transform: scale(0.4);
    opacity: 1;
  }
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-route .courier-dot,
  .hero-route .pulse {
    animation: none;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  margin: 18px 0 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--clr-primary);
}
.hero p.lead {
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* floating tracking card in hero */
.track-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: relative;
  z-index: 2;
}
.track-card .nav-pills .nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  border-radius: 50px;
  font-size: 0.9rem;
}
.track-card .nav-pills .nav-link.active {
  background: var(--clr-primary);
  color: #fff;
}
.track-card input.form-control,
.track-card select.form-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 10px;
}
.track-card input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.track-card input.form-control:focus,
.track-card select.form-select:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--clr-primary);
  box-shadow: none;
  color: #fff;
}
.track-card label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================
   PARTNERS STRIP
   ========================================================== */
.partners-strip {
  padding: 40px 0;
  border-bottom: 1px solid var(--clr-border);
}
.partners-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 10%,
    #000 90%,
    transparent
  );
}
.partners-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: partnersScroll 22s linear infinite;
}
.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}
.partners-track .partner-name {
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--clr-muted);
  font-size: 1.05rem;
  background: var(--clr-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 18px 32px;
  transition: all 0.25s ease;
}
.partners-track .partner-name:hover {
  color: var(--clr-primary);
  border-color: var(--clr-primary);
  background: var(--clr-primary-light);
}
@keyframes partnersScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================
   SERVICE CARDS
   ========================================================== */
.service-card {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  height: 100%;
  transition: all 0.25s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-6px);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--clr-primary-light);
  color: var(--clr-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.service-card ul li {
  padding: 4px 0 4px 22px;
  position: relative;
  color: var(--clr-muted);
  font-size: 0.94rem;
}
.service-card ul li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--clr-success);
  font-size: 0.9rem;
}

/* ==========================================================
   PROCESS STEPS
   ========================================================== */
.process-card {
  background: var(--clr-dark-soft);
  border-radius: var(--radius-lg);
  padding: 26px;
  height: 100%;
}
.process-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

/* ==========================================================
   BENEFITS
   ========================================================== */
.benefit-item {
  text-align: center;
  padding: 34px 18px;
  border-radius: var(--radius-lg);
  height: 100%;
  background: #fff;
  border: 1px solid var(--clr-border);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-primary);
}
.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--clr-primary-light);
}
.benefit-icon i {
  font-size: 1.6rem;
  color: var(--clr-primary);
}

/* ==========================================================
   STATS / TESTIMONIAL
   ========================================================== */
.stat-box {
  border-radius: var(--radius);
  padding: 22px 16px;
  font-family: var(--font-display);
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}
.stat-box:hover {
  border-color: var(--clr-primary);
  background: rgba(255, 255, 255, 0.1);
}
.stat-box h3 {
  color: var(--clr-primary);
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.stat-box small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.success-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 320px;
}
.success-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

/* ==========================================================
   FAQ
   ========================================================== */
.accordion-brand .accordion-item {
  border: none;
  border-bottom: 1px solid var(--clr-border);
  background: transparent;
}
.accordion-brand .accordion-button {
  font-family: var(--font-display);
  font-weight: 600;
  background: transparent;
  box-shadow: none;
  padding: 20px 0;
}
.accordion-brand .accordion-button:not(.collapsed) {
  color: var(--clr-primary-dark);
}
.accordion-brand .accordion-button::after {
  filter: none;
}
.accordion-brand .accordion-body {
  color: var(--clr-muted);
  padding: 0 0 20px;
}

/* ==========================================================
   CTA STRIP + FOOTER
   ========================================================== */
.site-footer {
  background: var(--clr-dark);
  color: rgba(255, 255, 255, 0.65);
  margin-top: -1px;
}
.footer-main {
  padding: 100px 0 64px;
}
.footer-about {
  font-size: 0.94rem;
  max-width: 320px;
  line-height: 1.7;
}
.footer-heading {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: var(--clr-primary);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
  font-size: 0.92rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  transition:
    color 0.2s ease,
    padding-left 0.2s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--clr-primary);
  padding-left: 4px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  margin-right: 8px;
}
.footer-social a:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  padding: 24px 0;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
}

/* back to top */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* ==========================================================
   INNER PAGE HEADER (About/Services/Contact/Team/Tracking)
   ========================================================== */
.page-header {
  background: var(--clr-dark);
  color: #fff;
  padding: 60px 0 50px;
  text-align: center;
}
.page-header h1 {
  color: #fff;
  margin: 12px 0 6px;
}
.page-header .breadcrumb-brand a {
  color: rgba(255, 255, 255, 0.6);
}
.page-header .breadcrumb-brand span {
  color: var(--clr-primary);
}

/* Team */
.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  transition: all 0.25s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-photo {
  height: 240px;
  background: linear-gradient(160deg, var(--clr-dark-soft), var(--clr-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 3rem;
}
.team-info {
  padding: 20px;
}
.team-info .role {
  color: var(--clr-primary-dark);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.team-social a {
  color: var(--clr-muted);
  margin-right: 12px;
}
.team-social a:hover {
  color: var(--clr-primary);
}

/* Contact */
.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--clr-border);
  height: 100%;
}
.contact-form .form-control,
.contact-form .form-select {
  border-radius: 10px;
  border: 1px solid var(--clr-border);
  padding: 12px 14px;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px var(--clr-primary-light);
}
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  height: 100%;
  min-height: 320px;
}

/* Tracking result */
.tracking-result {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  padding: 30px;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline li {
  position: relative;
  padding: 0 0 28px 34px;
  border-left: 2px solid var(--clr-border);
  margin-left: 10px;
}
.timeline li:last-child {
  border-color: transparent;
  padding-bottom: 0;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--clr-border);
}
.timeline li.done::before {
  background: var(--clr-success);
  border-color: var(--clr-success);
}
.timeline li.current::before {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 4px var(--clr-primary-light);
}
.timeline .t-title {
  font-weight: 600;
  color: var(--clr-dark);
}
.timeline .t-time {
  font-size: 0.82rem;
  color: var(--clr-muted);
}
/* ==========================================================
   STATS GRID (Why ABC section)
   ========================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.stat-card {
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stat-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.3rem;
}
.stat-card h5 {
  margin: 14px 0 2px;
  font-size: 1.5rem;
}
.stat-card small {
  font-size: 0.85rem;
}
.stat-card--light {
  background: var(--clr-light);
}
.stat-card--light .stat-icon {
  background: var(--clr-primary-light);
  color: var(--clr-primary);
}
.stat-card--light h5 {
  color: var(--clr-dark);
}
.stat-card--light small {
  color: var(--clr-muted);
}

.stat-card--dark {
  background: var(--clr-dark);
}
.stat-card--dark .stat-icon {
  background: rgba(255, 255, 255, 0.08);
  color: var(--clr-primary);
}
.stat-card--dark h5 {
  color: #fff;
}
.stat-card--dark small {
  color: rgba(255, 255, 255, 0.6);
}

.stat-card--primary {
  background: var(--clr-primary);
}
.stat-card--primary .stat-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.stat-card--primary h5 {
  color: #fff;
}
.stat-card--primary small {
  color: rgba(255, 255, 255, 0.85);
}

/* faq icon image  */
.faq-icon-img {
  max-width: 240px;
  width: 100%;
  height: auto;
}
/* footer credit  */
.footer-credit {
  margin-top: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-credit a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-credit a:hover {
  color: var(--clr-primary);
}
/* ==========================================================
   RESPONSIVE — ALL BREAKPOINTS
   ========================================================== */

/* ----- Large desktops / ultra-wide (1400px+) ----- */
@media (min-width: 1400px) {
  .hero h1 {
    font-size: clamp(2.4rem, 3.6vw, 3.8rem);
  }
  .hero p.lead {
    max-width: 700px;
  }
}

/* ----- Small laptops / large tablets (≤1199.98px) ----- */
@media (max-width: 1199.98px) {
  .site-navbar .nav-link {
    padding: 8px 10px !important;
    font-size: 0.94rem;
  }
  .hero-route {
    opacity: 0.4;
  }
}

/* ----- Tablets (≤991.98px) ----- */
@media (max-width: 991.98px) {
  .section-pad {
    padding: 64px 0;
  }
  .hero {
    min-height: auto;
    padding: 60px 0;
  }
  .hero-slide {
    min-height: auto;
    padding: 60px 0;
  }
  .hero-content {
    text-align: center;
  }
  .hero p.lead {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .success-photo {
    min-height: 260px;
  }
  .success-photo img {
    min-height: 260px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-strip {
    padding: 26px 24px;
    text-align: center;
  }
  .cta-strip .d-flex.align-items-center.gap-3 {
    justify-content: center;
  }
  .footer-main {
    padding: 70px 0 48px;
  }
  .partners-track .partner-name {
    padding: 14px 22px;
    font-size: 0.95rem;
  }
}

@media (max-width: 767.98px) {
  .navbar-collapse {
    background: #fff;
    margin-top: 14px;
    padding: 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
  }
  .site-navbar .nav-link {
    padding: 12px 14px !important;
    border-radius: var(--radius-sm);
  }
  .navbar-nav .nav-item {
    width: 100%;
  }
  .navbar-nav .btn-primary-brand {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
  .topbar {
    display: none !important;
  }
  .hero h1 {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }
  .hero .lead {
    font-size: 0.98rem;
  }
  .service-card,
  .benefit-item,
  .stat-card,
  .contact-card {
    padding: 22px 18px;
  }
  .cta-strip h3 {
    font-size: 1.25rem;
  }
  .footer-heading {
    margin-top: 8px;
  }
  .footer-about {
    max-width: 100%;
  }
  .page-header {
    padding: 44px 0 36px;
  }
  .faq-icon-img {
    max-width: 160px;
    margin-bottom: 20px;
  }
}

/* ----- Small phones (≤575.98px) ----- */
@media (max-width: 575.98px) {
  .logo-text,
  .logo-text--light {
    font-size: 1.25rem;
  }
  .hero {
    padding: 44px 0;
  }
  .hero .btn-lg {
    width: 100%;
    justify-content: center;
  }
  .hero-slide .btn-lg {
    width: 100%;
    justify-content: center;
  }
  .hero-slide .d-flex.gap-3 {
    flex-direction: column;
  }
  .hero .d-flex.gap-3 {
    flex-direction: column;
  }
  .eyebrow {
    font-size: 0.7rem;
    padding: 5px 12px;
  }
  .stats-row > .col-4 {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 12px;
  }
  .stats-row > .col-4:last-child {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
  .stat-box {
    padding: 16px 10px;
  }
  .stat-box h3 {
    font-size: 1.4rem;
  }
  .service-icon,
  .benefit-icon,
  .stat-icon,
  .cta-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
  .accordion-brand .accordion-button {
    padding: 16px 18px;
    font-size: 0.94rem;
  }
  .accordion-brand .accordion-body {
    padding: 0 18px 18px;
  }
  .back-to-top {
    width: 38px;
    height: 38px;
    right: 14px;
    bottom: 14px;
  }
}

/* ----- Very small phones (≤380px) ----- */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.5rem;
  }
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .cta-strip {
    padding: 20px 16px;
  }
  .footer-credit {
    font-size: 0.72rem;
  }
}
/* ======================
   HERO SLIDER 
   ====================== */
.hero-slider {
  position: relative;
}
.hero-slide {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(10, 10, 10, 0.88) 15%,
    rgba(20, 20, 20, 0.55) 55%,
    rgba(10, 10, 10, 0.85) 100%
  );
  z-index: 1;
}
.hero-slide .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-slide h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  margin: 18px 0 20px;
}
.hero-slide h1 em {
  font-style: normal;
  color: var(--clr-primary);
}
.hero-slide .lead {
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Controls (arrows) */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 60px;
  opacity: 1;
  z-index: 3;
}
.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background-size: 18px;
  transition: background-color 0.2s ease;
}
.hero-slider .carousel-control-prev-icon:hover,
.hero-slider .carousel-control-next-icon:hover {
  background-color: var(--clr-primary);
}

/* Indicators (dots) */
.hero-indicators {
  bottom: 22px;
  z-index: 3;
}
.hero-indicators button {
  width: 30px;
  height: 4px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.35);
  opacity: 1;
  margin: 0 4px;
}
.hero-indicators button.active {
  background-color: var(--clr-primary);
}
/* ==========================================================
   ABOUT PAGE
   ========================================================== */
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 320px;
}
.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}
.about-mini-stat {
  background: var(--clr-light);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.about-mini-stat h4 {
  color: var(--clr-primary);
  margin-bottom: 2px;
}
.about-mini-stat small {
  color: var(--clr-muted);
}
/*footer logo */
.footer-logo-img {
  height: 75px;
  width: auto;
  margin-bottom: 10px;
}