/* ===================================================================
   SHIV CAR TRANSPORT - Design System
   Palette derived from brand logo (navy + orange, road-speed motif)
   =================================================================== */

:root {
  --navy-deep: #0b1f3a;
  --navy-mid: #14315c;
  --navy-soft: #1f3f6b;
  --orange: #f1650a;
  --orange-light: #ff8a3d;
  --bg-light: #f5f7fb;
  --bg-white: #ffffff;
  --ink: #1e2733;
  --ink-soft: #5a6472;
  --border-soft: #e4e8ef;
  --success: #1f8a5c;

  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Work Sans", sans-serif;
  --font-mono: "Roboto Mono", monospace;

  --radius: 10px;
  --shadow-soft: 0 8px 24px rgba(11, 31, 58, 0.08);
  --shadow-hover: 0 16px 32px rgba(11, 31, 58, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-white);
  line-height: 1.65;
  font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--navy-deep);
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.1;
}
h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
}
h3 {
  font-size: 1.4rem;
}

p {
  color: var(--ink-soft);
}

a {
  text-decoration: none;
}

.text-orange {
  color: var(--orange) !important;
}
.text-navy {
  color: var(--navy-deep) !important;
}
.bg-navy {
  background-color: var(--navy-deep) !important;
}
.flash-stack {
  position: relative;
  z-index: 20;
}
.flash-message {
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  transition: opacity 0.35s ease, transform 0.35s ease, margin 0.35s ease;
}
.flash-message.flash-hide {
  opacity: 0;
  transform: translateY(-8px);
  margin-bottom: 0;
}
.bg-light-custom {
  background-color: var(--bg-light) !important;
}

/* ---------- Eyebrow label ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn-brand {
  background: var(--orange);
  border: none;
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
.btn-brand:hover {
  background: var(--orange-light);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-brand {
  border: 2px solid var(--navy-deep);
  color: var(--navy-deep);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 6px;
  background: transparent;
  transition: all 0.2s ease;
}
.btn-outline-brand:hover {
  background: var(--navy-deep);
  color: #fff;
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  padding: 10px 22px;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  color: #fff;
}

/* ---------- Navbar ---------- */
.navbar-shiv {
  background: #fff;
  box-shadow: 0 2px 12px rgba(11, 31, 58, 0.08);
  padding: 10px 0;
}
.navbar-shiv .navbar-brand img {
  height: 52px;
}
.navbar-shiv .nav-link {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-deep) !important;
  padding: 8px 14px !important;
}
.navbar-shiv .nav-link:hover,
.navbar-shiv .nav-link.active {
  color: var(--orange) !important;
}
.navbar-shiv .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-soft);
  border-radius: 8px;
  padding: 10px;
}
.navbar-shiv .dropdown-item {
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: 6px;
}
.navbar-shiv .dropdown-item:hover {
  background: var(--bg-light);
  color: var(--orange);
}
@media (max-width: 991px) {
  .navbar-shiv .navbar-collapse {
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    padding: 14px 0 20px;
  }
  .navbar-shiv .dropdown-menu {
    max-height: 260px;
    overflow-y: auto;
  }
  .navbar-shiv .navbar-nav {
    align-items: stretch !important;
  }
}
.top-strip {
  background: var(--navy-deep);
  color: #cfd8e6;
  font-size: 0.82rem;
  padding: 6px 0;
}
.top-strip a {
  color: #fff;
  font-weight: 600;
}

/* ---------- Signature element: Route Divider ----------
   Represents origin -> destination, core to a vehicle-transport brand.
   Used between sections and inside service/city cards. */
