@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #0b2a4a;
  --primary-dark: #081f36;
  --primary-soft: #123a63;
  --accent: #c8dff2;
  --sand: #eef4f8;
  --line: rgba(11, 42, 74, 0.1);
  --text-dark: #17212b;
  --text-muted: #5f6f82;
  --bg-light: #f4f7fa;
  --white: #ffffff;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 10px 30px rgba(10, 28, 48, 0.07);
  --shadow-md: 0 24px 60px rgba(10, 28, 48, 0.12);
  --shadow-lg: 0 40px 90px rgba(6, 18, 32, 0.18);
  --transition: all 0.28s ease;
}

html,
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background-color: var(--bg-light);
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  line-height: 1.65;
}

html.offcanvas-open,
body.offcanvas-open {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

body.offcanvas-open {
  position: fixed;
  inset: 0;
  width: 100%;
}

main {
  position: relative;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 0;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

p,
li {
  color: var(--text-muted);
}

p {
  margin-bottom: 0;
}

.lead {
  font-size: 1.1rem;
  font-weight: 400;
  color: #d9e3ec;
  line-height: 1.75;
}

.text-wemarine,
.text-primary {
  color: var(--primary) !important;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-surface {
  background: linear-gradient(180deg, #f7fafc 0%, #f4f7fa 100%);
}

.section-dark {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(77, 128, 179, 0.22), transparent 32%),
    linear-gradient(180deg, #081c31 0%, #0b2a4a 100%);
  overflow: hidden;
}

.section-light-accent {
  background:
    linear-gradient(180deg, #edf4f9 0%, #f7fbfd 100%);
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 3.5rem;
}

.section-heading p,
.section-intro {
  font-size: 1.02rem;
  margin-top: 1rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-soft);
  margin-bottom: 1rem;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.95rem 1.55rem;
  transition: var(--transition);
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-wemarine {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-wemarine:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.btn-outline-wemarine {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn-outline-wemarine:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-outline-light:hover {
  color: var(--primary) !important;
  background: #ffffff;
}

.navbar-dark .navbar-nav .nav-link {
  position: relative;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: #ffffff;
}

.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
  font-weight: 700;
}

.navbar-dark .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.navbar-custom {
  position: relative;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-switcher .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.language-switcher .dropdown-toggle::after {
  margin-left: 0.15rem;
}

.language-menu {
  min-width: 180px;
  padding: 0.35rem;
  border-radius: 16px;
  border: 1px solid rgba(11, 42, 74, 0.08);
  box-shadow: var(--shadow-md);
}

.language-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

.language-menu .dropdown-item.is-active,
.language-menu .dropdown-item:hover {
  background: var(--sand);
  color: var(--primary);
}

.language-option-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(11, 42, 74, 0.08);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.language-switcher-mobile {
  position: absolute;
  left: 0;
  z-index: 2;
  padding-left: 1rem
}

@media (min-width: 992px) {
  .navbar-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex: 1;
  }

  .navbar-menu-centered {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
  }

  .navbar-cta {
    margin-left: auto;
  }
}

.sidebar-mobile,
.sidebar-mobile .offcanvas-body {
  overflow-y: auto;
  overscroll-behavior: contain;
}

.sidebar-mobile {
  width: min(320px, 100vw);
  background-color: #0b2a4a !important;
  border-left: none;
  height: 100dvh;
  touch-action: pan-y;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.22);
}

.sidebar-mobile .offcanvas-header {
  position: relative;
  justify-content: center;
  padding: 1.5rem 1.25rem 1rem;
  border-bottom: none;
}

.sidebar-mobile .offcanvas-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 1.25rem 2rem;
  text-align: center;
}

.sidebar-mobile .offcanvas-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sidebar-mobile .btn-close {
  position: absolute;
  top: 1.35rem;
  right: 1rem;
}

.sidebar-mobile .logo {
  height: 70px;
  width: auto;
}

.sidebar-mobile .mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  margin-bottom: 0 !important;
}

.sidebar-mobile .mobile-nav-links .nav-item {
  width: auto;
}

.mobile-nav-links .nav-link {
  display: inline-flex;
  justify-content: center;
  position: relative;
  width: fit-content;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0.4rem 0;
  border-bottom: none;
}

.mobile-nav-links .nav-link:hover,
.mobile-nav-links .nav-link.active {
  color: #ffffff;
}

.mobile-nav-links .nav-link.active {
  font-weight: 700;
}

.sidebar-mobile .mobile-nav-links .nav-link::after {
  content: "";
  position: absolute;
  display: block !important;
  left: 50%;
  bottom: -0.05rem;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transform: translateX(-50%);
  opacity: 0.9;
}

.sidebar-mobile .mobile-nav-links .nav-link.active::after {
  width: 72%;
}

.sidebar-mobile .btn {
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.sidebar-mobile .offcanvas-body > .mt-auto {
  margin-top: 0 !important;
  width: 100%;
}

.sidebar-mobile .offcanvas-body > .mt-auto .btn {
  opacity: 0;
  transform: translateY(16px);
}

.sidebar-mobile .mobile-nav-links .nav-item,
.sidebar-mobile .offcanvas-title {
  opacity: 0;
  transform: translateY(18px);
}

.sidebar-mobile.show .offcanvas-title,
.sidebar-mobile.show .mobile-nav-links .nav-item,
.sidebar-mobile.show .offcanvas-body > .mt-auto .btn {
  animation: sidebarFadeUp 0.5s ease forwards;
}

.sidebar-mobile.show .mobile-nav-links .nav-item:nth-child(1) {
  animation-delay: 0.08s;
}

.sidebar-mobile.show .mobile-nav-links .nav-item:nth-child(2) {
  animation-delay: 0.14s;
}

.sidebar-mobile.show .mobile-nav-links .nav-item:nth-child(3) {
  animation-delay: 0.2s;
}

.sidebar-mobile.show .mobile-nav-links .nav-item:nth-child(4) {
  animation-delay: 0.26s;
}

.sidebar-mobile.show .offcanvas-body > .mt-auto .btn:nth-child(1) {
  animation-delay: 0.32s;
}

.sidebar-mobile.show .offcanvas-body > .mt-auto .btn:nth-child(2) {
  animation-delay: 0.38s;
}

@keyframes sidebarFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
  padding: 0.25rem 0.35rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

@media (min-width: 992px) {
  .sidebar-mobile {
    display: none;
  }
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-brand {
  color: #ffffff !important;
}

.navbar-wemarine {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(16px);
  transition: background-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
}

.navbar-wemarine.scrolled {
  background-color: rgba(11, 42, 74, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}


.logo {
  height: 50px;
  width: auto;
  display: block;
}

#hero,
.page-header-section {
  position: relative;
  overflow: hidden;
}

#hero {
  min-height: 100svh;
  display: flex;
  align-items: end;
  padding: 8rem 0 4rem;
}

.hero-home {
  background: #061a2d;
}

.hero-img,
.page-header-section::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
  transform-origin: center;
}

.hero-img {
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 31, 0.88) 0%, rgba(4, 18, 31, 0.68) 52%, rgba(4, 18, 31, 0.82) 100%);
  z-index: 1;
}

.hero-grid,
.page-header-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 80%);
  z-index: 1;
}

