:root {
  --sand-0: #fbfaf7;
  --sand-1: #f6f1e7;
  --sand-2: #efe7da;
  --stone-1: #ece9e3;
  --stone-2: #ded9d1;
  --ink-1: #2b2f33;
  --ink-2: #5b646d;
  --blue-1: #6f8fa3;
  --blue-2: #89a7b8;
  --shadow: 0 18px 50px rgba(35, 36, 38, .08);
  --shadow-soft: 0 12px 30px rgba(35, 36, 38, .07);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: 1240px;
  /*motion: subtle, lightweight;*/
  --ease-out: cubic-bezier(.2, .8, .2, 1);
  --ease-soft: cubic-bezier(.22, .61, .36, 1);
  --dur-1: 160ms;
  --dur-2: 260ms;
  --dur-3: 520ms;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(137, 167, 184, .16) 0%, rgba(251, 250, 247, 0) 55%), linear-gradient(180deg, var(--sand-0) 0%, #ffffff 55%, var(--sand-0) 100%);
  color: #393939;
  line-height: 1.5;
  font-weight: 300;
  margin-top: 80px;
}

a, button {
  transition: color var(--dur-2) var(--ease-soft), background-color var(--dur-2) var(--ease-soft), border-color var(--dur-2) var(--ease-soft), opacity var(--dur-2) var(--ease-soft), transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

.site-container, .hero-container {
  max-width: var(--container);
}

.section {
  padding: 96px 0;
}

@media (min-width: 992px) {
  .section {
    padding: 120px 0;
  }
}

@media (min-width: 1200px) {
  .section {
    padding: 136px 0;
  }
}

.section-soft {
  background: linear-gradient(180deg, rgba(246, 241, 231, .55) 0%, rgba(251, 250, 247, .95) 100%);
}

.section-elevated {
  background: radial-gradient(900px 500px at 70% 0%, rgba(111, 143, 163, .18) 0%, rgba(255,255,255,0) 60%), linear-gradient(180deg, rgba(246, 241, 231, .65) 0%, rgba(251, 250, 247, 1) 100%);
}

.section-head {
  max-width: 860px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(222, 217, 209, .7);
  color: rgba(43, 47, 51, .72);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.section-title {
  margin-top: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.2;
}

.section-subtitle {
  margin-top: 14px;
  color: rgba(91, 100, 109, .9);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}

.display-title {
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.2;
  color: rgb(37,43,55);
}

.lead-soft {
  color: rgb(90,94,102);
  font-weight: 300;
  max-width: 560px;
}

/* Buttons */

.btn-pill {
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 400;
  letter-spacing: .01em;
}

.btn-lg.btn-pill {
  padding: 14px 22px;
}

.btn-primary {
  --bs-btn-bg: rgb(43,72,100);
  --bs-btn-border-color: rgba(111, 143, 163, .70);
  --bs-btn-hover-bg: rgb(169,203,218);
  --bs-btn-hover-border-color: rgba(111, 143, 163, .9);
  --bs-btn-active-bg: rgb(169,203,218);
  --bs-btn-active-border-color: rgb(169,203,218);
  --bs-btn-color: #ffffff;
  --bs-btn-hover-color: #2b4864;
}

.btn-outline-soft {
  --bs-btn-border-color: rgba(255,255,255,.55);
  --bs-btn-color: rgba(255,255,255,.92);
  --bs-btn-hover-bg: rgba(255,255,255,.10);
  --bs-btn-hover-border-color: rgba(255,255,255,.75);
  --bs-btn-hover-color: #ffffff;
}

.btn-outline-primary-soft {
  --bs-btn-border-color: rgba(111, 143, 163, .35);
  --bs-btn-color: rgba(43, 47, 51, .86);
  --bs-btn-hover-bg: rgba(111, 143, 163, .10);
  --bs-btn-hover-border-color: rgba(111, 143, 163, .45);
  --bs-btn-hover-color: rgba(43, 47, 51, .92);
}

.btn-ghost {
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.45);
  color: rgba(255,255,255,.98);
  transform: translateY(-1px);
}

.btn-ghost:active {
  transform: translateY(0);
}

.btn-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.btn-icon i {
  font-size: 22px;
}

/* Brand */

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.75), rgba(255,255,255,.18) 55%, rgba(111, 143, 163, .18) 100%), linear-gradient(180deg, rgba(246, 241, 231, .9), rgba(255,255,255,.35));
  border: 1px solid rgba(255,255,255,.42);
  box-shadow: 0 18px 36px rgba(10, 14, 18, .18);
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-soft);
}

