* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {

  --harbor-red-50: #fff1f1;
  --harbor-red-100: #ffd6d6;
  --harbor-red-200: #ffaaaa;
  --harbor-red-300: #ff6b6b;
  --harbor-red-400: #e8231f;
  --harbor-red-500: #c01a17;
  --harbor-red-600: #981512;
  --harbor-red-700: #700e0c;
  --harbor-red-800: #480807;
  --harbor-red-900: #210302;

  --harbor-dark-50: #f5f5f4;
  --harbor-dark-100: #e0dfdd;
  --harbor-dark-200: #b8b7b3;
  --harbor-dark-300: #8a8984;
  --harbor-dark-400: #5e5d58;
  --harbor-dark-500: #3a3936;
  --harbor-dark-600: #252421;
  --harbor-dark-700: #161614;
  --harbor-dark-800: #0e0d0c;
  --harbor-dark-900: #050504;

  --harbor-white-50: #ffffff;
  --harbor-white-100: #faf9f8;
  --harbor-white-200: #f2f0ee;
  --harbor-white-300: #e8e5e2;
  --harbor-white-400: #d6d2ce;
  --harbor-white-500: #bfbbb7;
  --harbor-white-600: #a09c98;
  --harbor-white-700: #7a7673;
  --harbor-white-800: #524f4d;
  --harbor-white-900: #2e2c2b;

  --cursive-font: 'Lobster Two', cursive;

  --harbor-shadow-sm: 0 1px 3px rgba(22, 22, 20, 0.08);
  --harbor-shadow-md: 0 4px 12px rgba(22, 22, 20, 0.12);
  --harbor-shadow-lg: 0 8px 24px rgba(22, 22, 20, 0.16);
  --harbor-shadow-accent: 0 4px 14px rgba(232, 35, 31, 0.28);

}

body {
  font-family: 'Inter', sans-serif;
  background: var(--harbor-dark-900);
  color: var(--harbor-white-100);
  overflow-x: hidden;
}

/* ----------------------------------------------------------------------------- WEBKIT SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--harbor-dark-800);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--harbor-red-400);
  border-radius: 10px;
  border: 2px solid var(--harbor-dark-800);
  transition: background 0.25s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--harbor-red-300);
}

::-webkit-scrollbar-thumb:active {
  background: var(--harbor-red-500);
}

::-webkit-scrollbar-corner {
  background: var(--harbor-dark-800);
}

/* ------------------------------------------------------------------------------------ NAVBAR */
#navbar {
  position: absolute;
  top: 30px;
  left: 20px;
  right: 20px;
  z-index: 1000;

  padding: 10px 20px;
  border-radius: 16px;

  background: transparent;
  backdrop-filter: blur(0px);

  transition: all 0.35s ease;
}

#navbar.scrolled {
  position: fixed;
  top: 15px;

  background: rgb(20, 20, 18);
  backdrop-filter: blur(12px);

  box-shadow: var(--harbor-shadow-lg);

  animation: navFadeDown 0.4s ease;
}

@keyframes navFadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  width: 120px;
  height: 50px;
  object-fit: contain;
}

.nav-pill-wrap {
  display: flex;
  align-items: center;
  gap: 4px;

  background: var(--harbor-dark-700);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  padding: 5px 6px;
}

@media (min-width: 992px) {
  .navbar-collapse {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.navbar .nav-link {
  display: flex;
  align-items: center;
  gap: 4px;

  padding: 6px 16px !important;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 400;

  color: var(--harbor-white-500) !important;
  background: transparent;
  border: none;

  white-space: nowrap;

  transition: color 0.2s, background 0.2s;
}

.navbar .nav-link:hover {
  color: var(--harbor-white-100) !important;
}

.navbar .nav-link.active {
  color: var(--harbor-white-100) !important;
  background: var(--harbor-dark-500);
}

.dropdown-toggle .chevron {
  display: inline-block;
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
  opacity: .6;
}

.nav-item.dropdown.show .chevron {
  transform: rotate(180deg);
}

/* ── Dropdown Container ── */
.custom-dropdown {
  position: absolute !important;
  top: calc(100% + 16px) !important;
  left: 50% !important;
  transform: translateX(-50%) translateY(6px) !important;
  width: 860px;
  background: var(--harbor-dark-700);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 0;
  box-shadow: 0 24px 72px rgba(0, 0, 0, .65);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  overflow: hidden;
}

.nav-item.dropdown.show .custom-dropdown,
.custom-dropdown.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0) !important;
}

.custom-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--harbor-dark-700);
  border-left: 1px solid rgba(255, 255, 255, .08);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

/* ── Body Layout ── */
.dd-body {
  display: flex;
  min-height: 0;
}

/* ── Left Sidebar ── */
.dd-sidebar {
  width: max-content;
  flex-shrink: 0;
  background: var(--harbor-dark-800);
  border-right: 1px solid rgba(255, 255, 255, .06);
  padding: 25px 0;
  display: flex;
  flex-direction: column;
}

.dd-tab {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 18px;
  cursor: pointer;
  transition: background .15s;
  position: relative;
  border: none;
  background: none;
  text-align: left;
  width: 100%;
}

.dd-tab:hover {
  background: rgba(255, 255, 255, .03);
}

.dd-tab.active {
  background: rgba(232, 35, 31, .08);
}

.dd-tab.active::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--harbor-red-400);
  border-radius: 2px 0 0 2px;
}

.dd-tab-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
}

.dd-tab.active .dd-tab-icon {
  background: rgba(232, 35, 31, .12);
  border-color: rgba(232, 35, 31, .22);
}

.dd-tab-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
  opacity: .5;
  transition: opacity .15s;
}

.dd-tab.active .dd-tab-icon img {
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(19%) sepia(92%) saturate(5147%) hue-rotate(356deg) brightness(92%) contrast(108%);
}

.dd-tab-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dd-tab-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--harbor-white-500);
  transition: color .15s;
  letter-spacing: .1px;
}

.dd-tab.active .dd-tab-name {
  color: var(--harbor-white-100);
}

.dd-tab-count {
  font-size: 11px;
  color: var(--harbor-dark-300);
}

.dd-tab-divider {
  height: 1px;
  background: rgba(255, 255, 255, .04);
  margin: 6px 18px;
}

/* ── Right Side ── */
.dd-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.dd-content {
  flex: 1;
  padding: 25px 26px 10px;
}

/* ── Panels ── */
.dd-panel {
  display: none;
  flex-direction: column;
  gap: 0;
}

.dd-panel.active {
  display: flex;
}

.dd-panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.dd-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--harbor-red-400);
  white-space: nowrap;
}

.dd-section-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .06);
}

/* ── Items Grid ── */
.dd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.dd-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 11px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease;
  border: 1px solid transparent;
}

.dd-item:hover {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .07);
}

.dd-item:hover .dd-item-title {
  color: var(--harbor-white-100);
}

.dd-item-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 8px;
  transition: background .18s, border-color .18s;
}

.dd-item:hover .dd-item-icon {
  background: rgba(232, 35, 31, .1);
  border-color: rgba(232, 35, 31, .25);
}

.dd-item-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
  transition: opacity .18s;
}

.dd-item:hover .dd-item-icon img {
  opacity: 1;
}

.dd-item-body {
  flex: 1;
  min-width: 0;
}

.dd-item-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--harbor-white-400);
  line-height: 1.3;
  transition: color .18s;
}

