@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #f7f5ee;
  --surface: #ffffff;
  --ink: #17332f;
  --muted: #5e746f;
  --line: #cfe3dc;
  --teal: #23bca6;
  --teal-dark: #0d8375;
  --sun: #f0c65b;
  --mint-white: #f4fbf7;
  --mint-soft: #e7f6ef;
  --mint-contrast: #124f48;
  --header-height: 78px;
  --shadow: 0 22px 60px rgba(16, 77, 68, 0.14);
}

/* Otel sayfası - mevcut renk dilini bozmadan kurumsal anlatım */
.hotel-page {
  background:
    radial-gradient(circle at 10% 16%, rgba(240, 198, 91, 0.12), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(74, 142, 186, 0.17), transparent 30%),
    linear-gradient(180deg, #f5f8fb 0%, #f7f4ec 46%, #ffffff 100%);
}

.hotel-hero {
  background: linear-gradient(135deg, #102d3b 0%, #17384c 48%, #0b202c 100%);
}

.hotel-hero .assistant-hero-copy h1 {
  max-width: 840px;
}

.hotel-hero .assistant-hero-copy .lead {
  max-width: 740px;
}

.hotel-intro-note {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  width: min(1060px, calc(100% - 32px));
  margin: clamp(-34px, -3vw, -18px) auto clamp(34px, 5vw, 64px);
  border: 1px solid rgba(205, 236, 230, 0.88);
  border-radius: 20px;
  padding: clamp(18px, 2.3vw, 28px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 100% 0%, rgba(74, 142, 186, 0.12), transparent 42%);
  box-shadow: 0 22px 56px rgba(23, 56, 76, 0.1);
  backdrop-filter: blur(16px) saturate(1.14);
  -webkit-backdrop-filter: blur(16px) saturate(1.14);
}

.hotel-intro-note span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 8px 14px;
  color: #fffaf0;
  background: linear-gradient(180deg, #24586b 0%, #143f50 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hotel-intro-note p {
  margin: 0;
  color: #35586a;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.62;
}

.hotel-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(8px, 2vw, 22px) 0 0;
  border-top: 1px solid rgba(23, 56, 76, 0.12);
}

.hotel-feature-card {
  display: grid;
  grid-template-columns: 82px minmax(190px, 0.36fr) 1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  padding: clamp(24px, 3.4vw, 40px) 0;
  border-bottom: 1px solid rgba(23, 56, 76, 0.12);
}

.hotel-feature-index {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.hotel-feature-index span {
  color: rgba(23, 56, 76, 0.48);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hotel-feature-title strong {
  display: block;
  margin: 0;
  color: #17384c;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hotel-feature-card p {
  margin: 0;
  max-width: 680px;
  color: rgba(23, 56, 76, 0.7);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.72;
}

.hotel-icon {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 14px;
  background: linear-gradient(145deg, #8cc9ee 0%, #2f75a8 100%);
  box-shadow:
    0 14px 28px rgba(47, 117, 168, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.hotel-icon::before,
.hotel-icon::after {
  content: "";
  position: absolute;
  color: #ffffff;
}

.hotel-icon-service {
  background: linear-gradient(145deg, #8cc9ee 0%, #2f75a8 100%);
}

.hotel-icon-service::before {
  left: 12px;
  top: 16px;
  width: 24px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 999px 999px 8px 8px;
  border-top-width: 3px;
}

.hotel-icon-service::after {
  left: 22px;
  top: 10px;
  width: 4px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
}

.hotel-icon-info {
  background: linear-gradient(145deg, #a9c9e8 0%, #496f9c 100%);
}

.hotel-icon-info::before {
  left: 14px;
  top: 12px;
  width: 20px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.hotel-icon-info::after {
  left: 20px;
  top: 18px;
  width: 9px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 6px 0 currentColor, 0 12px 0 currentColor;
}

.hotel-icon-campaign {
  background: linear-gradient(145deg, #ffd18a 0%, #d88f27 100%);
}

.hotel-icon-campaign::before {
  left: 12px;
  top: 14px;
  width: 24px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 6px;
  transform: rotate(-7deg);
}

.hotel-icon-campaign::after {
  left: 19px;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid currentColor;
}

.hotel-icon-bell {
  background: linear-gradient(145deg, #8dbbd4 0%, #244f6d 100%);
}

.hotel-icon-bell::before {
  left: 14px;
  top: 13px;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 12px 12px 8px 8px;
}

.hotel-icon-bell::after {
  left: 21px;
  top: 33px;
  width: 6px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: currentColor;
}

.hotel-icon-hotel {
  background: linear-gradient(145deg, #97b7cb 0%, #284d61 100%);
}

.hotel-icon-hotel::before {
  left: 13px;
  top: 12px;
  width: 22px;
  height: 24px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.hotel-icon-hotel::after {
  left: 20px;
  top: 25px;
  width: 8px;
  height: 11px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
  box-shadow: -6px -8px 0 -3px currentColor, 6px -8px 0 -3px currentColor;
}

@media (max-width: 900px) {
  .hotel-feature-card {
    grid-template-columns: 70px 1fr;
  }

  .hotel-feature-card p {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  .hotel-intro-note,
  .hotel-feature-card {
    grid-template-columns: 1fr;
  }

  .hotel-intro-note span {
    width: fit-content;
  }

  .hotel-feature-card {
    gap: 12px;
  }

  .hotel-feature-card p {
    grid-column: auto;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  padding-top: var(--header-height);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 16%, rgba(240, 198, 91, 0.13), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(35, 188, 166, 0.13), transparent 30%),
    linear-gradient(180deg, #f5fbf9 0%, #ffffff 100%);
}

body.home-page {
  --header-height: 78px;
  position: relative;
  height: 100svh;
  padding-top: var(--header-height);
  overflow: hidden;
  background: #102a2c;
}

body.home-page::before,
body.home-page::after {
  content: "";
  position: fixed;
  pointer-events: none;
}

body.home-page::before {
  inset: -22px;
  z-index: 0;
  background: url("assets/images/homescreen.png") center / cover no-repeat;
  filter: blur(10px);
  transform: scale(1.04);
}

body.home-page::after {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(8, 28, 32, 0.12) 0%, rgba(8, 28, 32, 0.34) 100%),
    rgba(235, 255, 247, 0.1);
}

body.travel-page {
  background:
    radial-gradient(circle at 10% 16%, rgba(240, 198, 91, 0.14), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(84, 168, 192, 0.16), transparent 30%),
    linear-gradient(180deg, #f5f8fb 0%, #f7f4ec 46%, #ffffff 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
}

main {
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: var(--header-height);
  padding: 14px clamp(20px, 3vw, 42px) 14px clamp(10px, 1.5vw, 18px);
  color: rgba(245, 241, 229, 0.92);
  background: rgba(13, 58, 52, 0.9);
  border-bottom: 1px solid rgba(245, 241, 229, 0.16);
  box-shadow: 0 10px 26px rgba(13, 58, 52, 0.12);
  backdrop-filter: blur(16px) saturate(1.22);
  -webkit-backdrop-filter: blur(16px) saturate(1.22);
}

.brand {
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  flex: 0 0 168px;
  min-width: 168px;
  height: 64px;
  overflow: visible;
}

.brand-logo-img {
  display: block;
  width: 138px;
  height: auto;
  object-fit: contain;
}

.brand-logo-pair,
.footer-logo-pair {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 0;
  transform: translate(6px, -16px);
}

.brand-symbol-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand-word-img {
  width: 112px;
  height: auto;
  margin-left: 6px;
  margin-top: -6px;
  object-fit: contain;
  transform: translateY(10px);
}

.site-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(800px, calc(100% - 430px));
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  transform: translate(-50%, -50%);
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 clamp(11px, 1.5vw, 18px);
  border: 1px solid transparent;
  border-radius: 0;
  color: rgba(245, 241, 229, 0.9);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.site-nav a + a::before {
  content: "✦";
  position: absolute;
  left: -4px;
  top: 50%;
  width: auto;
  height: auto;
  color: rgba(255, 255, 255, 0.92);
  background: transparent;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.85),
    0 0 14px rgba(245, 241, 229, 0.54);
  transform: translateY(-50%);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: rgba(245, 241, 229, 0.82);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left center;
  transition: opacity 160ms ease, transform 160ms ease;
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.72),
    0 0 18px rgba(245, 241, 229, 0.46);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: #fffaf0;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  outline: none;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.home-page .site-header {
  min-height: 78px;
  padding: 14px clamp(20px, 3vw, 42px) 14px clamp(10px, 1.5vw, 18px);
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-page .brand {
  position: relative;
  z-index: 2;
  flex: 0 0 168px;
  min-width: 168px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .brand-logo-pair {
  align-items: flex-start;
  gap: 10px;
}

.home-page .brand-symbol-img {
  width: 66px;
  height: 66px;
  filter: none;
}

.home-page .brand-word-img {
  width: 112px;
  margin-left: 6px;
  margin-top: 0;
  transform: none;
  filter: none;
}

.home-page .site-nav {
  left: 50%;
  right: auto;
  justify-content: center;
  width: min(800px, calc(100% - 360px));
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-page .site-nav a {
  min-height: 34px;
  padding: 0 clamp(11px, 1.5vw, 18px);
  border-color: transparent;
  color: rgba(245, 241, 229, 0.9);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-shadow: none;
}

.home-page .site-nav a + a::before {
  content: "✦";
  left: -4px;
  top: 50%;
  width: auto;
  height: auto;
  color: rgba(255, 255, 255, 0.94);
  background: transparent;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.88),
    0 0 14px rgba(245, 241, 229, 0.58);
  transform: translateY(-50%);
}

.home-page .site-nav a::after {
  background: rgba(245, 241, 229, 0.82);
}

.home-page .site-nav a:hover,
.home-page .site-nav a:focus-visible,
.home-page .site-nav a.is-active {
  color: #fffaf0;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.header-contact {
  position: relative;
  z-index: 2;
  margin-left: auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 241, 229, 0.52);
  border-radius: 999px;
  padding: 0 16px;
  color: rgba(245, 241, 229, 0.92);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(1.18);
  -webkit-backdrop-filter: blur(14px) saturate(1.18);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-contact:hover,
.header-contact:focus-visible {
  color: #11312d;
  background: rgba(255, 250, 240, 0.92);
  border-color: rgba(255, 250, 240, 0.96);
  outline: none;
}

.nav-icon {
  display: none;
}

.nav-icon-home,
.nav-icon-guest,
.nav-icon-info,
.nav-icon-hotel,
.nav-icon-flow {
  color: currentColor;
}

.section-band {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: var(--bg);
}

.hero.section-band {
  width: 100%;
}

.home-page main,
.home-page .hero {
  height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: transparent;
}

.hero-content {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(32px, 5vw, 72px);
}

.home-page .hero-content {
  grid-template-columns: minmax(520px, 0.88fr) minmax(560px, 1.12fr);
  gap: clamp(18px, 2.5vw, 38px);
  align-items: center;
  justify-items: start;
  place-items: center start;
  padding-right: clamp(8px, 1vw, 18px);
  padding-top: clamp(18px, 4vh, 48px);
  padding-bottom: clamp(26px, 5vh, 58px);
  padding-left: clamp(18px, 3vw, 46px);
  background: transparent;
}

.home-page .hero-copy {
  isolation: isolate;
  align-items: flex-start;
  width: min(690px, calc(100vw - 56px));
  text-align: left;
  justify-self: start;
}

.home-page .hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: clamp(-62px, -5vw, -26px);
  top: 52%;
  width: min(560px, 48vw);
  height: min(360px, 42vh);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3, 24, 43, 0.54) 0%, rgba(3, 24, 43, 0.28) 42%, rgba(3, 24, 43, 0) 72%);
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-mockup {
  position: relative;
  z-index: 2;
  justify-self: end;
  align-self: center;
  width: min(650px, 46vw);
  height: min(610px, 66vh);
  margin: clamp(-86px, -11vh, -48px) 0 0 0;
  opacity: 0.98;
  filter: none;
  animation: phoneFloatIn 1100ms cubic-bezier(0.2, 0.8, 0.2, 1) 220ms both;
  perspective: 1100px;
}

@keyframes phoneFloatIn {
  from {
    opacity: 0;
    transform: translateY(58px);
  }

  to {
    opacity: 0.98;
    transform: translateY(0);
  }
}

.hero-mockup::before {
  content: "";
  position: absolute;
  inset: 4% -18% -2% -12%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 250, 240, 0.24), rgba(62, 148, 166, 0.22) 36%, rgba(3, 24, 43, 0) 78%);
}

.hero-mockup::after {
  content: "";
  position: absolute;
  left: 9%;
  right: 6%;
  bottom: -24px;
  z-index: -1;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 12, 22, 0.28);
  filter: blur(18px);
}

.phone-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.phone-slide {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: min(276px, 19.8vw);
  min-height: min(516px, 62vh);
  border: 1px solid transparent;
  border-radius: 24px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  outline: none;
  transform-style: preserve-3d;
  transition:
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 260ms ease,
    filter 260ms ease,
    z-index 0ms linear 210ms;
}

.phone-slide img {
  display: block;
  height: min(516px, 62vh);
  width: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 28px 44px rgba(0, 12, 22, 0.22));
}

.phone-slide.is-active {
  z-index: 4;
  opacity: 1;
  filter: none;
  transform: translate(-50%, -50%) translate3d(0, -4px, 120px) rotateY(0deg) scale(1);
}

.phone-slide.is-next {
  z-index: 3;
  opacity: 0.76;
  filter: saturate(0.88) brightness(0.88);
  transform: translate(-50%, -50%) translate3d(168px, 26px, -20px) rotateY(-22deg) scale(0.82);
}

.phone-slide.is-prev {
  z-index: 3;
  opacity: 0.76;
  filter: saturate(0.88) brightness(0.88);
  transform: translate(-50%, -50%) translate3d(-168px, 26px, -20px) rotateY(22deg) scale(0.82);
}

.phone-slide.is-far {
  z-index: 1;
  opacity: 0.38;
  filter: saturate(0.72) brightness(0.76);
  transform: translate(-50%, -50%) translate3d(0, 54px, -150px) scale(0.68);
}

.phone-slide:hover,
.phone-slide:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: min(1120px, calc(100vw - 48px));
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  max-width: 820px;
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 800;
}

h2 {
  max-width: 800px;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.58;
}

.home-page .hero .eyebrow {
  display: block;
  width: 100%;
  max-width: none;
  margin-bottom: clamp(16px, 2vw, 24px);
  color: #ffffff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(14px, 1vw, 15px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.home-page .hero h1,
.hero-title {
  max-width: 680px;
  margin-bottom: clamp(14px, 1.6vw, 20px);
  color: #f6fbff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(50px, 4.8vw, 76px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.045em;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.hero-title .soft {
  color: inherit;
}

.home-page .hero .lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.5;
  font-weight: 500;
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
  margin-top: clamp(26px, 3vw, 38px);
}

.hero-link,
.primary-link {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 12px;
  padding: 17px 28px;
  color: #ffffff;
  background: linear-gradient(180deg, #24586b 0%, #143f50 100%);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0, 12, 22, 0.18);
  box-shadow: 0 18px 38px rgba(13, 55, 70, 0.25);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.hero-link::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 38%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-link {
  isolation: isolate;
}

.hero-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-link-assistant {
  border-color: rgba(196, 251, 255, 0.44);
  background:
    linear-gradient(180deg, rgba(87, 218, 235, 0.9) 0%, rgba(30, 112, 139, 0.86) 100%);
  box-shadow:
    0 18px 38px rgba(25, 123, 151, 0.26),
    0 0 24px rgba(106, 234, 242, 0.16);
}

.hero-link-hotel {
  border-color: rgba(185, 236, 240, 0.32);
  background:
    linear-gradient(180deg, rgba(38, 96, 109, 0.94) 0%, rgba(17, 66, 78, 0.96) 100%);
  box-shadow:
    0 18px 38px rgba(13, 55, 70, 0.25),
    0 0 22px rgba(77, 180, 198, 0.12);
}

.hero-link:hover,
.hero-link:focus-visible,
.primary-link:hover,
.primary-link:focus-visible {
  color: #ffffff;
  outline: none;
  transform: translateY(-2px);
  box-shadow:
    0 20px 34px rgba(5, 30, 38, 0.25),
    0 0 30px rgba(220, 255, 244, 0.16);
}

.screen-drops,
.left-sprinkles {
  display: none;
}

.page-main {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 96px) 0;
}

.travel-assistant-page {
  width: min(1180px, calc(100% - 32px));
}

.page-hero {
  padding: clamp(24px, 5vw, 56px) 0 clamp(36px, 6vw, 72px);
}

.page-hero .lead {
  max-width: 760px;
}

.page-grid,
.capability-grid,
.assistant-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.page-card,
.capability-card,
.assistant-feature-card {
  min-height: 220px;
  border: 1px solid rgba(205, 236, 230, 0.9);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 40px rgba(16, 77, 68, 0.08);
}

.page-card span,
.assistant-card-top span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.page-card strong,
.capability-card strong,
.assistant-feature-card strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.page-card p,
.capability-card p,
.assistant-feature-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.trust-strip,
.capability-area {
  padding: clamp(34px, 6vw, 72px) 0;
  border-top: 1px solid var(--line);
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.logo-row span {
  display: grid;
  place-items: center;
  min-height: 74px;
  border: 1px dashed rgba(13, 131, 117, 0.22);
  border-radius: 8px;
  color: #6f817d;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.section-heading {
  margin-bottom: 28px;
}

.capability-icon,
.assistant-card-icon,
.footer-social-icon {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.capability-icon {
  width: 42px;
  height: 42px;
  border: 2px solid var(--teal-dark);
  border-radius: 8px;
  background: rgba(35, 188, 166, 0.1);
}

.service-icon {
  color: var(--teal-dark);
}

.capability-icon::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 2px solid currentColor;
  border-radius: 5px;
  color: var(--teal-dark);
}

.message-icon::after {
  border-radius: 50%;
}

.data-icon::after {
  border-left: 0;
  border-right: 0;
}

.assistant-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 5vw, 64px) 0 clamp(46px, 7vw, 86px);
}

.assistant-hero-copy h1,
.assistant-hero-copy .lead {
  max-width: 720px;
}

.assistant-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.assistant-pill-row span {
  border: 1px solid rgba(13, 131, 117, 0.18);
  border-radius: 999px;
  padding: 9px 13px;
  color: #2e5c55;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.assistant-visual {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.assistant-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.assistant-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.assistant-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.assistant-card-icon {
  width: 34px;
  height: 34px;
  border: 2px solid var(--teal-dark);
  border-radius: 8px;
}

.assistant-card-icon::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--teal-dark);
}

.icon-luggage::after {
  border-radius: 4px;
}

.icon-map::after {
  border-radius: 2px;
  transform: rotate(45deg);
}

.icon-service::after {
  border-radius: 2px;
  border-top: 0;
}

.icon-budget::after {
  inset: 8px 7px;
  border-radius: 999px;
}

.timeline {
  display: grid;
  gap: 16px;
  max-width: 840px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--teal-dark);
  font-weight: 850;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(220px, 1.2fr) minmax(180px, 0.8fr) minmax(180px, 0.8fr);
  gap: 18px;
  align-items: center;
  padding: 16px clamp(16px, 3vw, 34px);
  color: rgba(18, 79, 72, 0.78);
  background: rgba(244, 251, 247, 0.94);
  border-top: 1px solid rgba(18, 79, 72, 0.1);
  box-shadow: 0 -10px 26px rgba(18, 79, 72, 0.07);
  backdrop-filter: blur(16px) saturate(1.16);
  -webkit-backdrop-filter: blur(16px) saturate(1.16);
  font-size: 12px;
}

.home-page .site-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 18;
  grid-template-columns: minmax(210px, 0.95fr) minmax(320px, 1.35fr) minmax(230px, 0.95fr) minmax(210px, 0.85fr);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(232, 255, 247, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 18px 46px rgba(2, 31, 36, 0.16);
  backdrop-filter: blur(24px) saturate(1.45);
  -webkit-backdrop-filter: blur(24px) saturate(1.45);
}

.home-page .footer-brand {
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.home-page .footer-brand p {
  color: rgba(255, 255, 255, 0.78);
}

.home-page .footer-symbol-img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 8px 14px rgba(2, 31, 36, 0.12));
}

.home-page .footer-word-img {
  width: 96px;
  margin-left: 6px;
  transform: translateY(6px);
  filter: drop-shadow(0 8px 14px rgba(2, 31, 36, 0.12));
}

.home-page .footer-links {
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.home-page .footer-links a,
.home-page .footer-contact a {
  border-radius: 8px;
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.86);
}

.home-page .footer-links a:hover,
.home-page .footer-links a:focus-visible,
.home-page .footer-contact a:hover,
.home-page .footer-contact a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.home-page .footer-contact {
  justify-content: center;
  gap: 6px;
}

.home-page .footer-location {
  display: grid;
  gap: 3px;
}

.home-page .footer-location strong {
  color: #ffffff;
}

.home-page .footer-location span {
  color: rgba(255, 255, 255, 0.76);
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-brand p {
  margin: 0;
  line-height: 1.25;
}

.footer-logo-img {
  display: block;
  width: 116px;
  height: auto;
  object-fit: contain;
}

.footer-symbol-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.footer-word-img {
  width: 100px;
  height: auto;
  margin-left: -18px;
  object-fit: contain;
  transform: translateY(1px);
}

.footer-links,
.footer-contact,
.footer-location {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-links {
  padding: 0 18px;
  border-left: 1px solid rgba(18, 79, 72, 0.14);
  border-right: 1px solid rgba(18, 79, 72, 0.14);
}

.footer-links a,
.footer-contact a {
  color: var(--mint-contrast);
  font-weight: 700;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #0b8c7d;
  outline: none;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-social-icon {
  width: 16px;
  height: 16px;
  border: 1.6px solid currentColor;
  border-radius: 5px;
}

.footer-social-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.footer-social-icon::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 3px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: currentColor;
}

.footer-location strong {
  color: var(--ink);
}

@media (max-width: 1080px) {
  .site-nav {
    width: min(640px, calc(100% - 330px));
  }

  .home-page .site-footer {
    grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.2fr);
  }

  .page-grid,
  .capability-grid,
  .assistant-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  body.home-page {
    --header-height: 76px;
    overflow: auto;
  }

  .site-header {
    gap: 10px;
    padding: 0 12px;
  }

  .brand {
    flex-basis: 148px;
    min-width: 148px;
    height: 62px;
  }

  .brand-logo-img {
    width: 118px;
  }

  .brand-symbol-img {
    width: 54px;
    height: 54px;
  }

  .brand-word-img {
    width: 100px;
    margin-left: 5px;
    margin-top: -5px;
    transform: translateY(9px);
  }

  .site-nav {
    justify-content: center;
    width: min(560px, calc(100% - 300px));
  }

  .home-page .brand-symbol-img {
    width: 54px;
    height: 54px;
  }

  .home-page .brand-word-img {
    width: 100px;
    margin-left: 5px;
    margin-top: 0;
    transform: none;
  }

  .home-page .site-nav {
    left: 50%;
    right: auto;
    justify-content: center;
    width: min(560px, calc(100% - 300px));
  }

  .site-nav a {
    min-height: 34px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .home-page main,
  .home-page .hero,
  .hero-content {
    min-height: calc(100svh - var(--header-height));
    height: auto;
  }

  .home-page .hero-content {
    grid-template-columns: minmax(420px, 0.9fr) minmax(420px, 1.1fr);
    gap: 18px;
  }

  .hero-mockup {
    width: min(492px, 50vw);
    height: min(504px, 56vh);
    margin: clamp(-54px, -8vh, -28px) 0 0 0;
  }

  .phone-slide {
    width: min(218px, 24vw);
    min-height: min(408px, 52vh);
  }

  .phone-slide img {
    height: min(408px, 52vh);
  }

  .phone-slide.is-next {
    transform: translate(-50%, -50%) translate3d(120px, 22px, -20px) rotateY(-22deg) scale(0.8);
  }

  .phone-slide.is-prev {
    transform: translate(-50%, -50%) translate3d(-120px, 22px, -20px) rotateY(22deg) scale(0.8);
  }

  .home-page .site-footer {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: min(100% - 24px, 760px);
    margin: 18px auto;
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy {
    width: min(100%, calc(100vw - 32px));
  }

  .assistant-hero {
    grid-template-columns: 1fr;
  }

  .logo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: stretch;
    min-height: auto;
  }

  .brand {
    flex-basis: 126px;
    min-width: 126px;
    height: var(--header-height);
  }

  .brand-logo-img {
    width: 110px;
  }

  .brand-symbol-img {
    width: 48px;
    height: 48px;
  }

  .brand-word-img {
    width: 84px;
    margin-left: 4px;
    margin-top: -4px;
    transform: translateY(8px);
  }

  .site-nav {
    left: 0;
    right: 0;
    top: var(--header-height);
    width: 100%;
    padding: 8px 12px;
    background: rgba(13, 58, 52, 0.9);
    border-top: 1px solid rgba(245, 241, 229, 0.16);
    transform: none;
  }

  .site-nav a + a::before {
    content: "✦";
    left: -2px;
    font-size: 10px;
  }

  body,
  body.home-page {
    padding-top: calc(var(--header-height) + 50px);
  }

  body.home-page {
    --header-height: 72px;
  }

  .home-page .site-header {
    min-height: var(--header-height);
    padding: 10px 12px;
  }

  .home-page .brand {
    flex-basis: 126px;
    min-width: 126px;
    height: 52px;
  }

  .home-page .brand-logo-pair {
    gap: 0;
    transform: translate(8px, -4px);
  }

  .home-page .brand-symbol-img {
    width: 48px;
    height: 48px;
  }

  .home-page .brand-word-img {
    width: 84px;
    margin-left: 4px;
    margin-top: 0;
    transform: none;
  }

  .home-page .site-nav {
    left: 0;
    right: 0;
    top: var(--header-height);
    width: 100%;
    transform: none;
    min-height: 48px;
    padding: 7px 10px;
    border-radius: 0 0 8px 8px;
    background: transparent;
    border-top: 0;
  }

  .home-page .site-nav a {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .header-contact {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .home-page .site-footer {
    width: min(100% - 24px, 520px);
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .home-page .footer-brand {
    grid-template-columns: auto 1fr;
  }

  .home-page .footer-links {
    justify-content: flex-start;
    padding: 10px 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .home-page .hero .eyebrow {
    font-size: clamp(11px, 3.2vw, 13px);
    white-space: normal;
  }

  .home-page .hero-content {
    grid-template-columns: 1fr;
    align-items: end;
    padding-right: clamp(24px, 6vw, 42px);
  }

  .home-page .hero-copy {
    width: min(100%, calc(100vw - 48px));
  }

  .home-page .hero-copy::before {
    width: 112vw;
    height: 58vh;
  }

  .hero-mockup {
    display: none;
  }

  h1 {
    font-size: clamp(30px, 10vw, 48px);
  }

  .page-main {
    width: min(100% - 24px, 1160px);
    padding-top: 36px;
  }

  .page-grid,
  .capability-grid,
  .assistant-feature-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    padding: 12px 0;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(18, 79, 72, 0.14);
    border-bottom: 1px solid rgba(18, 79, 72, 0.14);
  }
}

/* Header logo düzeni */
.brand .brand-logo-pair {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 112px;
  gap: 0;
  line-height: 0;
  transform: translate(14px, -10px);
}

/* Üstteki ringt_white.png */
.brand .brand-symbol-img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin: 0 auto -8px auto;
  transform: translateX(0);
}

/* Alttaki holiup-logo-white.png */
.brand .brand-word-img {
  display: block;
  width: 92px;
  height: auto;
  object-fit: contain;
  margin: 0;
  transform: translateY(-2px);
}

/* Ana sayfa: sembol ile Holiup yazısını birbirinden ayır. */
.home-page .brand .brand-logo-pair {
  gap: 10px;
}

.home-page .brand .brand-symbol-img {
  margin-bottom: 0;
}

.home-page .brand .brand-word-img {
  transform: none;
}

/* Misafir / Tatil Asistanı sayfası */
body.travel-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(240, 198, 91, 0.13), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(35, 188, 166, 0.18), transparent 34%),
    linear-gradient(180deg, #f2faf8 0%, #fffaf0 54%, #ffffff 100%);
}

.travel-assistant-page {
  width: 100%;
  margin: 0;
  padding: 0 0 clamp(54px, 7vw, 92px);
}

.assistant-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: block;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(42px, 6vw, 86px) 0 clamp(58px, 8vw, 108px);
  background:
    radial-gradient(circle at 78% 26%, rgba(111, 231, 231, 0.22), transparent 34%),
    radial-gradient(circle at 13% 28%, rgba(240, 198, 91, 0.12), transparent 30%),
    linear-gradient(135deg, #0b2d31 0%, #123f45 48%, #0a2328 100%);
}

.assistant-hero::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: -2;
  background: url("assets/images/homescreen.png") center / cover no-repeat;
  opacity: 0.1;
  filter: blur(8px) saturate(0.92);
  transform: scale(1.04);
}

.assistant-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: -1;
  height: 26%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #f7f5ee 78%);
}

.assistant-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  min-height: calc(100svh - var(--header-height) - 120px);
  margin: 0 auto;
}

.assistant-hero-copy {
  position: relative;
  max-width: 760px;
}

.assistant-hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: clamp(-70px, -6vw, -28px);
  top: 50%;
  width: min(610px, 50vw);
  height: min(380px, 46vh);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 18, 30, 0.42) 0%, rgba(2, 18, 30, 0.22) 44%, transparent 74%);
  transform: translateY(-50%);
  pointer-events: none;
}

.assistant-hero .eyebrow {
  color: #ffffff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 850;
  letter-spacing: 0.17em;
}

.assistant-hero-copy h1 {
  max-width: 780px;
  color: #f6fbff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(43px, 5.2vw, 78px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.assistant-hero-copy .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 500;
  line-height: 1.55;
}

.assistant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: clamp(26px, 3vw, 38px);
}