.navbar-brand:hover .brand-mark {
  transform: translateY(-1px);
  box-shadow: 0 22px 44px rgba(10, 14, 18, .20);
  border-color: rgba(255,255,255,.55);
}

.brand-mark-sm {
  width: 36px;
  height: 36px;
  box-shadow: 0 14px 28px rgba(10, 14, 18, .14);
}

.brand-name {
  color: rgba(255,255,255,.92);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
}

.brand-logo {
  display: block;
  height: 60px;
  width: auto;
  filter: drop-shadow(0 14px 28px rgba(10, 14, 18, .25));
}

/* Navbar links (calm, minimal) */

.nav-link-soft {
  color: rgba(255,255,255,.78);
  font-weight: 500;
  letter-spacing: .01em;
  padding: 10px 12px;
  border-radius: 999px;
}

/* Navbar: force every navbar link to behave like px-3 (override px-4/ps- */

.navbar .navbar-nav .nav-link {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.nav-link-soft:hover, .nav-link-soft:focus {
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.08);
}

.navbar .nav-link.active {
  color: rgba(255,255,255,.96);
  background: rgba(255,255,255,.10);
}

/* Allow active link styling even when .nav-link isn't inside .navbar (and keep consistent). */

.nav-link-soft.active {
  color: rgba(255,255,255,.96);
  background: rgba(255,255,255,.10);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero */

.hero {
  min-height: 92vh;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.52) 0%, rgba(255,255,255,0.42) 45%, rgba(255,255,255,0.55) 100%), radial-gradient(900px 650px at 25% 15%, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.09) 65%), url("../../assets/img/hero.webp?h=c5a4f0835e19afe80902872e894bd201");
  background-size: cover;
  background-position: center;
}

.page-hero {
  min-height: 56vh;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.4) 55%, rgba(255,255,255,0.52) 100%), radial-gradient(900px 650px at 25% 15%, rgba(111, 143, 163, .18) 0%, rgba(0,0,0,0) 65%), url("https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=2400&q=75");
  background-size: cover;
  background-position: center;
}

.page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.16) 55%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 55%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-nav {
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(222, 217, 209, .70);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  height: 80px;
}

header {
  padding-top: 0;
}

@media (max-width: 575.98px) {
  header {
    padding-top: 0;
  }
}

.navbar-light .nav-link-soft {
  color: rgba(43, 47, 51, .78);
}

/* Language dropdown (navbar) */

.navbar .dropdown-menu {
  border-radius: 16px;
  border: 1px solid rgba(222, 217, 209, .85);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 22px 60px rgba(35, 36, 38, .14);
  padding: 10px;
  margin-top: 12px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.navbar .dropdown-item {
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 500;
  color: rgba(43, 47, 51, .86);
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .dropdown-item:hover, .navbar .dropdown-item:focus {
  background: rgba(111, 143, 163, .12);
  color: rgba(43, 47, 51, .92);
}

.navbar .dropdown-item.active, .navbar .dropdown-item:active {
  background: rgba(111, 143, 163, .18);
  color: rgba(43, 47, 51, .92);
}

.navbar .dropdown-item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(111, 143, 163, .35);
  background: rgba(255,255,255,.55);
  flex: 0 0 auto;
}

.navbar .dropdown-item.active::before {
  border-color: rgba(111, 143, 163, .55);
  background: rgba(111, 143, 163, .65);
}

.navbar .dropdown-toggle[data-lang-toggle] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.navbar .dropdown-toggle[data-lang-toggle]::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(111, 143, 163, .35);
  background: rgba(255,255,255,.55);
  flex: 0 0 auto;
}

.navbar-light .nav-link-soft:hover, .navbar-light .nav-link-soft:focus {
  color: rgba(43, 47, 51, .92);
  background: rgba(197,197,197,0.1);
}

.navbar-light .navbar .nav-link.active, .navbar-light .nav-link-soft.active {
  color: rgba(43, 47, 51, .92);
  background: rgba(194,194,194,0.14);
}

.navbar-light .brand-logo {
  filter: none;
}

.navbar-light .btn-ghost {
  border-color: rgba(43, 47, 51, .18);
  color: rgba(43, 47, 51, .90);
  background: rgba(43, 47, 51, .04);
}