.dd-item-sub {
  font-size: 11.5px;
  color: var(--harbor-white-700);
  line-height: 1.4;
  margin-top: 2px;
  font-weight: 300;
}

/* ── Footer Bar ── */
.dd-footer {
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 14px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dd-footer-text {
  font-size: 12px;
  color: var(--harbor-dark-300);
}

.dd-footer-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--harbor-red-400);
  text-decoration: none;
  transition: opacity .15s;
}

.dd-footer-link:hover {
  opacity: .75;
  color: var(--harbor-red-400);
}

.nav-cta {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);

  background: transparent;
  color: var(--harbor-white-200);

  font-size: 15px;
  text-decoration: none;

  transition: all 0.2s;
}

.nav-cta:hover {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--harbor-white-50);
  background: rgba(255, 255, 255, 0.05);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ------------------------------------------------------------------------------ HERO SECTION */
.hero-wrapper {
  padding: 15px;
}

.hero {
  position: relative;
  height: 110vh;
  border-radius: 22px;
  overflow: hidden;
}

.hero video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at left, rgba(0, 0, 0, 0.75) 20%, rgba(0, 0, 0, 0.3) 50%, transparent 80%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 160px 0px 80px;
}

.hero-tag {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--harbor-red-300);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-heading {
  font-size: 58px;
  font-weight: 500;
  line-height: 1.15;
  color: var(--harbor-white-50);
  margin-bottom: 20px;
}

.hero-heading span {
  font-size: 75px;
  font-weight: 500;
  font-style: italic;
  font-family: "Lobster Two", sans-serif;
  color: var(--harbor-red-400);
}

.hero-subtext {
  font-size: 16px;
  color: var(--harbor-white-400);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
}

.btn-primary-custom {
  padding: 12px 26px;
  background: var(--harbor-red-400);
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-primary-custom:hover {
  background: var(--harbor-red-500);
  transform: translateY(-2px);
}

.btn-secondary-custom {
  padding: 12px 26px;
  border: 1px solid var(--harbor-white-400);
  color: var(--harbor-white-200);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hero-card {
  background: rgba(20, 20, 18, 0.85);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--harbor-shadow-lg);
  animation: floatUp 1.2s ease;
}

.card-badge {
  font-size: 11px;
  color: var(--harbor-red-300);
  margin-bottom: 8px;
}

.hero-card h5 {
  color: white;
  margin-bottom: 10px;
}

.hero-card p {
  font-size: 13px;
  color: var(--harbor-white-400);
  margin-bottom: 16px;
}

.card-metrics {
  display: flex;
  gap: 30px;
}

.card-metrics strong {
  font-size: 18px;
  color: white;
}

.card-metrics span {
  display: block;
  font-size: 11px;
  color: var(--harbor-white-500);
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------------------------------------------- BRAND STRIP */
.brand-strip {
  position: relative;
  padding: 40px 10px;
  margin-top: 40px;
  overflow-x: hidden;
}

.brand-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(10, 10, 10, 0.6);
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-text {
  min-width: 220px;
  color: var(--harbor-white-400);
  font-size: 20px;
}

.brand-text span {
  font-size: 30px;
  font-style: italic;
  color: var(--harbor-red-500);
  font-family: var(--cursive-font);
  font-weight: 600;
}

.brand-slider {
  position: relative;
  overflow: hidden;
  flex: 1;
}

.brand-slider::before,
.brand-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brand-slider::before {
  left: 0;
  background: linear-gradient(to right,
      var(--harbor-dark-900),
      transparent);
}

.brand-slider::after {
  right: 0;
  background: linear-gradient(to left,
      var(--harbor-dark-900),
      transparent);
}

.brand-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollLogos 20s linear infinite;
}

.brand-card {
  min-width: 160px;
  max-height: 80px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 18px;

  color: var(--harbor-white-300);
  font-weight: 500;
  font-size: 16px;

  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);

  transition: 0.3s;
}

.brand-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}

.brand-card img {
  max-width: 160px;
  max-height: 80px;
  object-fit: cover;
  border-radius: 15px;
  transition: 0.3s;
  filter: invert(100%) sepia(10%) grayscale(100%) brightness(85%);
}

.brand-card img:hover {
  filter: invert(0) sepia(0) grayscale(0) brightness(100%);
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.process-section {
  padding: 80px 0px;
  display: flex;
  align-items: flex-start;
}

.sticky-left {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(232, 35, 31, 0.3);
  background: rgba(232, 35, 31, 0.07);
  margin-bottom: 30px;
}

.tag-dot {
  width: 18px;
  height: 18px;
  background: var(--harbor-red-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tag-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.tag-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--harbor-red-300);
}

.sticky-headline {
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--harbor-white-50);
  margin-bottom: 24px;
}

.sticky-headline .red {
  font-size: 70px;
  font-style: italic;
  font-family: var(--cursive-font);
  color: var(--harbor-red-400);
}

.sticky-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--harbor-white-600);
  line-height: 1.75;
  margin-bottom: 25px;
}

.step-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 24px;
}

.step-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  cursor: pointer;
  opacity: 0.35;
  transition: opacity 0.3s;
  position: relative;
}

.step-nav-item::before {
  content: '';
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0%;
  background: var(--harbor-red-400);
  transition: height 0.3s;
}

.step-nav-item.active {
  opacity: 1;
}

.step-nav-item.active::before {
  height: 100%;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--harbor-white-500);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.step-nav-item.active .step-num {
  background: var(--harbor-red-400);
  border-color: var(--harbor-red-400);
  color: #fff;
}

.step-nav-label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--harbor-white-400);
  transition: color 0.3s;
}

.step-nav-item.active .step-nav-label {
  color: var(--harbor-white-100);
}

.scroll-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.process-card {
  position: relative;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--harbor-dark-800);
  padding: 40px 40px 36px;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s;
  cursor: default;
}

.process-card:hover {
  border-color: rgba(232, 35, 31, 0.35);
  transform: translateX(-6px);
}

.process-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 35, 31, 0.08) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity 0.35s;
  opacity: 0;
}

.process-card:hover::before {
  opacity: 1;
}

.process-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.card-inner {
  position: relative;
  z-index: 1;
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.card-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(232, 35, 31, 0.1);
  border: 1px solid rgba(232, 35, 31, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.process-card:hover .card-icon-wrap {
  background: rgba(232, 35, 31, 0.18);
  border-color: rgba(232, 35, 31, 0.4);
}

.card-icon-wrap svg {
  width: 26px;
  height: 26px;
  stroke: var(--harbor-red-400);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-step-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--harbor-white-700);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.card-title {
  font-size: clamp(26px, 2.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--harbor-white-50);
  margin-bottom: 14px;
  line-height: 1.1;
}

.card-title .red {
  color: var(--harbor-red-400);
}

.card-body {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--harbor-white-600);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 520px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.card-tag {
  padding: 5px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 400;
  color: var(--harbor-white-500);
  letter-spacing: 0.2px;
  transition: border-color 0.2s, color 0.2s;
}

.process-card:hover .card-tag {
  border-color: rgba(232, 35, 31, 0.2);
  color: var(--harbor-white-300);
}

.card-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}

.card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.card-stat {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 7px;
}

.stat-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--harbor-red-400);
  flex-shrink: 0;
}

.stat-pill-text {
  font-size: 12.5px;
  color: var(--harbor-white-600);
}

