:root {
  --bg: #fff7fb;
  --bg-soft: #fffafd;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --ink: #47333f;
  --muted: #7b6472;
  --line: rgba(137, 95, 118, 0.14);
  --line-strong: rgba(137, 95, 118, 0.22);
  --primary: #d8709d;
  --primary-deep: #b44f7f;
  --primary-soft: #f7d7e6;
  --primary-pale: #fdeef5;
  --rose: #f3bfd5;
  --pink-cloud: #ffe8f2;
  --lavender-blush: #f8f0fb;
  --white: #ffffff;

  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Vazirmatn", "Segoe UI", sans-serif;
  --font-fa: "Vazirmatn", "Tahoma", sans-serif;

  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --radius-xl: 44px;

  --shadow-soft: 0 16px 46px rgba(168, 111, 146, 0.1);
  --shadow-card: 0 20px 56px rgba(164, 109, 142, 0.13);
  --shadow-strong: 0 28px 80px rgba(143, 88, 121, 0.18);

  --transition: 240ms ease;
  --container: min(100% - 2rem, 1180px);
  --header-h: 84px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(76, 41, 59, 0.28), rgba(104, 57, 81, 0.18)),
    url("../assets/images/background.gif") center 18% / cover fixed no-repeat;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: url("../assets/images/background\ 2.gif") center 10% / cover no-repeat;
  opacity: 0.24;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 246, 250, 0.40), rgba(247, 232, 240, 0.56)),
    radial-gradient(circle at 50% 12%, rgba(255, 233, 242, 0.12), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(248, 221, 236, 0.10), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(114, 57, 86, 0.22), transparent 38%);
}

.site-header,
main,
.site-footer,
.chatbot,
.language-modal,
.lightbox {
  position: relative;
  z-index: 1;
}

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

img {
  display: block;
  width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

ul {
  list-style: none;
}

main {
  padding-top: var(--header-h);
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 6vw, 5.6rem) 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 246, 251, 0.38)),
    radial-gradient(circle at top left, rgba(248, 221, 236, 0.18), transparent 26%);
}

.eyebrow,
.booking-banner-label,
.mini-label,
.feature-tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-deep);
}

h1,
h2,
h3 {
  color: #4f3846;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.25rem);
}

h2 {
  font-size: clamp(1.85rem, 3.8vw, 3.1rem);
}

h3 {
  font-size: clamp(1.22rem, 2.1vw, 1.7rem);
}

p {
  color: var(--muted);
}

.lang-fa {
  display: none;
}

html[lang="fa"] body {
  font-family: var(--font-fa);
}

html[lang="fa"] h1,
html[lang="fa"] h2,
html[lang="fa"] h3 {
  font-family: var(--font-fa);
  line-height: 1.55;
  letter-spacing: 0;
}

html[lang="fa"] .lang-fa {
  display: inline;
}

html[lang="fa"] .lang-en {
  display: none;
}

html[lang="en"] .lang-en {
  display: inline;
}

html[lang="en"] .lang-fa {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 300;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(255, 250, 252, 0.28), rgba(255, 250, 252, 0.08));
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  background: linear-gradient(180deg, rgba(255, 252, 254, 0.82), rgba(255, 247, 251, 0.72));
  border-bottom-color: rgba(151, 97, 124, 0.16);
  box-shadow: 0 18px 42px rgba(139, 87, 116, 0.12);
  backdrop-filter: blur(20px);
}

.nav-wrap {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
}

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

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 24px rgba(174, 113, 145, 0.16);
  background: linear-gradient(135deg, var(--primary-soft), var(--pink-cloud));
}

.brand-text {
  color: #5e4451;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav {
  justify-self: end;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.7vw, 1.4rem);
}

