:root {
  --ink: #070264;
  --accent: #bc0810;
  --ink-soft: rgba(7, 2, 100, 0.08);
  --accent-soft: rgba(188, 8, 16, 0.08);
}

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading__title,
.pagetitle__heading {
  font-family: "Cormorant Garamond", serif;
  color: var(--ink);
}

a {
  color: var(--accent);
}

a:hover {
  color: var(--ink);
}

.bg-theme {
  background-color: var(--ink) !important;
}

.bg-gray {
  background: linear-gradient(180deg, var(--ink-soft) 0%, var(--accent-soft) 100%) !important;
}

.color-theme {
  color: var(--accent) !important;
}

.btn__primary,
.btn__secondary {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #ffffff !important;
}

.btn-primary,
.btn-outline-primary {
  border-color: var(--accent) !important;
}

.btn-primary {
  background-color: var(--accent) !important;
  color: #ffffff !important;
}

.btn-outline-primary {
  color: var(--accent) !important;
  background-color: transparent !important;
}

.btn-outline-primary:hover {
  background-color: var(--accent) !important;
  color: #ffffff !important;
}

.btn__white {
  background-color: var(--ink) !important;
  border: 1px solid var(--ink) !important;
  color: #ffffff !important;
}

.btn__white:hover {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #ffffff !important;
}

.btn__link {
  color: var(--accent) !important;
}

.header,
.navbar {
  background-color: #ffffff;
}

.navbar .nav__item-link {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.navbar .nav__item-link.active,
.navbar .nav__item-link:hover {
  color: var(--accent);
}

@media (max-width: 767px) {
.fixed-navbar .logo-light,
.fixed-navbar .logo-dark {
  max-height: 150px !important;
}

@media (min-width: 992px) {
  #header.is-fixed .navbar-brand img {
    margin-top: 20px;
  }
}

  .hero__actions {
    text-align: center;
  }
}

.hero {
  position: relative;
  padding: 140px 0 180px;
  color: #ffffff;
  background: transparent;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 18px;
}

.hero__title {
  font-size: 52px;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 18px;
}

.hero__subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 32px;
}

.hero__actions .btn {
  margin-right: 12px;
  margin-bottom: 10px;
}

.btn-outline-white {
  background: transparent !important;
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
}

.btn-outline-white:hover {
  background: #ffffff !important;
  color: var(--ink) !important;
}

.section-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--ink-soft);
  padding: 28px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(7, 2, 100, 0.08);
}

.section-card--auto {
  height: auto;
}

.import-tabs .nav-link {
  border: 1px solid var(--ink-soft);
  color: var(--ink);
  background: #fff;
  border-radius: 999px;
  padding: 8px 18px;
  margin: 0 6px 10px;
  font-weight: 600;
}

.import-tabs .nav-link.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.import-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--ink-soft);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(7, 2, 100, 0.08);
  display: flex;
  flex-direction: column;
}

.import-card__media {
  position: relative;
  overflow: hidden;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.import-card__media-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.import-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.drone-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--ink-soft);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(7, 2, 100, 0.08);
  height: 580px;
  display: flex;
  flex-direction: column;
}

.drone-card__media {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.drone-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.drone-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.drone-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}

.drone-card__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
.drone-card {
  height: 630px;
}

  .drone-card__actions {
    flex-wrap: nowrap;
  }

  .drone-card__actions .btn {
    flex: 1;
    text-align: center;
  }
}

.drone-card__type {
  font-size: 0.95rem;
  color: #1f2259;
  font-weight: 600;
}

.import-card__count {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(188, 8, 16, 0.75);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
}

.import-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.import-card__body h4 {
  margin-bottom: 0;
  color: var(--ink);
}

.import-card__type {
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 600;
}

.import-card__body p {
  color: var(--ink-muted);
}

.import-card__body .btn {
  margin-top: auto;
}

.import-card__actions {
  margin-top: auto;
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
  align-items: center;
}

.import-card__actions .btn {
  margin-top: 0 !important;
  white-space: nowrap;
  flex: 1 1 auto;
  text-align: center;
}

@media (max-width: 576px) {
  .admin-product-type {
    max-height: 160px;
  }
}

.gap-10 {
  gap: 10px;
}

.product-detail__media img {
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(7, 2, 100, 0.12);
}

.product-detail__card {
  padding: 32px;
}

.product-gallery__main {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(7, 2, 100, 0.12);
}