.route-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  max-width: 100%;
}
.route-divider .route-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy-deep);
  flex-shrink: 0;
}
.route-divider .route-line {
  flex: 1;
  height: 0;
  border-top: 2px dashed var(--border-soft);
  position: relative;
}
.route-divider .route-line::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 100%;
  height: 14px;
  background-image: linear-gradient(
    90deg,
    var(--orange) 0 8px,
    transparent 8px 16px
  );
  background-size: 16px 2px;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0;
  animation: none;
}
.route-divider .route-pin {
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.route-divider.center {
  max-width: 220px;
  margin: 18px auto;
}

/* Animated variant used once in hero for motion */
.route-divider.animated .route-line {
  border-top: 2px dashed var(--border-soft);
  overflow: hidden;
}
.route-divider.animated .route-line::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -20%;
  width: 20%;
  height: 2px;
  background: var(--orange);
  animation: route-move 2.8s linear infinite;
}
@keyframes route-move {
  0% {
    left: -20%;
  }
  100% {
    left: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .route-divider.animated .route-line::before {
    animation: none;
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(
    135deg,
    var(--navy-deep) 0%,
    var(--navy-mid) 55%,
    var(--navy-soft) 100%
  );
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 180%;
  background: linear-gradient(
    135deg,
    transparent 45%,
    rgba(241, 101, 10, 0.14) 46%,
    rgba(241, 101, 10, 0.14) 52%,
    transparent 53%
  );
  pointer-events: none;
}
.hero h1,
.hero .eyebrow-light {
  color: #fff;
}
.hero .eyebrow-light {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-light);
  font-weight: 600;
}
.hero p.lead-text {
  color: #cfd8e6;
  font-size: 1.08rem;
}
.hero .stat-block {
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  padding-left: 14px;
}
.hero .stat-block .num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--orange-light);
  font-weight: 700;
  line-height: 1;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-quote {
  position: relative;
  z-index: 1;
}
.hero-quote .enquiry-panel {
  max-width: 500px;
  margin-left: auto;
  padding: 28px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(255, 138, 61, 0.85), rgba(255, 255, 255, 0.55), rgba(20, 49, 92, 0.38)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}
.hero-quote .enquiry-heading {
  align-items: center;
  margin-bottom: 18px;
}
.hero-quote .enquiry-heading strong {
  font-size: 1.45rem;
}
.hero-quote .form-control,
.hero-quote .form-select {
  min-height: 52px;
  background-color: #fbfcfe;
  border-color: #dbe2ec;
}
.hero-quote textarea.form-control {
  min-height: 92px;
}
.hero-quote .btn-brand {
  min-height: 54px;
  font-size: 1rem;
  box-shadow: 0 12px 24px rgba(241, 101, 10, 0.24);
}