.site-nav a {
  position: relative;
  padding: 0.18rem 0;
  color: #664d5b;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #efb7cf);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.lang-switcher {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.28rem;
  border: 1px solid rgba(157, 105, 130, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.lang-btn,
.nav-toggle,
.icon-btn,
.chat-suggestion,
.gallery-tile,
.lightbox-close {
  -webkit-tap-highlight-color: transparent;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #654a58;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #654a58;
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #df6e9e, #b44f7f 55%, #954465);
  box-shadow: 0 18px 38px rgba(172, 82, 124, 0.28);
}

.btn-secondary {
  color: #6c4c5d;
  background: linear-gradient(135deg, rgba(255, 250, 252, 0.96), rgba(247, 215, 230, 0.78));
  border-color: rgba(182, 121, 154, 0.22);
  box-shadow: 0 14px 32px rgba(183, 124, 154, 0.12);
}

.btn-ghost {
  color: #6c4c5d;
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(182, 121, 154, 0.18);
  backdrop-filter: blur(12px);
}

.wide {
  width: 100%;
}

.hero-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(1.7rem, 4vw, 2.7rem) 0 clamp(3.7rem, 7vw, 5.8rem);
  background: transparent;
}

.hero-gif-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 238, 245, 0.26), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(255, 230, 239, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 250, 252, 0.10), rgba(255, 244, 248, 0.18));
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255, 247, 250, 0.20),
      rgba(255, 241, 247, 0.12),
      rgba(255, 250, 252, 0.18)
    );
  z-index: 0;
  pointer-events: none;
}

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

.hero-ambient {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.7;
}

.orb-1 {
  width: 18rem;
  height: 18rem;
  top: 2rem;
  left: 5%;
  background: rgba(247, 185, 217, 0.42);
  animation: floatA 16s ease-in-out infinite alternate;
}

.orb-2 {
  width: 16rem;
  height: 16rem;
  top: 10rem;
  right: 12%;
  background: rgba(255, 230, 240, 0.9);
  animation: floatB 14s ease-in-out infinite alternate;
}

.orb-3 {
  width: 13rem;
  height: 13rem;
  bottom: 3rem;
  left: 40%;
  background: rgba(240, 205, 227, 0.52);
  animation: floatC 18s ease-in-out infinite alternate;
}

.booking-banner,
.hero-copy,
.hero-visual,
.about-photo-card,
.about-feature-card,
.booking-panel,
.steps-card,
.contact-card,
.contact-form,
.map-card,
.language-box,
.redirect-card {
  border: 1px solid rgba(163, 109, 136, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.80), rgba(255, 250, 253, 0.94));
  box-shadow: 0 22px 54px rgba(139, 86, 115, 0.14);
  backdrop-filter: blur(16px);
}

.booking-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.4rem;
  box-shadow: 0 18px 50px rgba(145, 89, 119, 0.12);
}

.booking-banner-text {
  margin-top: 0.25rem;
  font-size: 0.96rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.96fr);
  gap: clamp(1.15rem, 3vw, 2rem);
  align-items: stretch;
}

.hero-copy {
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.7rem);
  background:
    radial-gradient(circle at top right, rgba(247, 215, 230, 0.34), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 251, 0.90));
}

.hero-text {
  margin-top: 1rem;
  max-width: 62ch;
  font-size: 1rem;
}

.hero-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.hero-pills li {
  padding: 0.58rem 0.88rem;
  border: 1px solid rgba(198, 138, 171, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #6b5160;
  font-size: 0.84rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 1rem;
  min-height: 36rem;
  background:
    radial-gradient(circle at top left, rgba(255, 235, 244, 0.62), transparent 20%),
    linear-gradient(160deg, rgba(252, 241, 247, 0.95), rgba(244, 225, 235, 0.90));
}

.hero-visual-frame {
  position: relative;
  height: 100%;
  min-height: 34rem;
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 10px);
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.hero-visual-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(180, 98, 136, 0.14)),
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 20%),
    linear-gradient(135deg, rgba(255, 224, 237, 0.16), rgba(183, 111, 145, 0.08));
}

.hero-visual-badge,
.hero-floating-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 251, 253, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.hero-visual-badge {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  text-align: center;
  color: #694d5d;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-floating-card {
  max-width: 16rem;
  border-radius: 22px;
  padding: 0.95rem 1rem;
}

.hero-floating-card strong,
.map-card strong {
  display: block;
  color: #5a3f4f;
  font-size: 1rem;
  line-height: 1.4;
}

