:root {
  --color-primary: #083b4c;
  --color-secondary: #1a9dc7;
  --color-turquoise: #4ec7c3;
  --color-sand: #ead8b8;
  --color-gold: #c9a45c;
  --color-cream: #faf7f0;
  --color-charcoal: #222222;
  --color-muted: #6f7c82;
  --shadow-soft: 0 22px 55px rgba(8, 59, 76, .12);
  --radius: 18px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-charcoal);
  background: #fff;
  line-height: 1.7;
}

body.page-ready { animation: pageFade .45s ease both; }

@keyframes pageFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

h1, h2, h3, h4, .brand-word {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--color-primary);
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.section { padding: 96px 0; }
.section-cream { background: var(--color-cream); }
.section-title { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.eyebrow { color: var(--color-gold); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
.section-title h2, .split-copy h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin: 8px 0 14px; }
.lead-text { color: var(--color-muted); font-size: 1.08rem; }

.legal-hero {
  position: relative;
  min-height: 292px;
  display: flex;
  align-items: flex-end;
  padding: 128px 0 48px;
  background: linear-gradient(120deg, rgba(5, 43, 55, .88), rgba(8, 59, 76, .58)), url("../img/hero/muup-hero-drone.webp") center 38%/cover;
  overflow: hidden;
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 82px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #f7fbfb);
}

.legal-hero .container {
  position: relative;
  z-index: 2;
}

.legal-hero .eyebrow {
  color: rgba(234,216,184,.95);
}

.legal-hero h1 {
  max-width: 820px;
  margin: 8px 0 10px;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.45rem);
  line-height: .98;
  text-shadow: 0 16px 34px rgba(0,0,0,.24);
}

.legal-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}

.legal-page {
  padding: 56px 0 86px;
  background: linear-gradient(180deg, #f7fbfb 0%, #fff 42%);
}

.legal-shell {
  max-width: 980px;
  margin: 0 auto;
}

.legal-card {
  background: #fff;
  border: 1px solid rgba(8,59,76,.09);
  border-radius: 18px;
  box-shadow: 0 22px 55px rgba(8,59,76,.09);
  padding: clamp(24px, 4vw, 46px);
}

.legal-card h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  margin-bottom: 12px;
}

.legal-card h2 {
  margin-top: 32px;
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.legal-card p,
.legal-card li {
  color: var(--color-muted);
}

.legal-card ul {
  padding-left: 1.2rem;
}

.legal-meta {
  color: var(--color-primary);
  font-weight: 800;
  margin-bottom: 24px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1040;
  transition: var(--transition);
  padding: 12px 0;
}

.site-header.is-scrolled {
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 35px rgba(8,59,76,.09);
  padding: 6px 0;
}

.navbar-brand img { width: 104px; height: auto; }
.site-header:not(.is-scrolled) .nav-link, .site-header:not(.is-scrolled) .navbar-brand, .site-header:not(.is-scrolled) .phone-link { color: #fff; }
.nav-link {
  position: relative;
  font-weight: 800;
  color: var(--color-primary);
  padding-inline: .45rem !important;
  font-size: .95rem;
  white-space: nowrap;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: .72rem;
  right: .72rem;
  bottom: .22rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-turquoise));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
  text-shadow: 0 0 18px rgba(78,199,195,.18);
}

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

.btn-premium {
  border: 0;
  border-radius: 999px;
  padding: .85rem 1.28rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, #e3c174, var(--color-gold) 54%, #a77b32);
  color: #fff;
  box-shadow: 0 15px 34px rgba(201,164,92,.34);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #f0cd7e, #bd9344 58%, #9a702c);
  color: #fff;
  transform: translateY(-2px);
}

.site-header .btn-gold {
  position: relative;
  overflow: hidden;
  animation: reservePulse 2.9s ease-in-out infinite;
}

.site-header .btn-gold::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transform: rotate(18deg);
  animation: reserveShine 3.4s ease-in-out infinite;
}