.card-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--harbor-white-300);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.22s, color 0.22s, background 0.22s, transform 0.18s;
  white-space: nowrap;
}

.card-btn:hover {
  border-color: rgba(232, 35, 31, 0.4);
  color: var(--harbor-white-50);
  background: rgba(232, 35, 31, 0.08);
  transform: translateY(-1px);
}

.card-btn-arrow {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: transform 0.2s, background 0.2s;
}

.card-btn:hover .card-btn-arrow {
  transform: translateX(3px);
  background: rgba(232, 35, 31, 0.2);
}

.card-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--harbor-red-400) 0%, transparent 80%);
  opacity: 0;
  transition: opacity 0.35s;
}

.process-card:hover .card-accent-bar {
  opacity: 1;
}

/* --------------------------------------------------------------------------------- OUR SOLUTION SECTION */
.solutions-section {
  padding: 80px 0px;
  overflow-x: hidden;
}

.solution-head-wrap {
  text-align: center;
  margin-bottom: 45px;
}

.solution-sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(232, 35, 31, 0.3);
  background: rgba(232, 35, 31, 0.07);
  margin-bottom: 20px;
}

.solution-sec-tag-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--harbor-red-300);
}

.solution-sec-title {
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--harbor-white-50);
  line-height: 1.05;
}

.solution-sec-title .red {
  font-size: 60px;
  font-weight: 700;
  font-style: italic;
  font-family: var(--cursive-font);
  color: var(--harbor-red-400);
}

.filter-bar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--harbor-dark-800);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  position: relative;
  padding: 10px 10px;
  border-radius: 11px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--harbor-white-600);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s, background 0.25s, border-color 0.25s;
  outline: none;
}

.filter-btn:hover:not(.active) {
  color: var(--harbor-white-200);
  background: rgba(255, 255, 255, 0.04);
}

.filter-btn.active {
  background: var(--harbor-red-400);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--harbor-shadow-accent);
}

.sol-text-col {
  position: relative;
}

.sol-content {
  position: relative;
}

.sol-content.exiting {
  animation: solExit 0.32s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.sol-content.entering {
  animation: solEnter 0.45s cubic-bezier(0, 0, 0.2, 1) forwards;
}

@keyframes solExit {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    transform: translateY(-18px) scale(0.98);
  }
}

@keyframes solEnter {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.sol-step-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.sol-step-line {
  width: 30px;
  height: 2px;
  background: var(--harbor-red-400);
  border-radius: 1px;
}

.sol-step-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--harbor-red-300);
}

.sol-title {
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--harbor-white-50);
  line-height: 1.1;
  margin-bottom: 18px;
}

.sol-title .red {
  color: var(--harbor-red-400);
}

.sol-body {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--harbor-white-600);
  line-height: 1.85;
  margin-bottom: 30px;
  max-width: 460px;
}

.sol-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sol-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  color: var(--harbor-white-400);
  font-weight: 400;
  transition: color 0.2s;
}

.sol-features li:last-child {
  border-bottom: none;
}

.sol-features li:hover {
  color: var(--harbor-white-100);
}

.feat-check {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(232, 35, 31, 0.1);
  border: 1px solid rgba(232, 35, 31, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feat-check svg {
  width: 11px;
  height: 11px;
  stroke: var(--harbor-red-400);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sol-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sol-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 12px;
  background: var(--harbor-red-400);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--harbor-shadow-accent);
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
}

.sol-btn-primary:hover {
  background: var(--harbor-red-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 35, 31, 0.4);
  color: #fff;
}

.sol-btn-arrow {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: transform 0.2s;
}

.sol-btn-primary:hover .sol-btn-arrow {
  transform: translateX(3px);
}

.sol-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: var(--harbor-white-500);
  font-size: 13.5px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.22s, color 0.22s, background 0.22s;
}

.sol-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--harbor-white-100);
  background: rgba(255, 255, 255, 0.05);
}

.sol-image-col {
  position: relative;
}

.sol-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--harbor-dark-700);
}

.sol-image-frame.exiting {
  animation: imgExit 0.32s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.sol-image-frame.entering {
  animation: imgEnter 0.45s cubic-bezier(0, 0, 0.2, 1) forwards;
}

@keyframes imgExit {
  from {
    opacity: 1;
    transform: scale(1) translateX(0);
  }

  to {
    opacity: 0;
    transform: scale(1.04) translateX(12px);
  }
}

@keyframes imgEnter {
  from {
    opacity: 0;
    transform: scale(1.06) translateX(-12px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}

.sol-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.5s;
}

.sol-image-frame:hover img {
  filter: grayscale(0%);
}

.sol-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(5, 5, 4, 0.4) 0%,
      transparent 50%,
      rgba(232, 35, 31, 0.06) 100%);
  z-index: 1;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.sol-img-corner {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 80px;
  height: 80px;
  border-top: 2px solid var(--harbor-red-400);
  border-right: 2px solid var(--harbor-red-400);
  border-radius: 0 24px 0 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.6;
}

/* ------------------------------------------------------------------------------- GALLERY AND CREATIVE SECTION */
.dh-gallery-intro {
  padding: 80px 0px 60px;
  text-align: center;
  margin: 0 auto;
  overflow-x: hidden;
}

.dh-gallery-intro__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(232, 35, 31, 0.3);
  background: rgba(232, 35, 31, 0.07);
  margin-bottom: 22px;
}

.dh-gallery-intro__tag-dot {
  width: 18px;
  height: 18px;
  background: var(--harbor-red-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dh-gallery-intro__tag-dot::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}

.dh-gallery-intro__tag-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--harbor-red-300);
}

.dh-gallery-intro__title {
  font-size: 50px;
  font-weight: 600;
  color: var(--harbor-white-50);
  margin-bottom: 18px;
}

.dh-gallery-intro__title .dh-red {
  color: var(--harbor-red-400);
  font-size: 60px;
  font-style: italic;
  font-family: var(--cursive-font);
}

.dh-gallery-intro__sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--harbor-white-600);
  line-height: 1.75;
}

.dh-gallery-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dh-gallery {
  position: relative;
  width: 100%;
  height: 100%;
  flex: none;
}

.dh-gallery__item {
  background-position: 50% 50%;
  background-size: cover;
  flex: none;
  position: relative;
  overflow: hidden;
}

.dh-gallery__item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.5s ease;
}

.dh-gallery__item:hover img {
  transform: scale(1.06);
}

.dh-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(5, 5, 4, 0.35) 0%,
      transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.dh-gallery__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 3px solid var(--harbor-red-400);
  border-left: 3px solid var(--harbor-red-400);
  border-radius: 2px 0 0 0;
  z-index: 2;
  transition: width 0.35s ease, height 0.35s ease;
}

.dh-gallery__item:hover::before {
  width: 40px;
  height: 40px;
}

.dh-gallery--bento {
  display: grid;
  gap: 1vh;
  grid-template-columns: repeat(3, 32.5vw);
  grid-template-rows: repeat(4, 23vh);
  justify-content: center;
  align-content: center;
}

.dh-gallery--final.dh-gallery--bento {
  grid-template-columns: repeat(3, 100vw);
  grid-template-rows: repeat(4, 49.5vh);
  gap: 1vh;
}

.dh-gallery--bento .dh-gallery__item:nth-child(1) {
  grid-area: 1 / 1 / 3 / 2;
}