.hero-floating-card a {
  display: inline-block;
  margin-top: 0.3rem;
  color: var(--primary-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-floating-card-top {
  top: 1.2rem;
  left: 1.2rem;
}

.hero-floating-card-bottom {
  right: 1.2rem;
  bottom: 5.2rem;
}

.section-head {
  max-width: 56rem;
  margin-bottom: 1.75rem;
}

.section-head p:last-child,
.about-content p + p {
  margin-top: 0.9rem;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center;
}

.about-photo-card {
  border-radius: var(--radius-xl);
  padding: 1rem;
}

.about-photo-shell {
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 10px);
  aspect-ratio: 4 / 5;
}

.about-photo-shell img {
  height: 100%;
  object-fit: cover;
}

.about-photo-copy {
  padding: 1rem 0.5rem 0.4rem;
}

.about-photo-copy p:last-child {
  margin-top: 0.4rem;
}

.about-content {
  max-width: 100%;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-feature-card {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.about-feature-card-accent {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(150deg, rgba(203, 112, 156, 0.96), rgba(175, 84, 127, 0.94));
}

.about-feature-card-accent h3,
.about-feature-card-accent p,
.about-feature-card-accent .feature-tag {
  color: #fff6fb;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(216, 112, 157, 0.16), rgba(243, 191, 213, 0.38));
  color: var(--primary-deep);
  font-size: 0.85rem;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 12rem;
  gap: 1rem;
}

.gallery-tile {
  border: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: zoom-in;
  box-shadow: 0 16px 42px rgba(138, 88, 116, 0.14);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.gallery-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.gallery-tile:hover img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.gallery-tile:hover {
  transform: translateY(-4px);
}

.tile-large {
  grid-row: span 2;
}

.book-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
}

.booking-panel,
.steps-card,
.contact-form,
.map-card {
  border-radius: var(--radius-xl);
  padding: clamp(1.35rem, 3vw, 2rem);
}

.booking-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 230, 240, 0.8), transparent 26%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.94), rgba(255, 242, 248, 0.94));
}

.booking-panel p {
  margin-top: 0.85rem;
}

.booking-panel-actions {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.booking-note {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.steps-card {
  display: grid;
  gap: 0.9rem;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: start;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(206, 146, 176, 0.14);
}

.step-item span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(216, 112, 157, 0.2), rgba(247, 215, 230, 0.9));
  color: var(--primary-deep);
  font-size: 0.85rem;
  font-weight: 700;
}

.step-item-soft {
  background: linear-gradient(145deg, rgba(255, 244, 249, 0.96), rgba(249, 232, 241, 0.92));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-card {
  border-radius: var(--radius-lg);
  padding: 1.15rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 247, 251, 0.92));
}

.contact-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.contact-card a {
  color: #5d4353;
  font-weight: 700;
}

.map-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.3rem;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.88), rgba(255, 241, 248, 0.92));
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.contact-form {
  display: grid;
  gap: 0.45rem;
  background:
    radial-gradient(circle at top right, rgba(255, 229, 239, 0.62), transparent 24%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.97), rgba(255, 246, 250, 0.95));
}