@keyframes reservePulse {
  0%, 100% { box-shadow: 0 15px 34px rgba(201,164,92,.28); }
  50% { box-shadow: 0 18px 44px rgba(201,164,92,.48); }
}

@keyframes reserveShine {
  0%, 58% { left: -55%; }
  100% { left: 120%; }
}
.btn-navy { background: var(--color-primary); color: #fff; }
.btn-navy:hover { background: #0d5268; color: #fff; transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(255,255,255,.55); color: #fff; background: rgba(255,255,255,.1); }
.btn-ghost:hover { color: var(--color-primary); background: #fff; }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  padding: .52rem .72rem;
  background: rgba(255,255,255,.12);
  font-weight: 900;
  font-size: .9rem;
  color: var(--color-primary);
  backdrop-filter: blur(10px);
}

.phone-link::before {
  content: "\F5C1";
  font-family: "bootstrap-icons";
  font-weight: 400;
}

.site-header.is-scrolled .phone-link {
  border-color: rgba(8,59,76,.12);
  background: rgba(8,59,76,.06);
}

.site-header .navbar-nav {
  gap: .35rem !important;
}

.site-header .btn-premium {
  padding: .66rem .92rem;
  font-size: .93rem;
}

@media (min-width: 992px) {
  .site-header .container {
    max-width: 1260px;
  }

  .site-header .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }

  .site-header .navbar-nav {
    flex-wrap: nowrap;
    align-items: center;
  }

  .site-header .nav-link {
    font-size: .86rem;
    padding-inline: .34rem !important;
  }

  .site-header .phone-link {
    font-size: .78rem;
    padding: .44rem .56rem;
  }

  .site-header .btn-premium {
    padding: .52rem .66rem;
    font-size: .82rem;
  }

  .site-header .navbar-brand img {
    width: 96px;
  }
}

.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero .carousel, .hero .carousel-inner, .hero .carousel-item { min-height: 100svh; }
.hero-img { width: 100%; min-height: 100svh; height: 100svh; object-fit: cover; object-position: center; }
.inner-slider-hero { min-height: 78svh; }
.inner-slider-hero .carousel,
.inner-slider-hero .carousel-inner,
.inner-slider-hero .carousel-item { min-height: 78svh; }
.inner-slider-hero .hero-img { min-height: 78svh; height: 78svh; }
.hero::after, .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,59,76,.82), rgba(8,59,76,.38) 55%, rgba(8,59,76,.16));
  pointer-events: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-items: center;
  padding-top: 92px;
}

.hero h1 { color: #fff; font-size: clamp(3.1rem, 8vw, 6.8rem); line-height: .95; margin: 0 0 18px; text-shadow: 0 18px 42px rgba(0,0,0,.24); }
.hero h2 { color: #fff; font-size: clamp(1.3rem, 3vw, 2.2rem); margin-bottom: 18px; }
.hero p { max-width: 720px; font-size: 1.12rem; color: rgba(255,255,255,.9); }
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-badges span { border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: .55rem .85rem; background: rgba(255,255,255,.12); backdrop-filter: blur(8px); font-weight: 800; }

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 28px;
}

.hero-proof div {
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(12px);
}

.hero-proof strong { display: block; color: #fff; font-size: 1.05rem; }
.hero-proof small { color: rgba(255,255,255,.82); font-weight: 700; }

.conversion-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.conversion-strip span,
.sales-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 999px;
  padding: .62rem .86rem;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.conversion-strip i,
.sales-chip i { color: var(--color-gold); }

.booking-band {
  margin-top: -64px;
  position: relative;
  z-index: 5;
}

.booking-card, .premium-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(8,59,76,.08);
}

.booking-card { padding: 24px; }
.form-label { font-weight: 800; color: var(--color-primary); font-size: .88rem; }
.form-control, .form-select { border-radius: 12px; min-height: 48px; border-color: rgba(8,59,76,.16); }

.offer-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,164,92,.24);
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(250,247,240,.92)),
    radial-gradient(circle at 8% 0%, rgba(78,199,195,.18), transparent 28%);
}