.dh-gallery--bento .dh-gallery__item:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}

.dh-gallery--bento .dh-gallery__item:nth-child(3) {
  grid-area: 2 / 2 / 4 / 3;
}

.dh-gallery--bento .dh-gallery__item:nth-child(4) {
  grid-area: 1 / 3 / 3 / 3;
}

.dh-gallery--bento .dh-gallery__item:nth-child(5) {
  grid-area: 3 / 1 / 3 / 2;
}

.dh-gallery--bento .dh-gallery__item:nth-child(6) {
  grid-area: 3 / 3 / 5 / 4;
}

.dh-gallery--bento .dh-gallery__item:nth-child(7) {
  grid-area: 4 / 1 / 5 / 2;
}

.dh-gallery--bento .dh-gallery__item:nth-child(8) {
  grid-area: 4 / 2 / 5 / 3;
}

.dh-gallery-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.dh-gallery-scroll-cue__text {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--harbor-white-700);
  font-weight: 500;
}

.dh-gallery-scroll-cue__track {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}

.dh-gallery-scroll-cue__track::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--harbor-red-400);
  animation: dh-scroll-drop 2s ease-in-out infinite;
}

@keyframes dh-scroll-drop {
  0% {
    top: -50%;
  }

  100% {
    top: 120%;
  }
}

.dh-gallery-content {
  padding: 100px 100px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.dh-gallery-content::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 80px;
  bottom: 80px;
  width: 2px;
  background: linear-gradient(180deg,
      transparent 0%,
      var(--harbor-red-400) 20%,
      var(--harbor-red-400) 80%,
      transparent 100%);
  border-radius: 2px;
  opacity: 0.25;
}

.dh-gallery-content__header {
  margin-bottom: 40px;
}

.dh-gallery-content__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.dh-gallery-content__label-line {
  width: 28px;
  height: 2px;
  background: var(--harbor-red-400);
  border-radius: 1px;
}

.dh-gallery-content__label-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--harbor-red-300);
}

.dh-gallery-content__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--harbor-white-50);
  line-height: 1.1;
}

.dh-gallery-content__title .dh-red {
  color: var(--harbor-red-400);
}

.dh-gallery-content__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 32px 0;
}

.dh-gallery-content p {
  font-size: 15px;
  font-weight: 300;
  color: var(--harbor-white-600);
  line-height: 1.85;
  margin-bottom: 22px;
  max-width: 760px;
}

.dh-gallery-content p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------------------- SUPPORT SECTION */
.ms-section {
  position: relative;
  padding: 100px 0px 80px;
  overflow-x: hidden;
}

.ms-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.ms-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px 4px 7px;
  border-radius: 999px;
  border: 1px solid rgba(232, 35, 31, 0.28);
  background: rgba(232, 35, 31, 0.07);
  margin-bottom: 20px;
}

.ms-tag-dot {
  width: 16px;
  height: 16px;
  background: var(--harbor-red-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ms-tag-dot::after {
  content: '';
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
}

.ms-tag-text {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--harbor-red-300);
}

.ms-headline {
  font-size: 50px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.07;
  color: var(--harbor-white-50);
  margin-bottom: 18px;
}

.ms-headline .red {
  font-size: 60px;
  font-style: italic;
  font-family: var(--cursive-font);
  color: var(--harbor-red-400);
}

.ms-body {
  font-size: 14.5px;
  font-weight: 300;
  color: var(--harbor-white-600);
  line-height: 1.8;
  margin-bottom: 36px;
}

.ms-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--harbor-white-200);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.2s;
}

.ms-cta:hover {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--harbor-white-50);
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-2px);
}

.ms-cta-arrow {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: transform 0.2s;
}

.ms-cta:hover .ms-cta-arrow {
  transform: translateX(3px);
}

.ms-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 5px;
  height: fit-content;
  flex-shrink: 0;
}

.ms-nav-btn {
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  background: transparent;
  color: var(--harbor-white-600);
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.25s, background 0.25s;
  outline: none;
}

.ms-nav-btn:hover:not(.active) {
  color: var(--harbor-white-300);
  background: rgba(255, 255, 255, 0.05);
}

.ms-nav-btn.active {
  background: rgba(255, 255, 255, 0.13);
  color: var(--harbor-white-50);
}

.ms-chart-wrap {
  position: relative;
  width: auto;
  height: 360px;
  overflow: visible;
}

.ms-bg-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: block;
}

.ms-columns {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 72px;
  right: 72px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.ms-col {
  position: relative;
  overflow: visible;
}

.ms-col:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background: repeating-linear-gradient(180deg,
      rgba(255, 255, 255, 0.09) 0px,
      rgba(255, 255, 255, 0.09) 5px,
      transparent 5px,
      transparent 12px);
  pointer-events: none;
  z-index: 1;
}

.ms-col-fill {
  position: absolute;
  bottom: 0;
  left: 8px;
  right: 8px;
  border-radius: 6px 6px 0 0;

  background: linear-gradient(180deg,
      var(--harbor-red-300),
      var(--harbor-red-500));

  box-shadow:
    0 0 20px rgba(232, 35, 31, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);

  height: 0;
  opacity: 0;

  transition:
    height 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}


.ms-col.active .ms-col-fill {
  opacity: 1;
}

.ms-col:nth-child(1).active .ms-col-fill {
  height: 22%;
}

.ms-col:nth-child(2).active .ms-col-fill {
  height: 42%;
}

.ms-col:nth-child(3).active .ms-col-fill {
  height: 63%;
}

.ms-col:nth-child(4).active .ms-col-fill {
  height: 84%;
}

.ms-card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 10;
  transition: opacity 0.3s ease;
}

.ms-col:nth-child(1) .ms-card {
  bottom: 24%;
}

.ms-col:nth-child(2) .ms-card {
  bottom: 44%;
}

.ms-col:nth-child(3) .ms-card {
  bottom: 65%;
}

.ms-col:nth-child(4) .ms-card {
  bottom: 86%;
}

.ms-card-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(16, 15, 14, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--harbor-white-700);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
  transition:
    border-color 0.3s,
    color 0.3s,
    background 0.3s,
    box-shadow 0.3s;
}

.ms-col.active .ms-card-inner {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--harbor-white-50);
  background: rgba(10, 10, 8, 0.96);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.ms-card-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 18px;
  height: 18px;
  background: var(--harbor-red-400);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 8.5px;
  font-weight: 800;
  color: #fff;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.28s, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ms-col.active .ms-card-num {
  opacity: 1;
  transform: scale(1);
}

.ms-card-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.ms-col.active .ms-card-icon {
  background: rgba(232, 35, 31, 0.12);
  border-color: rgba(232, 35, 31, 0.28);
}

.ms-card-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--harbor-white-600);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s;
}

.ms-col.active .ms-card-icon svg {
  stroke: var(--harbor-red-400);
}

.ms-card-sub {
  font-size: 10.5px;
  color: var(--harbor-white-700);
  transition: color 0.3s;
}

.ms-col.active .ms-card-sub {
  color: var(--harbor-white-500);
}

.ms-col-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  white-space: nowrap;
  transition: color 0.3s;
  z-index: 3;
}

.ms-col.active .ms-col-label {
  color: rgba(212, 245, 100, 0.6);
}

.ms-detail {
  padding: 32px 0 68px;
}