.enquiry-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 20px 44px rgba(11, 31, 58, 0.16);
}
.enquiry-heading {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-soft);
  padding-bottom: 12px;
}
.enquiry-heading span {
  font-family: var(--font-mono);
  color: var(--orange);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 1.5px;
}
.enquiry-heading strong {
  font-family: var(--font-display);
  color: var(--navy-deep);
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1;
}
.enquiry-panel .form-control,
.enquiry-panel .form-select {
  border-radius: 6px;
  min-height: 46px;
}
.enquiry-status {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.08);
  transition: opacity 0.35s ease, transform 0.35s ease, margin 0.35s ease, padding 0.35s ease;
}
.enquiry-status i {
  margin-top: 2px;
  font-size: 1rem;
  flex: 0 0 auto;
}
.enquiry-status-success {
  background: #edf9f3;
  color: #146c43;
  border: 1px solid #bfe7d0;
}
.enquiry-status-danger {
  background: #fff1f1;
  color: #9f1c1c;
  border: 1px solid #f2c4c4;
}
.enquiry-status-info,
.enquiry-status-warning {
  background: #fff8ed;
  color: #8a4706;
  border: 1px solid #ffd9a8;
}
.enquiry-status.flash-hide {
  opacity: 0;
  transform: translateY(-8px);
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.enquiry-panel.is-submitting,
.contact-form-panel.is-submitting {
  pointer-events: none;
}
.enquiry-panel .btn:disabled,
.contact-form-panel .btn:disabled {
  opacity: 0.9;
  cursor: wait;
}
.content-area h2,
.content-area h3 {
  margin-top: 22px;
  margin-bottom: 12px;
}
.content-area p {
  font-size: 1.03rem;
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.link-grid a {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  padding: 12px 14px;
  color: var(--navy-deep);
  font-weight: 600;
}
.link-grid a:hover {
  color: var(--orange);
  border-color: var(--orange);
}
.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
}
.blog-hero-image {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
}
.sticky-side {
  position: sticky;
  top: 112px;
}
.col-lg-5 > .enquiry-panel,
.col-lg-4 > .enquiry-panel,
.col-lg-5 > .cta-band {
  position: sticky;
  top: 112px;
}
.packers-form-col {
  align-self: stretch;
}
.packers-form-col > .enquiry-panel {
  position: sticky;
  top: 112px;
}

.blog-detail-hero p {
  max-width: 820px;
}
.blog-detail-section {
  background:
    linear-gradient(180deg, #fff 0%, #fff 52%, var(--bg-light) 52%, var(--bg-light) 100%);
}
.blog-article-shell {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 18px 48px rgba(11, 31, 58, 0.08);
}
.blog-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.blog-meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-light);
  border: 1px solid var(--border-soft);
  color: var(--navy-deep);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.86rem;
  font-weight: 600;
}
.blog-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin-top: 6px;
}
.blog-content h3 {
  border-left: 3px solid var(--orange);
  padding-left: 12px;
  margin-top: 30px;
}
.blog-content p {
  font-size: 1.06rem;
}
.blog-share-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid var(--border-soft);
  margin-top: 34px;
  padding-top: 24px;
}
.blog-share-box h3 {
  font-size: 1.15rem;
  text-transform: none;
}
.blog-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.blog-share-actions a,
.blog-share-actions button {
  border: 1px solid var(--border-soft);
  background: #fff;
  color: var(--navy-deep);
  border-radius: 6px;
  padding: 9px 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.blog-share-actions a:hover,
.blog-share-actions button:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.gallery-photo {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.gallery-photo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.gallery-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.gallery-photo figcaption {
  padding: 13px 14px;
  color: var(--navy-deep);
  font-weight: 700;
  line-height: 1.4;
}
@media (max-width: 991px) {
  .quote-section {
    padding-top: 34px;
  }
  .quote-layout > .quote-form-col {
    order: -1;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .quote-layout > .main-content-col {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .quote-form-col .sticky-side,
  .quote-form-col > .enquiry-panel {
    position: static;
    top: auto;
  }
  .quote-form-col .enquiry-panel {
    padding: 22px;
    background:
      linear-gradient(#fff, #fff) padding-box,
      linear-gradient(135deg, rgba(241, 101, 10, 0.8), rgba(228, 232, 239, 0.9), rgba(20, 49, 92, 0.35)) border-box;
    border: 1px solid transparent;
    box-shadow: 0 18px 42px rgba(11, 31, 58, 0.12);
  }
  .quote-form-col .enquiry-heading {
    align-items: center;
    border-bottom: 0;
    margin-bottom: 14px;
    padding-bottom: 0;
  }
  .quote-form-col .enquiry-heading span {
    display: none;
  }
  .quote-form-col .enquiry-heading strong {
    font-size: 1.35rem;
  }
  .quote-form-col .enquiry-panel .row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
  }
  .quote-form-col .enquiry-panel .row > * {
    width: auto;
    max-width: none;
    padding: 0;
  }
  .quote-form-col .enquiry-panel .row > *:nth-child(7),
  .quote-form-col .enquiry-panel .row > *:nth-child(8) {
    grid-column: span 2;
  }
  .quote-form-col .enquiry-panel .form-control,
  .quote-form-col .enquiry-panel .form-select,
  .quote-form-col .enquiry-panel .btn-brand {
    min-height: 50px;
  }
  .quote-form-col .enquiry-panel textarea.form-control {
    min-height: 50px;
    resize: vertical;
  }
}
@media (max-width: 767px) {
  .quote-form-col .enquiry-panel .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575px) {
  .quote-form-col .enquiry-panel .row {
    grid-template-columns: 1fr;
  }
  .quote-form-col .enquiry-panel .row > *:nth-child(7),
  .quote-form-col .enquiry-panel .row > *:nth-child(8) {
    grid-column: span 1;
  }
}
@media (max-width: 991px) {
  .hero-quote .enquiry-panel {
    margin-inline: auto;
  }
  .sticky-side {
    position: static;
  }
  .col-lg-5 > .enquiry-panel,
  .col-lg-4 > .enquiry-panel,
  .packers-form-col > .enquiry-panel,
  .col-lg-5 > .cta-band {
    position: static;
  }
  .blog-share-box {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-share-actions {
    justify-content: flex-start;
  }
}

.admin-body {
  background: #eef3f8;
  color: #172235;
  min-height: 100vh;
}
.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  transition: grid-template-columns 0.22s ease;
}
.admin-side {
  position: sticky;
  top: 0;
  height: 100vh;
  background: linear-gradient(180deg, #071a32 0%, #0d294c 100%);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 10px 0 30px rgba(11, 31, 58, 0.12);
  transition: transform 0.22s ease, padding 0.22s ease;
  overflow: hidden;
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
}
.admin-brand:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.admin-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 4px;
}
.admin-brand strong {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.12rem;
  line-height: 1;
}
.admin-brand small {
  display: block;
  color: #9fb2cb;
  font-size: 0.78rem;
  margin-top: 3px;
}
.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  min-height: 0;
  padding-right: 4px;
}
.admin-nav::-webkit-scrollbar {
  width: 6px;
}
.admin-nav::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}
.admin-nav a,
.admin-logout {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d9e4f2;
  padding: 11px 12px;
  border-radius: 8px;
  font-weight: 700;
}
.admin-nav a i,
.admin-logout i {
  width: 22px;
  color: var(--orange-light);
}
.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}
.admin-logout {
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}
.admin-logout:hover {
  background: rgba(241, 101, 10, 0.16);
  color: #fff;
}
.admin-main {
  min-width: 0;
  padding: 28px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.admin-flash {
  margin-bottom: 18px;
}
.admin-sidebar-collapsed .admin-shell {
  grid-template-columns: 86px minmax(0, 1fr);
}
.admin-sidebar-collapsed .admin-side {
  padding-inline: 12px;
}
.admin-sidebar-collapsed .admin-brand span,
.admin-sidebar-collapsed .admin-nav span,
.admin-sidebar-collapsed .admin-logout span {
  display: none;
}
.admin-sidebar-collapsed .admin-brand,
.admin-sidebar-collapsed .admin-nav a,
.admin-sidebar-collapsed .admin-logout {
  justify-content: center;
}
.admin-sidebar-collapsed .admin-nav a i,
.admin-sidebar-collapsed .admin-logout i {
  width: auto;
}
.admin-topbar {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.06);
}
.admin-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.admin-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background: var(--navy-deep);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex: 0 0 auto;
}
.admin-toggle:hover {
  background: var(--orange);
}
.admin-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-topbar h2 {
  margin: 0;
  font-size: 1.65rem;
}
.admin-kicker {
  display: block;
  font-family: var(--font-mono);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.admin-form {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 22px;
  margin: 20px 0;
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.06);
}
.admin-form .form-control,
.admin-form .form-select {
  border-radius: 7px;
  min-height: 44px;
}
.admin-searchbar {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 12px;
  padding: 12px 14px;
}
.admin-searchbar i {
  color: var(--orange);
  font-size: 1.05rem;
}
.admin-searchbar .form-control {
  border: 0;
  box-shadow: none;
  min-height: 38px;
  padding: 6px 0;
}
.admin-searchbar .form-control:focus {
  box-shadow: none;
}
.admin-searchbar span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.document-item-labels {
  margin: 8px 0;
}
.document-item-labels span {
  display: block;
  color: var(--navy-deep);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.permission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}