.offer-card::before {
  content: "Online teklife özel";
  position: absolute;
  right: 18px;
  top: 14px;
  border-radius: 999px;
  padding: .38rem .7rem;
  background: rgba(201,164,92,.13);
  color: var(--color-primary);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

.sales-card {
  min-height: 100%;
  border-radius: 18px;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(8,59,76,.08);
  box-shadow: 0 18px 48px rgba(8,59,76,.08);
}

.sales-card i {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(78,199,195,.12);
  color: var(--color-primary);
  font-size: 1.2rem;
}

.sales-card p { color: var(--color-muted); margin-bottom: 0; }

.planner-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  border-radius: 28px;
  padding: clamp(26px, 5vw, 56px);
  background: linear-gradient(135deg, #073747, #0e6376);
  color: #fff;
  box-shadow: 0 28px 72px rgba(8,59,76,.2);
}

.planner-card h2,
.planner-card h3 { color: #fff; }

.planner-card p { color: rgba(255,255,255,.86); }

.planner-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.planner-option {
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  padding: .72rem 1rem;
  color: #fff;
  background: rgba(255,255,255,.1);
  font-weight: 900;
}

.planner-option.is-active,
.planner-option:hover {
  background: #fff;
  color: var(--color-primary);
}

.planner-result {
  border-radius: 22px;
  padding: 24px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(12px);
}

.room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.room-tag {
  border-radius: 999px;
  padding: .34rem .64rem;
  background: rgba(78,199,195,.12);
  color: var(--color-primary);
  font-size: .78rem;
  font-weight: 900;
}

.room-ideal {
  margin: 0 0 14px;
  color: var(--color-primary);
  font-weight: 900;
}

.scenario-panel {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 360px;
  display: grid;
  align-items: end;
  padding: 28px;
  color: #fff;
  background: #073747;
}

.scenario-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 420ms ease;
}

.scenario-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,59,76,.05) 16%, rgba(8,59,76,.58) 62%, rgba(8,59,76,.9));
}

.scenario-panel:hover .scenario-image {
  transform: scale(1.055);
}

.scenario-content {
  position: relative;
  z-index: 2;
}

.scenario-panel h3 { color: #fff; font-size: clamp(1.55rem, 3vw, 2.4rem); }
.scenario-panel p { color: rgba(255,255,255,.88); }

.gallery-item {
  position: relative;
}

.gallery-item::after {
  content: "Bu atmosfer için fiyat al";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: .56rem .8rem;
  background: rgba(8,59,76,.86);
  color: #fff;
  font-weight: 900;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-cta {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 2147483647;
  transform: translateX(-50%);
  display: none;
}

.lightbox.is-open .lightbox-cta { display: inline-flex; }

.exit-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1038;
  width: min(360px, calc(100vw - 44px));
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(8,59,76,.1);
  box-shadow: 0 22px 60px rgba(8,59,76,.18);
  transform: translateY(130%);
  transition: transform 260ms ease;
}

.exit-cta.is-visible { transform: translateY(0); }
.exit-cta p { margin: 4px 0 14px; color: var(--color-muted); }
.exit-cta-close {
  position: absolute;
  right: 10px;
  top: 8px;
  border: 0;
  background: transparent;
  color: var(--color-muted);
  font-size: 1.1rem;
}

.room-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(3,22,30,.78);
  backdrop-filter: blur(10px);
}

.room-modal.is-open { display: flex; }

.room-modal-card {
  width: min(920px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
}

.room-modal-media img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
}

.room-modal-body {
  padding: clamp(22px, 4vw, 38px);
}

.room-modal-close {
  position: absolute;
  right: 20px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: var(--color-primary);
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}