.ms-detail-inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: 32px 36px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(14, 13, 12, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  animation-fill-mode: both;
}

.ms-detail-num {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  flex-shrink: 0;
  letter-spacing: -0.04em;
  user-select: none;
}

.ms-detail-num span {
  color: var(--harbor-red-400);
  opacity: 0.45;
}

.ms-detail-body {
  flex: 1;
  min-width: 0;
}

.ms-detail-title {
  font-family: 'Syne', sans-serif;
  font-size: 21px;
  font-weight: 800;
  color: var(--harbor-white-50);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.ms-detail-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--harbor-white-600);
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 580px;
}

.ms-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ms-detail-tag {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11.5px;
  color: var(--harbor-white-500);
}

.ms-detail-tag.red {
  border-color: rgba(232, 35, 31, 0.25);
  background: rgba(232, 35, 31, 0.07);
  color: var(--harbor-red-300);
}

.ms-anim {
  animation: msIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes msIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------------------------------------------------------------------------- PREMIUM SERVICE SECTION */
.features-section {
  position: relative;
  padding: 80px 0;
  background: var(--harbor-dark-900);
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

.glow-tr {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 35, 31, 0.13) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.glow-bl {
  position: absolute;
  bottom: -100px;
  left: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 35, 31, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.section-inner {
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--harbor-red-300);
  margin-bottom: 20px;
}

.eyebrow-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--harbor-red-400);
  animation: pip-pulse 2.2s ease-in-out infinite;
}

@keyframes pip-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.55;
  }
}

.features-sec-title {
  font-size: clamp(36px, 4.8vw, 58px);
  font-weight: 800;
  color: var(--harbor-white-100);
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 20px;
}

.features-sec-title .accent {
  font-size: 60px;
  color: var(--harbor-red-400);
  font-family: var(--cursive-font);
  font-style: italic;
}

.features-sec-subtitle {
  font-size: 15.5px;
  font-weight: 400;
  color: var(--harbor-dark-300);
  max-width: 440px;
  line-height: 1.72;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feat-card {
  position: relative;
  background: var(--harbor-dark-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 34px 26px 30px;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(36px);
  animation: cardRise 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s ease,
    border-color 0.3s;
}

.feat-card:nth-child(1) {
  animation-delay: 0.08s;
}

.feat-card:nth-child(2) {
  animation-delay: 0.18s;
}

.feat-card:nth-child(3) {
  animation-delay: 0.28s;
}

.feat-card:nth-child(4) {
  animation-delay: 0.38s;
}

@keyframes cardRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feat-card:hover {
  transform: translateY(-7px);
  border-color: rgba(232, 35, 31, 0.22);
  box-shadow:
    0 0 0 1px rgba(232, 35, 31, 0.10),
    0 24px 56px rgba(0, 0, 0, 0.55),
    0 4px 14px rgba(232, 35, 31, 0.18);
}

.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

.feat-card::after {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(232, 35, 31, 0.18), transparent 70%);
  border-radius: 0 22px 0 0;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.feat-card:hover::after {
  opacity: 1;
}

.card-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--harbor-red-500), var(--harbor-red-300));
  border-radius: 0 0 22px 22px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.feat-card:hover .card-bottom-bar {
  transform: scaleX(1);
}

.feat-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 15px;
  background: rgba(232, 35, 31, 0.10);
  border: 1px solid rgba(232, 35, 31, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  transition: background 0.32s, border-color 0.32s, transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.feat-card:hover .feat-icon-wrap {
  background: var(--harbor-red-500);
  border-color: var(--harbor-red-400);
  transform: scale(1.1) rotate(-4deg);
}

.feat-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--harbor-red-400);
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.28s;
}

.feat-card:hover .feat-icon-wrap svg {
  stroke: var(--harbor-white-50);
}

.feat-num {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--harbor-red-600);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  transition: color 0.25s;
}

.feat-card:hover .feat-num {
  color: var(--harbor-red-400);
}

.feat-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--harbor-white-200);
  line-height: 1.3;
  margin-bottom: 11px;
  position: relative;
  z-index: 1;
}

.feat-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--harbor-dark-300);
  line-height: 1.68;
  position: relative;
  z-index: 1;
}

.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--harbor-red-400);
  text-decoration: none;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s, color 0.2s;
}

.feat-card:hover .feat-link {
  opacity: 1;
  transform: translateY(0);
}

.feat-link:hover {
  color: var(--harbor-red-300);
}

.feat-link svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

.feat-link:hover svg {
  transform: translateX(3px);
}

.stats-bar {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  background: var(--harbor-dark-800);
}

.stat-cell {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.28s;
  opacity: 0;
  animation: statIn 0.5s ease forwards;
}

.stat-cell:nth-child(1) {
  animation-delay: 0.55s;
}

.stat-cell:nth-child(2) {
  animation-delay: 0.65s;
}

.stat-cell:nth-child(3) {
  animation-delay: 0.75s;
}

.stat-cell:nth-child(4) {
  animation-delay: 0.85s;
  border-right: none;
}

@keyframes statIn {
  to {
    opacity: 1;
  }
}

.stat-cell:hover {
  background: rgba(232, 35, 31, 0.07);
}

.stat-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--harbor-red-400);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-lbl {
  font-size: 12px;
  font-weight: 500;
  color: var(--harbor-dark-300);
  letter-spacing: 0.3px;
}

/* ---------------------------------------------------------------------------------------------------- FAQS SECTION */
.faq-premium {
  background: #050504;
  color: #fff;
  padding: 80px 0px;
  position: relative;
}

.faq-premium::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 35, 31, 0.12), transparent 70%);
  top: -100px;
  left: -100px;
  filter: blur(120px);
}

.faq-left {
  position: relative;
}

.faq-left-inner {
  position: sticky;
  top: 120px;
}

.faq-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: #aaa;
  margin-bottom: 20px;
}

.faq-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.faq-desc {
  color: #888;
  font-size: 15px;
  margin-bottom: 40px;
}

.faq-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
}

.faq-highlight-number {
  font-size: 40px;
  font-weight: 700;
  color: #e8231f;
}

.faq-highlight-text {
  color: #aaa;
}

.faq-right {
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 20px;
}

.faq-right::-webkit-scrollbar {
  width: 6px;
}

.faq-right::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
}

.faq-card {
  border-radius: 18px;
  margin-bottom: 16px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-card.active {
  background: rgba(232, 35, 31, 0.08);
  border-color: rgba(232, 35, 31, 0.4);
  box-shadow: 0 10px 40px rgba(232, 35, 31, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
}

.faq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #111;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #fff;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
  top: 9px;
  left: 5px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  top: 5px;
  left: 9px;
}

.faq-card.active .faq-icon::after {
  display: none;
}

.faq-answer {
  margin-top: 14px;
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-card.active .faq-answer {
  max-height: 200px;
}

/* ---------------------------------------------------------------------------------------------- BLOGS SECTION */
.blogs-premium {
  background: var(--harbor-dark-900);
  padding: 80px 0px;
  overflow-x: hidden;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.bf-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.bf-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.2));
}

.blog-featured:hover img {
  transform: scale(1.05);
}

.bf-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bf-tag {
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: fit-content;
  margin-bottom: 14px;
}

.bf-content h2 {
  font-size: 34px;
  font-weight: 600;
  color: var(--harbor-white-50);
  line-height: 1.3;
  margin-bottom: 16px;
}

