:root {
  --bg: #dbf7f4;
  --bg-deep: #98dfd7;
  --surface: rgba(245, 255, 253, 0.7);
  --surface-strong: rgba(246, 255, 253, 0.88);
  --ink: #08343a;
  --muted: #456f72;
  --line: rgba(8, 52, 58, 0.12);
  --accent: #ffd26f;
  --accent-soft: rgba(255, 210, 111, 0.2);
  --green: #0fb8b0;
  --green-dark: #0a6c75;
  --shadow: 0 24px 80px rgba(6, 56, 64, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Archivo", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 210, 111, 0.42), transparent 24%),
    radial-gradient(circle at top right, rgba(15, 184, 176, 0.28), transparent 26%),
    linear-gradient(180deg, #effffd 0%, #d7fbf7 34%, #b7f0eb 62%, #f6e1b7 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: 0.45;
}

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

.background-orb {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.7;
}

.orb-left {
  top: -80px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: rgba(255, 210, 111, 0.34);
}

.orb-right {
  top: 120px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: rgba(15, 184, 176, 0.3);
}

.site-header,
.section-shell,
.site-footer {
  width: min(calc(100% - 28px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(239, 255, 252, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 48px rgba(6, 56, 64, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, #e6fff9, #8fe8e0 52%, #ffcf69 100%);
  color: #0a4b4c;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.06em;
  font-size: 0.98rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
}

.site-nav a {
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.lang-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  min-width: 44px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-button:hover,
.lang-button:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.lang-button.active {
  background: linear-gradient(135deg, #0c6d77, #0fb8b0);
  color: #f4fffd;
  box-shadow: 0 10px 24px rgba(12, 109, 119, 0.18);
}

.call-chip {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0c6d77, #0fb8b0);
  color: #f4fffd;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 16px 32px rgba(12, 109, 119, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 20px;
  padding-top: 48px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.intro-card,
.service-card,
.pricing-highlight,
.pricing-table,
.step-card,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.intro-card,
.service-card,
.pricing-highlight,
.step-card {
  animation: rise-in 0.8s ease both;
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: var(--radius-xl);
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 111, 0.55), transparent 70%);
}

.eyebrow,
.card-kicker,
.panel-label,
.pricing-label {
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.hero h1,
.section-head h2,
.intro-card h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 0.98;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(1.95rem, 3.6vw, 3.2rem);
}

.hero-text,
.intro-card p,
.service-card p,
.pricing-highlight p,
.section-note,
.step-card p,
.contact-copy p,
.panel-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 56ch;
  margin-top: 20px;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  flex-shrink: 0;
}

.button-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.button:hover,
.button:focus-visible,
.contact-button:hover,
.contact-button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(145deg, #0b8b95, #16d1c8);
  color: #f6fff9;
  box-shadow: 0 18px 34px rgba(15, 184, 176, 0.24);
}

.button-whatsapp {
  border: 1px solid rgba(18, 140, 84, 0.22);
  background: linear-gradient(145deg, #25d366, #128c4a);
  color: #f7fff9;
  box-shadow: 0 16px 28px rgba(37, 211, 102, 0.22);
}

.button-viber {
  border: 1px solid rgba(110, 89, 165, 0.24);
  background: linear-gradient(145deg, #7b61ff, #665cac);
  color: #f8f5ff;
  box-shadow: 0 16px 28px rgba(102, 92, 172, 0.22);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.hero-tags li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(24, 32, 27, 0.08);
  background: rgba(255, 255, 255, 0.54);
  color: var(--muted);
}

.hero-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.panel-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(251, 255, 255, 0.72);
  border: 1px solid rgba(24, 32, 27, 0.08);
}

.panel-card.accent {
  background:
    radial-gradient(circle at top right, rgba(255, 210, 111, 0.34), transparent 42%),
    linear-gradient(180deg, rgba(248, 255, 254, 0.88), rgba(225, 252, 247, 0.82));
}

.panel-card strong,
.pricing-highlight strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1;
}

.panel-card p {
  margin-bottom: 0;
}

.route-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 10px 0 8px;
  font-weight: 700;
}

.route-dash {
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 184, 176, 0.22), rgba(15, 184, 176, 0.9));
}

.scenic-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(244, 255, 255, 0.88), rgba(229, 252, 249, 0.82));
}

.summer-scene {
  position: relative;
  height: 168px;
  margin: 6px 0 10px;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, #ddfffb 0%, #a9f1ef 46%, #54d8d5 46%, #1aa6bf 100%);
}

.summer-scene span {
  position: absolute;
  display: block;
}

.sun-glow {
  top: 12px;
  right: 18px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(255, 220, 132, 0.38);
  filter: blur(8px);
}

.sun-core {
  top: 22px;
  right: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff8d9, #ffd26f 72%);
}

.sea {
  left: 0;
  right: 0;
  border-radius: 50% 50% 0 0;
}

.sea-back {
  bottom: 34px;
  height: 44px;
  background: rgba(104, 243, 234, 0.45);
}

.sea-front {
  bottom: 0;
  height: 72px;
  background:
    linear-gradient(180deg, rgba(36, 193, 199, 0.6), rgba(7, 132, 156, 0.92));
}

.island {
  left: 26px;
  bottom: 34px;
  width: 122px;
  height: 42px;
  border-radius: 50% 50% 18px 18px;
  background: linear-gradient(180deg, #f4dba4, #d9b870);
}

.palm {
  bottom: 56px;
  width: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8d5a2a, #6c431e);
  transform-origin: bottom center;
}

.palm-left {
  left: 60px;
  height: 60px;
  transform: rotate(-18deg);
}

.palm-right {
  left: 88px;
  height: 78px;
  transform: rotate(8deg);
}

.leaf {
  width: 48px;
  height: 10px;
  border-radius: 999px 999px 999px 0;
  background: linear-gradient(90deg, #0c8b66, #2fd29b);
  transform-origin: 8px center;
}

.leaf-left-a {
  left: 35px;
  bottom: 106px;
  transform: rotate(-56deg);
}

.leaf-left-b {
  left: 40px;
  bottom: 98px;
  transform: rotate(-18deg);
}

.leaf-left-c {
  left: 48px;
  bottom: 92px;
  transform: rotate(24deg);
}

.leaf-right-a {
  left: 72px;
  bottom: 124px;
  width: 58px;
  transform: rotate(-48deg);
}

.leaf-right-b {
  left: 83px;
  bottom: 115px;
  width: 60px;
  transform: rotate(-8deg);
}

.leaf-right-c {
  left: 91px;
  bottom: 104px;
  width: 54px;
  transform: rotate(28deg);
}

.coconut {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #7f5128, #5d3818);
}

.coconut-one {
  left: 82px;
  bottom: 109px;
}

.coconut-two {
  left: 92px;
  bottom: 114px;
}

.foam {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.foam-one {
  left: 140px;
  right: 26px;
  bottom: 46px;
}

.foam-two {
  left: 160px;
  right: 50px;
  bottom: 30px;
  opacity: 0.72;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.intro-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.intro-card h2 {
  font-size: 1.5rem;
}

.services,
.about,
.pricing,
.booking,
.contact {
  padding-top: 78px;
}

.about-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.about-copy {
  max-width: 60ch;
}

.about-copy h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.about-source {
  margin-top: 18px;
  font-size: 0.94rem;
}

.about-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.detail-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.detail-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  line-height: 1.25;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head.narrow {
  max-width: 640px;
}

.section-head h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.service-index {
  display: inline-block;
  margin-bottom: 28px;
  color: rgba(24, 32, 27, 0.36);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.service-card h3,
.step-card h3 {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.fleet-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.fleet-card h3 {
  margin: 18px 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.fleet-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.car-visual {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.4);
}

.fleet-image {
  display: block;
  width: 100%;
  height: auto;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: start;
}

.pricing-highlight {
  padding: 28px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 210, 111, 0.24), transparent 44%),
    var(--surface-strong);
}

.fare-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.pricing-card-heading {
  margin: 0 0 16px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.fare-tab,
.pricing-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  color: var(--muted);
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.fare-title {
  display: block;
  margin-bottom: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  line-height: 1.05;
}

.rate-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 16px 0 18px;
  list-style: none;
}

.rate-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.rate-list li strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.fare-example {
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.pricing-mini-label {
  margin: 0 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.fare-example strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.fare-example p:last-child {
  margin: 0;
}

.pricing-table {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.pricing-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 20px 0;
}

.fare-tab:hover,
.fare-tab:focus-visible,
.pricing-tab:hover,
.pricing-tab:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.fare-tab.active,
.pricing-tab.active {
  background: linear-gradient(135deg, #0c6d77, #0fb8b0);
  color: #f4fffd;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(12, 109, 119, 0.18);
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(24, 32, 27, 0.08);
}

.pricing-head {
  background: rgba(24, 32, 27, 0.04);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--muted);
}

.pricing-row:last-child {
  border-bottom: 0;
}

.pricing-row strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.04rem;
}

.pricing-distance {
  color: var(--muted);
  font-size: 0.88em;
  font-weight: 600;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--green-dark);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  padding: 30px;
  border-radius: var(--radius-xl);
}

.contact-actions {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0b6d78, #11bcb3);
  color: #f7fffd;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.contact-button .button-icon {
  width: 20px;
  height: 20px;
}

.contact-button-whatsapp {
  background: linear-gradient(145deg, #25d366, #128c4a);
  color: #f7fff9;
}

.contact-button-viber {
  background: linear-gradient(145deg, #7b61ff, #665cac);
  color: #f8f5ff;
}

.contact-button-email {
  background: linear-gradient(145deg, #ffd36e, #f5a85a);
  color: var(--ink);
}

.contact-note {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
}

.contact-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-note strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 40px;
  color: var(--muted);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .about-card,
  .pricing-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .fleet-grid,
  .services-grid,
  .booking-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
    border-radius: 28px;
  }

  .site-nav {
    order: 4;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
  }

  .lang-switch {
    order: 2;
    margin-left: auto;
  }

  .call-chip {
    order: 3;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-copy,
  .hero-panel,
  .about-card,
  .intro-card,
  .service-card,
  .pricing-highlight,
  .step-card,
  .contact-card {
    padding: 22px;
  }

  .hero h1 {
    max-width: none;
  }

  .intro-grid,
  .about-details,
  .fleet-grid,
  .services-grid,
  .booking-steps {
    grid-template-columns: 1fr;
  }

  .pricing-row {
    grid-template-columns: 1fr;
  }

  .pricing-switch {
    padding: 18px 18px 0;
  }

  .fare-tab,
  .pricing-tab {
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    flex-direction: column;
    padding-top: 24px;
  }
}