.assistant-ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
  padding: 16px 24px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(1.18);
  -webkit-backdrop-filter: blur(14px) saturate(1.18);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.assistant-ghost-link:hover,
.assistant-ghost-link:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.13);
  outline: none;
  transform: translateY(-2px);
}

.assistant-visual {
  position: relative;
  justify-self: center;
  width: min(390px, 100%);
  margin: 0;
  overflow: visible;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.assistant-phone-glow {
  position: absolute;
  inset: 9% -18% -8%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180, 247, 245, 0.34), rgba(35, 188, 166, 0.16) 38%, transparent 72%);
  filter: blur(3px);
}

.assistant-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
  filter: drop-shadow(0 28px 46px rgba(0, 12, 22, 0.34));
}

.assistant-note {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  width: min(1040px, calc(100% - 32px));
  margin: clamp(-34px, -3vw, -18px) auto clamp(28px, 5vw, 58px);
  border: 1px solid rgba(205, 236, 230, 0.88);
  border-radius: 18px;
  padding: clamp(18px, 2.3vw, 28px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 56px rgba(16, 77, 68, 0.1);
  backdrop-filter: blur(16px) saturate(1.14);
  -webkit-backdrop-filter: blur(16px) saturate(1.14);
}

.assistant-note span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 8px 13px;
  color: #fffaf0;
  background: linear-gradient(180deg, #24586b 0%, #143f50 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assistant-note p {
  margin: 0;
  color: #355f59;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.58;
}

.assistant-feature-grid {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.assistant-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 274px;
  border: 1px solid rgba(205, 236, 230, 0.86);
  border-radius: 18px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.74)),
    radial-gradient(circle at 100% 0%, rgba(35, 188, 166, 0.12), transparent 42%);
  box-shadow: 0 18px 44px rgba(16, 77, 68, 0.08);
}

