:root {
  --ink: #0b1f2a;
  --ink-soft: #1c3a48;
  --sea: #0f6e6a;
  --sea-deep: #0a4f4c;
  --foam: #eef6f4;
  --mist: #d7e8e3;
  --sand: #d8c3a2;
  --brass: #b8893d;
  --white: #f7fbfa;
  --line: rgba(11, 31, 42, 0.12);
  --shadow: 0 24px 60px rgba(7, 27, 36, 0.18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --radius: 18px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(15, 110, 106, 0.14), transparent 55%),
    radial-gradient(900px 420px at 100% 0%, rgba(184, 137, 61, 0.12), transparent 50%),
    linear-gradient(180deg, #f4faf8 0%, #eef5f2 40%, #f7fbfa 100%);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 0.5em;
}

p {
  margin: 0 0 1em;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.4rem;
  background: rgba(247, 251, 250, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 251, 250, 0.92);
}

.site-header.nav-open {
  inset: 0;
  height: auto;
  align-items: flex-start;
  background: #f7fbfa;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  min-width: 0;
  z-index: 2;
}

.logo span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 42vw;
}

.logo img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(15, 110, 106, 0.25);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  z-index: 2;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.15rem;
  padding: 5.2rem 1.4rem 2rem;
  background: #f7fbfa;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
  z-index: 1;
  overflow-y: auto;
}

.site-header.nav-open .nav {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav a {
  display: block;
  padding: 0.95rem 0.15rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  opacity: 1;
  transition: color 0.2s ease;
}

.nav a:hover {
  opacity: 1;
  color: var(--sea-deep);
}

body.menu-open {
  overflow: hidden;
}

.header-cta {
  display: none;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--sea);
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover {
  background: var(--sea-deep);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-scrim {
  background:
    linear-gradient(180deg, rgba(7, 27, 36, 0.18) 0%, rgba(7, 27, 36, 0.28) 40%, rgba(7, 27, 36, 0.78) 100%),
    linear-gradient(90deg, rgba(7, 27, 36, 0.45) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 7.5rem 0 4.2rem;
  animation: riseIn 0.9s ease both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0 0 1rem;
  max-width: 12ch;
  text-wrap: balance;
}

.hero h1 {
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 500;
  max-width: 18ch;
  margin-bottom: 0.75rem;
}

.hero-lead {
  max-width: 34ch;
  font-size: 1.05rem;
  opacity: 0.92;
  margin-bottom: 1.6rem;
}

.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brass);
  color: #1a1205;
}

.btn-primary:hover {
  background: #c99a4a;
}

.btn-secondary {
  background: var(--sea);
  color: var(--white);
}

.btn-ghost {
  background: rgba(247, 251, 250, 0.12);
  border-color: rgba(247, 251, 250, 0.35);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.section {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
  padding: 5.5rem 0;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 2.4rem;
}

.section-head h2,
.routes-copy h2,
.about-grid h2,
.contact-panel h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

a.service {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 110, 106, 0.12);
  box-shadow: 0 14px 36px rgba(7, 27, 36, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  color: inherit;
}

a.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(7, 27, 36, 0.16);
}

.service-visual {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

a.service:hover .service-visual img {
  transform: scale(1.04);
}

.service-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.05rem 1.15rem 1.15rem;
  flex: 1;
}

.service-body h3 {
  font-size: 1.28rem;
  margin: 0;
}

.service-body p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.94rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.92rem;
}

.service-meta strong {
  color: var(--sea-deep);
  font-size: 1.05rem;
}

.service-more {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.15rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sea);
}

.service-night {
  background: linear-gradient(160deg, #0b1f2a, #123845);
  color: var(--white);
  border-color: transparent;
}

.service-night p,
.service-night .service-meta {
  color: rgba(247, 251, 250, 0.86);
  border-color: rgba(247, 251, 250, 0.16);
}

.service-night .service-meta strong,
.service-night .service-more {
  color: var(--sand);
}

.fleet-grid {
  display: grid;
  gap: 1.25rem;
}

.boat {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 420px;
  box-shadow: var(--shadow);
}

.boat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.boat-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 1.4rem 1.35rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(7, 27, 36, 0.88));
  color: var(--white);
}

.boat-copy h3 {
  margin-bottom: 0.35rem;
}

.boat-copy p {
  opacity: 0.9;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}

.boat-copy span {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.routes {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.routes-layout {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

.routes-copy ul {
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.routes-copy li {
  margin-bottom: 0.45rem;
}

.routes-note {
  margin-top: 1.2rem;
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--brass);
  background: rgba(184, 137, 61, 0.1);
  color: var(--ink-soft);
}

.routes-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 160px 160px;
  gap: 0.7rem;
}

.routes-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.routes-gallery img:first-child {
  grid-row: span 2;
  min-height: 100%;
}

.booking-board {
  display: grid;
  gap: 1.5rem;
}

.booking-form,
.booking-aside {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 110, 106, 0.12);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: var(--shadow);
}

.booking-form {
  padding: 1.4rem;
  display: grid;
  gap: 1rem;
}

.booking-form label,
.slots legend {
  display: grid;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.booking-form select,
.booking-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.booking-form select:focus,
.booking-form input:focus {
  outline: 2px solid rgba(15, 110, 106, 0.35);
  border-color: var(--sea);
}

.calendar {
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(15, 110, 106, 0.06), rgba(255, 255, 255, 0.5));
  border: 1px solid rgba(15, 110, 106, 0.12);
}

.calendar-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.calendar-bar h3 {
  margin: 0;
  font-size: 1.2rem;
}

.cal-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--ink);
}