.permission-tile {
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafd;
  cursor: pointer;
}
.permission-tile span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-deep);
  font-weight: 700;
}
.permission-tile i {
  color: var(--orange);
}
.tox-tinymce {
  border-radius: 8px !important;
  border-color: var(--border-soft) !important;
}
.admin-table-wrap {
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.06);
  background: #fff;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.admin-table {
  background: #fff;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  white-space: normal;
}
.admin-table th {
  background: #f7f9fc;
  color: var(--navy-deep);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.admin-table td,
.admin-table th {
  padding: 12px 14px;
  vertical-align: middle;
}
.admin-table a {
  color: var(--orange);
  font-weight: 700;
  margin-right: 10px;
}
.admin-table small {
  color: var(--ink-soft);
  word-break: break-word;
}
.admin-inline-form {
  display: inline-flex;
  margin: 0;
}
.admin-table .btn {
  white-space: nowrap;
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
}
.admin-stats div {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.06);
}
.admin-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--orange);
  line-height: 1;
}
.admin-stats span {
  color: var(--ink-soft);
  font-weight: 700;
}
.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #071a32, #14315c);
  padding: 20px;
}
.admin-login-box {
  width: min(420px, 92vw);
  background: #fff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
.admin-footer {
  color: var(--ink-soft);
  text-align: center;
  font-size: 0.86rem;
  padding: 18px 8px 4px;
  margin-top: auto;
}
.admin-overlay {
  display: none;
}
@media (max-width: 991px) {
  .admin-shell {
    display: block;
  }
  .admin-side {
    position: fixed;
    z-index: 1050;
    inset: 0 auto 0 0;
    width: min(310px, 86vw);
    height: 100vh;
    transform: translateX(-105%);
    padding: 18px 14px;
  }
  .admin-sidebar-open .admin-side { transform: translateX(0); }
  .admin-sidebar-open .admin-overlay {
    display: block;
    position: fixed;
    z-index: 1040;
    inset: 0;
    background: rgba(7, 26, 50, 0.55);
  }
  .admin-sidebar-collapsed .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar-collapsed .admin-brand span,
  .admin-sidebar-collapsed .admin-nav span,
  .admin-sidebar-collapsed .admin-logout span { display: inline; }
  .admin-sidebar-collapsed .admin-brand,
  .admin-sidebar-collapsed .admin-nav a,
  .admin-sidebar-collapsed .admin-logout { justify-content: flex-start; }
  .admin-main {
    padding: 18px;
  }
}
@media (max-width: 575px) {
  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-nav a,
  .admin-logout {
    font-size: 0.86rem;
  }
  .admin-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.footer-dynamic-links {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
  padding-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 767px) {
  .footer-dynamic-links {
    grid-template-columns: 1fr;
  }
}
.hero .stat-block .lbl {
  color: #b9c4d6;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-hero {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy-mid));
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -5%;
  top: -30%;
  width: 40%;
  height: 160%;
  background: linear-gradient(
    135deg,
    transparent 48%,
    rgba(241, 101, 10, 0.16) 49%,
    rgba(241, 101, 10, 0.16) 54%,
    transparent 55%
  );
}
.page-hero h1 {
  color: #fff;
}
.page-hero p {
  color: #cfd8e6;
}
.breadcrumb-custom a {
  color: var(--orange-light);
}
.breadcrumb-custom {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}
.breadcrumb-custom span {
  color: #b9c4d6;
}

/* ---------- Cards ---------- */
.card-shiv {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-soft);
}
.card-shiv:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.card-shiv .icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--bg-light);
  color: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.card-shiv:hover .icon-wrap {
  background: var(--orange);
  color: #fff;
}
.card-shiv h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.card-shiv h3 a {
  color: inherit;
}
.card-shiv h3 a:hover {
  color: var(--orange);
}
.service-card-image {
  width: calc(100% + 48px);
  margin: -28px -24px 18px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
}
.service-detail-image,
.service-inline-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}
.service-detail-image {
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.cta-band .service-detail-image + h2 {
  margin-top: 0;
}
.cta-band .btn-outline-brand.w-100,
.cta-band .btn-whatsapp.w-100 {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-inline-image {
  margin-bottom: 24px;
  box-shadow: var(--shadow-soft);
}
.about-feature-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  margin-bottom: 18px;
  box-shadow: var(--shadow-soft);
}
.service-seo-section {
  background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
  padding-top: 46px;
  padding-bottom: 46px;
}
.service-rich-card {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(241, 101, 10, 0.95), rgba(20, 49, 92, 0.24)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 18px 46px rgba(11, 31, 58, 0.1);
  position: relative;
  overflow: hidden;
}
.service-rich-card::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -110px;
  width: 260px;
  height: 260px;
  border: 28px solid rgba(241, 101, 10, 0.08);
  border-radius: 50%;
}
.service-rich-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.service-rich-head span {
  background: var(--navy-deep);
  color: #fff;
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 700;
  font-size: 0.86rem;
  white-space: nowrap;
}
.service-rich-card p {
  font-size: 1.03rem;
  line-height: 1.82;
  position: relative;
  z-index: 1;
}
.service-rich-card p:last-child {
  margin-bottom: 0;
}
.blog-card-fallback {
  width: 56px;
  height: 56px;
  background: var(--bg-light);
  color: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.blog-card-fallback:hover {
  background: var(--orange);
  color: #fff;
}
.card-shiv a.card-link {
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.9rem;
}
.card-shiv a.card-link:hover {
  color: var(--orange);
}

/* City chip grid */
.city-chip {
  display: block;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 14px 16px;
  text-align: center;
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}
.city-chip:hover {
  background: var(--navy-deep);
  color: #fff;
  border-color: var(--navy-deep);
}
.city-chip small {
  display: block;
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 0.75rem;
}
.city-chip:hover small {
  color: #cfd8e6;
}

/* Process steps */
.step-block {
  position: relative;
  padding-left: 54px;
  margin-bottom: 28px;
}
.step-block .step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--navy-deep);
  color: var(--orange-light);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.step-block h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