@media (min-width: 992px) {
  .product-detail__media-col {
    position: relative;
  }

  .product-detail__media-col .product-gallery {
    position: relative;
    align-self: flex-start;
    transition: transform 0.2s ease-out;
  }
}

.product-gallery__main img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  display: block;
}

.product-gallery__thumbs {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.product-gallery__thumbs::-webkit-scrollbar {
  height: 6px;
}

.product-gallery__thumbs::-webkit-scrollbar-thumb {
  background: rgba(7, 2, 100, 0.2);
  border-radius: 6px;
}

.gallery-thumb {
  border: none;
  padding: 0;
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumb.is-active {
  border-color: #bc0810;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(7, 2, 100, 0.7);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery-nav--prev {
  left: 12px;
}

.gallery-nav--next {
  right: 12px;
}

.gallery-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20000;
}

.gallery-modal.is-open {
  display: flex;
}

.gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.gallery-modal__content {
  position: relative;
  z-index: 1;
  background: transparent;
  border-radius: 0;
  overflow: auto;
  padding: 0;
}

.gallery-modal__content img {
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
}

.gallery-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.product-detail__table {
  background: #f7f7fb;
  border-radius: 14px;
  padding: 14px 16px;
  margin: 16px 0 8px;
  display: grid;
  gap: 10px;
}

.product-detail__row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: #070264;
}

@media (max-width: 767px) {
  .product-gallery__main img {
    height: 300px;
  }

  .gallery-nav {
    width: 34px;
    height: 34px;
  }

  .product-detail__media-col .product-gallery {
    position: static;
  }
}

.product-detail__price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.badge {
  display: inline-block;
  padding: 0.35em 0.6em;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 999px;
  color: #fff;
}