.bf-content p {
  color: var(--harbor-white-600);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.bf-footer {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--harbor-white-600);
}

.bf-footer a {
  color: var(--harbor-red-300);
  text-decoration: none;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  overflow: hidden;
  /*border: 1px solid rgba(255, 255, 255, 0.06);*/
  backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(232, 35, 31, 0.3);
  box-shadow: 0 20px 60px rgba(232, 35, 31, 0.15);
}

.blog-img {
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-content {
  padding: 18px;
}

.blog-tag {
  font-size: 10px;
  color: var(--harbor-red-300);
  margin-bottom: 8px;
  display: inline-block;
}

.blog-content h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--harbor-white-200);
  margin-bottom: 10px;
  line-height: 1.5;
}

.blog-card:hover h3 {
  color: var(--harbor-white-50);
}

.blog-date {
  font-size: 12px;
  color: var(--harbor-white-600);
}

.btn-17,
.btn-17 *,
.btn-17 :after,
.btn-17 :before,
.btn-17:after,
.btn-17:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-17 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #000;
  background-image: none;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
  text-transform: uppercase;
}

.btn-17:disabled {
  cursor: default;
}

.btn-17:-moz-focusring {
  outline: auto;
}

.btn-17 svg {
  display: block;
  vertical-align: middle;
}

.btn-17 [hidden] {
  display: none;
}

.btn-17 {
  border-radius: 99rem;
  border-width: 2px;
  padding: 8px 15px;
  z-index: 0;
}

.btn-17,
.btn-17 .text-container {
  overflow: hidden;
  position: relative;
}

.btn-17 .text-container {
  display: block;
  mix-blend-mode: difference;
}

.btn-17 .text {
  display: block;
  position: relative;
}

.btn-17:hover .text {
  -webkit-animation: move-up-alternate 0.3s forwards;
  animation: move-up-alternate 0.3s forwards;
}

.btn-17:hover .text {
  color: #000000;
}

.btn-17:hover .text-container {
  mix-blend-mode: normal;
}

@-webkit-keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80%);
  }

  51% {
    transform: translateY(-80%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80%);
  }

  51% {
    transform: translateY(-80%);
  }

  to {
    transform: translateY(0);
  }
}

.btn-17:after,
.btn-17:before {
  --skew: 0.2;
  background: #ff0000;
  content: "";
  display: block;
  height: 102%;
  left: calc(-50% - 50% * var(--skew));
  pointer-events: none;
  position: absolute;
  top: -104%;
  transform: skew(calc(150deg * var(--skew))) translateY(var(--progress, 0));
  transition: transform 0.2s ease;
  width: 100%;
}

.btn-17:after {
  --progress: 0%;
  left: calc(50% + 50% * var(--skew));
  top: 102%;
  z-index: -1;
}

.btn-17:hover:before {
  --progress: 100%;
}

.btn-17:hover:after {
  --progress: -102%;
}

/* --------------------------------------------------------------------------------------------------------- TESTIMONIALS SECTION */



/* ------------------------------------------------------------------------------------- FOOTER SECTION */
.footer {
  position: relative;
  overflow-x: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: url('../images/backgrounds/footer-background.jpeg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(0.55);
}

.footer>*:not(.footer-bg):not(.footer-vignette):not(.footer-grain) {
  position: relative;
  z-index: 3;
}

.footer-cta {
  padding: 60px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-cta-left {}

.footer-cta-sub {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--harbor-white-600);
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}

.footer-cta-email {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--harbor-white-50);
  text-decoration: none;
  display: inline-block;
  transition: color 0.25s;
  position: relative;
}

.footer-cta-email::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  height: 3px;
  width: 0;
  background: var(--harbor-red-400);
  border-radius: 2px;
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-cta-email:hover {
  color: var(--harbor-white-100);
}

.footer-cta-email:hover::after {
  width: 100%;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--harbor-white-100);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-cta-btn:hover {
  background: var(--harbor-red-400);
  border-color: var(--harbor-red-400);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--harbor-shadow-accent);
}

.footer-cta-btn-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}

.footer-cta-btn:hover .footer-cta-btn-icon {
  background: rgba(255, 255, 255, 0.22);
}

.footer-cta-btn-icon svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-main {
  padding: 56px 0px 52px;
  display: grid;
  grid-template-columns: 260px 1fr 1fr 1fr 1fr;
  gap: 40px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand {}

.footer-logo img {
  width: 190px;
  height: 80px;

}

.footer-logo-dot {
  width: 7px;
  height: 7px;
  background: var(--harbor-red-400);
  border-radius: 50%;
  display: inline-block;
  margin-left: 1px;
  flex-shrink: 0;
}

.footer-brand-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--harbor-white-700);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 210px;
}

.footer-deck-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition: border-color 0.22s, background 0.22s;
}

.footer-deck-badge:hover {
  border-color: rgba(232, 35, 31, 0.3);
  background: rgba(232, 35, 31, 0.06);
}

.footer-deck-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(232, 35, 31, 0.15);
  border: 1px solid rgba(232, 35, 31, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-deck-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--harbor-red-300);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-deck-info {}

.footer-deck-name {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--harbor-white-300);
  line-height: 1.2;
}

.footer-deck-src {
  font-size: 10.5px;
  font-weight: 300;
  color: var(--harbor-white-700);
}

.footer-col-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--harbor-white-50);
  margin-bottom: 18px;
}

.footer-main ul {
  padding-left: 0 !important;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--harbor-white-600);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--harbor-white-100);
  padding-left: 4px;
}

.footer-contact-item {
  margin-bottom: 18px;
}

.footer-contact-num {
  font-size: 14px;
  font-weight: 500;
  color: var(--harbor-white-200);
  display: block;
  margin-bottom: 4px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-num:hover {
  color: var(--harbor-red-300);
}

.footer-contact-addr {
  font-size: 14px;
  font-weight: 300;
  color: var(--harbor-white-700);
  line-height: 1.6;
}

.footer-bottom {
  padding: 20px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-copyright {
  font-size: 14px;
  color: var(--harbor-white-100);
  font-weight: 600;
}

.footer-copyright strong {
  color: var(--harbor-white-100);
  font-weight: 600;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.footer-policy-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--harbor-white-700);
  text-decoration: none;
  transition: color 0.2s;
  color: var(--harbor-red-400);
}

.footer-policy-link:hover {
  color: var(--harbor-dark-400);
}

.footer-policy-sep {
  width: 4px;
  height: 4px;
  background: var(--harbor-red-400);
  border-radius: 50%;
  opacity: 0.6;
}

/* ------------------------------------------------------------------------------------- BREADCRUMB SECTION */
.breadcrumb-wrap {
  position: relative;
  margin: 15px;
  border-radius: 28px;
  overflow: hidden;
  min-height: 460px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--harbor-dark-900);
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.breadcrumb-bg {
  position: absolute;
  inset: 0;
  background: url('../images/backgrounds/footer-background.jpeg');
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  z-index: 0;
}

.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(14, 13, 12, 0.7), rgba(14, 13, 12, 0.9)),
    radial-gradient(circle at 80% 20%, rgba(232, 35, 31, 0.25), transparent 60%);
  z-index: 1;
}

.breadcrumb-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 35, 31, 0.25), transparent 70%);
  top: -100px;
  right: -100px;
  filter: blur(80px);
  z-index: 2;
  animation: glowFloat 6s ease-in-out infinite alternate;
}

