
:root {
  --navy-950: #04142d;
  --navy-900: #071b3b;
  --navy-800: #0a2e66;
  --blue-600: #087fca;
  --cyan-500: #0a9edb;
  --cyan-300: #4fe1e8;
  --yellow-400: #ffd817;
  --pink-500: #ef0a78;
  --orange-500: #ff7a19;
  --lime-400: #b7db1e;
  --paper: #f5f8fc;
  --white: #fff;
  --ink: #091b36;
  --muted: #64748b;
  --line: rgba(7, 27, 59, 0.12);
  --shadow-sm: 0 12px 40px rgba(5, 25, 58, 0.09);
  --shadow-lg: 0 30px 90px rgba(2, 15, 36, 0.24);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 40px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Vazirmatn", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body, button, input, select, textarea { font-family: "Vazirmatn", sans-serif; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
::selection { background: var(--yellow-400); color: var(--navy-950); }
:focus-visible { outline: 3px solid var(--yellow-400); outline-offset: 4px; }
.shell { width: min(calc(100% - 48px), 1240px); margin-inline: auto; }
.section { position: relative; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  color: var(--white);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.site-header.is-scrolled {
  background: rgba(4, 20, 45, .94);
  box-shadow: 0 14px 45px rgba(2, 14, 34, .26);
  backdrop-filter: blur(18px) saturate(140%);
}
.topbar { border-bottom: 1px solid rgba(255, 255, 255, .13); }
.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 650;
}
.topbar-inner > span, .topbar-inner > div { display: flex; align-items: center; gap: 16px; }
.topbar-inner i {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--lime-400);
  box-shadow: 0 0 0 5px rgba(183, 219, 30, .12);
}
.topbar-inner button {
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .32);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
}
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 34px; }
.brand { min-width: 222px; display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
}
.brand-mark::before, .brand-mark i {
  content: "";
  position: absolute;
  left: -9px;
  width: 64px;
  height: 25px;
  border: 4px solid var(--cyan-300);
  border-color: var(--cyan-300) transparent transparent;
  border-radius: 50%;
  transform: rotate(-9deg);
}
.brand-mark::before { top: 19px; }
.brand-mark i:nth-child(1) { top: 28px; opacity: .67; }
.brand-mark i:nth-child(2) { top: 36px; opacity: .34; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-size: 15px; font-weight: 900; }
.brand-copy small {
  margin-top: 5px;
  color: rgba(255, 255, 255, .55);
  font-size: 7px;
  font-weight: 750;
  letter-spacing: .16em;
  direction: ltr;
}
.main-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 700;
}
.main-nav a { position: relative; padding: 31px 0; transition: color .2s ease; }
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 23px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--yellow-400);
  transition: width .2s ease;
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }
.header-cta {
  min-height: 44px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  border-radius: 999px;
  background: var(--yellow-400);
  color: var(--navy-950);
  box-shadow: 0 12px 32px rgba(255, 216, 23, .2);
  font-size: 11px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 17px 38px rgba(255, 216, 23, .28); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
}
.menu-toggle span { width: 18px; height: 2px; display: block; margin: 5px auto; border-radius: 2px; background: var(--white); }

/* Hero */
.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy-950) url("/images/hero-premium.webp") center/cover no-repeat;
  color: var(--white);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(4, 20, 45, .08) 0%, rgba(4, 20, 45, .22) 35%, rgba(4, 20, 45, .91) 74%, rgba(4, 20, 45, .98) 100%),
    linear-gradient(0deg, rgba(4, 20, 45, .78) 0%, transparent 43%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 82% 44%, rgba(10, 158, 219, .22), transparent 32%);
}
.hero-orbit { position: absolute; z-index: -1; border: 1px solid rgba(79, 225, 232, .24); border-radius: 50%; }
.orbit-one { width: 520px; height: 520px; right: -225px; top: 182px; }
.orbit-two { width: 710px; height: 710px; right: -322px; top: 87px; opacity: .58; }
.hero-content { min-height: 730px; padding-top: 150px; display: flex; align-items: center; }
.hero-copy { width: min(100%, 660px); }
.hero-badge {
  width: fit-content;
  padding: 8px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, .82);
  font-size: 10px;
  font-weight: 700;
}
.hero-badge span { color: var(--lime-400); font-size: 9px; }
.hero h1 {
  margin: 24px 0 22px;
  font-size: clamp(50px, 5.8vw, 84px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -.055em;
}
.hero h1 em { color: var(--yellow-400); font-style: normal; }
.hero-copy > p { max-width: 570px; margin: 0; color: rgba(255, 255, 255, .74); font-size: 16px; line-height: 2; }
.hero-actions { margin-top: 33px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.button {
  min-height: 56px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--yellow-400); color: var(--navy-950); box-shadow: 0 16px 38px rgba(255, 216, 23, .22); }
.button-primary:hover { background: #ffe34c; box-shadow: 0 20px 46px rgba(255, 216, 23, .3); }
.button-glass { border: 1px solid rgba(255, 255, 255, .31); background: rgba(255, 255, 255, .08); color: var(--white); backdrop-filter: blur(8px); }
.button-glass i { width: 27px; height: 27px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, .14); font-size: 8px; font-style: normal; }
.button-outline { border: 1px solid rgba(255, 255, 255, .34); background: transparent; color: var(--white); }
.button-outline:hover { border-color: var(--cyan-300); color: var(--cyan-300); }
.wide { width: 100%; }
.hero-trust { margin-top: 29px; display: flex; align-items: center; gap: 21px; flex-wrap: wrap; color: rgba(255, 255, 255, .62); font-size: 9px; font-weight: 650; }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust i { width: 18px; height: 18px; display: grid; place-items: center; border: 1px solid rgba(79, 225, 232, .46); border-radius: 50%; color: var(--cyan-300); font-style: normal; font-size: 8px; }
.quick-booking {
  position: absolute;
  right: 50%;
  bottom: 0;
  z-index: 4;
  min-height: 112px;
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr) .85fr;
  transform: translate(50%, 50%);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 25px 75px rgba(2, 15, 36, .28);
}
.quick-booking > * { position: relative; min-width: 0; padding: 22px 24px; }
.quick-booking > * + *::before { content: ""; position: absolute; inset: 23px auto 23px 0; width: 1px; background: var(--line); }
.quick-title { display: flex; flex-direction: column; justify-content: center; }
.quick-title span { color: var(--cyan-500); font-size: 9px; font-weight: 850; }
.quick-title strong { margin-top: 7px; font-size: 13px; }
.quick-booking button { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; border: 0; background: transparent; text-align: right; cursor: pointer; }
.quick-booking button small { color: var(--muted); font-size: 8px; }
.quick-booking button strong { margin-top: 6px; font-size: 11px; white-space: nowrap; }
.quick-booking button b { position: absolute; left: 21px; top: 47px; color: var(--muted); font-size: 12px; }
.quick-booking button strong i { width: 7px; height: 7px; display: inline-block; margin-left: 6px; border-radius: 50%; background: var(--lime-400); }
.quick-booking > a { display: flex; align-items: center; justify-content: center; gap: 15px; border-radius: 0 var(--radius-md) var(--radius-md) 0; background: var(--pink-500); color: var(--white); font-size: 11px; font-weight: 900; }