.badge-success { background: #28a745; }
.badge-warning { background: #ffc107; color: #111; }
.badge-secondary { background: #6c757d; }
.badge-danger { background: #bc0810; }

/* Blog styling */
.blog-standard .blog-item {
  background: #fff;
  border: 1px solid var(--ink-soft);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(7, 2, 100, 0.08);
}

.blog-standard .blog__img {
  position: relative;
}

.blog-standard .blog__img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.blog__meta-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  padding: 10px 16px;
  background: rgba(7, 2, 100, 0.82);
  color: #fff;
  font-size: 0.85rem;
}

.blog__meta-overlay i {
  margin-right: 6px;
  color: #fff;
}

.blog__meta-overlay .blog__meta-tags a {
  color: #fff;
  margin-right: 8px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.blog__meta-overlay .blog__meta-tags a:hover {
  border-bottom-color: #fff;
}

.comments-section .comment {
  border-bottom: 1px solid rgba(7, 2, 100, 0.08);
  padding: 18px 0;
}
.comments-section .comment__header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  font-weight: 600;
  color: #070264;
}
.comments-section .comment__header span {
  font-weight: 400;
  color: #6b7280;
  font-size: 0.9rem;
}
.comments-section .comment__body {
  margin-top: 8px;
  color: #1f2937;
  line-height: 1.7;
}
.comments-section .comment__replies {
  margin-top: 12px;
  padding-left: 16px;
  border-left: 2px solid rgba(188, 8, 16, 0.2);
}
.comments-section .comment--reply {
  padding-top: 12px;
  border-bottom: none;
}
.comments-section .comment__more {
  margin-left: 16px;
  margin-top: 10px;
}
.comments-section .reply-btn {
  padding: 4px 10px;
  font-size: 0.72rem;
  border-radius: 14px;
  background: rgba(7, 2, 100, 0.08);
  color: #070264;
  border: 1px solid rgba(7, 2, 100, 0.16);
}
.comments-section .reply-btn:hover {
  background: rgba(7, 2, 100, 0.16);
}
.comments-section .view-more-replies {
  padding: 3px 9px;
  font-size: 0.7rem;
  border-radius: 5px;
  background: #fff5f5;
  color: #bc0810;
  border: 1px dashed rgba(188, 8, 16, 0.4);
}
.comments-section .view-more-replies:hover {
  background: rgba(188, 8, 16, 0.08);
}
.comments-section .comment.is-highlight {
  animation: commentHighlight 2.6s ease;
  background: rgba(188, 8, 16, 0.08);
  border-radius: 10px;
  padding-left: 12px;
  padding-right: 12px;
}
@keyframes commentHighlight {
  0% { background: rgba(188, 8, 16, 0.2); }
  100% { background: rgba(188, 8, 16, 0); }
}

.blog-standard .blog__content {
  padding: 0 28px 28px;
}

.blog-standard .blog__meta {
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 12px;
}

.blog-standard .blog__meta-cat a {
  background: rgba(188, 8, 16, 0.12);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.blog-standard .blog__meta-date {
  color: var(--ink-muted);
  font-weight: 600;
}

.blog-standard .blog__title a {
  color: var(--ink);
}

.blog-standard .blog__desc {
  color: var(--ink-muted);
}

.blog-single .blog__desc {
  padding: 16px 24px 8px;
}

.blog-standard .btn__link {
  color: var(--ink);
  font-weight: 700;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 6px 16px;
  display: inline-flex;
}

.blog-widget {
  background: #fff;
  border: 1px solid var(--ink-soft);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(7, 2, 100, 0.08);
}

.blog__widget-title {
  color: var(--ink);
  font-weight: 700;
}

.blog-widget .form-control {
  border-radius: 12px;
}

.blog-search {
  position: relative;
}

.blog-search .form-control {
  padding-right: 46px;
}

.blog-search .search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.blog-search .search-btn:hover {
  background: #070264;
}

.recent-post-item {
  padding: 10px 0;
}

.recent-post-link {
  gap: 14px;
}

.recent-post-image {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.recent-post-title {
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 767px) {
  .pagination {
    margin-bottom: 24px;
  }
}

.social__icons a svg,
.tiktok-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
}

.club-hero-image {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  border-radius: 16px;
}

@media (max-width: 576px) {
  .club-hero-image {
    width: 100%;
    height: auto;
    max-height: none;
  }
}

.club-membership-image {
  border-radius: 16px;
}

.section-card img.img-fluid {
  width: 100%;
   max-height: 560px;
  object-fit: cover;
  border-radius: 14px;
}

.resource-card__img {
  width: 100%;
  height: auto !important;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 15s infinite;
}

.hero__bg-1 {
  background-image: url("../images/sliders/2.jpg");
  animation-delay: 0s;
}

.hero__bg-2 {
  background-image: url("../images/sliders/3.jpg");
  animation-delay: 5s;
}

.hero__bg-3 {
  background-image: url("../images/sliders/5.jpg");
  animation-delay: 10s;
}

@keyframes heroSlide {
  0% { opacity: 0; }
  6% { opacity: 1; }
  30% { opacity: 1; }
  36% { opacity: 0; }
  100% { opacity: 0; }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 10px 24px rgba(7, 2, 100, 0.12);
  margin-bottom: 18px;
}

.footer-logo img {
  height: 150px;
  width: auto;
  display: block;
}

.team-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
}

.referral-hero-image {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  border-radius: 16px;
}

.tag-list li a {
  display: inline-block;
  border: 1px solid var(--ink-soft);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
}

.login-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.login-actions .btn {
  width: 100%;
  max-width: 280px;
}

.signup-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.signup-actions .btn {
  width: 100%;
  max-width: 320px;
}

.signup-login-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
}

.signup-login-link:hover {
  color: var(--accent);
}

.login-signup-link {
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
}

.login-signup-link:hover {
  color: var(--accent);
}

@media (max-width: 576px) {
  .verify-login-btn {
    margin-top: 12px;
  }
}

.customer-dashboard .dashboard-hero {
  background: linear-gradient(135deg, rgba(7, 2, 100, 0.92), rgba(188, 8, 16, 0.92));
  color: #ffffff;
  border-radius: 18px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 18px 40px rgba(7, 2, 100, 0.18);
}

.customer-dashboard .dashboard-hero .heading__title,
.customer-dashboard .dashboard-hero .heading__desc {
  color: #ffffff;
}

.dashboard-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dashboard-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(7, 2, 100, 0.08);
  border: 1px solid rgba(7, 2, 100, 0.08);
}

.stat-card {
  text-align: left;
  min-height: 160px;
  position: relative;
}

.stat-card h4 {
  font-size: 16px;
  margin: 16px 0 8px;
  color: var(--ink);
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 2, 100, 0.08);
  color: var(--ink);
  font-size: 20px;
}

.dashboard-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.dashboard-pill {
  background: rgba(188, 8, 16, 0.12);
  color: var(--accent);
  font-weight: 600;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
}

.dashboard-actions {
  display: grid;
  gap: 16px;
}

.dashboard-action {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(7, 2, 100, 0.08);
  background: #f8f9ff;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dashboard-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(7, 2, 100, 0.12);
}

.dashboard-action h5 {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--ink);
}

.dashboard-action p {
  margin: 0;
  font-size: 13px;
  color: #243056;
}

