:root {
  --gold: #c89446;
  --gold-light: #e0b66a;
  --ink: #14191a;
  --deep: #101a1c;
  --muted: #687170;
  --line: #e8ded0;
  --white: #fff;
  --shadow: 0 22px 60px rgba(16, 26, 28, .13);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Arial, sans-serif;
  --script: "Brush Script MT", "Segoe Script", cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.page { min-height: 100vh; overflow: hidden; background: #fff; }

.hero {
  position: relative;
  min-height: 540px;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  border-radius: 0 0 12px 12px;
  background: #172123 url("../hero.jpg") center / cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.04);
  z-index: -3;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(9, 15, 17, .82) 0%, rgba(9, 15, 17, .56) 31%, rgba(9, 15, 17, .12) 67%),
    linear-gradient(180deg, rgba(9, 15, 17, .18) 0%, rgba(9, 15, 17, .36) 100%);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  right: -6%;
  top: 0;
  width: 39%;
  height: 120px;
  background: rgba(31, 27, 23, .78);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  z-index: -1;
}

.site-header {
  width: min(1190px, calc(100% - 72px));
  height: 86px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px 1fr 214px 170px 96px;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 5;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: .8px;
}

.logo-mark svg {
  width: 45px;
  height: 45px;
  color: var(--gold);
  stroke-width: 1.7;
}

.logo-mark span { display: grid; font-size: 18px; }
.logo-mark small { font-size: 14px; letter-spacing: 1px; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 52px);
}

.main-nav a {
  color: rgba(255,255,255,.94);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav span { color: var(--gold-light); }

.icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  vertical-align: -2px;
}

.icon-inline svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.2;
}