.split-img, .room-card img, .gallery-item img, .feature-image {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.split-img { aspect-ratio: 4 / 5; box-shadow: var(--shadow-soft); }
.icon-feature { display: flex; gap: 14px; align-items: center; }
.icon-feature i, .amenity-card i { color: var(--color-gold); font-size: 1.5rem; }

.amenity-card, .room-card {
  height: 100%;
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(8,59,76,.08);
  transition: var(--transition);
}

.amenity-card:hover, .room-card:hover, .gallery-item:hover img {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.amenity-card p, .room-card p { color: var(--color-muted); margin-bottom: 0; }
.room-card { padding: 0; overflow: hidden; }
.room-card img { aspect-ratio: 4 / 3; border-radius: 0; transition: var(--transition); }
.room-card-body { padding: 22px; }
.room-meta { display: flex; gap: 12px; flex-wrap: wrap; color: var(--color-primary); font-weight: 800; margin: 12px 0 18px; }

.image-band {
  min-height: 520px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(rgba(8,59,76,.5), rgba(8,59,76,.5)), var(--band-image) center/cover fixed;
}

.image-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.image-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,59,76,.72), rgba(8,59,76,.34));
  z-index: 1;
}

.image-band .container { z-index: 2; }
.image-band h2, .image-band h3 { color: #fff; }
.image-band p { max-width: 650px; color: rgba(255,255,255,.92); }

.gallery-grid { columns: 3 280px; column-gap: 18px; }
.gallery-item { break-inside: avoid; margin: 0 0 18px; overflow: hidden; border-radius: var(--radius); cursor: pointer; background: #fff; }
.gallery-item img { aspect-ratio: var(--ratio, 4 / 3); border-radius: var(--radius); transition: transform 420ms ease; }
.gallery-item:hover img { transform: scale(1.045); }

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

.home-gallery-grid .gallery-item { margin: 0; }
.home-gallery-grid .gallery-item img { height: 100%; }

.experience-card { padding: 30px; border-radius: var(--radius); background: rgba(250,247,240,.76); height: 100%; }
.cta-block { border-radius: 28px; background: linear-gradient(135deg, var(--color-primary), #0e6376); color: #fff; padding: clamp(36px, 6vw, 72px); }
.cta-block h2 { color: #fff; }

.culinary-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(78,199,195,.16), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--color-cream) 54%, #fff 100%);
  overflow: hidden;
}

.culinary-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: 0;
  align-items: center;
  margin-top: clamp(34px, 6vw, 72px);
  position: relative;
}

.culinary-panel:nth-child(even) {
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
}

.culinary-panel:nth-child(even) .culinary-media { order: 2; }
.culinary-panel:nth-child(even) .culinary-copy {
  margin-right: -72px;
  margin-left: 0;
  text-align: right;
}

.culinary-panel:nth-child(even) .culinary-list li {
  justify-content: flex-end;
}

.culinary-media {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(8,59,76,.18);
  min-height: 430px;
}

.culinary-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  transition: transform 520ms ease;
}

.culinary-panel:hover .culinary-media img { transform: scale(1.035); }

.culinary-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(8,59,76,.48));
}

.culinary-copy {
  position: relative;
  z-index: 2;
  margin-left: -72px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 26px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(8,59,76,.08);
  box-shadow: 0 24px 70px rgba(8,59,76,.13);
  backdrop-filter: blur(14px);
}

.culinary-copy h3 {
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  margin: 8px 0 14px;
}

.culinary-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--color-primary);
  font-weight: 800;
}

.culinary-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.culinary-list i { color: var(--color-gold); }

.culinary-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(201,164,92,.12);
  color: var(--color-primary);
  font-size: .82rem;
  font-weight: 900;
}

.culinary-kicker i { color: var(--color-gold); }

.page-hero {
  min-height: 72svh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  padding: 150px 0 72px;
  background: var(--hero-image) center/cover;
  color: #fff;
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.8rem, 6vw, 5rem); }
.page-hero p { max-width: 760px; color: rgba(255,255,255,.92); font-size: 1.12rem; }