.action-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(188, 8, 16, 0.12);
  color: var(--accent);
  font-size: 18px;
}

.dashboard-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dashboard-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(7, 2, 100, 0.08);
  font-size: 14px;
}

.dashboard-list li span {
  color: #070264 !important;
}

.dashboard-list li strong {
  color: #070264 !important;
  font-weight: 700;
}

.btn__block {
  display: block;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .customer-dashboard .dashboard-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .dashboard-hero__actions {
    width: 100%;
  }
}

.customer-dashboard-layout {
  display: flex;
  min-height: 100vh;
  background: #f6f7fb;
}

.customer-sidebar {
  width: 260px;
  background: linear-gradient(180deg, #070264 0%, #070264 70%, #bc0810 100%);
  color: #ffffff;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
  z-index: 900;
}
.customer-sidebar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.packing-list-table .form-select {
  border-radius: 10px;
  border: 1px solid rgba(7, 2, 100, 0.2);
  background-color: #fff;
  padding: 10px 14px;
  font-size: 0.95rem;
  box-shadow: 0 6px 12px rgba(7, 2, 100, 0.08);
}
.packing-list-table .form-select:focus {
  border-color: #070264;
  box-shadow: 0 0 0 3px rgba(7, 2, 100, 0.12);
}

.customer-sidebar__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

.customer-sidebar__brand img {
  max-width: 140px;
  height: auto;
  background: #ffffff;
  padding: 8px 10px;
  border-radius: 10px;
}

.customer-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.customer-sidebar__link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  font-weight: 600;
}

.customer-sidebar__link:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.settings-tabs {
  margin-bottom: 20px;
}

.settings-tabs .nav-link {
  border: none;
  color: var(--ink);
  font-weight: 600;
}

.settings-tabs .nav-link.active {
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
}

.settings-tab-content {
  margin-top: 20px;
}

.customer-sidebar__footer {
  margin-top: auto;
}

.customer-sidebar__close {
  display: none;
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.customer-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-left: 260px;
}

.customer-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: #ffffff;
  border-bottom: 1px solid rgba(7, 2, 100, 0.08);
  box-shadow: 0 4px 12px rgba(7, 2, 100, 0.06);
  position: sticky;
  top: 0;
  z-index: 850;
}

.customer-menu-btn {
  border: none;
  background: transparent;
  display: none;
  font-size: 20px;
  color: var(--ink);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.customer-menu-btn .fa-times {
  display: none;
}

.customer-menu-btn.is-open .fa-bars {
  display: none;
}

.customer-menu-btn.is-open .fa-times {
  display: inline-block;
}

.customer-topbar__user {
  display: flex;
  align-items: center;
  text-align: right;
}

.customer-topbar__company {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--ink);
}

.customer-topbar__company strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.customer-topbar__company small {
  font-size: 12px;
  color: var(--ink);
}

@media (max-width: 992px) {
  .customer-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .customer-sidebar.is-open {
    transform: translateX(0);
  }

  .customer-menu-btn {
    display: inline-flex;
  }

  .customer-sidebar__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .customer-dashboard-layout {
    flex-direction: column;
  }

  .customer-main {
    margin-left: 0;
  }
}

.tag-list li a:hover {
  background: var(--ink);
  color: #fff;
}

.import-show-more {
  padding: 12px 28px;
  min-width: 220px;
  white-space: normal;
  line-height: 1.2;
  text-align: center;
}

.order-form-card .form-control {
  border-radius: 12px;
  border: 1px solid var(--ink-soft);
  padding: 12px 14px;
}

.order-form-card label {
  font-weight: 600;
  color: var(--ink);
}

.order-form-card .btn__lg {
  padding: 14px 32px;
  min-width: 240px;
  white-space: normal;
  line-height: 1.2;
  text-align: center;
}

.ceo-signature {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin-top: 16px;
  display: block;
}

.ceo-photo {
  border-radius: 16px;
}

.section-card h3,
.section-card h4 {
  color: var(--ink);
}

.section-card .icon {
  font-size: 34px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
}

.pill {
  background-color: var(--ink);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-block;
  font-size: 13px;
}

.page-title {
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%) !important;
  padding: 140px 0 70px;
}

.page-about-us .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/sliders/3.jpg") !important;
}

.page-services .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/sliders/2.jpg") !important;
}

.page-contact .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/backgrounds/1.jpg") !important;
}

.page-why-us .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/backgrounds/2.jpg") !important;
}