.header-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.booking,
.transfer {
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.booking {
  color: #fff;
  background: var(--gold);
}

.transfer {
  color: var(--gold-light);
  background: rgba(12, 18, 20, .28);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone svg { color: #fff; width: 18px; height: 18px; fill: #fff; stroke-width: 0; }
.header-phone a { color: #fff; }

.language { position: relative; justify-self: end; }

.language button {
  width: 96px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  background: rgba(12, 18, 20, .25);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 96px;
  padding: 7px;
  display: grid;
  gap: 4px;
  background: rgba(16, 24, 26, .94);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: .18s ease;
}

.language:hover .language-menu,
.language:focus-within .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.language-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  color: #fff;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
}

.language-menu a:hover { background: rgba(255,255,255,.08); }

.flag {
  width: 22px;
  height: 14px;
  display: inline-block;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.24);
}

.flag-en,
.flag-uk {
  background:
    linear-gradient(27deg, transparent 44%, #fff 44% 56%, transparent 56%),
    linear-gradient(153deg, transparent 44%, #fff 44% 56%, transparent 56%),
    linear-gradient(27deg, transparent 47%, #c8102e 47% 53%, transparent 53%),
    linear-gradient(153deg, transparent 47%, #c8102e 47% 53%, transparent 53%),
    linear-gradient(90deg, transparent 42%, #fff 42% 58%, transparent 58%),
    linear-gradient(0deg, transparent 36%, #fff 36% 64%, transparent 64%),
    linear-gradient(90deg, transparent 46%, #c8102e 46% 54%, transparent 54%),
    linear-gradient(0deg, transparent 42%, #c8102e 42% 58%, transparent 58%),
    #012169;
}

.flag-es { background: linear-gradient(#aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%); }
.flag-de { background: linear-gradient(#000 0 33%, #dd0000 33% 66%, #ffce00 66%); }
.flag-ru { background: linear-gradient(#fff 0 33%, #1c57a7 33% 66%, #d52b1e 66%); }
.flag-pl { background: linear-gradient(#fff 0 50%, #dc143c 50%); }
.flag-ar { background: linear-gradient(#00732f 0 33%, #fff 33% 66%, #000 66%); position: relative; }
.flag-ar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ce1126 0 28%, transparent 28%);
}

.hero-content {
  width: min(1190px, calc(100% - 72px));
  margin: 64px auto 0;
}

.eyebrow {
  margin: 0 0 -7px;
  color: var(--gold-light);
  font-family: var(--script);
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1;
}

h1, h2, h3 { margin: 0; font-family: var(--serif); letter-spacing: 0; }

h1 {
  max-width: 620px;
  color: #fff;
  font-size: clamp(78px, 9vw, 104px);
  line-height: .88;
  font-weight: 400;
  text-transform: uppercase;
}

.subtitle {
  max-width: 410px;
  margin: 18px 0 16px;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 500;
  text-transform: uppercase;
}

.lead {
  max-width: 405px;
  margin: 0 0 26px;
  color: rgba(255,255,255,.92);
  font-size: 16px;
}

.search {
  width: min(1040px, calc(100% - 96px));
  min-height: 116px;
  margin: -74px auto 0;
  padding: 30px 30px 24px;
  position: relative;
  z-index: 22;
  display: grid;
  grid-template-columns: 178px 1fr 1fr 1.18fr 210px;
  gap: 18px;
  align-items: end;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(200,148,70,.95), rgba(255,255,255,.45), rgba(200,148,70,.7)) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(17, 25, 27, .22);
}

.search::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(200, 148, 70, .16);
  border-radius: 13px;
  pointer-events: none;
}

.search-title {
  align-self: center;
  padding-right: 14px;
  border-right: 1px solid #eadfce;
}

.search-title strong {
  display: block;
  color: #151b1b;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.05;
}

.search-title span {
  margin: 7px 0 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.search label { min-width: 0; }
.search span {
  display: block;
  margin-bottom: 8px;
  color: #404846;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.search .search-title span {
  margin: 7px 0 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.search input,
.search select {
  width: 100%;
  height: 43px;
  padding: 0 16px;
  color: #1d2423;
  background: #fff;
  border: 1px solid #e5ded5;
  border-radius: 7px;
  font-size: 14px;
}

.search button {
  height: 48px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(135deg, #d9a24b, #b98233);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 13px 26px rgba(200, 148, 70, .32);
}

main { background: #fff; }

.collection {
  width: min(1130px, calc(100% - 92px));
  margin: 62px auto 0;
  display: grid;
  grid-template-columns: minmax(260px, 280px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.section-intro { min-width: 0; }
.section-intro h2 {
  margin-bottom: 24px;
  color: #111;
  font-size: clamp(34px, 3.2vw, 42px);
  line-height: 1.12;
  overflow-wrap: break-word;
}
.section-intro p:not(.section-kicker) { margin: 0 0 28px; color: #4f5856; font-size: 15px; }

.outline {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  position: relative;
}

.cards::after {
  content: "";
  position: absolute;
  right: -30px;
  top: 118px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: #151b1b;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(16, 26, 28, .16);
  z-index: 3;
}

.cards::before {
  content: "";
  position: absolute;
  right: -12px;
  top: 137px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #151b1b;
  border-right: 2px solid #151b1b;
  transform: rotate(45deg);
  z-index: 4;
  pointer-events: none;
}

.card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(19, 27, 27, .08);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card-media { height: 210px; position: relative; overflow: hidden; }
.card-media img { width: 100%; height: 100%; display: block; object-fit: cover; }

.badge {
  position: absolute;
  left: 18px;
  top: 16px;
  min-width: 94px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  color: #fff;
  background: var(--gold);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.heart {
  position: absolute;
  right: 18px;
  top: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.card-body { padding: 20px 18px 18px; }
.card h3 { margin-bottom: 12px; font-size: 21px; line-height: 1.2; }

.place {
  margin: 0 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #69716f;
  font-size: 13px;
}

.place svg { width: 15px; height: 15px; color: var(--gold); }

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 10px;
}

.details {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #757e7b;
  font-size: 12px;
}

.details span { display: inline-flex; align-items: center; gap: 4px; }
.details svg { width: 14px; height: 14px; color: var(--gold); }
.price-row strong { font-size: 17px; white-space: nowrap; }
.price-row small { color: #6a7370; font-size: 12px; font-weight: 500; }

.benefits {
  margin-top: 64px;
  padding: 50px max(46px, calc((100vw - 1130px) / 2)) 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fbfaf8;
  position: relative;
}

.anchor-target {
  position: absolute;
  top: -110px;
  left: 0;
}

.benefit {
  min-height: 194px;
  padding: 0 48px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  border-right: 1px solid #ded6c9;
}

.benefit:last-child { border-right: 0; }
.benefit svg { width: 48px; height: 48px; margin-bottom: 18px; color: var(--gold); stroke-width: 1.45; }
.benefit h3 { margin-bottom: 12px; font-size: 21px; }
.benefit p { margin: 0 0 18px; color: #535d5b; font-size: 14px; }
.benefit a { color: var(--gold); font-size: 12px; font-weight: 900; text-transform: uppercase; }

.locations {
  width: min(1180px, calc(100% - 72px));
  min-height: 360px;
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: 320px minmax(430px, 1fr) 340px;
  background: #f7f5f1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(16, 26, 28, .12);
}

.location-copy {
  padding: 48px 42px 44px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12, 21, 23, .92), rgba(12, 21, 23, .68)),
    url("../experience.jpg") center / cover no-repeat;
}

.location-copy h2,
.experience h2 { margin-bottom: 16px; color: #fff; font-size: 34px; }

.location-copy p {
  max-width: 260px;
  margin: 0 0 28px;
  color: rgba(255,255,255,.92);
  font-size: 16px;
  line-height: 1.6;
}
.outline.dark { color: var(--gold-light); background: rgba(0,0,0,.18); }

.map-panel {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  background: #e8f0ed;
}

.map-panel img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.92) contrast(1.02);
}

.map-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px 0 34px;
  color: #fff;
  background: #152023;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
}

.map-pin::before {
  content: "";
  position: absolute;
  left: -5px;
  top: -11px;
  width: 30px;
  height: 30px;
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: #121b1d;
  transform: rotate(-45deg);
  box-shadow: 0 6px 13px rgba(0,0,0,.2);
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 1px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.pin-one { left: 31%; top: 62%; }
.pin-two { left: 52%; top: 47%; }
.pin-three { left: 70%; top: 24%; }

.review {
  padding: 44px 38px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}
.quote { height: 44px; color: var(--gold); font-family: var(--serif); font-size: 62px; line-height: .6; }
.review p {
  max-width: 280px;
  margin: 0 0 26px;
  color: #46504d;
  font-size: 15px;
  line-height: 1.6;
}

.author { display: flex; align-items: center; gap: 14px; }
.author span { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #eed0b8, #8a6550); }
.author strong { display: grid; font-size: 14px; }
.author small { margin-top: 2px; color: #68716e; font-size: 12px; }
.dots { margin-top: 34px; display: flex; justify-content: center; gap: 10px; }
.dots i { width: 10px; height: 10px; border-radius: 50%; background: #deddda; }
.dots i:first-child { width: 22px; border-radius: 999px; background: var(--gold); }

.contact-lines {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.contact-lines a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  padding: 0 14px;
  color: #172123;
  background: #f8f4ed;
  border: 1px solid #eadfce;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  word-break: break-word;
}

.contact-lines a:last-child {
  color: #fff;
  background: #25d366;
  border-color: #25d366;
}

.contact-lines svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex: 0 0 auto;
}

.contact-lines a:last-child svg { color: #fff; }

.experience {
  margin-top: 0;
  padding: 42px max(46px, calc((100vw - 1130px) / 2)) 40px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 45px;
  align-items: center;
  color: #fff;
  background: #101a1c;
}

.experience p { margin: 0 0 36px; font-size: 16px; }

.life { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.life span { display: grid; justify-items: center; gap: 8px; text-align: center; color: #fff; font-size: 13px; line-height: 1.2; }
.life svg { color: var(--gold); width: 25px; height: 25px; }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery img { width: 100%; height: 150px; display: block; object-fit: cover; border-radius: 8px; }

.site-footer {
  padding: 26px max(46px, calc((100vw - 1130px) / 2));
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,.78);
  background:
    linear-gradient(90deg, rgba(12,20,22,.98), rgba(18,29,31,.96)),
    radial-gradient(circle at 15% 0%, rgba(200,148,70,.16), transparent 32%);
  border-top: 1px solid rgba(224,182,106,.18);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.05;
}

.footer-logo svg {
  width: 38px;
  height: 38px;
  color: var(--gold);
  stroke-width: 1.7;
}

.footer-logo span { display: grid; font-size: 18px; }
.footer-logo small { color: var(--gold); font-size: 12px; }

.site-footer nav,
.footer-contact {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer nav { justify-content: center; }
.site-footer nav a,
.footer-contact a {
  transition: color .18s ease;
}

.site-footer nav a:hover,
.footer-contact a:hover {
  color: var(--gold-light);
}
.footer-contact a:last-child { color: var(--gold-light); }
.footer-contact a[href^="mailto:"] { text-transform: none; color: rgba(255,255,255,.9); }

.inner-page {
  background: #f8f6f1;
}

.inner-header {
  width: 100%;
  max-width: none;
  padding: 0 max(34px, calc((100vw - 1190px) / 2));
  color: #fff;
  background:
    linear-gradient(90deg, rgba(12,20,22,.98), rgba(18,29,31,.94)),
    radial-gradient(circle at 12% 0%, rgba(200,148,70,.16), transparent 34%);
}

.content-page {
  width: min(1130px, calc(100% - 72px));
  margin: 0 auto;
  padding: 46px 0 74px;
}

.breadcrumbs {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #687170;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--gold);
}

.content-hero {
  min-height: 360px;
  padding: 54px;
  display: grid;
  align-content: end;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(9,15,17,.86), rgba(9,15,17,.46)),
    url("../hero.jpg") center / cover no-repeat;
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(16,26,28,.16);
}

.content-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(44px, 6vw, 74px);
  line-height: .95;
  text-transform: none;
}

.content-hero p:not(.section-kicker) {
  max-width: 680px;
  margin: 0 0 26px;
  color: rgba(255,255,255,.9);
  font-size: 18px;
}

.content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.content-actions .booking,
.content-actions .outline {
  min-width: 150px;
  padding: 0 24px;
}

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

.content-card {
  min-height: 260px;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(19,27,27,.08);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(16,26,28,.08);
}

.content-card h2 {
  margin-bottom: 16px;
  color: #111;
  font-size: 28px;
  line-height: 1.12;
}

.content-card p {
  margin: 0;
  color: #53605c;
  font-size: 16px;
  line-height: 1.7;
}

.content-gallery {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
}

.content-gallery img {
  width: 100%;
  height: 260px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.content-gallery img:first-child {
  height: 330px;
  grid-row: span 2;
}

.whatsapp-float {
  position: fixed;
  right: 34px;
  bottom: 34px;
  min-width: 158px;
  height: 58px;
  padding: 0 22px 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: #25d366;
  border-radius: 999px;
  box-shadow: 0 16px 32px rgba(20, 80, 48, .28);
  z-index: 18;
  animation: whatsappSway 2.8s ease-in-out infinite;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 2;
  stroke: currentColor;
  stroke-width: 2.2;
}

.whatsapp-float strong {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.whatsapp-pulse,
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(37, 211, 102, .36);
  animation: whatsappPulse 2s ease-out infinite;
  z-index: 1;
}

.whatsapp-float::before { animation-delay: .7s; }

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .site-header,
html[dir="rtl"] .main-nav,
html[dir="rtl"] .header-actions,
html[dir="rtl"] .header-phone,
html[dir="rtl"] .logo-mark,
html[dir="rtl"] .footer-logo,
html[dir="rtl"] .site-footer nav,
html[dir="rtl"] .footer-contact,
html[dir="rtl"] .language button,
html[dir="rtl"] .language-menu a,
html[dir="rtl"] .place,
html[dir="rtl"] .details span,
html[dir="rtl"] .whatsapp-float {
  direction: rtl;
}

html[dir="rtl"] .language { justify-self: start; }
html[dir="rtl"] .language-menu { right: auto; left: 0; }
html[dir="rtl"] .search-title {
  padding-right: 0;
  padding-left: 14px;
  border-right: 0;
  border-left: 1px solid #eadfce;
}

html[dir="rtl"] .badge { left: auto; right: 18px; }
html[dir="rtl"] .heart { right: auto; left: 18px; }
html[dir="rtl"] .cards::after { right: auto; left: -30px; }
html[dir="rtl"] .cards::before {
  right: auto;
  left: -12px;
  transform: rotate(-135deg);
}

html[dir="rtl"] .map-pin {
  padding: 0 34px 0 12px;
}

html[dir="rtl"] .map-pin::before {
  left: auto;
  right: -5px;
}

html[dir="rtl"] .map-pin::after {
  left: auto;
  right: 7px;
}

html[dir="rtl"] .benefit { border-right: 0; border-left: 1px solid #ded6c9; }
html[dir="rtl"] .benefit:last-child { border-left: 0; }
html[dir="rtl"] .whatsapp-float { right: auto; left: 34px; }
html[dir="rtl"] .breadcrumbs,
html[dir="rtl"] .content-actions { direction: rtl; }

@keyframes whatsappPulse {
  0% { transform: scale(.92); opacity: .72; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}

@keyframes whatsappSway {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  18% { transform: rotate(-6deg) translateY(-2px); }
  36% { transform: rotate(6deg) translateY(0); }
  54% { transform: rotate(-4deg) translateY(-1px); }
  72% { transform: rotate(3deg) translateY(0); }
}

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 210px 1fr 186px 92px; }
  .main-nav, .header-phone { display: none; }
  .header-actions { justify-self: end; width: 186px; }
  .collection { grid-template-columns: 1fr; }
  .benefit { padding: 0 24px; }
  .locations {
    width: calc(100% - 48px);
    grid-template-columns: minmax(260px, .8fr) minmax(360px, 1.2fr);
  }

  .review {
    grid-column: 1 / -1;
    min-height: 220px;
  }
  .experience { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .hero { min-height: 500px; }
  .site-header {
    width: calc(100% - 34px);
    grid-template-columns: 1fr 86px 88px;
    gap: 12px;
  }

  .header-actions {
    display: grid;
    width: 86px;
    grid-template-columns: 1fr;
  }

  .booking-top { display: none; }
  .transfer-top { height: 38px; font-size: 11px; }
  .logo-mark svg { width: 38px; height: 38px; }
  .logo-mark span { font-size: 15px; }
  .logo-mark small { font-size: 12px; }
  .language button { width: 88px; }

  .hero-content { width: calc(100% - 40px); margin-top: 40px; }
  h1 { font-size: 56px; }
  .eyebrow { font-size: 31px; }
  .subtitle { font-size: 18px; margin: 14px 0 12px; }
  .lead { font-size: 13px; max-width: 345px; }

  .search {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
    margin-top: -120px;
    padding: 18px 18px 18px;
    gap: 14px;
  }

  .search-title {
    border-right: 0;
    border-bottom: 1px solid #eadfce;
    padding: 0 0 10px;
  }

  html[dir="rtl"] .search-title {
    border-left: 0;
    border-bottom: 1px solid #eadfce;
    padding: 0 0 10px;
  }

  .search-title strong { font-size: 26px; }
  .search input,
  .search select,
  .search button { height: 42px; }

  .collection { width: calc(100% - 40px); margin-top: 54px; }
  .cards { grid-template-columns: 1fr; }
  .cards::before,
  .cards::after { display: none; }
  .card-media { height: 220px; }
  .benefits { grid-template-columns: 1fr; padding: 26px 20px; }
  .benefit { border-right: 0; border-bottom: 1px solid #ded6c9; }
  .benefit:last-child { border-bottom: 0; }
  .locations { grid-template-columns: 1fr; }
  .location-copy { padding: 34px 24px; }
  .location-copy p { max-width: 100%; }
  .map-panel { min-height: 270px; }
  .review { padding: 34px 24px; min-height: 0; }
  .map-pin { font-size: 11px; min-height: 30px; padding: 0 9px 0 29px; }
  .map-pin::before { width: 25px; height: 25px; border-width: 4px; }
  .map-pin::after { left: 5px; top: 0; }
  .experience { padding: 36px 20px; }
  .life { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 24px 20px 88px;
  }

  .content-page { width: calc(100% - 40px); padding: 28px 0 54px; }
  .content-hero { min-height: 320px; padding: 30px 24px; }
  .content-hero h1 { font-size: 40px; }
  .content-grid,
  .content-gallery { grid-template-columns: 1fr; }
  .content-card { min-height: 0; padding: 24px; }
  .content-gallery img,
  .content-gallery img:first-child { height: 230px; grid-row: auto; }

  .site-footer nav,
  .footer-contact {
    flex-wrap: wrap;
    gap: 14px;
  }
  .whatsapp-float {
    right: 12px;
    bottom: 14px;
    min-width: 132px;
    height: 48px;
    padding: 0 15px 0 14px;
    gap: 8px;
  }

  .whatsapp-float svg { width: 20px; height: 20px; }
  .whatsapp-float strong { font-size: 12px; }
  html[dir="rtl"] .benefit { border-left: 0; }
  html[dir="rtl"] .whatsapp-float { left: 12px; right: auto; }
}