.navbar-light .btn-ghost:hover {
  background: rgba(43, 47, 51, .06);
  border-color: rgba(43, 47, 51, .22);
  color: rgba(43, 47, 51, .92);
}

.hero-content {
  padding-top: 72px;
  padding-bottom: 88px;
}

.hero-content-compact {
  padding-top: 60px;
  padding-bottom: 72px;
}

@media (min-width: 992px) {
  .hero-content-compact {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

@media (min-width: 992px) {
  .hero-content {
    padding-top: 120px;
    padding-bottom: 128px;
  }
}

.badge-pill {
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .01em;
}

.badge-location {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(0,0,0,0.22);
  color: rgba(0,0,0,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.badge-category {
  background: rgba(111, 143, 163, .12);
  border: 1px solid rgba(111, 143, 163, .20);
  color: rgba(43, 47, 51, .78);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform var(--dur-2) var(--ease-out), background-color var(--dur-2) var(--ease-soft), border-color var(--dur-2) var(--ease-soft);
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-2px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.24);
}

.scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 0 10px rgba(255,255,255,.08);
  animation: scrollPulse 2.4s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    transform: translateY(0);
    opacity: .9;
  }
  50% {
    transform: translateY(6px);
    opacity: .55;
  }
}

/* Value cards */

.value-card {
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(222, 217, 209, .65);
  box-shadow: var(--shadow-soft);
  padding: 26px 22px;
  height: 100%;
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out), background-color var(--dur-2) var(--ease-soft), border-color var(--dur-2) var(--ease-soft);
  transform: translateZ(0);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(35, 36, 38, .10);
  background: rgba(255,255,255,.78);
  border-color: rgba(222, 217, 209, .78);
}

.value-card:hover .value-icon {
  background: rgba(111, 143, 163, .13);
  border-color: rgba(111, 143, 163, .22);
}

.value-icon {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(111, 143, 163, .10);
  border: 1px solid rgba(111, 143, 163, .18);
  color: rgba(43, 47, 51, .78);
}

.value-icon i {
  font-size: 22px;
}

.value-title {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(43, 47, 51, .92);
}

.value-text {
  margin-top: 10px;
  color: rgba(91, 100, 109, .92);
  font-size: 15px;
}

/* Primary service stack */

.service-stack {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 992px) {
  .service-stack {
    gap: 36px;
  }
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(222, 217, 209, .65);
  box-shadow: var(--shadow);
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-soft), background-color var(--dur-2) var(--ease-soft);
  transform: translateZ(0);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 60px rgba(35, 36, 38, .11);
  background: rgba(255,255,255,.80);
  border-color: rgba(222, 217, 209, .80);
}

.service-card:hover .service-img {
  transform: scale(1.015);
}

.service-media {
  padding: 18px;
  padding-bottom: 0;
}

.service-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
  transition: transform var(--dur-3) var(--ease-out), filter var(--dur-3) var(--ease-soft);
  transform: translateZ(0);
  will-change: transform;
}

@media (max-width: 991.98px) {
  .service-img {
    height: 320px;
  }
}

.service-body {
  padding: 26px 28px 30px;
}

.service-title {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.service-text {
  color: rgba(91, 100, 109, .95);
  margin: 0;
  max-width: 76ch;
}

/* Our Services (6-card grid) */

.svc6-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(222, 217, 209, .65);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-soft), background-color var(--dur-2) var(--ease-soft);
  transform: translateZ(0);
}

.svc6-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(35, 36, 38, .10);
  border-color: rgba(222, 217, 209, .78);
  background: rgba(255,255,255,.78);
}

.svc6-card:hover .svc6-img {
  transform: scale(1.02);
}

.svc6-card:hover .svc6-icon {
  transform: translateY(-2px);
}

.svc6-media {
  position: relative;
  padding: 14px;
  padding-bottom: 0;
}

.svc6-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 10px);
  transition: transform var(--dur-3) var(--ease-out);
  transform: translateZ(0);
  will-change: transform;
}

.svc6-body {
  padding: 20px 22px 22px;
}

.svc6-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: -22px;
}

.svc6-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(222, 217, 209, .7);
  box-shadow: var(--shadow-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(43, 47, 51, .78);
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
  margin-top: 0;
  flex: 0 0 auto;
}

.svc6-favicon {
  width: 18px;
  height: 18px;
  display: block;
}

.svc6-label {
  margin-top: 0;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(91, 100, 109, .9);
  font-weight: 500;
  line-height: 1;
}

.svc6-title {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: rgba(43, 47, 51, .92);
}