/* Proof and shared headings */
.proof-strip { padding: 97px 0 35px; background: var(--white); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { padding: 13px 28px; display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; }
.proof-grid > div + div { border-right: 1px solid var(--line); }
.proof-grid strong { color: var(--navy-800); font-size: 12px; font-weight: 900; }
.proof-grid span { color: var(--muted); font-size: 8px; }
.section-heading h2, .family-copy h2, .booking-intro h2, .platform-copy h2, .guide-copy h2 {
  margin: 15px 0 0;
  font-size: clamp(38px, 4.3vw, 60px);
  font-weight: 900;
  line-height: 1.34;
  letter-spacing: -.045em;
}
.kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--cyan-500); font-size: 10px; font-weight: 900; }
.kicker::before { content: ""; width: 28px; height: 2px; border-radius: 2px; background: currentColor; }
.kicker-light { color: var(--cyan-300); }
.heading-row { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.heading-row > p { margin: 0 0 7px; color: var(--muted); font-size: 13px; line-height: 2; }

/* Experiences */
.experiences-section { padding: 118px 0 135px; background: var(--white); }
.experience-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.experience-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 13px 42px rgba(5, 25, 58, .09);
}
.experience-card:nth-child(2), .experience-card:nth-child(3) { min-height: 330px; }
.experience-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.2,1); }
.experience-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(4, 20, 45, .93) 0%, rgba(4, 20, 45, .16) 72%); }
.experience-card:hover img { transform: scale(1.045); }
.experience-no, .experience-tag { position: absolute; top: 24px; z-index: 2; }
.experience-no { right: 24px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .52); border-radius: 50%; font-size: 9px; font-weight: 900; }
.experience-tag { left: 24px; padding: 7px 11px; border-radius: 999px; background: rgba(255, 255, 255, .91); color: var(--navy-950); font-size: 8px; font-weight: 900; }
.experience-card.pink .experience-tag { background: var(--pink-500); color: var(--white); }
.experience-card.yellow .experience-tag { background: var(--yellow-400); }
.experience-card.cyan .experience-tag { background: var(--cyan-300); }
.experience-card.orange .experience-tag { background: var(--orange-500); color: var(--white); }
.experience-copy { position: absolute; inset: auto 28px 27px; }
.experience-copy h3 { margin: 0; font-size: 24px; }
.experience-copy p { max-width: 490px; margin: 9px 0 0; color: rgba(255, 255, 255, .66); font-size: 10px; line-height: 1.8; }
.experience-copy a { margin-top: 15px; display: inline-flex; align-items: center; gap: 20px; color: var(--yellow-400); font-size: 9px; font-weight: 850; }

/* Family */
.family-section { padding: 135px 0 150px; overflow: hidden; background: var(--paper); }
.family-section::before { content: ""; position: absolute; left: -220px; top: 80px; width: 520px; height: 520px; border-radius: 50%; background: rgba(79, 225, 232, .11); filter: blur(2px); }
.family-layout { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 100px; }
.family-collage { position: relative; min-height: 610px; }
.family-main { width: 86%; height: 540px; object-fit: cover; border-radius: 110px 28px 28px 28px; box-shadow: var(--shadow-lg); }
.family-float { position: absolute; left: 0; bottom: 0; width: 45%; height: 230px; object-fit: cover; border: 10px solid var(--paper); border-radius: 26px; box-shadow: var(--shadow-sm); }
.family-score { position: absolute; right: -25px; bottom: 43px; min-width: 195px; padding: 24px; display: flex; flex-direction: column; border-radius: 22px; background: var(--yellow-400); color: var(--navy-950); box-shadow: 0 18px 45px rgba(7, 27, 59, .18); }
.family-score strong { font-size: 16px; }
.family-score span { margin-top: 5px; font-size: 9px; }
.family-copy > p { margin: 24px 0 0; color: var(--muted); font-size: 13px; line-height: 2; }
.family-copy ul { margin: 34px 0 0; padding: 0; list-style: none; }
.family-copy li { padding: 15px 0; display: flex; align-items: center; gap: 15px; }
.family-copy li + li { border-top: 1px solid var(--line); }
.family-copy li > i { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--navy-900); color: var(--cyan-300); font-style: normal; font-size: 9px; font-weight: 900; }
.family-copy li > div { display: flex; flex-direction: column; gap: 4px; }
.family-copy li strong { font-size: 12px; }
.family-copy li span { color: var(--muted); font-size: 9px; }
.text-arrow { width: fit-content; margin-top: 26px; padding: 0 0 7px; display: inline-flex; align-items: center; gap: 27px; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--navy-800); cursor: pointer; font-size: 10px; font-weight: 900; }