.form-intro {
  margin-top: -0.05rem;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.form-note {
  margin-bottom: 0.55rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(208, 152, 181, 0.18);
  border-radius: 18px;
  background: rgba(255, 250, 252, 0.82);
  color: #6c5060;
  font-size: 0.9rem;
}

.contact-form label {
  margin-top: 0.38rem;
  color: #634a59;
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.chatbot-form input {
  width: 100%;
  border: 1px solid rgba(196, 140, 169, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: #5f4656;
  padding: 0.9rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition), transform var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.chatbot-form input:focus {
  outline: none;
  border-color: rgba(180, 79, 127, 0.4);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(233, 176, 202, 0.22);
}

.contact-form textarea {
  resize: vertical;
  min-height: 7rem;
}

.form-status {
  min-height: 1.4rem;
  margin-top: 0.45rem;
  color: var(--primary-deep);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status.is-error {
  color: #b63f67;
}

.mail-link-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.mail-client-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(182, 121, 154, 0.22);
  background: rgba(255, 255, 255, 0.88);
  color: #6b4d5d;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(165, 106, 135, 0.12);
}

.mail-client-btn:hover {
  transform: translateY(-1px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(72, 43, 58, 0.84);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.7rem;
  cursor: pointer;
}

.lightbox-figure {
  max-width: min(960px, 92vw);
}

.lightbox-figure img {
  width: auto;
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-lg);
}

.lightbox-figure figcaption {
  margin-top: 0.65rem;
  color: #fff6fb;
  text-align: center;
}

.site-footer {
  padding: 2.1rem 0 1rem;
  border-top: 1px solid rgba(210, 160, 186, 0.16);
  background: linear-gradient(180deg, rgba(255, 247, 252, 0.48), rgba(255, 242, 248, 0.82));
}

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

.footer-grid h3 {
  margin-bottom: 0.35rem;
}

.footer-grid a {
  color: var(--primary-deep);
  font-weight: 700;
}

.copyright {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.language-modal {
  position: fixed;
  inset: 0;
  z-index: 650;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(79, 52, 66, 0.68);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.language-modal.open {
  opacity: 1;
  visibility: visible;
}

.language-box {
  width: min(100%, 430px);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
}

.language-box p {
  margin-top: 0.7rem;
}

.language-actions {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.chatbot {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 620;
}

.chatbot-toggle {
  border: 0;
  border-radius: 999px;
  padding: 0.86rem 1.2rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 18px 44px rgba(180, 79, 127, 0.3);
  cursor: pointer;
  position: relative;
}

.chatbot-toggle.has-alert {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

.chatbot-badge {
  position: absolute;
  top: -0.28rem;
  inset-inline-end: -0.15rem;
  min-width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  padding-inline: 0.25rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--primary-deep);
  font-size: 0.66rem;
  font-weight: 700;
  transform: scale(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.chatbot-badge.visible {
  transform: scale(1);
}

.chatbot-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.8rem);
  width: min(94vw, 390px);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: rgba(255, 251, 253, 0.98);
  box-shadow: var(--shadow-strong);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.chatbot-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1rem;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(145deg, #d56f9b, #b24f7e);
  color: var(--white);
}

.chatbot-head h3 {
  color: inherit;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
}

.chatbot-head p {
  margin-top: 0.14rem;
  color: rgba(255, 244, 250, 0.9);
  font-size: 0.82rem;
}

.chatbot-head-actions {
  display: flex;
  gap: 0.35rem;
}

.icon-btn {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
}

#chatbot-sound[data-muted="true"] .sound-on,
#chatbot-sound[data-muted="false"] .sound-off {
  display: none;
}

.chatbot-messages {
  display: grid;
  gap: 0.65rem;
  max-height: 320px;
  overflow: auto;
  padding: 1rem;
}

.chat-msg {
  max-width: 88%;
  border-radius: 18px;
  padding: 0.72rem 0.86rem;
  line-height: 1.55;
  font-size: 0.9rem;
  animation: fadeSlide 260ms ease;
}

.chat-msg.bot {
  justify-self: start;
  background: rgba(249, 232, 241, 0.94);
  color: #573f4d;
}

.chat-msg.user {
  justify-self: end;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: var(--white);
}

.chat-typing {
  display: inline-flex;
  gap: 4px;
}

.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-deep);
  animation: blink 1s infinite ease;
}

.chat-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.chat-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

.chatbot-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 1rem 0.9rem;
}

.chat-suggestion {
  border: 1px solid rgba(203, 141, 172, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #654a58;
  padding: 0.48rem 0.74rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.chat-suggestion:hover {
  background: rgba(247, 215, 230, 0.4);
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(206, 146, 176, 0.14);
  padding-top: 0.95rem;
}

.chatbot-form input {
  min-width: 0;
}

.chatbot-send {
  min-width: 84px;
}

.chat-link {
  color: var(--primary-deep);
  font-weight: 700;
  text-decoration: underline;
}

.section-highlight {
  box-shadow: 0 0 0 2px rgba(216, 112, 157, 0.22), 0 0 0 12px rgba(247, 215, 230, 0.26);
  border-radius: var(--radius-lg);
  transition: box-shadow 700ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.redirect-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 1.5rem;
}

.redirect-card {
  max-width: 34rem;
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
}

.redirect-card p {
  margin-top: 0.8rem;
}

button,
input,
select,
textarea,
a {
  outline-offset: 3px;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible {
  outline: 2px solid rgba(180, 79, 127, 0.5);
}

html[dir="rtl"] .nav-wrap {
  grid-template-columns: auto auto 1fr auto;
}

html[dir="rtl"] .site-nav {
  justify-self: start;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .about-content,
html[dir="rtl"] .about-photo-copy,
html[dir="rtl"] .section-head,
html[dir="rtl"] .booking-panel,
html[dir="rtl"] .steps-card,
html[dir="rtl"] .contact-copy,
html[dir="rtl"] .contact-form,
html[dir="rtl"] .language-box,
html[dir="rtl"] .redirect-card,
html[dir="rtl"] .chat-msg,
html[dir="rtl"] .chatbot-form input {
  text-align: right;
}

html[dir="rtl"] .chatbot {
  left: 1rem;
  right: auto;
}

html[dir="rtl"] .chatbot-panel {
  left: 0;
  right: auto;
}

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

@keyframes blink {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 1;
  }
}

@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(216, 112, 157, 0.26), 0 18px 44px rgba(180, 79, 127, 0.3);
  }
  60% {
    box-shadow: 0 0 0 12px rgba(216, 112, 157, 0), 0 18px 44px rgba(180, 79, 127, 0.3);
  }
}

@keyframes floatA {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(4%, 3%, 0) scale(1.05);
  }
}

@keyframes floatB {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(-4%, -3%, 0) scale(1.08);
  }
}

@keyframes floatC {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(5%, -5%, 0) scale(1.06);
  }
}

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

  .hero-visual {
    min-height: auto;
  }

  .hero-visual-frame {
    min-height: 30rem;
  }
}