@keyframes glowFloat {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(-40px, 40px);
  }
}

.breadcrumb-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  z-index: 3;
  pointer-events: none;
}

.breadcrumb-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 150px 20px 80px;
  animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.breadcrumb-inner {
  max-width: 760px;
  margin: auto;
}

.breadcrumb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;

  background: rgba(232, 35, 31, 0.1);
  border: 1px solid rgba(232, 35, 31, 0.25);

  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--harbor-red-300);

  margin-bottom: 22px;
}

.breadcrumb-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--harbor-red-400);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--harbor-red-400);
}

.breadcrumb-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--harbor-white-50);
  margin-bottom: 18px;
}

.breadcrumb-title span {
  font-weight: 600;
  font-style: italic;
  font-family: var(--cursive-font);
  font-size: 45px;
  color: var(--harbor-red-400);
}

.breadcrumb-sub {
  font-size: 15px;
  color: var(--harbor-white-500);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 26px;
}

.breadcrumb-path {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 20px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.breadcrumb-path a {
  text-decoration: none;
  font-size: 14px;
  color: var(--harbor-white-400);
  transition: all 0.25s ease;
}

.breadcrumb-path a:hover {
  color: var(--harbor-red-300);
}

.breadcrumb-sep {
  color: var(--harbor-white-700);
}

.breadcrumb-path .active {
  color: var(--harbor-white-100);
  font-weight: 500;
}

.breadcrumb-wrap #navbar {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  z-index: 10;
}

/* ------------------------------------------------------------------------------ ABOUT PAGE SECTION */
.values-section {
  padding: 0px 0px 80px;
  background: var(--harbor-dark-900);
}

.about-card {
  position: relative;
  border-radius: 22px;
  background: var(--harbor-dark-700);
  border: 1px solid rgba(255, 255, 255, 0.055);
  cursor: default;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px 36px;

  opacity: 0;
  transform: translateY(28px);
  animation: cardIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;

  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  will-change: transform;
}

.about-card,
.about-card-icon-wrap,
.about-card-reveal {
  backface-visibility: hidden;
  transform: translateZ(0);
}


.about-card:nth-child(1) {
  animation-delay: 0.05s
}

.about-card:nth-child(2) {
  animation-delay: 0.13s
}

.about-card:nth-child(3) {
  animation-delay: 0.21s
}

.about-card:nth-child(4) {
  animation-delay: 0.29s
}

.about-card:nth-child(5) {
  animation-delay: 0.37s
}

.about-card:nth-child(6) {
  animation-delay: 0.45s
}

@keyframes cardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-card:hover {
  transform: translateY(-10px) scale(1.01);
}

.about-card:hover .about-card-glow {
  opacity: 1;
}

.about-card-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 0 0 22px 22px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.about-card:hover .about-card-line {
  transform: scaleX(1);
}

.about-card-icon-wrap {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.about-card:hover .about-card-icon-wrap {
  transform: translateY(-70px) scale(1.05);
}


.about-card-icon-wrap img {
  width: 100px;
  height: 100px;
  filter: brightness(0) saturate(100%) invert(19%) sepia(92%) saturate(5147%) hue-rotate(356deg) brightness(92%) contrast(108%);
}

.about-card-label {
  position: relative;
  z-index: 2;
  font-size: 19px;
  font-weight: 700;
  color: var(--harbor-white-100);
  letter-spacing: -0.3px;
  text-align: center;
  margin-top: 24px;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s ease;
}

.about-card:hover .about-card-label {
  transform: translateY(-10px);
  color: var(--harbor-white-50);
}

.about-card-reveal {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  max-height: 0;
  will-change: max-height, opacity, transform;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-card:hover .about-card-reveal {
  max-height: 200px;

  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.reveal-rule {
  width: 32px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--accent), rgba(232, 35, 31, 0.3));
  border-radius: 2px;
  margin: 10px auto 0px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.18s;
}

.about-card:hover .reveal-rule {
  transform: scaleX(1);
}

.reveal-text {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--harbor-dark-200);
  line-height: 1.72;
  text-align: center;
}

/* ---------------------------------------------------------------------------------------------------------- PRODUCTS PAGES */
.product-section {
  padding: 80px 0;
}

#gallery-sticky {
  position: sticky;
  top: 110px;
  align-self: flex-start;
}

.gallery-col {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.thumb-strip {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.07);
  background: var(--harbor-dark-700);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  flex-shrink: 0;
}

.thumb:hover {
  transform: scale(1.04);
  border-color: rgba(232, 35, 31, 0.35);
}

.thumb.active {
  border-color: var(--harbor-red-400);
  box-shadow: 0 0 0 1px rgba(232, 35, 31, 0.15), var(--harbor-shadow-accent);
}

.main-viewer {
  flex: 1;
  position: relative;
  border-radius: 20px;
  /* overflow: hidden; */
  background: var(--harbor-dark-800);
  border: 1px solid rgba(255, 255, 255, 0.06);
  aspect-ratio: 4/4.5;
  min-height: 360px;
}

.viewer-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}

.vbadge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.vbadge-red {
  background: rgba(232, 35, 31, 0.18);
  border: 1px solid rgba(232, 35, 31, 0.32);
  color: var(--harbor-red-300);
}

.vbadge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.4)
  }
}

.viewer-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.vdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.vdot.active {
  background: var(--harbor-red-400);
  width: 18px;
  border-radius: 3px;
}

.detail-col {
  padding-left: 8px;
}

.product-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--harbor-red-400);
  margin-bottom: 14px;
}

.eyebrow-line {
  width: 22px;
  height: 2px;
  background: var(--harbor-red-400);
  border-radius: 2px;
}

.product-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--harbor-white-50);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.detail-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 22px 0;
}

.product-desc {
  font-size: 14.5px;
  font-weight: 400;
  color: var(--harbor-dark-300);
  line-height: 1.78;
  margin-bottom: 0;
}

.product-desc+.product-desc {
  margin-top: 14px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--harbor-white-400);
  background: var(--harbor-dark-800);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  cursor: default;
}

.pill:hover {
  border-color: rgba(232, 35, 31, 0.30);
  color: var(--harbor-white-200);
  background: rgba(232, 35, 31, 0.06);
}

.pill svg {
  width: 13px;
  height: 13px;
  stroke: var(--harbor-red-400);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.spec-cell {
  background: var(--harbor-dark-800);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color 0.25s, background 0.25s;
}

.spec-cell:hover {
  border-color: rgba(232, 35, 31, 0.18);
  background: rgba(232, 35, 31, 0.04);
}

.spec-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--harbor-dark-400);
  margin-bottom: 5px;
}

.spec-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--harbor-white-200);
}

.cta-product-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-enquire {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 12px;
  background: var(--harbor-red-400);
  color: var(--harbor-white-50);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: var(--harbor-shadow-accent);
  white-space: nowrap;
}

.btn-enquire:hover {
  background: var(--harbor-red-500);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 35, 31, 0.38);
  color: var(--harbor-white-50);
}

.btn-enquire svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--harbor-white-400);
  font-size: 14.5px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
  white-space: nowrap;
}

.btn-demo:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--harbor-white-100);
  background: rgba(255, 255, 255, 0.04);
}

.btn-demo svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-product-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--harbor-dark-400);
}