.filter-btn.active { background: var(--color-primary); color: #fff; }
.map-frame { width: 100%; min-height: 390px; border: 0; border-radius: var(--radius); filter: saturate(.9); }

.site-footer { background: #062f3d; color: rgba(255,255,255,.78); padding: 70px 0 28px; }
.site-footer h3, .site-footer h4 { color: #fff; }
.footer-logo { width: 130px; margin-bottom: 16px; }
.footer-link { display: block; padding: 5px 0; color: rgba(255,255,255,.78); }
.footer-link:hover { color: #fff; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1030;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  box-shadow: 0 14px 34px rgba(37,211,102,.33);
}

.mobile-action-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 99998;
  align-items: center;
  gap: 7px;
  padding: 7px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,250,249,.9));
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(6,47,61,.22);
  overflow: visible;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-action-bar a {
  flex: 1 1 0;
  min-width: 0;
  min-height: 54px;
  display: grid;
  place-items: center;
  gap: 3px;
  text-align: center;
  padding: 8px 5px;
  color: var(--color-primary);
  font-weight: 900;
  font-size: .78rem;
  line-height: 1.08;
  border-radius: 16px;
  background: rgba(255,255,255,.66);
  box-shadow: inset 0 0 0 1px rgba(8,59,76,.07);
}

.mobile-action-bar a:nth-child(2) {
  min-height: 62px;
  margin-top: -14px;
  color: #fff;
  background: linear-gradient(135deg, #20c863, #118c46);
  box-shadow: 0 12px 26px rgba(37,211,102,.38);
}

.mobile-action-bar i {
  display: block;
  color: var(--color-gold);
  font-size: 1.2rem;
  line-height: 1;
}

.mobile-action-bar a:nth-child(2) i { color: #fff; font-size: 1.34rem; }

.mobile-quick-actions {
  display: grid;
}

.mobile-quick-action {
  min-width: 0;
  min-height: 54px;
  display: grid;
  place-items: center;
  gap: 3px;
  color: var(--color-primary);
  font-size: .76rem;
  line-height: 1.05;
  font-weight: 900;
  text-align: center;
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  box-shadow: inset 0 0 0 1px rgba(8,59,76,.08);
}

.mobile-quick-action i {
  color: var(--color-gold);
  font-size: 1.14rem;
  line-height: 1;
}

.mobile-quick-action.is-primary {
  min-height: 64px;
  margin-top: -15px;
  color: #fff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.32), transparent 34%),
    linear-gradient(135deg, #28d96c 0%, #139447 100%);
  box-shadow: 0 14px 30px rgba(37,211,102,.42);
}

.mobile-quick-action.is-primary i {
  color: #fff;
  font-size: 1.34rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(3,22,30,.88);
}

.lightbox.is-open { display: flex; }
.lightbox img {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10002;
  display: block;
  max-width: min(1120px, calc(100vw - 150px));
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.42);
}
.lightbox-close { position: fixed; top: 24px; right: 24px; z-index: 10004; border: 0; border-radius: 50%; width: 46px; height: 46px; background: #fff; color: var(--color-primary); }

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10003;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--color-primary);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  box-shadow: 0 14px 38px rgba(0,0,0,.22);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 10003;
  color: #fff;
  font-weight: 800;
  background: rgba(8,59,76,.62);
  border-radius: 999px;
  padding: 8px 14px;
}

.lightbox-status {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10001;
  color: #fff;
  font-weight: 800;
  text-align: center;
}

[data-reveal] { opacity: 0; transform: translateY(24px); transition: 640ms ease; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991.98px) {
  .site-header { background: rgba(255,255,255,.94); backdrop-filter: blur(16px); padding: 8px 0; }
  .site-header:not(.is-scrolled) .nav-link, .site-header:not(.is-scrolled) .navbar-brand, .site-header:not(.is-scrolled) .phone-link { color: var(--color-primary); }
  .navbar-collapse {
    margin-top: 10px;
    padding: 18px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,247,240,.96));
    border: 1px solid rgba(8,59,76,.08);
    box-shadow: 0 22px 55px rgba(8,59,76,.14);
  }
  .navbar-collapse .nav-link {
    padding: .82rem 0 !important;
    border-bottom: 1px solid rgba(8,59,76,.07);
  }
  .navbar-collapse .phone-link,
  .navbar-collapse .btn-premium {
    width: 100%;
    margin-top: 10px;
  }
  .booking-band { margin-top: 24px; }
  .section { padding: 72px 0; }
  .image-band { background-attachment: scroll; }
  .page-hero { min-height: 78svh; background-position: center; }
  .conversion-strip,
  .sales-grid,
  .planner-card {
    grid-template-columns: 1fr;
  }
  .home-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .culinary-panel,
  .culinary-panel:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .culinary-panel:nth-child(even) .culinary-media { order: 0; }
  .culinary-panel:nth-child(even) .culinary-copy,
  .culinary-copy {
    margin: -46px 18px 0;
    text-align: left;
  }
  .culinary-panel:nth-child(even) .culinary-list li { justify-content: flex-start; }
  .culinary-media,
  .culinary-media img {
    min-height: 320px;
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 575.98px) {
  body { padding-bottom: 86px; }
  .hero, .hero .carousel, .hero .carousel-inner, .hero .carousel-item { min-height: 100dvh; }
  .hero-img { min-height: 100dvh; height: 100dvh; object-position: center top; }
  .inner-slider-hero,
  .inner-slider-hero .carousel,
  .inner-slider-hero .carousel-inner,
  .inner-slider-hero .carousel-item,
  .inner-slider-hero .hero-img { min-height: 100dvh; height: 100dvh; }
  .hero h1 { font-size: 3.15rem; }
  .hero h2 { font-size: 1.25rem; }
  .hero p { font-size: .98rem; }
  .hero-content { padding-top: 88px; align-items: center; }
  .page-hero { min-height: 100dvh; padding: 128px 0 54px; background-position: center top; }
  .btn-premium { width: 100%; }
  .trust-badges span { font-size: .82rem; }
  .hero-proof { grid-template-columns: 1fr; gap: 8px; margin-top: 18px; }
  .hero-proof div { padding: 10px 12px; }
  .booking-card { padding: 18px; }
  .floating-whatsapp { display: none; }
  .mobile-action-bar { display: flex; }
  .gallery-grid { columns: 1; }
  .home-gallery-grid { grid-template-columns: 1fr; }
  .conversion-strip { gap: 8px; }
  .sales-card { padding: 22px; }
  .planner-card { padding: 24px; }
  .exit-cta { display: none; }
  .lightbox-cta {
    width: calc(100vw - 32px);
    bottom: 92px;
  }
  .culinary-panel:nth-child(even) .culinary-copy,
  .culinary-copy { margin: -36px 10px 0; padding: 22px; }
  .culinary-media,
  .culinary-media img { min-height: 280px; aspect-ratio: 1 / 1; }
  .lightbox { padding: 14px; }
  .lightbox img { max-width: calc(100vw - 28px); max-height: 78vh; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-nav { width: 44px; height: 44px; }
}

@media (max-width: 768px) {
  body { padding-bottom: 86px; }
  .mobile-action-bar {
    display: flex !important;
    position: fixed !important;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 99998;
  }
}

/* =========================================================
   MUUP RESORT - CAMPAIGN BANNER FINAL FIX
   Desktop:
   - Banner üstte sticky kalır
   - Menü sticky olmaz
   - Menü eski orijinal hizasını korur
   - Menü sadece banner yüksekliği kadar aşağı alınır

   Mobil:
   - Banner aşağı kaydırınca kaybolur
   - Logo + hamburger sticky kalır
========================================================= */

:root {
  --muup-campaign-height: 52px;
}

/* Kampanya banner genel ayar */
.muup-campaign-banner,
.muup-campaign-banner * {
  box-sizing: border-box;
}

/* =========================================================
   DESKTOP + GENEL BANNER
========================================================= */

.muup-campaign-banner {
  position: sticky;
  top: 0;
  z-index: 99999;
  width: 100%;
  min-height: var(--muup-campaign-height);
  background:
    radial-gradient(circle at 15% 50%, rgba(255,255,255,.22), transparent 28%),
    linear-gradient(90deg, #22b6cf 0%, #0077b6 45%, #ed8900 100%);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .16);
}

.muup-campaign-inner {
  max-width: 1240px;
  min-height: var(--muup-campaign-height);
  margin: 0 auto;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.muup-campaign-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  letter-spacing: .1px;
}

.muup-campaign-text strong {
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  color: #fff6cf;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.muup-campaign-text b {
  color: #fff6cf;
  font-weight: 900;
}

.muup-campaign-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .36);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.muup-campaign-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #0077b6;
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.muup-campaign-btn:hover {
  transform: translateY(-1px);
  background: #fff6cf;
  color: #005f8f;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, .20);
}

/* =========================================================
   DESKTOP HEADER FIX
   ÖNEMLİ:
   Burada header'a position/top vermiyoruz.
   Sadece mevcut orijinal menüyü banner kadar aşağı taşıyoruz.
========================================================= */

@media (min-width: 769px) {
  body > header,
  body > .site-header,
  body > .main-header {
    transform: translateY(var(--muup-campaign-height)) !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body > header .navbar,
  body > .site-header .navbar,
  body > .main-header .navbar {
    background: transparent !important;
    box-shadow: none !important;
  }
}

/* =========================================================
   MOBİL
   Banner sticky değil.
   Kaydırınca yukarı gider ve kaybolur.
   Logo + hamburger menü sticky kalır.
========================================================= */

@media (max-width: 768px) {
  :root {
    --muup-campaign-height: 0px;
  }

  .muup-campaign-banner {
    position: relative;
    top: auto;
    z-index: 20;
    min-height: auto;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .14);
  }

  .muup-campaign-inner {
    min-height: auto;
    padding: 8px 12px;
    flex-direction: column;
    gap: 7px;
  }

  .muup-campaign-text {
    width: 100%;
    flex-wrap: wrap;
    gap: 5px 7px;
    font-size: 12.5px;
    line-height: 1.25;
  }

  .muup-campaign-text strong {
    display: block;
    width: 100%;
    font-size: 17px;
    line-height: 1.2;
  }

  .muup-campaign-badge {
    font-size: 10px;
    padding: 4px 8px;
  }

  .muup-campaign-btn {
    width: 100%;
    max-width: 260px;
    min-height: 32px;
    padding: 8px 12px;
    font-size: 12.5px;
  }

  body > header,
  body > .site-header,
  body > .main-header,
  header,
  .site-header,
  .main-header,
  .navbar {
    position: sticky;
    top: 0;
    z-index: 99990;
    background: #ffffff;
  }
}

/* Çok küçük mobil ekranlar */
@media (max-width: 420px) {
  .muup-campaign-inner {
    padding: 7px 10px;
  }

  .muup-campaign-text {
    font-size: 12px;
  }

  .muup-campaign-text strong {
    font-size: 16.5px;
  }

  .muup-campaign-btn {
    max-width: 240px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  html body .mobile-action-bar {
    display: flex !important;
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    z-index: 99998 !important;
    transform: translateZ(0);
  }

  body { padding-bottom: 86px; }

  body > .site-header,
  .site-header {
    padding: 0 !important;
    min-height: auto !important;
  }

  body > .site-header .navbar,
  .site-header .navbar {
    min-height: 66px;
    padding: 7px 0 !important;
  }

  .navbar-brand img {
    width: 92px;
  }

  .navbar-toggler {
    width: 42px;
    height: 42px;
    padding: 6px;
    border-radius: 8px;
  }

  .mobile-quick-actions {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 2147483000;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr) minmax(0, 1fr);
    align-items: center;
    gap: 7px;
    padding: 7px;
    border: 1px solid rgba(255,255,255,.74);
    border-radius: 22px;
    background:
      linear-gradient(135deg, rgba(255,255,255,.97), rgba(244,249,248,.92));
    box-shadow: 0 18px 48px rgba(6,47,61,.24);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translateZ(0);
  }

  .legal-hero {
    min-height: 236px;
    padding: 104px 0 34px;
    background-position: center top;
  }

  .legal-hero h1 {
    font-size: clamp(2rem, 11vw, 3.05rem);
  }

  .legal-hero p {
    font-size: .94rem;
    line-height: 1.55;
  }

  .legal-page {
    padding-top: 34px;
    padding-bottom: 104px;
  }
}

@media (min-width: 769px) {
  body.inner-page > .site-header {
    transform: translateY(0) !important;
    padding: 8px 0 !important;
  }

  body.inner-page > .site-header.is-scrolled {
    transform: translateY(0) !important;
    padding: 6px 0 !important;
  }

  html body .mobile-action-bar {
    display: none !important;
  }
}

html body .mobile-quick-actions {
  display: grid !important;
  position: fixed !important;
  left: 12px !important;
  right: 12px !important;
  bottom: 12px !important;
  z-index: 2147483000 !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 7px !important;
  padding: 7px !important;
  border: 1px solid rgba(255,255,255,.74) !important;
  border-radius: 22px !important;
  background: linear-gradient(135deg, rgba(255,255,255,.97), rgba(244,249,248,.92)) !important;
  box-shadow: 0 18px 48px rgba(6,47,61,.24) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.factsheet-link {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.factsheet-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(8, 59, 76, .2);
}

.factsheet-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff;
}

.concept-list-card {
  border: 1px solid rgba(8, 59, 76, .1);
  background:
    radial-gradient(circle at 100% 0, rgba(78, 199, 195, .12), transparent 38%),
    #fff;
}

.concept-check-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.concept-check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--color-primary);
  font-weight: 700;
}