.svc6-text {
  display: block;
  color: rgba(91, 100, 109, .92);
  font-size: 15px;
}

/* Secondary services grid */

.mini-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(222, 217, 209, .65);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-soft), background-color var(--dur-2) var(--ease-soft);
  transform: translateZ(0);
}

.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(35, 36, 38, .10);
  border-color: rgba(222, 217, 209, .78);
  background: rgba(255,255,255,.78);
}

.mini-card:hover .mini-img {
  transform: scale(1.02);
}

.mini-card:hover .mini-icon {
  transform: translateY(-1px);
}

.mini-media {
  position: relative;
  padding: 14px;
  padding-bottom: 0;
}

.mini-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 10px);
  transition: transform var(--dur-3) var(--ease-out);
  transform: translateZ(0);
  will-change: transform;
}

.mini-icon {
  position: absolute;
  left: 26px;
  bottom: -18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(222, 217, 209, .7);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(43, 47, 51, .78);
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out);
}

.mini-icon i {
  font-size: 20px;
}

.mini-body {
  padding: 30px 22px 22px;
}

.mini-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.mini-text {
  margin: 0;
  color: rgba(91, 100, 109, .92);
  line-height: 1.8;
  font-size: 15px;
}

/* Premium section */

.premium-wrap {
  border-radius: var(--radius-lg);
}

.premium-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(222, 217, 209, .65);
  box-shadow: var(--shadow);
}

.premium-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .premium-img {
    height: 360px;
  }
}

.premium-float-card {
  position: absolute;
  right: 22px;
  top: 22px;
  width: min(360px, calc(100% - 44px));
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(222, 217, 209, .7);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
  transition: transform var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out);
}

.premium-media:hover .premium-float-card {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(35, 36, 38, .12);
}

.float-kicker {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(91, 100, 109, .9);
  font-weight: 500;
}

.float-title {
  margin-top: 6px;
  font-weight: 500;
  font-size: 18px;
  color: rgba(43, 47, 51, .92);
}

.float-text {
  margin-top: 6px;
  color: rgba(91, 100, 109, .92);
  font-size: 14px;
}

.feature-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(222, 217, 209, .6);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(111, 143, 163, .10);
  border: 1px solid rgba(111, 143, 163, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(43, 47, 51, .78);
  flex: 0 0 auto;
}

.feature-icon i {
  font-size: 20px;
}

.feature-title {
  font-weight: 500;
  color: rgba(43, 47, 51, .92);
  margin-top: 1px;
}

.feature-text {
  color: rgba(91, 100, 109, .92);
  font-size: 14.5px;
  line-height: 1.5;
  margin-top: 6px;
}

/* Steps */

.step-card {
  padding: 22px 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(222, 217, 209, .55);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-soft), background-color var(--dur-2) var(--ease-soft);
  transform: translateZ(0);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(35, 36, 38, .10);
  border-color: rgba(222, 217, 209, .70);
  background: rgba(255,255,255,.68);
}

.step-number {
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: rgba(111, 143, 163, .78);
}

.step-title {
  margin-top: 14px;
  font-weight: 500;
  font-size: 18px;
  color: rgba(43, 47, 51, .92);
}

.step-text {
  margin-top: 8px;
  color: rgba(91, 100, 109, .92);
  font-size: 15px;
  line-height: 1.5;
}

/* About */

.about-wrap {
  max-width: 820px;
}

.about-text {
  color: rgba(91, 100, 109, .92);
  font-size: 16px;
}

.btn-link-soft {
  color: rgba(111, 143, 163, .98);
  text-decoration: none;
  font-weight: 500;
}

.btn-link-soft:hover {
  color: rgba(111, 143, 163, 1);
  text-decoration: underline;
}

/* Services (page) */

.service-item {
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(222, 217, 209, .65);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform var(--dur-2) var(--ease-out), box-shadow var(--dur-2) var(--ease-out), border-color var(--dur-2) var(--ease-soft), background-color var(--dur-2) var(--ease-soft);
  transform: translateZ(0);
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(35, 36, 38, .10);
  border-color: rgba(222, 217, 209, .80);
  background: rgba(255,255,255,.80);
}

.service-item-body {
  padding: 24px 24px 22px;
}

.service-item-title {
  font-weight: 500;
  letter-spacing: -0.01em;
  font-size: 20px;
  margin-bottom: 10px;
  color: rgba(43, 47, 51, .92);
}