.trust-item svg {
  width: 13px;
  height: 13px;
  stroke: var(--harbor-dark-400);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.product-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--harbor-dark-400);
  margin-bottom: 12px;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.fade-up:nth-child(1) {
  animation-delay: 0.05s
}

.fade-up:nth-child(2) {
  animation-delay: 0.12s
}

.fade-up:nth-child(3) {
  animation-delay: 0.19s
}

.fade-up:nth-child(4) {
  animation-delay: 0.26s
}

.fade-up:nth-child(5) {
  animation-delay: 0.33s
}

.fade-up:nth-child(6) {
  animation-delay: 0.40s
}

.fade-up:nth-child(7) {
  animation-delay: 0.47s
}

.fade-up:nth-child(8) {
  animation-delay: 0.54s
}

.fade-up:nth-child(9) {
  animation-delay: 0.61s
}

.fade-up:nth-child(10) {
  animation-delay: 0.68s
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------------------------------------------------------------------- BLOGS PAGE */
.zx-blog-section {
  padding: 60px 0;
  overflow-x: hidden;
  background: var(--harbor-dark-900);
}

.zx-blog-card {
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.zx-blog-card:hover {
  transform: translateY(-6px);
}

.zx-blog-image-wrap {
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}

.zx-blog-image-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.zx-blog-card:hover img {
  transform: scale(1.05);
}

.zx-blog-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--harbor-white-100);
  margin-bottom: 14px;
  letter-spacing: -0.2px;
}

.zx-blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zx-blog-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--harbor-white-200);
  letter-spacing: 0.6px;
}

.zx-blog-date {
  font-size: 11px;
  color: var(--harbor-dark-400);
  letter-spacing: 0.5px;
}

.zx-blog-card:hover .zx-blog-title {
  color: var(--harbor-white-50);
}

/* ------------------------------------------------------------------------------------------ SOLUTIONS PAGE */
.nx-card-section {
  padding: 80px 0;
  background: var(--harbor-dark-900);
}

.nx-card-wrap {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.nx-card {
  position: relative;
  width: 360px;
  height: 400px;
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  background: var(--harbor-dark-800);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.nx-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
}

.nx-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.nx-card:hover .nx-card-img {
  transform: scale(1.08);
}

.nx-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.85) 15%,
      rgba(0, 0, 0, 0.55) 40%,
      rgba(0, 0, 0, 0.15) 70%,
      transparent 100%);
}

.nx-card-content {
  position: absolute;
  bottom: 0;
  padding: 22px;
  color: #fff;
  z-index: 2;
}

.nx-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.nx-card-desc {
  font-size: 12.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
}

.nx-card-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.nx-pill {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nx-btn {
  width: 100%;
  padding: 12px;
  border-radius: 999px;
  border: none;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  color: #111;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nx-btn:hover {
  background: var(--harbor-red-400);
  color: #fff;
}

/* -------------------------- 3D Tilt */
.nx-tilt-card {
  perspective: 1200px;
}

.nx-tilt-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  transform-style: preserve-3d;
  transition: transform 0.2s ease;
}

.nx-card-img {
  transform: translateZ(0);
  transition: transform 0.4s ease;
}

.nx-card-content {
  transform: translateZ(40px);
}

.nx-card-overlay {
  transform: translateZ(20px);
}

.nx-card-glare {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: radial-gradient(circle at 50% 50%,
      rgba(255, 255, 255, 0.25),
      transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.nx-tilt-card:hover .nx-card-img {
  transform: scale(1.1) translateZ(20px);
}

/* ---------------------------------------------------------------------------------------- CONTACT PAGE */
.contact-sec {
  padding: 80px 0;
  overflow-x: hidden;
}

.hb-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--harbor-dark-500);
}

.hb-left {
  background: var(--harbor-dark-700);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232, 35, 31, 0.12);
  border: 1px solid rgba(232, 35, 31, 0.25);
  border-radius: 20px;
  padding: 5px 12px;
  width: fit-content;
}

.hb-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--harbor-red-400);
}

.hb-badge-text {
  font-size: 11px;
  font-weight: 500;
  color: var(--harbor-red-300);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hb-heading {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  color: var(--harbor-white-100);
  margin-top: 14px;
}

.hb-heading span {
  color: var(--harbor-red-400);
}

.hb-sub {
  font-size: 14px;
  line-height: 1.65;
  color: var(--harbor-white-600);
  margin-top: 8px;
}

.hb-divider {
  height: 1px;
  background: var(--harbor-dark-500);
}

.hb-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hb-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hb-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(232, 35, 31, 0.10);
  border: 1px solid rgba(232, 35, 31, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hb-icon-wrap svg {
  width: 16px;
  height: 16px;
}

.hb-contact-label {
  font-size: 11px;
  color: var(--harbor-white-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.hb-contact-val {
  font-size: 13px;
  color: var(--harbor-white-200);
  font-weight: 500;
}

.hb-social-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--harbor-white-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.hb-socials {
  display: flex;
  gap: 8px;
}

.hb-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--harbor-dark-600);
  border: 1px solid var(--harbor-dark-400);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
}

.hb-social-btn:hover {
  background: var(--harbor-dark-500);
  border-color: var(--harbor-white-700);
}

.hb-social-btn svg {
  width: 14px;
  height: 14px;
}

.hb-right {
  background: var(--harbor-dark-700);
  padding: 40px 36px;
  border-left: 1px solid var(--harbor-dark-500);
}

.hb-form-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--harbor-white-100);
  margin-bottom: 6px;
}

.hb-form-sub {
  font-size: 13px;
  color: var(--harbor-white-600);
  margin-bottom: 28px;
  line-height: 1.5;
}

.hb-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.hb-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.hb-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--harbor-white-600);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hb-input {
  background: var(--harbor-dark-600);
  border: 1px solid var(--harbor-dark-400);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--harbor-white-200);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  font-family: inherit;
}

.hb-input::placeholder {
  color: var(--harbor-dark-300);
}

.hb-input:focus {
  border-color: var(--harbor-red-500);
  box-shadow: 0 0 0 3px rgba(232, 35, 31, 0.12);
}

.hb-textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}

.hb-submit {
  width: 100%;
  padding: 13px 24px;
  background: var(--harbor-red-400);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  margin-top: 4px;
  font-family: inherit;
}

.hb-submit:hover {
  background: var(--harbor-red-500);
  box-shadow: var(--harbor-shadow-accent);
}

.hb-submit:active {
  transform: scale(0.98);
}

.hb-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  justify-content: center;
}

.hb-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--harbor-dark-400);
}

.hb-trust-text {
  font-size: 11px;
  color: var(--harbor-white-700);
}

/* --------------------------------------------------------------------------------------------------------- GALLERY SECTION */
.sg-section {
  background: var(--harbor-dark-900);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.sg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  perspective: 1200px;
}

.sg-card {
  position: relative;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);

  transition: 0.5s;
}

.sg-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.sg-card::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(0px);
  transition: 0.5s;
}

.sg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  opacity: 0;
  transition: 0.4s;
}

.sg-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(232, 35, 31, 0.25);
  z-index: 2;
}

.sg-card:hover img {
  transform: scale(1.15);
}

.sg-card:hover .sg-overlay {
  opacity: 1;
}

.sg-grid:hover .sg-card:not(:hover) {
  transform: scale(0.95);
  filter: blur(2px) brightness(0.7);
}