.hero-content,
.page-header-content {
  position: relative;
  z-index: 2;
}

.hero-content h1,
.hero-content p,
.hero-content strong,
.hero-content span,
.page-header-content h1 {
  color: #ffffff;
}

.hero-lead {
  max-width: 760px;
  margin-top: 1.4rem;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}

.hero-panel-row + .hero-panel-row {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.35rem;
}

.hero-panel-note {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.76);
}

.hero-metrics {
  margin-top: 3rem;
}

.metric-card {
  height: 100%;
  padding: 1.35rem 1.4rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sm);
}

.metric-value {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.metric-card p {
  color: rgba(255, 255, 255, 0.82);
}

.trust-band {
  position: relative;
  margin-top: -2.25rem;
  z-index: 3;
}

.trust-band-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  border-radius: 18px;
}

.trust-item i {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--primary);
}

.orca-showcase {
  padding: 2rem 0 1rem;
}

.orca-showcase-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(232, 240, 247, 0.96) 100%);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 1.35rem;
  box-shadow: var(--shadow-md);
}

.orca-showcase-media {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #ffffff;
  min-height: 320px;
}

.orca-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.orca-showcase-copy {
  padding: 0.5rem 0.75rem;
}

.orca-showcase-copy h2 {
  max-width: 12ch;
}