.assistant-feature-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 82px;
  height: 1px;
  background: rgba(35, 188, 166, 0.16);
}

.assistant-card-top span {
  color: #0d8375;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.assistant-feature-card strong {
  margin-top: 34px;
  color: #143f50;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 19px;
  font-weight: 850;
}

.assistant-feature-card p {
  color: #55706c;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.68;
}

.assistant-card-icon {
  width: 36px;
  height: 36px;
  border-color: rgba(13, 131, 117, 0.52);
  background: rgba(35, 188, 166, 0.08);
}

@media (max-width: 1080px) {
  .assistant-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  }

  .assistant-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .assistant-hero {
    min-height: auto;
    padding-top: 36px;
  }

  .assistant-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .assistant-hero-copy h1 {
    font-size: clamp(36px, 10vw, 54px);
  }

  .assistant-visual {
    width: min(310px, 78vw);
  }

  .assistant-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .travel-assistant-page {
    padding-bottom: 48px;
  }

  .assistant-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .assistant-actions .hero-link,
  .assistant-ghost-link {
    width: 100%;
  }

  .assistant-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Misafir sayfası - anasayfa header uyumu + yeşilsiz deniz mavisi revizyon */
.travel-page .site-header {
  min-height: 78px;
  padding: 14px clamp(20px, 3vw, 42px) 14px clamp(10px, 1.5vw, 18px);
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.travel-page .brand {
  position: relative;
  z-index: 2;
  flex: 0 0 168px;
  min-width: 168px;
  height: 64px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.travel-page .brand-logo-pair {
  align-items: flex-start;
  gap: 0;
}

.travel-page .brand-symbol-img {
  width: 66px;
  height: 66px;
  filter: none;
}

.travel-page .brand-word-img {
  width: 112px;
  margin-left: 6px;
  margin-top: -6px;
  transform: translateY(10px);
  filter: none;
}

.travel-page .site-nav {
  left: 50%;
  right: auto;
  justify-content: center;
  width: min(800px, calc(100% - 360px));
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.travel-page .site-nav a {
  min-height: 34px;
  padding: 0 clamp(11px, 1.5vw, 18px);
  border-color: transparent;
  color: rgba(245, 241, 229, 0.9);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-shadow: none;
}

.travel-page .site-nav a + a::before {
  content: "✦";
  left: -4px;
  top: 50%;
  width: auto;
  height: auto;
  color: rgba(255, 255, 255, 0.94);
  background: transparent;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 12px;
  line-height: 1;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.88),
    0 0 14px rgba(245, 241, 229, 0.58);
  transform: translateY(-50%);
}

.travel-page .site-nav a::after {
  background: rgba(245, 241, 229, 0.82);
}

.travel-page .site-nav a:hover,
.travel-page .site-nav a:focus-visible,
.travel-page .site-nav a.is-active {
  color: #fffaf0;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

body.travel-page {
  color: #0d3148;
  background:
    radial-gradient(circle at 14% 9%, rgba(240, 198, 91, 0.11), transparent 30%),
    radial-gradient(circle at 86% 10%, rgba(102, 199, 255, 0.22), transparent 34%),
    linear-gradient(180deg, #eef8ff 0%, #fff8ec 54%, #ffffff 100%);
}

.assistant-hero {
  background:
    radial-gradient(circle at 78% 24%, rgba(102, 199, 255, 0.26), transparent 34%),
    radial-gradient(circle at 16% 30%, rgba(240, 198, 91, 0.1), transparent 30%),
    linear-gradient(135deg, #071f35 0%, #0b4366 48%, #06243d 100%);
}

.assistant-hero::before {
  opacity: 0.13;
  filter: blur(8px) saturate(0.86) hue-rotate(188deg);
}

.assistant-hero::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #eef8ff 78%);
}

.assistant-hero-copy::before {
  background: radial-gradient(circle, rgba(2, 15, 32, 0.5) 0%, rgba(2, 15, 32, 0.24) 44%, transparent 74%);
}

.hero-link-assistant {
  border-color: rgba(192, 232, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(92, 186, 236, 0.96) 0%, rgba(18, 103, 153, 0.94) 100%);
  box-shadow:
    0 18px 38px rgba(12, 93, 148, 0.3),
    0 0 24px rgba(102, 199, 255, 0.18);
}

.assistant-phone-glow {
  background: radial-gradient(circle, rgba(178, 229, 255, 0.38), rgba(84, 174, 226, 0.18) 38%, transparent 72%);
}

.assistant-note {
  border-color: rgba(170, 215, 238, 0.88);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 56px rgba(8, 57, 91, 0.1);
}

.assistant-note span {
  background: linear-gradient(180deg, #2d6f99 0%, #124466 100%);
}

.assistant-note p {
  color: #31566a;
}

.assistant-feature-card {
  border-color: rgba(170, 215, 238, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    radial-gradient(circle at 100% 0%, rgba(102, 199, 255, 0.14), transparent 42%);
  box-shadow: 0 18px 44px rgba(8, 57, 91, 0.08);
}

.assistant-feature-card::after {
  background: rgba(84, 174, 226, 0.18);
}

.assistant-card-top span {
  color: #1d6f9f;
}

.assistant-feature-card strong {
  color: #123f5f;
}

.assistant-feature-card p {
  color: #526f80;
}

.assistant-card-icon {
  border-color: rgba(29, 111, 159, 0.5);
  background: rgba(102, 199, 255, 0.08);
}

.assistant-card-icon::after {
  color: #1d6f9f;
}

@media (max-width: 860px) {
  .travel-page .site-nav {
    left: 50%;
    right: auto;
    justify-content: center;
    width: min(560px, calc(100% - 300px));
  }

  .travel-page .brand-symbol-img {
    width: 54px;
    height: 54px;
  }

  .travel-page .brand-word-img {
    width: 100px;
    margin-left: 5px;
    margin-top: -5px;
    transform: translateY(9px);
  }
}

@media (max-width: 620px) {
  body.travel-page {
    --header-height: 72px;
    padding-top: calc(var(--header-height) + 50px);
  }

  .travel-page .site-header {
    min-height: var(--header-height);
    padding: 10px 12px;
  }

  .travel-page .brand {
    flex-basis: 126px;
    min-width: 126px;
    height: 52px;
  }

  .travel-page .brand-logo-pair {
    gap: 0;
    transform: translate(8px, -4px);
  }

  .travel-page .brand-symbol-img {
    width: 48px;
    height: 48px;
  }

  .travel-page .brand-word-img {
    width: 84px;
    margin-left: 4px;
    margin-top: -4px;
    transform: translateY(8px);
  }

  .travel-page .site-nav {
    left: 0;
    right: 0;
    top: var(--header-height);
    width: 100%;
    min-height: 48px;
    padding: 7px 10px;
    border-radius: 0 0 8px 8px;
    background: transparent;
    border-top: 0;
    transform: none;
  }

  .travel-page .site-nav a {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}

/* Misafir sayfası final düzeltme: bar yok, koyu blok yok, açık deniz mavisi tema */
body.travel-page {
  padding-top: 0;
  color: #17384c;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.86), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(180, 226, 248, 0.56), transparent 34%),
    linear-gradient(180deg, #eaf7fb 0%, #d9eef7 45%, #f7fbfd 100%);
}

.travel-page .site-header {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.travel-page .site-header::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -34px;
  z-index: -1;
  width: min(760px, 76vw);
  height: 126px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(54, 151, 211, 0.32), rgba(54, 151, 211, 0.14) 42%, transparent 72%);
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}

.travel-page .site-nav a,
.travel-page .header-contact {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(13, 56, 82, 0.2);
}

.travel-page .site-nav a::after {
  background: rgba(255, 255, 255, 0.86);
}

.travel-page .header-contact {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.1);
}

.travel-page .header-contact:hover,
.travel-page .header-contact:focus-visible {
  color: #17415f;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.9);
}

.assistant-hero {
  min-height: 100svh;
  padding: calc(var(--header-height) + clamp(42px, 6vw, 84px)) 0 clamp(48px, 7vw, 86px);
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.92), transparent 26%),
    radial-gradient(circle at 70% 36%, rgba(151, 213, 243, 0.36), transparent 38%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(180deg, #dff2fb 0%, #cfe9f6 54%, #eaf7fb 100%);
}

.assistant-hero::before {
  display: none;
}

.assistant-hero::after {
  height: 22%;
  background: linear-gradient(180deg, rgba(234, 247, 251, 0), #f7fbfd 84%);
}

.assistant-hero-inner {
  min-height: calc(100svh - var(--header-height) - 150px);
}

.assistant-hero-copy::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0.28) 46%, transparent 74%);
}

.assistant-hero .eyebrow {
  color: #1f5d81;
  text-shadow: none;
}

.assistant-hero-copy h1 {
  color: #17384c;
  text-shadow: none;
}

.assistant-hero-copy .lead {
  color: rgba(23, 56, 76, 0.74);
  text-shadow: none;
}

.assistant-ghost-link {
  color: #24516a;
  border-color: rgba(38, 115, 160, 0.22);
  background: rgba(255, 255, 255, 0.32);
  text-shadow: none;
}

.assistant-ghost-link:hover,
.assistant-ghost-link:focus-visible {
  color: #17384c;
  border-color: rgba(38, 115, 160, 0.34);
  background: rgba(255, 255, 255, 0.5);
}

.hero-link-assistant {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.66);
  background: linear-gradient(180deg, #61b7e5 0%, #2f8bc2 100%);
  box-shadow:
    0 16px 34px rgba(47, 139, 194, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.assistant-note {
  margin-top: clamp(-28px, -2.5vw, -16px);
  border-color: rgba(143, 200, 228, 0.6);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 42px rgba(55, 126, 166, 0.1);
}

.assistant-note span {
  gap: 9px;
  background: linear-gradient(180deg, #61b7e5 0%, #2f8bc2 100%);
}

.assistant-note-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1.8px solid currentColor;
  border-radius: 50%;
}

.assistant-note-icon::before,
.assistant-note-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
}

.assistant-note-icon::before {
  top: 4px;
  width: 3px;
  height: 3px;
}

.assistant-note-icon::after {
  top: 8px;
  width: 2px;
  height: 6px;
}

.assistant-note p {
  color: rgba(23, 56, 76, 0.74);
}

.assistant-feature-card {
  border-color: rgba(143, 200, 228, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.52)),
    radial-gradient(circle at 100% 0%, rgba(151, 213, 243, 0.2), transparent 42%);
  box-shadow: 0 16px 38px rgba(55, 126, 166, 0.08);
}

.assistant-feature-card::after {
  background: rgba(47, 139, 194, 0.16);
}

.assistant-card-top span,
.assistant-card-icon::after {
  color: #2f8bc2;
}

.assistant-feature-card strong {
  color: #17384c;
}

.assistant-feature-card p {
  color: rgba(23, 56, 76, 0.68);
}

.assistant-card-icon {
  border-color: rgba(47, 139, 194, 0.38);
  background: rgba(255, 255, 255, 0.34);
}

@media (max-width: 620px) {
  body.travel-page {
    padding-top: 0;
  }

  .assistant-hero {
    padding-top: calc(var(--header-height) + 64px);
  }

  .travel-page .site-nav {
    background: transparent;
    border-top: 0;
    box-shadow: none;
  }
}

/* Misafir header okunurluk düzeltmesi: logo yok, font aynı, bar yok */
.travel-page .brand {
  display: none;
}

.travel-page .site-nav a {
  color: rgba(23, 56, 76, 0.78);
  text-shadow: none;
}

.travel-page .site-nav a + a::before {
  color: rgba(23, 56, 76, 0.38);
  text-shadow: none;
}

.travel-page .site-nav a::after {
  background: rgba(23, 56, 76, 0.54);
  box-shadow: none;
}

.travel-page .site-nav a:hover,
.travel-page .site-nav a:focus-visible,
.travel-page .site-nav a.is-active {
  color: #17384c;
}

.travel-page .header-contact {
  color: rgba(23, 56, 76, 0.72);
  border-color: rgba(23, 56, 76, 0.22);
  background: rgba(255, 255, 255, 0.2);
  text-shadow: none;
}

.travel-page .header-contact:hover,
.travel-page .header-contact:focus-visible {
  color: #17384c;
  border-color: rgba(23, 56, 76, 0.34);
  background: rgba(255, 255, 255, 0.48);
}

@media (max-width: 620px) {
  .travel-page .site-nav {
    top: 14px;
    left: 50%;
    right: auto;
    width: min(100% - 118px, 520px);
    transform: translateX(-50%);
  }
}

.travel-page .assistant-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
}

.travel-page .assistant-visual {
  width: min(500px, 100%);
}

.travel-page .assistant-phone-glow {
  inset: 5% -22% -10%;
}

.assistant-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-top: clamp(10px, 2vw, 22px);
  border-top: 1px solid rgba(23, 56, 76, 0.12);
}

.assistant-feature-list .assistant-feature-card {
  display: grid;
  grid-template-columns: 76px minmax(180px, 0.38fr) 1fr;
  align-items: start;
  min-height: 0;
  padding: clamp(22px, 3vw, 34px) 0;
  border: 0;
  border-bottom: 1px solid rgba(23, 56, 76, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.assistant-feature-list .assistant-feature-card::after {
  display: none;
}

.assistant-feature-list .assistant-card-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  min-height: 0;
}

.assistant-feature-list .assistant-card-top span {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: rgba(23, 56, 76, 0.48);
}

.assistant-feature-list .assistant-card-icon {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 14px;
  background: linear-gradient(145deg, #6bd6ee 0%, #2f8bc2 100%);
  box-shadow:
    0 14px 28px rgba(47, 139, 194, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.assistant-feature-list .assistant-card-icon::before,
.assistant-feature-list .assistant-card-icon::after {
  content: "";
  position: absolute;
  color: #ffffff;
}

.assistant-feature-list .icon-luggage {
  background: linear-gradient(145deg, #69d8ee 0%, #2c89be 100%);
}

.assistant-feature-list .icon-luggage::before {
  left: 14px;
  top: 13px;
  width: 20px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.assistant-feature-list .icon-luggage::after {
  left: 18px;
  top: 9px;
  width: 12px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.assistant-feature-list .icon-map {
  background: linear-gradient(145deg, #85e4c7 0%, #27a984 100%);
}

.assistant-feature-list .icon-map::before {
  left: 17px;
  top: 11px;
  width: 15px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 12px 12px 12px 2px;
  transform: rotate(45deg);
}

.assistant-feature-list .icon-map::after {
  left: 21px;
  top: 15px;
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 50%;
  background: currentColor;
}

.assistant-feature-list .icon-service {
  background: linear-gradient(145deg, #9ecbff 0%, #427ec7 100%);
}

.assistant-feature-list .icon-service::before {
  left: 13px;
  top: 13px;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.assistant-feature-list .icon-service::after {
  left: 23px;
  top: 17px;
  width: 8px;
  height: 10px;
  border: 0;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 0;
}

.assistant-feature-list .icon-budget {
  background: linear-gradient(145deg, #ffd18a 0%, #d88f27 100%);
}

.assistant-feature-list .icon-budget::before {
  left: 12px;
  top: 16px;
  width: 24px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.assistant-feature-list .icon-budget::after {
  right: 10px;
  top: 20px;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.assistant-feature-list .assistant-feature-card strong {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.08;
  color: #17384c;
}

.assistant-feature-list .assistant-feature-card p {
  margin: 0;
  max-width: 620px;
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.7;
  color: rgba(23, 56, 76, 0.66);
}

@media (max-width: 760px) {
  .travel-page .assistant-hero-inner {
    grid-template-columns: 1fr;
  }

  .travel-page .assistant-visual {
    width: min(420px, 92vw);
  }

  .assistant-feature-list .assistant-feature-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Otel sayfası son katman: mevcut ortak travel/assistant kurallarının üstüne yazılır. */
body.hotel-page {
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.86), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(180, 226, 248, 0.56), transparent 34%),
    linear-gradient(180deg, #eaf7fb 0%, #d9eef7 45%, #f7fbfd 100%);
}

.assistant-hero.hotel-hero {
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.92), transparent 26%),
    radial-gradient(circle at 70% 36%, rgba(151, 213, 243, 0.36), transparent 38%),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(180deg, #dff2fb 0%, #cfe9f6 54%, #eaf7fb 100%);
}

.hotel-page .site-header::before {
  top: -34px;
  width: min(760px, 76vw);
  height: 126px;
  background: radial-gradient(ellipse at center, rgba(54, 151, 211, 0.32), rgba(54, 151, 211, 0.14) 42%, transparent 72%);
  filter: blur(18px);
}

.hotel-page .assistant-hero-copy::before {
  display: block;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0.28) 46%, transparent 74%);
}

.hotel-page .site-nav a,
.hotel-page .header-contact {
  color: rgba(23, 56, 76, 0.78);
}

.hotel-page .site-nav a + a::before {
  color: rgba(23, 56, 76, 0.38);
}

.hotel-page .site-nav a::after {
  background: rgba(23, 56, 76, 0.54);
  box-shadow: none;
}

.hotel-page .site-nav a:hover,
.hotel-page .site-nav a:focus-visible,
.hotel-page .site-nav a.is-active {
  color: #17384c;
}

.hotel-page .header-contact {
  border-color: rgba(23, 56, 76, 0.22);
  background: rgba(255, 255, 255, 0.2);
}

.hotel-page .header-contact:hover,
.hotel-page .header-contact:focus-visible {
  color: #17384c;
  border-color: rgba(23, 56, 76, 0.34);
  background: rgba(255, 255, 255, 0.48);
}

.hotel-page .assistant-hero .eyebrow {
  color: #1f5d81;
}

.hotel-page .assistant-hero-copy h1 {
  color: #17384c;
}

.hotel-page .assistant-hero-copy .lead {
  color: rgba(23, 56, 76, 0.74);
}

.hotel-page .hero-link-hotel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    linear-gradient(135deg, #4b86b0 0%, #244f6d 100%);
  box-shadow: 0 18px 42px rgba(36, 79, 109, 0.28);
}

.hotel-page .assistant-phone-glow {
  background: radial-gradient(circle, rgba(141, 187, 212, 0.34), rgba(47, 117, 168, 0.16) 38%, transparent 72%);
}

.hotel-page .assistant-visual {
  align-self: stretch;
  justify-self: end;
  width: min(540px, 100%);
  min-height: min(660px, calc(100svh - 190px));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06)),
    rgba(114, 151, 173, 0.1);
}

.hotel-page .assistant-visual img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.hotel-page .hotel-intro-note {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 100% 0%, rgba(74, 142, 186, 0.12), transparent 42%);
  box-shadow: 0 22px 56px rgba(23, 56, 76, 0.1);
}

.hotel-page .hotel-intro-note::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97, 183, 229, 0.18), transparent 68%);
  pointer-events: none;
}

.hotel-page .hotel-intro-note span {
  gap: 9px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, #24586b 0%, #143f50 100%);
  box-shadow:
    0 12px 28px rgba(20, 63, 80, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.language-note-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 1.8px solid currentColor;
  border-radius: 50%;
}

.language-note-icon::before,
.language-note-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-color: currentColor;
  transform: translate(-50%, -50%);
}

.language-note-icon::before {
  width: 1.8px;
  height: 15px;
  border-left: 1.8px solid currentColor;
}

.language-note-icon::after {
  width: 15px;
  height: 8px;
  border-top: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  border-radius: 50%;
}

.hotel-page .hotel-intro-note p {
  color: #35586a;
}

.language-highlight {
  display: inline;
  color: #1f7fa4;
  font-weight: 850;
  text-shadow: 0 0 18px rgba(97, 183, 229, 0.2);
}

.launch-callout {
  position: relative;
  width: min(620px, 100%);
  margin: clamp(20px, 2.8vw, 30px) 0 0;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  padding: 16px 18px 17px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38)),
    radial-gradient(circle at 12% 0%, rgba(97, 183, 229, 0.22), transparent 48%);
  box-shadow:
    0 22px 54px rgba(47, 139, 194, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px) saturate(1.16);
  -webkit-backdrop-filter: blur(18px) saturate(1.16);
}

.launch-callout::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
}

.launch-callout span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #17415f;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-callout p {
  margin: 9px 0 0;
  max-width: 560px;
  color: rgba(23, 56, 76, 0.78);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 650;
  line-height: 1.55;
}

.launch-callout-icon {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(145deg, #6bd6ee 0%, #2f8bc2 100%);
  box-shadow:
    0 8px 18px rgba(47, 139, 194, 0.28),
    0 0 18px rgba(107, 214, 238, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.launch-callout-icon::before,
.launch-callout-icon::after {
  content: "";
  position: absolute;
  background: #ffffff;
}

.launch-callout-icon::before {
  left: 12px;
  top: 6px;
  width: 2px;
  height: 14px;
  border-radius: 999px;
}

.launch-callout-icon::after {
  left: 6px;
  top: 12px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
}

.launch-modal {
  position: fixed;
  right: clamp(18px, 3vw, 42px);
  top: clamp(92px, 12vh, 140px);
  z-index: 240;
  width: min(430px, calc(100vw - 32px));
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 1;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
}

.launch-modal.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.launch-modal-panel {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  padding: 24px 24px 26px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(234, 250, 255, 0.76)),
    radial-gradient(circle at 8% 8%, rgba(97, 216, 238, 0.34), transparent 34%),
    radial-gradient(circle at 94% 0%, rgba(255, 199, 93, 0.32), transparent 36%),
    radial-gradient(circle at 100% 88%, rgba(56, 178, 127, 0.2), transparent 34%);
  box-shadow:
    0 24px 70px rgba(11, 32, 44, 0.2),
    0 0 0 8px rgba(255, 255, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  pointer-events: auto;
  animation: launchModalIn 620ms cubic-bezier(0.18, 0.9, 0.24, 1) both;
}

.launch-modal-panel::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, #55d7ee, #ffd166, #45c08d, #55d7ee);
  box-shadow: 0 0 22px rgba(85, 215, 238, 0.34);
}

.launch-modal-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(23, 56, 76, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.launch-modal-close::before,
.launch-modal-close::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 16px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #17384c;
}

.launch-modal-close::before {
  transform: rotate(45deg);
}

.launch-modal-close::after {
  transform: rotate(-45deg);
}

.launch-modal-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 8px 14px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    linear-gradient(90deg, #1f8fb7 0%, #23a87d 54%, #d99a2b 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow:
    0 14px 26px rgba(31, 143, 183, 0.2),
    0 0 22px rgba(255, 209, 102, 0.18);
}

.launch-modal-panel h2 {
  margin: 18px 0 0;
  max-width: 340px;
  color: #143f50;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.launch-modal-panel p {
  margin: 18px 0 0;
  max-width: 350px;
  color: rgba(20, 63, 80, 0.78);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 550;
  line-height: 1.55;
}

.launch-modal-panel h2::after {
  content: "";
  display: block;
  width: 76px;
  height: 4px;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #55d7ee, #ffd166, #45c08d);
  box-shadow: 0 0 18px rgba(85, 215, 238, 0.32);
}

.launch-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.launch-modal-primary,
.launch-modal-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 14px;
  padding: 14px 20px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.launch-modal-primary {
  border: 1px solid rgba(255, 255, 255, 0.44);
  color: #ffffff;
  background: linear-gradient(180deg, #24586b 0%, #143f50 100%);
  box-shadow: 0 18px 38px rgba(13, 55, 70, 0.2);
}

.launch-modal-secondary {
  border: 1px solid rgba(23, 56, 76, 0.16);
  color: #17384c;
  background: rgba(255, 255, 255, 0.44);
}

@keyframes launchModalIn {
  from {
    opacity: 0;
    transform: translateX(46px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.travel-page .scroll-top-line {
  position: fixed;
  left: 50%;
  top: 34px;
  z-index: 130;
  width: min(320px, 42vw);
  height: 18px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.travel-page .scroll-top-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), rgba(122, 217, 244, 0.9), rgba(255, 255, 255, 0.95), transparent);
  box-shadow:
    0 0 12px rgba(122, 217, 244, 0.72),
    0 0 28px rgba(255, 255, 255, 0.42);
  transform: translateY(-50%);
}

.travel-page .scroll-top-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.9),
    0 0 22px rgba(122, 217, 244, 0.78);
  transform: translate(-50%, -50%);
}

.travel-page.is-scrolled .site-nav,
.travel-page.is-scrolled .header-contact {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.travel-page.is-scrolled .scroll-top-line {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 620px) {
  .launch-modal {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 18px;
    width: auto;
  }

  .launch-modal-panel {
    padding: 22px 20px 23px;
  }

  .launch-modal-panel h2 {
    max-width: 280px;
  }

  .hotel-page .assistant-visual {
    justify-self: center;
    min-height: 0;
  }

  .hotel-page .assistant-visual img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .travel-page .scroll-top-line {
    top: 28px;
    width: min(230px, 52vw);
  }
}