/* Testimonial */
.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 26px;
  height: 100%;
  border-left: 3px solid var(--orange);
}
.testimonial-card .stars {
  color: var(--orange);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.testimonial-card .name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy-deep);
  text-transform: none;
  margin-top: 12px;
}
.testimonial-card .role {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* Section spacing */
.section {
  padding: 70px 0;
}
.section-sm {
  padding: 45px 0;
}

/* Contact page */
.contact-section {
  background:
    linear-gradient(180deg, #fff 0%, #fff 58%, var(--bg-light) 58%, var(--bg-light) 100%);
}
.contact-intro,
.contact-map-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}
.contact-intro p,
.contact-map-head p {
  max-width: 660px;
}
.contact-form-panel {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-top: 4px solid var(--orange);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 18px 48px rgba(11, 31, 58, 0.1);
  height: 100%;
}
.contact-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border-soft);
}
.contact-panel-head span {
  font-family: var(--font-mono);
  color: var(--orange);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 1.7px;
  font-weight: 600;
}
.contact-panel-head strong {
  font-family: var(--font-display);
  color: var(--navy-deep);
  text-transform: uppercase;
  font-size: 1.35rem;
  line-height: 1;
}
.contact-form-panel .form-label {
  color: var(--navy-deep);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-form-panel .form-control,
.contact-form-panel .form-select {
  min-height: 48px;
  border-radius: 6px;
  border-color: #d8dee8;
  background-color: #fbfcfe;
}
.contact-form-panel textarea.form-control {
  min-height: 122px;
}
.contact-form-panel .form-control:focus,
.contact-form-panel .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 0.18rem rgba(241, 101, 10, 0.14);
  background-color: #fff;
}
.contact-side-panel {
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(241, 101, 10, 0.14) 0 18%, transparent 18% 100%),
    linear-gradient(120deg, var(--navy-deep), var(--navy-mid));
  border-radius: 8px;
  padding: 30px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 18px 48px rgba(11, 31, 58, 0.18);
  overflow: hidden;
}
.contact-side-panel .eyebrow-light {
  font-family: var(--font-mono);
  color: var(--orange-light);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 1.7px;
  font-weight: 600;
}
.contact-side-panel h2 {
  color: #fff;
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  margin: 8px 0 10px;
}
.contact-side-panel p {
  color: #cfd8e6;
}
.contact-detail-list {
  display: grid;
  gap: 12px;
}
.contact-detail-list a,
.contact-detail-list div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  color: #eaf0f8;
}
.contact-detail-list i {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--orange-light);
  border-radius: 8px;
}
.contact-actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
}
.btn-contact-light {
  background: #fff;
  color: var(--navy-deep);
  border-radius: 6px;
  font-weight: 700;
  padding: 12px 22px;
}
.btn-contact-light:hover {
  background: var(--orange-light);
  color: #fff;
}
.contact-map-section {
  background: var(--bg-light);
  padding-top: 0;
}
.contact-map {
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 24px;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

/* FAQ */
.faq-section {
  position: relative;
}
.faq-shell {
  max-width: 920px;
  margin: 0 auto;
}
.faq-shell .accordion {
  display: grid;
  gap: 12px;
}
.faq-shell .accordion-item {
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 42px rgba(4, 29, 58, 0.06);
}
.faq-shell .accordion-button {
  color: var(--navy-deep);
  font-weight: 800;
  letter-spacing: 0;
  padding: 20px 22px;
  box-shadow: none;
}
.faq-shell .accordion-button:not(.collapsed) {
  color: var(--navy-deep);
  background: #fff7f1;
}
.faq-shell .accordion-button:focus {
  box-shadow: none;
}
.faq-shell .accordion-body {
  color: var(--text-muted);
  line-height: 1.85;
  padding: 0 22px 22px;
}
@media (max-width: 991px) {
  .contact-intro,
  .contact-map-head {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  .contact-form-panel,
  .contact-side-panel {
    padding: 22px;
  }
  .contact-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy-deep), var(--navy-mid));
  border-radius: var(--radius);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -8%;
  top: -60%;
  width: 40%;
  height: 220%;
  background: linear-gradient(
    135deg,
    transparent 48%,
    rgba(241, 101, 10, 0.18) 49%,
    rgba(241, 101, 10, 0.18) 54%,
    transparent 55%
  );
}
.cta-band h2,
.cta-band p {
  color: #fff;
  position: relative;
  z-index: 2;
}
.cta-band .cta-actions {
  position: relative;
  z-index: 2;
}