.concept-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--color-gold);
  font-size: .72rem;
  line-height: 1;
}

.concept-check-list-dark li {
  color: var(--color-charcoal);
}

.concept-table-wrap {
  overflow: hidden;
  border: 1px solid rgba(8, 59, 76, .12);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.concept-table {
  min-width: 640px;
  --bs-table-bg: transparent;
  --bs-table-striped-bg: rgba(8, 59, 76, .025);
}

.concept-table thead th {
  padding: 18px 20px;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--color-primary), #0c6682);
  font-size: .84rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.concept-table tbody th,
.concept-table tbody td {
  padding: 15px 20px;
  border-color: rgba(8, 59, 76, .09);
  vertical-align: middle;
}

.concept-table tbody th,
.concept-table tbody td:first-child {
  color: var(--color-primary);
  font-weight: 800;
  white-space: nowrap;
}

.concept-table .concept-table-group td {
  color: #fff;
  background: var(--color-primary);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.concept-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 17px 20px;
  border: 1px solid rgba(201, 164, 92, .28);
  border-radius: 14px;
  color: #6b552a;
  background: rgba(234, 216, 184, .28);
}

.concept-notice i {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--color-gold);
}

.concept-cta {
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.88);
  background:
    linear-gradient(120deg, rgba(5, 43, 55, .96), rgba(8, 59, 76, .84)),
    url("../img/gallery/muup-sunset-beach.webp") center/cover;
}

.concept-cta h2 {
  max-width: 850px;
  margin: 10px auto 16px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.concept-cta p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
}

@media (max-width: 767px) {
  .concept-table {
    font-size: .88rem;
  }

  .concept-table thead th,
  .concept-table tbody th,
  .concept-table tbody td {
    padding: 12px 14px;
  }
}

@media (hover: hover) and (pointer: fine) and (min-width: 992px) {
  html body .mobile-quick-actions {
    display: none !important;
  }
}