.orca-showcase-copy p {
  margin-top: 1.15rem;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.service-feature-card,
.service-detail-card,
.value-card,
.identity-card,
.story-card,
.portfolio-card,
.faq-item,
.comparison-panel,
.info-panel,
.process-card {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.service-feature-card,
.service-detail-card {
  height: 100%;
  border-radius: 28px;
  padding: 1.9rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-feature-card:hover,
.service-detail-card:hover,
.portfolio-card:hover,
.value-card:hover,
.identity-card:hover,
.story-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.featured-dark {
  background: linear-gradient(180deg, #0c3154 0%, #0a233d 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.featured-dark h3,
.featured-dark p,
.featured-dark li,
.featured-dark .feature-index,
.featured-accent h3 {
  color: #ffffff;
}

.featured-dark .feature-icon,
.featured-accent .feature-icon,
.service-detail-top .feature-icon {
  background: rgba(255, 255, 255, 0.12);
}

.featured-accent {
  background: linear-gradient(180deg, #dcecf8 0%, #ffffff 100%);
}

.feature-icon {
  width: 3.35rem;
  height: 3.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1.25rem;
  background: var(--sand);
  color: var(--primary);
  font-size: 1.15rem;
}

.feature-index {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(11, 42, 74, 0.4);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.35rem;
}

.feature-list li + li {
  margin-top: 0.55rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.editorial-media-stack {
  position: relative;
  padding-right: 3rem;
}

.editorial-photo,
.visual-slab {
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.editorial-photo.large img,
.visual-slab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.25);
  transform-origin: center;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.1);
  transform-origin: center;
}

.editorial-photo.large {
  min-height: 560px;
}

.editorial-badge {
  position: absolute;
  right: 0;
  bottom: 2rem;
  width: min(320px, 88%);
  padding: 1.4rem;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.editorial-badge-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.45rem;
}

.process-flow {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.3rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-step h3,
.process-step p {
  color: #ffffff;
}

.process-step p {
  color: rgba(255, 255, 255, 0.72);
}

.process-step-number {
  width: 2.7rem;
  height: 2.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  font-weight: 700;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.75rem;
}

.filter-pill {
  border: 1px solid rgba(11, 42, 74, 0.16);
  background: #ffffff;
  color: var(--primary);
  border-radius: 999px;
  padding: 0.78rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  transition: var(--transition);
}

.filter-pill.is-active,
.filter-pill:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.compact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.portfolio-card {
  border-radius: 28px;
  overflow: hidden;
  transition: var(--transition);
}

.portfolio-card img {
  height: 280px;
}

.portfolio-card-body {
  padding: 1.35rem 1.35rem 1.5rem;
}

.portfolio-tag,
.service-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portfolio-tag {
  color: var(--primary);
  background: var(--sand);
  margin-bottom: 0.8rem;
}

.service-chip {
  color: var(--primary);
  background: rgba(11, 42, 74, 0.08);
}

.portfolio-card.is-hidden {
  display: none;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.value-card,
.identity-card,
.story-card {
  border-radius: 24px;
  padding: 1.45rem;
}

.value-card i,
.identity-card i {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--primary);
  background: var(--sand);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: 24px;
  padding: 1.4rem 1.5rem;
}

.faq-item p {
  margin-top: 0.7rem;
}

.cta-banner {
  padding: 0 0 6rem;
  background: linear-gradient(180deg, transparent 0%, var(--bg-light) 100%);
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem 2.4rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(200, 223, 242, 0.18), transparent 28%),
    linear-gradient(135deg, #0a2948 0%, #133a62 100%);
  box-shadow: var(--shadow-lg);
}

.cta-banner h2,
.cta-banner p {
  color: #ffffff;
}

.cta-banner p {
  margin-top: 0.75rem;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: flex-end;
}

.page-header-section {
  min-height: 78vh;
  display: flex;
  align-items: end;
  padding: 8rem 0 3.5rem;
}

.page-header-section::before {
  content: "";
  z-index: 0;
}

.page-hero-service::before {
  background: url("../img/tubolare-2/tub10.jpg") center center / cover no-repeat;
}

.page-hero-about::before {
  background: url("../img/tubolare-3/tub17.jpg") center center / cover no-repeat;
}

.page-hero-contact::before {
  background: url("../img/tubolare-3/tub20.jpg") center center / cover no-repeat;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 21, 36, 0.52) 0%, rgba(6, 21, 36, 0.88) 100%);
  z-index: 1;
}

.page-header-content {
  max-width: 900px;
}

.page-header-content p {
  max-width: 760px;
}

.info-panel {
  border-radius: 28px;
  padding: 1.5rem;
}

.info-panel-item + .info-panel-item {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.info-panel-item strong,
.comparison-row strong,
.metric-strip-item strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.service-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-mosaic .service-detail-card {
  grid-column: span 4;
}

.service-mosaic .wide-card {
  grid-column: span 8;
}

.service-mosaic .emphasis {
  background: linear-gradient(180deg, #0a2948 0%, #133a62 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.service-mosaic .emphasis h3,
.service-mosaic .emphasis p,
.service-mosaic .emphasis li,
.service-mosaic .emphasis .service-chip {
  color: #ffffff;
}

.service-mosaic .emphasis .service-chip {
  background: rgba(255, 255, 255, 0.12);
}

.dark-list li::before {
  background: #ffffff;
}

.service-detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.process-card {
  border-radius: 24px;
  padding: 1.4rem;
}

.process-card span {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--primary);
  font-weight: 700;
}

.comparison-panel {
  border-radius: 28px;
  padding: 1.75rem;
}

.comparison-panel h3 {
  margin-bottom: 1.2rem;
}

.comparison-row + .comparison-row {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.visual-slab {
  min-height: 470px;
}

.visual-slab.tall-slab {
  min-height: 540px;
}

.check-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.6rem;
}

.check-list div {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.check-list i {
  color: var(--primary);
  margin-top: 0.2rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.timeline-stack {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.3rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline-item h3 {
  color: #ffffff;
}

.timeline-item p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline-step {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary);
  font-weight: 700;
}

.metric-strip {
  display: grid;
  gap: 1rem;
  margin-top: 1.7rem;
}

.metric-strip-item {
  padding: 1.15rem 1.2rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.contact-direct-stack {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-direct-card,
.contact-form-shell {
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.contact-direct-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem;
  border-radius: 24px;
  transition: var(--transition);
}

.contact-direct-card:hover,
.contact-form-shell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-direct-card strong {
  color: var(--text-dark);
}

.contact-direct-icon {
  width: 3.15rem;
  height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--primary);
  font-size: 1.1rem;
}

.whatsapp-card {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  background: linear-gradient(135deg, #123a63 0%, #0b2a4a 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.whatsapp-card h3,
.whatsapp-card p {
  color: #ffffff;
}

.whatsapp-card .contact-direct-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.contact-inline-btn {
  white-space: nowrap;
}

.contact-form-shell {
  position: relative;
  border-radius: 30px;
  padding: 2rem;
  overflow: hidden;
}

.contact-form-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, #0b2a4a 0%, #3d678f 100%);
}

.contact-form-header {
  margin-bottom: 1.75rem;
}

.contact-form-header p {
  margin-top: 0.85rem;
}

.contact-form-note {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: #eef4f8;
  color: var(--text-muted);
  border: 1px solid rgba(11, 42, 74, 0.08);
}

.contact-form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form-feedback {
  display: none;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 600;
}

.contact-form-feedback.is-visible {
  display: block;
}

.contact-form-feedback.is-success {
  color: #0f5132;
  background: #d1e7dd;
  border-color: #badbcc;
}

.contact-form-feedback.is-error {
  color: #842029;
  background: #f8d7da;
  border-color: #f5c2c7;
}

.footer-section {
  background-color: #111827;
  color: #c4cbd4;
}

.footer-grid > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.footer-section h5 {
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.footer-section a {
  color: #c4cbd4;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-copy {
  display: grid;
  gap: 0.55rem;
  max-width: 340px;
}

.footer-copy p {
  margin: 0;
  line-height: 1.65;
}

.footer-links-list {
  display: grid;
  gap: 0.7rem;
}

.footer-links-list li {
  margin: 0;
}

.footer-link {
  display: inline-flex;
  width: fit-content;
  line-height: 1.35;
}

.footer-social-list {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: var(--transition);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.footer-section hr {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

#contact-form .form-control {
  border-radius: 12px;
  border: 1px solid #d0d5dd;
  padding: 14px 16px;
  transition: var(--transition);
  min-height: 54px;
  background: #fbfdff;
}

#contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11, 42, 74, 0.12);
  background: #ffffff;
}

#contact-form .form-label {
  font-weight: 600;
  color: var(--text-dark);
}

#contact-form textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html,
  body {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1199.98px) {
  .trust-band-inner,
  .portfolio-grid,
  .compact-grid,
  .service-mosaic,
  .value-grid,
  .story-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-mosaic .service-detail-card,
  .service-mosaic .wide-card {
    grid-column: span 1;
  }
}

@media (max-width: 991.98px) {
  .navbar-wemarine {
    top: 0;
    z-index: 1030;
    min-height: 72px;
    padding-top: max(0.9rem, env(safe-area-inset-top));
    padding-bottom: 0.9rem;
  }

  .navbar-wemarine .container {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-brand .logo {
    height: 50px;
  }

  .language-switcher-mobile .btn {
    min-height: 40px;
    padding: 0.55rem 0.75rem;
    border-radius: 999px;
    font-size: 0.78rem;
    gap: 0.4rem;
  }

  .language-switcher-mobile .btn i {
    display: none;
  }

  .language-switcher-mobile .language-menu {
    min-width: 156px;
    margin-top: 0.55rem;
  }

  .navbar-toggler {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-left: auto;
    position: relative;
    z-index: 1;
  }

  #hero,
  .page-header-section {
    min-height: auto;
    padding-top: 8rem;
  }

  .hero-panel {
    margin-top: 0.5rem;
  }

  .trust-band {
    margin-top: 0;
    padding-top: 1.25rem;
  }

  .trust-band-inner,
  .cta-banner-inner {
    grid-template-columns: 1fr;
  }

  .orca-showcase {
    padding-top: 1.5rem;
  }

  .orca-showcase-card {
    padding: 1rem;
  }

  .orca-showcase-copy {
    padding: 0.25rem 0;
  }

  .orca-showcase-copy h2 {
    max-width: none;
  }

  .whatsapp-card {
    grid-template-columns: 1fr;
  }

  .cta-banner-inner {
    display: grid;
  }

  .cta-banner-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .py-6 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  #hero {
    padding-bottom: 3rem;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .hero-actions,
  .cta-banner-actions,
  .filter-pills {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-band-inner,
  .portfolio-grid,
  .compact-grid,
  .value-grid,
  .story-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .editorial-media-stack {
    padding-right: 0;
  }

  .editorial-badge {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .editorial-photo.large,
  .visual-slab,
  .visual-slab.tall-slab {
    min-height: 360px;
  }

  .hero-metrics {
    margin-top: 2rem;
  }

  .metric-card,
  .service-feature-card,
  .service-detail-card,
  .faq-item,
  .value-card,
  .identity-card,
  .story-card,
  .comparison-panel,
  .info-panel,
  .process-card,
  .contact-form-shell {
    padding: 1.3rem;
  }

  .contact-direct-card {
    grid-template-columns: 1fr;
  }

  .portfolio-card img {
    height: 230px;
  }
}