/* Footer */
.footer-shiv {
  background: var(--navy-deep);
  color: #b9c4d6;
  padding-top: 60px;
}
.footer-shiv h5 {
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-shiv a {
  color: #b9c4d6;
}
.footer-shiv a:hover {
  color: var(--orange-light);
}
.footer-shiv ul {
  list-style: none;
  padding: 0;
}
.footer-shiv ul li {
  margin-bottom: 10px;
  font-size: 0.92rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 40px;
  padding: 18px 0;
  font-size: 0.82rem;
}

/* Floating WhatsApp button */
.float-whatsapp {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.7rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  z-index: 999;
  animation: pulse-wa 2.4s infinite;
}
@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Sticky call bar - mobile */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-deep);
  padding: 10px 16px;
  z-index: 998;
  box-shadow: 0 -4px 14px rgba(0, 0, 0, 0.2);
}
.mobile-call-bar a {
  flex: 1;
  text-align: center;
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
}
@media (max-width: 767px) {
  .mobile-call-bar {
    display: flex;
    gap: 10px;
  }
  body {
    padding-bottom: 58px;
  }
  .float-whatsapp {
    display: none;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: all 0.6s ease;
}
.reveal-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Focus visibility for accessibility */
a:focus-visible,
button:focus-visible,
.btn-brand:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: 2px;
}