.page-leadership-team .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/6.jpg") !important;
}

.page-global-locations .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/4.jpg") !important;
}

.page-find-location .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("https://images.unsplash.com/photo-1506377295352-e3154d43ea9e?auto=format&fit=crop&w=1600&q=80") !important;
}

.page-faqs .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/5.jpg") !important;
}

.page-track .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/sliders/5.jpg") !important;
}

.page-global-shipping-club .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/cta/1.webp") !important;
}

.page-industries .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/1.jpg") !important;
}

.page-resources .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/3.avif") !important;
}

.page-blog .page-title,
.page-blog-details .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("https://images.unsplash.com/photo-1611162617474-5b21e879e113?auto=format&fit=crop&w=1600&q=80") !important;
}

.page-privacy-policy .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/41.jpg") !important;
}

.page-terms-of-service .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/51.jpg") !important;
}

.page-cookies-policy .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/61.jpg") !important;
}

.page-complaints-claims .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/3.jpg") !important;
}

.page-air-freight .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/1.jpg") !important;
}

.page-sea-freight .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/2.webp") !important;
}

.page-customs-clearance .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/3.jpg") !important;
}

.page-customs-advisory .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/41.jpg") !important;
}

.page-freight-forwarding .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/5.jpg") !important;
}

.page-cargo-packaging .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/51.jpg") !important;
}

.page-warehousing .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/6.jpg") !important;
}

.page-inland-transport .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/4.jpg") !important;
}

.page-removals-relocation .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/61.jpg") !important;
}

.page-procurement-outsourcing .page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/3.avif") !important;
}

.page-title-contact.page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/services/contact.jpeg") !important;
}

.about-us-page-title.page-title {
  background-image: linear-gradient(135deg, rgba(7, 2, 100, 0.88) 0%, rgba(188, 8, 16, 0.78) 100%), url("../images/backgrounds/3.jpg") !important;
}

.page-title {
  background-size: cover !important;
  background-position: center !important;
}

.page-title .bg-img {
  display: none;
}

.page-title .breadcrumb-item a,
.page-title .breadcrumb-item,
.pagetitle__heading {
  color: #ffffff !important;
}

.page-title .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

.services-grid .service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.services-grid img {
  border-radius: 16px;
  height: 190px;
  object-fit: cover;
}

.section-light {
  background: linear-gradient(180deg, var(--ink-soft) 0%, rgba(7, 2, 100, 0.02) 100%);
}

.cta-band {
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%);
  color: #ffffff;
  padding: 45px 0;
}

.cta-band h3,
.cta-band p {
  color: #ffffff;
}

.list-check li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.list-check li::before {
  content: "*";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.footer {
  background: var(--ink);
  color: #ffffff;
}

.footer a,
.footer h6 {
  color: #ffffff;
}

.footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer__widget-title {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-panel {
  border: 1px solid var(--ink-soft);
  border-radius: 18px;
  padding: 28px;
  background: #ffffff;
}

.contact__panel-title {
  color: var(--ink);
}

.form-control {
  border: 1px solid var(--ink-soft);
  border-radius: 12px;
  padding: 12px 14px;
}

.badge-accent {
  background-color: var(--accent);
  color: #ffffff;
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.accordion__item-header .accordion__item-title {
  color: var(--ink);
}

.testimonial-item,
.blog-item,
.card,
.fancybox-item {
  border-radius: 18px;
  border: 1px solid var(--ink-soft);
  box-shadow: 0 12px 30px rgba(7, 2, 100, 0.08);
}

.divider__theme {
  background-color: var(--accent) !important;
}

.text-primary,
.text-success,
.text-warning,
.text-danger,
.text-info {
  color: var(--accent) !important;
}

.text-secondary {
  color: var(--ink) !important;
  opacity: 0.7;
}

.bg-primary,
.bg-success,
.bg-warning,
.bg-danger,
.bg-info {
  background-color: var(--ink) !important;
  color: #ffffff !important;
}

.bg-light {
  background-color: var(--ink-soft) !important;
}

.btn-light {
  background-color: var(--ink-soft) !important;
  border-color: var(--ink-soft) !important;
  color: var(--ink) !important;
}

.alert-primary,
.alert-success,
.alert-warning,
.alert-danger {
  background-color: var(--ink-soft) !important;
  border-color: var(--accent) !important;
  color: var(--ink) !important;
}

@media (max-width: 991px) {
  .hero__title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 120px 0 90px;
  }

  .hero__title {
    font-size: 34px;
  }
}