@media (max-width: 920px) {
  .nav-wrap {
    grid-template-columns: 1fr auto auto;
  }

  html[dir="rtl"] .nav-wrap {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-h) - 0.15rem);
    left: 1rem;
    right: 1rem;
    z-index: 350;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 252, 254, 0.97);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .contact-cards,
  .gallery-grid,
  .footer-grid,
  .about-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-auto-rows: 11rem;
  }

  .hero-floating-card-bottom {
    right: 1rem;
    bottom: 5rem;
  }

  .booking-banner,
  .map-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  :root {
    --header-h: 78px;
    --container: min(100% - 1.2rem, 1180px);
  }

  body {
    font-size: 15px;
  }

  .hero-copy,
  .hero-visual,
  .about-photo-card,
  .booking-panel,
  .steps-card,
  .contact-form,
  .map-card,
  .language-box,
  .redirect-card {
    padding: 1.1rem;
  }

  .contact-cards,
  .gallery-grid,
  .footer-grid,
  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 12rem;
  }

  .tile-large {
    grid-row: span 1;
  }

  .hero-actions,
  .map-actions,
  .language-actions,
  .booking-panel-actions {
    width: 100%;
    display: grid;
  }

  .hero-actions .btn,
  .map-actions .btn,
  .language-actions .btn,
  .booking-banner .btn,
  .booking-panel-actions .btn {
    width: 100%;
  }

  .hero-visual-frame {
    min-height: 24rem;
  }

  .hero-floating-card {
    max-width: calc(100% - 2rem);
    padding: 0.8rem 0.85rem;
  }

  .hero-floating-card-top {
    top: 0.8rem;
    left: 0.8rem;
  }

  .hero-floating-card-bottom {
    right: 0.8rem;
    bottom: 4.7rem;
  }

  .chatbot {
    left: 0.8rem;
    right: 0.8rem;
  }

  .chatbot-toggle,
  .chatbot-panel {
    width: 100%;
  }

  .chatbot-panel {
    right: 0;
    left: 0;
  }

  .chatbot-form {
    grid-template-columns: 1fr;
  }

  .chatbot-send {
    width: 100%;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  h2 {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }

  .hero-pills {
    display: grid;
  }

  .hero-floating-card {
    max-width: none;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* ===== TEXT VISIBILITY FIX: WHITE BOXES FOR TEXT THAT HAS NO CARD ===== */

.about-content > .eyebrow,
.section-head > .eyebrow,
.contact-copy > .eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 0.48rem 0.82rem;
  border: 1px solid rgba(121, 76, 99, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(125, 81, 104, 0.10);
  backdrop-filter: blur(8px);
}

.about-content > h2,
.section-head > h2,
.contact-copy > h2 {
  margin-top: 0.75rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(121, 76, 99, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(125, 81, 104, 0.12);
  color: #22181f;
}

.about-content > h2 span,
.section-head > h2 span,
.contact-copy > h2 span {
  color: #22181f;
}

.about-content > p,
.section-head > p,
.contact-copy > p {
  margin-top: 0.85rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(121, 76, 99, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(125, 81, 104, 0.10);
  color: #3a2b33;
  backdrop-filter: blur(8px);
}

.about-content > p span,
.section-head > p span,
.contact-copy > p span {
  color: #3a2b33;
}

@media (max-width: 700px) {
  .about-content > h2,
  .section-head > h2,
  .contact-copy > h2,
  .about-content > p,
  .section-head > p,
  .contact-copy > p {
    padding: 0.9rem 1rem;
    border-radius: 22px;
  }
}