/* Booking */
.booking-section { padding: 132px 0; overflow: hidden; background: var(--navy-950); color: var(--white); }
.booking-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 14% 50%, rgba(10, 158, 219, .23), transparent 32%); }
.booking-wave { position: absolute; border: 1px solid rgba(79, 225, 232, .17); border-radius: 50%; }
.wave-one { width: 620px; height: 620px; left: -390px; bottom: -270px; }
.wave-two { width: 780px; height: 780px; left: -465px; bottom: -350px; opacity: .6; }
.booking-layout { position: relative; display: grid; grid-template-columns: .86fr 1.14fr; align-items: center; gap: 94px; }
.booking-intro > p { max-width: 510px; margin: 23px 0 0; color: rgba(255, 255, 255, .62); font-size: 12px; line-height: 2; }
.booking-intro ol { margin: 36px 0 0; padding: 0; list-style: none; }
.booking-intro li { padding: 15px 0; display: flex; align-items: center; gap: 17px; }
.booking-intro li + li { border-top: 1px solid rgba(255, 255, 255, .1); }
.booking-intro li > b { width: 37px; height: 37px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(79, 225, 232, .45); border-radius: 50%; color: var(--cyan-300); font-size: 8px; }
.booking-intro li > div { display: flex; flex-direction: column; gap: 4px; }
.booking-intro li strong { font-size: 11px; }
.booking-intro li span { color: rgba(255, 255, 255, .47); font-size: 8px; }
.booking-security { margin-top: 28px; padding: 15px 17px; display: flex; align-items: center; gap: 13px; border: 1px solid rgba(183, 219, 30, .23); border-radius: var(--radius-sm); background: rgba(183, 219, 30, .07); }
.booking-security > i { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; background: var(--lime-400); color: var(--navy-950); font-style: normal; font-size: 11px; }
.booking-security > div { display: flex; flex-direction: column; gap: 3px; }
.booking-security strong { font-size: 10px; }
.booking-security span { color: rgba(255, 255, 255, .48); font-size: 8px; }
.booking-card { padding: 34px; border-radius: var(--radius-md); background: var(--white); color: var(--ink); box-shadow: var(--shadow-lg); }
.booking-card-head { padding-bottom: 22px; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); }
.booking-card-head small { color: var(--muted); font-size: 8px; }
.booking-card-head h3 { margin: 4px 0 0; font-size: 23px; }
.bookly-badge { padding: 7px 10px; display: inline-flex; align-items: center; gap: 7px; border-radius: 999px; background: rgba(10, 158, 219, .1); color: var(--blue-600); font-size: 8px; font-weight: 850; }
.bookly-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--lime-400); }
.field-label { margin: 21px 0 10px; color: var(--muted); font-size: 9px; font-weight: 800; }
.date-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.date-options button { min-height: 75px; padding: 11px; display: flex; flex-direction: column; align-items: flex-start; gap: 3px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); cursor: pointer; text-align: right; transition: .18s ease; }
.date-options button:hover { border-color: var(--cyan-500); }
.date-options button.active { border-color: var(--navy-900); background: var(--navy-900); color: var(--white); box-shadow: 0 12px 28px rgba(7, 27, 59, .14); }
.date-options strong { font-size: 10px; }
.date-options span { font-size: 9px; }
.date-options small { color: var(--muted); font-size: 7px; }
.date-options button.active small { color: rgba(255, 255, 255, .55); }
.ticket-lines { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ticket-line { min-height: 67px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.ticket-line + .ticket-line { border-top: 1px dashed var(--line); }
.ticket-line > div:first-child { display: flex; flex-direction: column; gap: 4px; }
.ticket-line strong { font-size: 10px; }
.ticket-line small { color: var(--muted); font-size: 8px; }
.counter { display: grid; grid-template-columns: 29px 31px 29px; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); direction: ltr; }
.counter button { height: 29px; border: 0; background: transparent; cursor: pointer; font-size: 17px; }
.counter button:hover { background: rgba(10, 158, 219, .1); }
.counter b { text-align: center; font-size: 10px; }
.extra-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.extra-options label { min-height: 63px; padding: 10px; display: grid; grid-template-columns: 18px 1fr auto; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 13px; cursor: pointer; }
.extra-options label.checked { border-color: var(--cyan-500); background: rgba(10, 158, 219, .06); }
.extra-options input { position: absolute; opacity: 0; pointer-events: none; }
.fake-check { width: 17px; height: 17px; display: grid; place-items: center; border: 1px solid #a3afbd; border-radius: 50%; color: transparent; font-size: 8px; }
.checked .fake-check { border-color: var(--cyan-500); background: var(--cyan-500); color: var(--white); }
.extra-options label > span:nth-of-type(2) { display: flex; flex-direction: column; gap: 3px; }
.extra-options strong { font-size: 9px; }
.extra-options small { color: var(--muted); font-size: 7px; }
.extra-options b { color: var(--blue-600); font-size: 7px; white-space: nowrap; }
.booking-total { margin-top: 21px; padding: 20px 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; border-top: 1px solid var(--line); }
.booking-total > div { display: flex; flex-direction: column; gap: 3px; }
.booking-total > div small { color: var(--muted); font-size: 8px; }
.booking-total > div strong { font-size: 10px; }
.booking-total > b { font-size: 21px; }
.booking-total > b small { font-size: 8px; }
.booking-card .button:disabled { opacity: .48; cursor: not-allowed; transform: none; }
.demo-note { margin: 10px 0 0; color: var(--muted); font-size: 7px; line-height: 1.7; text-align: center; }
.bookly-form, .bookly-form *, .woocommerce, .woocommerce * { font-family: "Vazirmatn", sans-serif !important; }

/* Shop */
.shop-section { padding: 132px 0 144px; background: var(--white); }
.shop-heading { margin-bottom: 52px; }
.mini-cart { min-width: 210px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border: 1px solid var(--line); border-radius: 15px; background: var(--paper); }
.mini-cart span { color: var(--muted); font-size: 8px; }
.mini-cart i { width: 21px; height: 21px; margin-left: 6px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--pink-500); color: var(--white); font-style: normal; font-size: 8px; }
.mini-cart strong { font-size: 10px; white-space: nowrap; }
.shop-feature { min-height: 440px; display: grid; grid-template-columns: 1.25fr .75fr; overflow: hidden; border-radius: var(--radius-md); background: var(--navy-900); color: var(--white); box-shadow: var(--shadow-sm); }
.shop-feature img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.shop-feature > div { padding: 45px 39px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; background: radial-gradient(circle at 10% 10%, rgba(79, 225, 232, .2), transparent 40%); }
.shop-feature > div > span { color: var(--cyan-300); font-size: 9px; font-weight: 850; }
.shop-feature h3 { margin: 11px 0; font-size: 29px; line-height: 1.45; }
.shop-feature p { margin: 0; color: rgba(255, 255, 255, .62); font-size: 10px; line-height: 1.9; }
.shop-feature a { margin-top: 29px; padding-bottom: 7px; display: inline-flex; align-items: center; gap: 28px; border-bottom: 1px solid rgba(255, 255, 255, .65); color: var(--yellow-400); font-size: 9px; font-weight: 850; }
.products-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.product-card { position: relative; min-height: 300px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; border-radius: 21px; background: var(--paper); }
.product-card.lime { background: #eff8ca; }
.product-card.blue { background: #dff3fb; }
.product-card.pink { background: #ffe1ef; }
.product-card.yellow { background: #fff3ba; }
.product-category { position: relative; z-index: 2; align-self: flex-start; padding: 6px 10px; border: 1px solid rgba(7, 27, 59, .13); border-radius: 999px; font-size: 7px; font-weight: 850; }
.product-art { position: relative; height: 95px; }
.product-art i { position: absolute; display: block; border-radius: 50%; }
.product-art i:first-child { width: 88px; height: 88px; left: 13px; top: -3px; border: 18px solid rgba(7, 27, 59, .09); }
.product-art i:last-child { width: 52px; height: 52px; left: 75px; top: 30px; background: rgba(255, 255, 255, .58); box-shadow: 0 10px 22px rgba(7, 27, 59, .08); }
.product-card h3 { margin: 0; font-size: 15px; }
.product-card p { margin: 7px 0 0; color: var(--muted); font-size: 8px; line-height: 1.7; }
.product-card footer { margin-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-card footer strong { font-size: 11px; }
.product-card footer small { font-size: 7px; }
.product-card footer button { width: 38px; height: 38px; display: grid; place-items: center; border: 0; border-radius: 50%; background: var(--navy-900); color: var(--white); cursor: pointer; font-size: 20px; transition: transform .2s ease, background .2s ease; }
.product-card footer button:hover { transform: rotate(90deg) scale(1.06); background: var(--pink-500); }

/* Platform */
.platform-section { padding: 130px 0 0; overflow: hidden; background: var(--navy-950); color: var(--white); }
.platform-orbit { position: absolute; width: 760px; height: 760px; left: -410px; top: -370px; border: 1px solid rgba(79, 225, 232, .14); border-radius: 50%; }
.platform-orbit::after { content: ""; position: absolute; inset: 90px; border: 1px solid rgba(79, 225, 232, .11); border-radius: 50%; }
.platform-layout { position: relative; display: grid; grid-template-columns: .84fr 1.16fr; align-items: center; gap: 95px; }
.platform-copy > p { margin: 22px 0 0; color: rgba(255, 255, 255, .6); font-size: 12px; line-height: 2; }
.platform-copy .button { margin-top: 29px; }
.system-map { position: relative; min-height: 510px; }
.system-map::before, .system-map::after { content: ""; position: absolute; right: 50%; top: 50%; border: 1px solid rgba(79, 225, 232, .18); border-radius: 50%; transform: translate(50%, -50%); }
.system-map::before { width: 400px; height: 400px; }
.system-map::after { width: 290px; height: 290px; }
.map-core { position: absolute; right: 50%; top: 50%; z-index: 3; width: 220px; height: 220px; padding: 36px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; transform: translate(50%, -50%); background: var(--cyan-300); color: var(--navy-950); box-shadow: 0 25px 70px rgba(0, 0, 0, .31); text-align: center; }
.map-core span { color: rgba(4, 20, 45, .58); font-size: 8px; }
.map-core strong { margin-top: 8px; font-size: 14px; }
.map-core small { margin-top: 8px; color: rgba(4, 20, 45, .64); font-size: 7px; line-height: 1.6; }
.map-node { position: absolute; z-index: 4; min-width: 122px; padding: 14px; display: flex; flex-direction: column; border: 1px solid rgba(255, 255, 255, .18); border-radius: 15px; background: rgba(255, 255, 255, .08); backdrop-filter: blur(9px); box-shadow: 0 17px 45px rgba(0, 0, 0, .18); }
.map-node i { color: var(--yellow-400); font-size: 7px; font-style: normal; }
.map-node strong { margin-top: 5px; font-size: 10px; }
.map-node span { margin-top: 3px; color: rgba(255, 255, 255, .48); font-size: 7px; }
.node-one { right: 4%; top: 8%; }
.node-two { left: 4%; top: 17%; }
.node-three { right: 1%; bottom: 12%; }
.node-four { left: 2%; bottom: 7%; }
.capability-grid { position: relative; margin-top: 88px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255, 255, 255, .11); }
.capability-grid > div { min-height: 235px; padding: 34px 27px; border-left: 1px solid rgba(255, 255, 255, .11); }
.capability-grid > div:last-child { border-left: 0; }
.capability-grid span { width: 39px; height: 39px; margin-bottom: 28px; display: grid; place-items: center; border: 1px solid rgba(79, 225, 232, .42); border-radius: 50%; color: var(--cyan-300); font-size: 8px; font-weight: 900; }
.capability-grid strong { display: block; font-size: 13px; }
.capability-grid p { margin: 9px 0 0; color: rgba(255, 255, 255, .45); font-size: 8px; line-height: 1.9; }

/* Guide, support and footer */
.guide-section { padding: 132px 0; background: var(--paper); }
.guide-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 110px; }
.guide-copy > p { margin: 22px 0 0; color: var(--muted); font-size: 12px; line-height: 2; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list article { border-bottom: 1px solid var(--line); }
.faq-list article > button { width: 100%; min-height: 83px; padding: 0; display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 0; background: transparent; cursor: pointer; text-align: right; }
.faq-list article > button span { font-size: 12px; font-weight: 850; }
.faq-list article > button i { width: 31px; height: 31px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-style: normal; font-size: 16px; transition: .2s ease; }
.faq-list article.open > button i { border-color: var(--cyan-500); background: var(--cyan-500); color: var(--white); }
.faq-list article > div { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-list article > div > p { min-height: 0; overflow: hidden; margin: 0; color: var(--muted); font-size: 10px; line-height: 2; }
.faq-list article.open > div { grid-template-rows: 1fr; }
.faq-list article.open > div > p { padding: 0 0 24px; }
.support-strip { background: var(--yellow-400); color: var(--navy-950); }
.support-strip > .shell { min-height: 124px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.support-strip > .shell > div { display: flex; align-items: center; gap: 15px; }
.support-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(4, 20, 45, .32); border-radius: 50%; font-size: 22px; }
.support-strip strong, .support-strip small { display: block; }
.support-strip strong { font-size: 13px; }
.support-strip small { margin-top: 4px; color: rgba(4, 20, 45, .6); font-size: 8px; }
.support-strip button { min-height: 44px; padding: 0 20px; display: inline-flex; align-items: center; gap: 23px; border: 1px solid rgba(4, 20, 45, .32); border-radius: 999px; background: transparent; cursor: pointer; font-size: 10px; font-weight: 900; }
.site-footer { background: var(--navy-950); color: var(--white); }
.footer-main { padding: 81px 0 68px; display: grid; grid-template-columns: 1.8fr repeat(3, 1fr); gap: 56px; }
.footer-brand .brand { min-width: 0; }
.footer-brand p { max-width: 290px; margin: 21px 0 0; color: rgba(255, 255, 255, .43); font-size: 9px; line-height: 1.8; }
.footer-badges { margin-top: 19px; display: flex; gap: 7px; }
.footer-badges span { padding: 6px 9px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 999px; color: rgba(255, 255, 255, .55); font-size: 7px; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-main h4 { margin: 0 0 10px; color: var(--cyan-300); font-size: 10px; }
.footer-main a, .footer-main button, .footer-main span { padding: 0; border: 0; background: transparent; color: rgba(255, 255, 255, .51); font-size: 9px; }
.footer-main button { cursor: pointer; }
.footer-main a:hover, .footer-main button:hover { color: var(--white); }
.footer-contact strong { font-size: 14px; }
.footer-bottom { min-height: 73px; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-top: 1px solid rgba(255, 255, 255, .09); color: rgba(255, 255, 255, .31); font-size: 7px; }
.footer-bottom > div { display: flex; gap: 21px; }

/* Modal and feedback */
.modal-backdrop { position: fixed; inset: 0; z-index: 100; padding: 20px; display: grid; place-items: center; background: rgba(2, 12, 30, .82); backdrop-filter: blur(10px); animation: fade-in .18s ease; }
.modal-card { position: relative; width: min(100%, 510px); max-height: calc(100vh - 40px); overflow: auto; padding: 40px; border-radius: var(--radius-md); background: var(--white); color: var(--ink); box-shadow: 0 35px 95px rgba(0, 0, 0, .42); animation: rise-in .23s ease; }
.modal-close { position: absolute; top: 17px; left: 17px; width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 22px; }
.modal-kicker { color: var(--cyan-500); font-size: 8px; font-weight: 900; }
.modal-card h2 { margin: 11px 0 24px; font-size: 27px; }
.order-summary { margin-bottom: 22px; border-top: 1px solid var(--line); }
.order-summary > div { min-height: 55px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); }
.order-summary span { color: var(--muted); font-size: 9px; }
.order-summary strong { font-size: 10px; }
.modal-card > p { margin: 12px 0 0; color: var(--muted); font-size: 8px; line-height: 1.8; text-align: center; }
.modal-card form { display: flex; flex-direction: column; }
.modal-card form label { margin: 0 0 7px; color: var(--muted); font-size: 9px; font-weight: 750; }
.modal-card form input { height: 50px; margin-bottom: 16px; padding: 0 14px; border: 1px solid var(--line); border-radius: 11px; outline: 0; background: var(--paper); color: var(--ink); font-size: 10px; }
.modal-card form input:focus { border-color: var(--cyan-500); box-shadow: 0 0 0 3px rgba(10, 158, 219, .12); }
.refund-result { padding: 23px 0 3px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.refund-result i { width: 53px; height: 53px; display: grid; place-items: center; border-radius: 50%; background: rgba(183, 219, 30, .23); color: #557000; font-style: normal; font-size: 20px; }
.refund-result strong { margin-top: 16px; font-size: 14px; }
.refund-result p { color: var(--muted); font-size: 9px; line-height: 1.9; }
.refund-result button { margin-top: 10px; padding: 7px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; font-size: 9px; font-weight: 850; }
.toast { position: fixed; right: 22px; bottom: 22px; z-index: 120; max-width: min(410px, calc(100% - 44px)); padding: 14px 17px; display: flex; align-items: center; gap: 11px; border-radius: 14px; background: var(--white); color: var(--ink); box-shadow: 0 20px 60px rgba(2, 15, 36, .25); font-size: 10px; font-weight: 750; animation: rise-in .24s ease; }
.toast i { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: rgba(183, 219, 30, .28); color: #536d00; font-style: normal; }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1120px) {
  .main-nav { gap: 17px; }
  .main-nav a:last-child { display: none; }
  .header-inner { gap: 22px; }
  .family-layout, .platform-layout { gap: 58px; }
  .guide-layout { gap: 70px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .topbar { display: none; }
  .site-header.is-scrolled, .site-header { background: rgba(4, 20, 45, .94); backdrop-filter: blur(16px); }
  .header-inner { min-height: 72px; }
  .main-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 16px 24px 25px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    background: rgba(4, 20, 45, .98);
    box-shadow: 0 22px 40px rgba(0, 0, 0, .22);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: .22s ease;
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .main-nav a, .main-nav a:last-child { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255, 255, 255, .07); }
  .main-nav a::after { display: none; }
  .menu-toggle { display: block; }
  .header-cta { margin-right: auto; }
  .hero { min-height: 805px; background-position: 42% center; }
  .hero-content { min-height: 665px; padding-top: 100px; }
  .hero-copy { width: min(100%, 600px); }
  .quick-booking { grid-template-columns: 1fr repeat(2, 1fr) .8fr; }
  .quick-title { display: none; }
  .proof-strip { padding-top: 91px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div:nth-child(3) { border-right: 0; }
  .proof-grid > div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .heading-row, .family-layout, .booking-layout, .platform-layout, .guide-layout { grid-template-columns: 1fr; }
  .heading-row { gap: 25px; }
  .heading-row > p { max-width: 650px; }
  .family-layout, .booking-layout, .platform-layout, .guide-layout { gap: 65px; }
  .family-collage { width: min(100%, 700px); }
  .family-copy, .booking-intro, .platform-copy, .guide-copy { max-width: 680px; }
  .booking-card { width: min(100%, 720px); }
  .system-map { width: min(100%, 700px); }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .capability-grid > div:nth-child(2) { border-left: 0; }
  .capability-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .11); }
  .footer-main { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 680px) {
  .shell { width: min(calc(100% - 32px), 1240px); }
  .brand { min-width: 0; }
  .brand-mark { width: 43px; height: 43px; }
  .brand-copy strong { font-size: 12px; }
  .brand-copy small { font-size: 6px; }
  .header-cta { display: none; }
  .menu-toggle { margin-right: auto; }
  .hero { min-height: 800px; background-position: 34% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(4, 20, 45, .33), rgba(4, 20, 45, .9) 69%, rgba(4, 20, 45, .98)); }
  .hero-content { min-height: 686px; padding-top: 92px; align-items: center; }
  .hero h1 { font-size: clamp(43px, 14.5vw, 63px); }
  .hero-copy > p { font-size: 13px; }
  .hero-badge { font-size: 8px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-trust { gap: 11px; font-size: 8px; }
  .quick-booking { bottom: 15px; grid-template-columns: 1fr 1fr; transform: translate(50%, 50%); min-height: 0; }
  .quick-booking > * { min-height: 70px; padding: 13px; }
  .quick-booking button:nth-of-type(3) { display: none; }
  .quick-booking > a { grid-column: 1 / -1; min-height: 50px; border-radius: 0 0 var(--radius-md) var(--radius-md); }
  .quick-booking > a::before { display: none; }
  .quick-booking button strong { font-size: 9px; }
  .quick-booking > * + *::before { inset: 15px auto 15px 0; }
  .proof-strip { padding-top: 125px; }
  .proof-grid > div { padding: 13px 8px; }
  .proof-grid strong { font-size: 10px; }
  .section-heading h2, .family-copy h2, .booking-intro h2, .platform-copy h2, .guide-copy h2 { font-size: clamp(35px, 11vw, 49px); }
  .experiences-section, .family-section, .shop-section, .guide-section { padding: 90px 0; }
  .experience-grid { grid-template-columns: 1fr; gap: 12px; }
  .experience-card, .experience-card:nth-child(2), .experience-card:nth-child(3) { min-height: 300px; }
  .experience-copy { inset: auto 20px 21px; }
  .family-layout, .booking-layout, .platform-layout, .guide-layout { gap: 47px; }
  .family-collage { min-height: 480px; }
  .family-main { width: 100%; height: 430px; border-radius: 75px 22px 22px 22px; }
  .family-float { width: 48%; height: 170px; border-width: 7px; }
  .family-score { right: 12px; bottom: 17px; min-width: 166px; padding: 17px; }
  .booking-section, .platform-section { padding-top: 90px; }
  .booking-card { padding: 24px 17px; border-radius: 21px; }
  .booking-card-head h3 { font-size: 20px; }
  .date-options { gap: 5px; }
  .date-options button { padding: 8px; }
  .extra-options { grid-template-columns: 1fr; }
  .booking-total > b { font-size: 18px; }
  .shop-heading { margin-bottom: 37px; }
  .mini-cart { width: 100%; }
  .shop-feature { grid-template-columns: 1fr; }
  .shop-feature img { min-height: 310px; height: 310px; }
  .shop-feature > div { padding: 31px 23px 35px; }
  .products-grid { grid-template-columns: 1fr; gap: 10px; }
  .product-card { min-height: 245px; }
  .system-map { min-height: 440px; transform: scale(.93); }
  .system-map::before { width: 330px; height: 330px; }
  .system-map::after { width: 245px; height: 245px; }
  .map-core { width: 176px; height: 176px; padding: 24px; }
  .map-node { min-width: 105px; padding: 11px; }
  .capability-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .capability-grid > div, .capability-grid > div:nth-child(2) { min-height: 190px; border-left: 0; border-bottom: 1px solid rgba(255, 255, 255, .11); }
  .capability-grid > div:last-child { border-bottom: 0; }
  .faq-list article > button { min-height: 73px; }
  .support-strip > .shell { min-height: 174px; padding: 29px 0; align-items: flex-start; flex-direction: column; justify-content: center; }
  .support-strip button { width: 100%; justify-content: space-between; }
  .footer-main { padding: 66px 0 55px; grid-template-columns: 1fr 1fr; gap: 40px 22px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { padding: 20px 0; align-items: flex-start; flex-direction: column; }
  .footer-bottom > div { flex-wrap: wrap; gap: 11px 18px; }
  .modal-card { padding: 35px 21px 25px; }
  .modal-card h2 { padding-left: 32px; font-size: 23px; }
  .toast { right: 16px; bottom: 16px; max-width: calc(100% - 32px); }
}

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

/* WordPress / Astra / Elementor integration */
html[dir="rtl"] body,
html[dir="rtl"] .elementor,
html[dir="rtl"] .bookly-form,
html[dir="rtl"] .woocommerce {
  direction: rtl;
  text-align: right;
}
body.swp-waterpark-site,
body.swp-waterpark-site .elementor,
body.swp-waterpark-site .elementor-widget,
body.swp-waterpark-site .bookly-form,
body.swp-waterpark-site .bookly-form *,
body.swp-waterpark-site .woocommerce,
body.swp-waterpark-site .woocommerce * {
  font-family: "Vazirmatn", sans-serif !important;
}
body.swp-waterpark-site .site-content > .ast-container,
body.swp-waterpark-site .ast-container:has(.elementor) {
  width: 100%;
  max-width: none;
  padding: 0;
}
body.swp-waterpark-site .entry-content,
body.swp-waterpark-site .entry-content p { margin: 0; }
body.swp-waterpark-site .entry-title { display: none; }

.swp-page-shell { overflow: clip; background: var(--paper); }
.swp-elementor-section.e-con { --container-max-width: 1240px; }
.swp-elementor-section > .e-con-inner { width: min(calc(100% - 48px), 1240px); }
.swp-section-pad { padding-block: 118px; }
.swp-section-white { background: var(--white); }
.swp-section-paper { background: var(--paper); }
.swp-section-navy { background: var(--navy-950); color: var(--white); }
.swp-eyebrow .elementor-heading-title,
.swp-eyebrow { color: var(--cyan-500) !important; font-size: 11px !important; font-weight: 900 !important; }
.swp-eyebrow-light .elementor-heading-title,
.swp-eyebrow-light { color: var(--cyan-300) !important; }
.swp-display-title .elementor-heading-title {
  color: inherit;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -.045em;
}
.swp-section-title .elementor-heading-title {
  color: inherit;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -.04em;
}
.swp-lead,
.swp-lead p { color: var(--muted); font-size: 14px; line-height: 2; }
.swp-section-navy .swp-lead,
.swp-section-navy .swp-lead p { color: rgba(255,255,255,.65); }
.swp-action .elementor-button {
  min-height: 56px;
  padding: 0 27px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--yellow-400);
  color: var(--navy-950);
  box-shadow: 0 16px 38px rgba(255,216,23,.22);
  font-size: 12px;
  font-weight: 900;
}
.swp-action .elementor-button:hover { transform: translateY(-2px); background: #ffe34c; }
.swp-action-outline .elementor-button { border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.06); color: var(--white); box-shadow: none; }

.swp-site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 999;
  min-height: 80px;
  padding: 12px 0;
  background: rgba(4,20,45,.86);
  color: var(--white);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 1px rgba(255,255,255,.09);
  transition: .22s ease;
}
.swp-site-header.is-scrolled { background: rgba(4,20,45,.96); box-shadow: 0 15px 45px rgba(2,14,34,.25); }
.swp-header-inner { width: min(calc(100% - 48px),1240px); margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.swp-wordmark { display: flex; flex-direction: column; color: #fff; line-height: 1.15; }
.swp-wordmark strong { font-size: 16px; font-weight: 900; }
.swp-wordmark small { margin-top: 5px; color: rgba(255,255,255,.48); font-size: 7px; letter-spacing: .16em; direction: ltr; }
.swp-main-nav { display: flex; align-items: center; justify-content: center; gap: 28px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 700; }
.swp-main-nav a:hover { color: #fff; }
.swp-header-buy { min-height: 44px; padding: 0 20px; display: inline-flex; align-items: center; border-radius: 999px; background: var(--yellow-400); color: var(--navy-950); font-size: 11px; font-weight: 900; }
.swp-menu-toggle { display: none; width: 43px; height: 43px; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; }

.swp-hero.e-con {
  min-height: 830px;
  padding: 150px 0 105px;
  isolation: isolate;
  background-position: center;
  background-size: cover;
  color: var(--white);
}
.swp-hero.e-con::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg,rgba(4,20,45,.1),rgba(4,20,45,.36) 40%,rgba(4,20,45,.96) 78%); }
.swp-hero-content { width: min(100%, 660px); }
.swp-hero .swp-display-title .elementor-heading-title { color: #fff; }
.swp-hero .swp-display-title mark { padding: 0; background: transparent; color: var(--yellow-400); }
.swp-hero .swp-lead p { max-width: 570px; color: rgba(255,255,255,.73); font-size: 16px; }
.swp-button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.swp-trust-row { display: flex; flex-wrap: wrap; gap: 14px 24px; color: rgba(255,255,255,.63); font-size: 10px; }
.swp-trust-row span::before { content: "✓"; width: 20px; height: 20px; margin-left: 7px; display: inline-grid; place-items: center; border: 1px solid rgba(79,225,232,.48); border-radius: 50%; color: var(--cyan-300); font-size: 8px; }

.swp-proof-grid { display: grid !important; grid-template-columns: repeat(4,1fr); gap: 0; border-radius: 24px; background: #fff; box-shadow: var(--shadow-sm); }
.swp-proof-item { min-height: 105px; padding: 24px; display: flex; align-items: center; justify-content: center; text-align: center; }
.swp-proof-item + .swp-proof-item { border-right: 1px solid var(--line); }
.swp-proof-item .elementor-heading-title { color: var(--navy-800); font-size: 13px; font-weight: 900; }
.swp-proof-item .elementor-widget-text-editor { color: var(--muted); font-size: 9px; }

.swp-card-grid { display: grid !important; grid-template-columns: repeat(2,1fr); gap: 18px; }
.swp-photo-card.e-con { min-height: 390px; padding: 30px; overflow: hidden; isolation: isolate; justify-content: flex-end; border-radius: 26px; background-position: center; background-size: cover; color: #fff; box-shadow: var(--shadow-sm); }
.swp-photo-card.e-con::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg,rgba(4,20,45,.93),rgba(4,20,45,.08) 78%); }
.swp-photo-card .elementor-heading-title { color: #fff; font-size: 25px; font-weight: 900; }
.swp-photo-card .elementor-widget-text-editor { max-width: 480px; color: rgba(255,255,255,.68); font-size: 11px; line-height: 1.9; }
.swp-card-tag { width: fit-content; padding: 7px 12px; border-radius: 999px; background: var(--yellow-400); color: var(--navy-950); font-size: 8px; font-weight: 900; }

.swp-feature-layout { display: grid !important; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 85px; }
.swp-feature-image img { width: 100%; min-height: 540px; object-fit: cover; border-radius: 100px 25px 25px 25px; box-shadow: var(--shadow-lg); }
.swp-step-list { display: grid; gap: 0; }
.swp-step { padding: 15px 0; display: flex; gap: 14px; border-bottom: 1px solid var(--line); }
.swp-step b { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; background: var(--navy-900); color: var(--cyan-300); font-size: 9px; }
.swp-step strong { display: block; font-size: 12px; }
.swp-step small { color: var(--muted); font-size: 9px; }

.swp-booking-layout { display: grid !important; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 90px; }
.swp-booking-panel { padding: 34px; border-radius: 26px; background: #fff; color: var(--ink); box-shadow: var(--shadow-lg); }
.swp-booking-panel .bookly-form { padding: 0 !important; }
.swp-booking-panel .bookly-form .bookly-progress-tracker > div { color: var(--navy-900) !important; }
.swp-booking-panel .bookly-form .bookly-btn,
.swp-booking-panel .bookly-form button {
  border-color: var(--yellow-400) !important;
  border-radius: 999px !important;
  background: var(--yellow-400) !important;
  color: var(--navy-950) !important;
  font-weight: 900 !important;
}
.swp-booking-panel .bookly-form input,
.swp-booking-panel .bookly-form select,
.swp-booking-panel .bookly-form textarea { border-radius: 12px !important; }
.swp-setup-notice { padding: 22px; border: 1px solid rgba(10,158,219,.22); border-radius: 16px; background: rgba(10,158,219,.07); color: var(--ink); }
.swp-setup-notice strong { display: block; margin-bottom: 6px; }
.swp-setup-notice p { color: var(--muted); font-size: 11px; line-height: 1.8; }
.swp-booking-panel .elementor-field { min-height: 50px; padding: 12px 14px !important; border: 1px solid var(--line) !important; border-radius: 12px !important; background: var(--paper) !important; }
.swp-booking-panel .elementor-button[type="submit"] { min-height: 52px; border-radius: 999px; background: var(--yellow-400); color: var(--navy-950); font-weight: 900; }

.swp-shop-grid { display: grid !important; grid-template-columns: repeat(4,1fr); gap: 15px; }
.swp-shop-card { min-height: 275px; padding: 25px; justify-content: space-between; border-radius: 22px; background: #eff8ca; }
.swp-shop-card:nth-child(2) { background: #dff3fb; }
.swp-shop-card:nth-child(3) { background: #ffe1ef; }
.swp-shop-card:nth-child(4) { background: #fff3ba; }
.swp-shop-card .elementor-heading-title { color: var(--ink); font-size: 18px; font-weight: 900; }
.swp-shop-card .elementor-widget-text-editor { color: var(--muted); font-size: 10px; line-height: 1.8; }
.swp-price { color: var(--navy-800); font-size: 12px; font-weight: 900; }

.swp-faq-layout { display: grid !important; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.swp-faq .elementor-accordion-item { border: 0 !important; border-bottom: 1px solid var(--line) !important; }
.swp-faq .elementor-tab-title { min-height: 76px; padding: 26px 0 !important; color: var(--ink) !important; font-size: 13px; font-weight: 850 !important; }
.swp-faq .elementor-tab-content { padding: 0 0 26px !important; border: 0 !important; color: var(--muted); font-size: 11px; line-height: 2; }

.swp-site-footer { padding: 75px 0 28px; background: var(--navy-950); color: #fff; }
.swp-footer-grid { width: min(calc(100% - 48px),1240px); margin: auto; display: grid; grid-template-columns: 1.7fr repeat(3,1fr); gap: 55px; }
.swp-site-footer h4 { margin: 0 0 18px; color: var(--cyan-300); font-size: 11px; }
.swp-site-footer a, .swp-site-footer p { color: rgba(255,255,255,.5); font-size: 10px; line-height: 2; }
.swp-site-footer a { display: block; margin: 7px 0; }
.swp-footer-bottom { width: min(calc(100% - 48px),1240px); min-height: 67px; margin: 52px auto 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.31); font-size: 8px; }

.woocommerce ul.products li.product { overflow: hidden; padding: 0 0 22px !important; border-radius: 20px; background: #fff; box-shadow: var(--shadow-sm); }
.woocommerce ul.products li.product a img { margin: 0 0 20px !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price { padding-inline: 20px !important; }
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  border-radius: 999px !important;
  background: var(--navy-900) !important;
  color: #fff !important;
  font-weight: 800 !important;
}
.woocommerce-message, .woocommerce-info { border-top-color: var(--cyan-500) !important; }

@media (max-width: 900px) {
  .swp-header-inner { width: min(calc(100% - 32px),1240px); }
  .swp-menu-toggle { display: block; }
  .swp-main-nav { position: fixed; inset: 78px 0 auto; padding: 20px 24px; display: grid; gap: 15px; background: rgba(4,20,45,.98); opacity: 0; pointer-events: none; transform: translateY(-12px); transition: .2s ease; }
  .swp-main-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .swp-header-buy { margin-right: auto; }
  .swp-proof-grid, .swp-card-grid, .swp-feature-layout, .swp-booking-layout, .swp-faq-layout { grid-template-columns: 1fr 1fr; }
  .swp-feature-layout, .swp-booking-layout, .swp-faq-layout { grid-template-columns: 1fr; gap: 58px; }
  .swp-shop-grid { grid-template-columns: 1fr 1fr; }
  .swp-footer-grid { grid-template-columns: 1.5fr repeat(3,1fr); gap: 28px; }
}

@media (max-width: 680px) {
  .swp-elementor-section > .e-con-inner { width: min(calc(100% - 32px),1240px); }
  .swp-header-buy { display: none; }
  .swp-wordmark strong { font-size: 13px; }
  .swp-hero.e-con { min-height: 760px; padding-top: 125px; background-position: 35% center; }
  .swp-hero.e-con::before { background: linear-gradient(90deg,rgba(4,20,45,.3),rgba(4,20,45,.95) 72%); }
  .swp-display-title .elementor-heading-title { font-size: clamp(42px,13.5vw,59px); }
  .swp-section-pad { padding-block: 88px; }
  .swp-proof-grid, .swp-card-grid, .swp-shop-grid { grid-template-columns: 1fr; }
  .swp-proof-item + .swp-proof-item { border-right: 0; border-top: 1px solid var(--line); }
  .swp-photo-card.e-con { min-height: 310px; padding: 22px; }
  .swp-feature-image img { min-height: 400px; border-radius: 65px 22px 22px 22px; }
  .swp-booking-panel { padding: 22px 15px; }
  .swp-footer-grid { width: min(calc(100% - 32px),1240px); grid-template-columns: 1fr 1fr; gap: 38px 20px; }
  .swp-footer-grid > div:first-child { grid-column: 1/-1; }
  .swp-footer-bottom { width: min(calc(100% - 32px),1240px); }
}