.cal-weekdays,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.cal-weekdays {
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(11, 31, 42, 0.5);
  text-align: center;
}

.cal-day {
  aspect-ratio: 1;
  border: 0;
  border-radius: 12px;
  background: transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.cal-day:hover:not(:disabled) {
  transform: translateY(-1px);
}

.cal-day.muted {
  opacity: 0.28;
  cursor: default;
}

.cal-day.free {
  background: rgba(15, 110, 106, 0.14);
}

.cal-day.busy {
  background: rgba(184, 137, 61, 0.22);
}

.cal-day.full {
  background: rgba(11, 31, 42, 0.08);
  color: rgba(11, 31, 42, 0.35);
  text-decoration: line-through;
  cursor: not-allowed;
}

.cal-day.selected {
  background: var(--sea);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(15, 110, 106, 0.28);
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin: 0.9rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.dot {
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  margin-right: 0.3rem;
  vertical-align: middle;
}

.dot.free { background: var(--sea); }
.dot.busy { background: var(--brass); }
.dot.full { background: rgba(11, 31, 42, 0.28); }

.slots {
  margin: 0;
  padding: 0;
  border: 0;
}

.slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.slot {
  min-height: 42px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.slot:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.slot.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.selected-summary {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(15, 110, 106, 0.08);
  font-weight: 600;
}

.booking-hint {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(11, 31, 42, 0.55);
}

.booking-aside {
  overflow: hidden;
}

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

.booking-aside > div {
  padding: 1.35rem 1.4rem 1.5rem;
}

.booking-aside ol {
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.booking-aside li {
  margin-bottom: 0.4rem;
}

.about-grid {
  display: grid;
  gap: 1.8rem;
  align-items: center;
}

.about-figure {
  margin: 0;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-figure img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.contact {
  padding-bottom: 4rem;
}

.contact-panel {
  display: grid;
  gap: 1.5rem;
  padding: 1.8rem;
  border-radius: calc(var(--radius) + 12px);
  background:
    linear-gradient(135deg, rgba(15, 110, 106, 0.92), rgba(11, 31, 42, 0.95)),
    url("../images/coast-4.jpg") center/cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel p {
  opacity: 0.88;
}

.contact-ways {
  display: grid;
  gap: 0.75rem;
}

.contact-way {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(247, 251, 250, 0.1);
  border: 1px solid rgba(247, 251, 250, 0.16);
  transition: background 0.2s ease, transform 0.2s ease;
}

a.contact-way:hover {
  background: rgba(247, 251, 250, 0.18);
  transform: translateY(-2px);
}

.contact-way span {
  font-size: 0.8rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-way strong {
  font-size: 1.1rem;
}

.site-footer {
  padding: 1.4rem 1.2rem 2.2rem;
  text-align: center;
  color: rgba(11, 31, 42, 0.55);
  font-size: 0.88rem;
}

.site-footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }

  .site-header.nav-open {
    inset: 0 0 auto;
    height: auto;
    align-items: center;
    background: rgba(247, 251, 250, 0.78);
    backdrop-filter: blur(14px);
  }

  .nav {
    position: static;
    inset: auto;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 0;
    background: transparent;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    overflow: visible;
  }

  .nav a {
    display: inline;
    padding: 0;
    font-size: 0.95rem;
    font-weight: 500;
    border-bottom: 0;
    opacity: 0.78;
  }

  .header-cta {
    display: inline-flex;
  }

  .logo span {
    max-width: none;
  }

  .service-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }

  .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .routes-gallery {
    grid-template-rows: 190px 190px;
  }

  .booking-board {
    grid-template-columns: 1.35fr 0.9fr;
    align-items: start;
  }

  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .contact-panel {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    padding: 2.4rem;
  }

  .detail-hero {
    grid-template-columns: 1.05fr 1fr;
    align-items: stretch;
  }

  .detail-prices {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .site-header {
    padding: 1rem 2rem;
  }

  .hero-content {
    padding-bottom: 5rem;
  }
}

/* Service detail pages */
.page-detail {
  padding-top: 5.2rem;
}

.detail-hero {
  display: grid;
  gap: 1.25rem;
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto 2rem;
}

.detail-hero-media {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
}

.detail-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.2rem 0;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sea-deep);
}

.detail-hero-copy h1 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}

.detail-lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.detail-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.detail-fact {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(15, 110, 106, 0.1);
  font-size: 0.88rem;
  font-weight: 700;
}

.detail-body {
  width: min(var(--max), calc(100% - 2.4rem));
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  padding-bottom: 4rem;
}

@media (min-width: 720px) {
  .detail-body {
    grid-template-columns: 1.35fr 0.85fr;
    align-items: start;
  }
}

.detail-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 110, 106, 0.12);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.35rem 1.4rem;
  box-shadow: 0 14px 36px rgba(7, 27, 36, 0.08);
}

.detail-card h2 {
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
}

.detail-card ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ink-soft);
}

.detail-card li {
  margin-bottom: 0.45rem;
}

.detail-prices {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  background: rgba(15, 110, 106, 0.07);
  font-weight: 600;
}

.price-row strong {
  color: var(--sea-deep);
}

.detail-boat {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.detail-boat img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
}

.detail-boat strong {
  display: block;
  margin-bottom: 0.15rem;
}

.detail-boat span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-media img,
  .hero-content,
  .service-visual img,
  .btn,
  .header-cta,
  .contact-way {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