.service-item-text {
  margin: 0;
  color: rgba(91, 100, 109, .92);
  line-height: 1.85;
}

.service-item-meta {
  margin-top: 12px;
  color: rgba(43, 47, 51, .70);
  font-weight: 400;
  font-size: 16px;
}

/* About page */

.prose-card {
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(222, 217, 209, .65);
  box-shadow: var(--shadow-soft);
  padding: 26px 26px;
}

.prose-lead {
  font-size: 18px;
  color: rgba(43, 47, 51, .86);
  font-weight: 300;
}

.prose-text {
  font-size: 16px;
  line-height: 1.95;
  color: rgba(91, 100, 109, .92);
}

.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(222, 217, 209, .65);
  box-shadow: var(--shadow);
}

.image-card-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform var(--dur-3) var(--ease-out);
  transform: translateZ(0);
  will-change: transform;
}

@media (max-width: 991.98px) {
  .image-card-img {
    height: 360px;
  }
}

.image-card:hover .image-card-img {
  transform: scale(1.015);
}

.image-card-float {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(360px, calc(100% - 44px));
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(222, 217, 209, .7);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
  transition: transform var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out);
}

.image-card:hover .image-card-float {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(35, 36, 38, .12);
}

.profile-card {
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(222, 217, 209, .65);
  box-shadow: var(--shadow-soft);
  padding: 26px 26px;
}

.profile-badge {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(111, 143, 163, .10);
  border: 1px solid rgba(111, 143, 163, .18);
  color: rgba(43, 47, 51, .78);
  margin-bottom: 16px;
}

.profile-badge i {
  font-size: 22px;
}

/* Contact */

.contact-form-card, .contact-info-card {
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(222, 217, 209, .65);
  box-shadow: var(--shadow);
}

.contact-form-card {
  padding: 26px;
}

@media (min-width: 992px) {
  .contact-form-card {
    padding: 32px;
  }
}

.contact-info-card {
  padding: 26px;
}

@media (min-width: 992px) {
  .contact-info-card {
    padding: 32px;
  }
}

.form-label {
  font-weight: 500;
  color: rgba(43, 47, 51, .86);
  margin-bottom: 8px;
}

.form-control-soft {
  border-radius: 18px;
  border: 1px solid rgba(222, 217, 209, .85);
  background: rgba(255,255,255,.70);
  box-shadow: none;
  padding: 14px 14px;
  color: rgba(43, 47, 51, .92);
}

.form-control-soft:focus {
  border-color: rgba(111, 143, 163, .45);
  box-shadow: 0 0 0 .2rem rgba(111, 143, 163, .10);
  background: rgba(255,255,255,.84);
}

textarea.form-control-soft {
  padding: 14px 14px;
}

.contact-info-block {
  padding: 14px 0;
}

.contact-info-title {
  font-weight: 500;
  color: rgba(43, 47, 51, .86);
  margin-bottom: 6px;
}

.contact-info-text {
  color: rgba(91, 100, 109, .92);
}

.contact-link {
  color: rgba(91, 100, 109, .92);
  text-decoration: none;
}

.contact-link:hover {
  color: rgba(43, 47, 51, .92);
  text-decoration: underline;
}

.contact-divider {
  margin: 18px 0;
  border-color: rgba(222, 217, 209, .85);
  opacity: 1;
}

/* Footer */

.footer {
  background: linear-gradient(180deg, rgb(43,72,100) 0%, rgb(56,75,94) 100%);
  padding: 56px 0 40px;
}

.footer-name {
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
}

.footer-tagline {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  margin-top: 2px;
}

.footer-title {
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
}

.footer-links a:hover {
  color: rgb(169,203,218);
  text-decoration: underline;
}

.footer-meta {
  color: rgba(255,255,255,0.92);
  font-size: 14.5px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-label {
  display: inline-block;
  min-width: 72px;
  color: rgb(255,255,255);
  font-weight: 500;
}

.footer-divider {
  margin: 36px 0 18px;
  border-color: rgba(222, 217, 209, .85);
  opacity: 1;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: rgb(169,203,218);
  text-decoration: underline;
}

.img-boat-service {
  border-radius: 30px;
}

.text-box-sand {
  padding: 18px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(222, 217, 209, .6);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

@media (max-width:992px) {
  .nav-item {
    margin-top: 10px;
  }
}

@media (max-width:992px) {
  .navbar-expand-lg .navbar-nav {
    background: #fff !important;
    border-radius: 30px;
    padding: 10px;
  }
}

