:root {
  --ink: #1a1224;
  --ink-soft: #2a1f38;
  --sea: #000dc7;
  --aqua: #5b6ef5;
  --aqua-deep: #0009a8;
  --brand: #000dc7;
  --blush: #f8e8ef;
  --blush-deep: #f0d4e0;
  --rose: #e8b4c8;
  --foam: #fffafb;
  --paper: #fff5f8;
  --mist: #f3e4ec;
  --sun: #f7d6e4;
  --sun-ink: #3a2040;
  --text: #2a2030;
  --muted: #7a6b78;
  --line: rgba(42, 32, 48, 0.08);
  --line-strong: rgba(42, 32, 48, 0.14);
  --shadow: 0 20px 50px rgba(80, 40, 70, 0.1);
  --shadow-soft: 0 10px 28px rgba(80, 40, 70, 0.06);
  --radius: 1.4rem;
  --radius-lg: 1.9rem;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-script: "Great Vibes", Georgia, cursive;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(1100px 520px at 8% -8%, rgba(248, 200, 220, 0.55), transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(255, 255, 255, 0.9), transparent 50%),
    var(--foam);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

::selection {
  background: rgba(43, 181, 168, 0.28);
  color: var(--ink);
}

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

img {
  max-width: 100%;
  height: auto;
}

.container-site {
  width: min(1140px, 100%);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .container-site {
    padding-inline: 2rem;
  }
}

.section-pad {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section-pad {
    padding: 7.5rem 0;
  }
}

.font-display {
  font-family: var(--font-display);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--aqua-deep);
}

.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.eyebrow.light {
  color: var(--sun);
}

.section-title {
  margin: 0.85rem 0 0;
  font-family: var(--font-display);
  font-weight: 650;
  font-size: clamp(2.15rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.section-lead {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--muted);
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark .g {
  color: var(--sun);
}

.tagline-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.ink-wash {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(43, 181, 168, 0.14), transparent 50%),
    radial-gradient(ellipse at 90% 30%, rgba(228, 240, 106, 0.12), transparent 40%),
    linear-gradient(165deg, #e8f1ef 0%, #f4f7f6 48%, #e7efec 100%);
}

.noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
}

.hero-overlay {
  background:
    linear-gradient(105deg, rgba(11, 15, 26, 0.9) 8%, rgba(11, 15, 26, 0.58) 48%, rgba(0, 13, 199, 0.32) 100%),
    linear-gradient(to top, rgba(11, 15, 26, 0.66), transparent 48%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  border: 0;
  cursor: pointer;
  font: inherit;
  transition: transform 0.28s ease, background 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-sun {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 13, 199, 0.32);
}

.btn-sun:hover {
  background: #1a28e0;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.btn-ink {
  background: var(--ink);
  color: white;
}

.btn-wa {
  background: #25d366;
  color: white;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.95rem;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--text);
  outline: none;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(43, 181, 168, 0.14);
}

.textarea {
  min-height: 110px;
  resize: vertical;
}

.label {
  display: block;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.surface-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)), var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.service-tile {
  position: relative;
  overflow: hidden;
  padding: 1.55rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(43, 181, 168, 0.35);
  box-shadow: var(--shadow);
}

.district-chip {
  display: inline-flex;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 560;
  color: var(--ink);
}

.quote-card {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow-soft);
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: 0.35rem;
  left: 0.85rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: rgba(43, 181, 168, 0.28);
}

/* Brand + Header — SVG lockup */
.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
}

.brand-lockup__row {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}

.brand-lockup__word {
  font-family: var(--font-body), system-ui, sans-serif;
  font-weight: 800;
  font-size: calc(var(--brand-mark-size, 36px) * 0.72);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.brand-lockup.is-on-dark .brand-lockup__word {
  color: #fff;
}

.brand-lockup__script {
  margin-top: 0.12em;
  font-family: var(--font-script), Georgia, cursive;
  font-size: calc(var(--brand-mark-size, 36px) * 0.42);
  color: var(--brand);
  white-space: nowrap;
}

.brand-lockup.is-on-dark .brand-lockup__script {
  color: #7b8cff;
}

.brand-lockup svg {
  display: block;
  flex-shrink: 0;
  border-radius: 0.35em;
}

.hero-brand-logo {
  display: block;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.4));
}

.hero-brand-logo .brand-lockup__word {
  font-size: clamp(2.4rem, 8vw, 4.2rem);
}

.hero-brand-logo .brand-lockup__script {
  font-size: clamp(1.35rem, 4.2vw, 2.15rem);
  margin-top: 0.2em;
}

.hero-brand-logo svg {
  width: clamp(2.6rem, 8vw, 4.4rem);
  height: clamp(2.6rem, 8vw, 4.4rem);
}

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

.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.55rem;
  line-height: 1;
}

.brand-mark .g {
  color: var(--brand);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  color: #f3faf8;
  background: rgba(10, 31, 36, 0.55);
  border-bottom: 1px solid rgba(232, 244, 242, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(10, 31, 36, 0.92);
  border-bottom-color: rgba(43, 181, 168, 0.18);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav-desktop a {
  color: rgba(243, 250, 248, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-desktop a:hover {
  color: #fff;
}

.site-nav-cta {
  padding: 0.65rem 1.15rem !important;
  font-size: 0.9rem !important;
}

.nav-toggle {
  display: inline-flex;
  border: 1px solid rgba(243, 250, 248, 0.18);
  background: rgba(243, 250, 248, 0.06);
  color: #f3faf8;
  border-radius: 999px;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  border-top: 1px solid rgba(243, 250, 248, 0.08);
  background: rgba(10, 31, 36, 0.96);
  padding: 0.85rem 1.25rem 1.15rem;
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile a {
  display: block;
  color: rgba(243, 250, 248, 0.9);
  padding: 0.65rem 0.75rem;
  border-radius: 0.75rem;
}

.nav-mobile a:hover {
  background: rgba(43, 181, 168, 0.12);
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
  .nav-toggle,
  .nav-mobile {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: white;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero__overlay,
.hero__noise {
  position: absolute;
  inset: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: 7rem 0 4rem;
}

@media (min-width: 768px) {
  .hero__content {
    align-items: center;
    padding-bottom: 0;
  }
}

.hero__tagline {
  margin: 0 0 1.1rem;
  color: var(--sun);
  font-size: 1.05rem;
}

.hero__brand {
  margin: 0;
  font-size: clamp(3.6rem, 11vw, 7.2rem);
  line-height: 0.9;
}

.hero__title {
  margin: 1.4rem 0 0;
  max-width: 36rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.hero__subtitle {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
    align-items: center;
  }
}

.hero__city {
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Grids */
.grid-3 {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
}

.grid-4 {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.icon-box {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(43, 181, 168, 0.12);
  margin-bottom: 1.1rem;
  font-size: 1.25rem;
}

.why-card,
.why-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.packages-section {
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(248, 200, 220, 0.55), transparent 55%),
    radial-gradient(700px 380px at 90% 100%, rgba(255, 255, 255, 0.9), transparent 50%),
    linear-gradient(180deg, #fff5f8 0%, #f8e8ef 42%, #fffafb 100%);
}

.packages-grid {
  align-items: stretch;
  margin-top: 2.5rem;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(10, 31, 36, 0.08);
  box-shadow: var(--shadow-soft);
  color: var(--text);
}

.package-card.is-hot {
  background: linear-gradient(165deg, #2a2148 0%, #3d2f6b 55%, #241c3d 100%);
  color: #f7f4ff;
  border-color: transparent;
  box-shadow: 0 22px 48px rgba(42, 33, 72, 0.28);
  transform: translateY(-0.5rem);
}

.package-card__badge {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.package-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.package-check {
  color: var(--aqua-deep);
  font-weight: 700;
  margin-right: 0.25rem;
}

.package-card.is-hot .package-check {
  color: #c4b5fd;
}

.btn-outline-pkg {
  background: white;
  color: var(--ink);
  border: 1px solid rgba(10, 31, 36, 0.14);
}

.package-price {
  display: none;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.4rem;
}

.booking-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 960px) {
  .booking-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid .full {
    grid-column: 1 / -1;
  }
}

.wa-aside {
  position: relative;
  overflow: hidden;
  border-radius: 1.7rem;
  background: var(--ink);
  color: white;
  padding: 1.8rem;
}

.faq-item {
  overflow: hidden;
  border-radius: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.75rem;
}

.faq-item.is-open {
  border-color: rgba(43, 181, 168, 0.35);
  background: white;
  box-shadow: var(--shadow-soft);
}

.faq-item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  background: none;
  border: 0;
  padding: 1rem 1.25rem;
  font: inherit;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 650;
}

.faq-item .faq-body {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
}

.faq-item.is-open .faq-body {
  display: block;
}

.contact-band {
  overflow: hidden;
  border-radius: 2rem;
  background: var(--sea);
  color: white;
  display: grid;
}

@media (min-width: 960px) {
  .contact-band {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-band__media {
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

.site-footer {
  background: var(--ink);
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 0;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }
}

.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  font-size: 1.4rem;
}

.form-msg {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.9rem;
  font-size: 0.92rem;
}

.form-msg.ok {
  background: rgba(43, 181, 168, 0.12);
  color: var(--sea);
}

.form-msg.err {
  background: #fef2f2;
  color: #b91c1c;
}

.section-dark {
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}

.section-dark .section-title,
.section-paper .section-title {
  color: inherit;
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.65);
}

.section-paper {
  background: var(--paper);
}

.about-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: end;
  }
}

.relative {
  position: relative;
}

.z-10 {
  position: relative;
  z-index: 10;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.mt-14 {
  margin-top: 3.5rem;
}

.list-dots {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.list-dots li {
  margin: 0.4rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.list-dots.light li {
  color: inherit;
  opacity: 0.85;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal-delay-1 {
  animation-delay: 0.1s;
}
.reveal-delay-2 {
  animation-delay: 0.2s;
}
.reveal-delay-3 {
  animation-delay: 0.32s;
}

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

@media (min-width: 640px) {
  .slot-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.slot-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 0.85rem;
  padding: 0.65rem 0.4rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  color: var(--ink);
  cursor: pointer;
}

.slot-btn.is-selected {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.slot-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  text-decoration: line-through;
  background: var(--mist);
  color: var(--muted);
}

/* —— Müsaitlik takvimi: yeşil açık / kırmızı dolu —— */
.avail-cal {
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(10, 31, 36, 0.1);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(244, 247, 246, 0.92));
  padding: 1.1rem 1rem 1rem;
  box-shadow: var(--shadow-soft);
}

.avail-cal__glow {
  pointer-events: none;
  position: absolute;
  inset: -20% -10% auto;
  height: 55%;
  background:
    radial-gradient(circle at 20% 40%, rgba(16, 185, 129, 0.14), transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(239, 68, 68, 0.1), transparent 40%);
}

.avail-cal__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.avail-cal__title-wrap {
  text-align: center;
}

.avail-cal__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.avail-cal__title {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.avail-cal__nav {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(10, 31, 36, 0.12);
  background: white;
  color: var(--ink);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.avail-cal__nav:hover {
  transform: translateY(-1px);
  background: var(--foam);
}

.avail-cal__legend {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.avail-cal__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.avail-cal__chip i {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  display: block;
}

.avail-cal__chip--ok {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}
.avail-cal__chip--ok i {
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.avail-cal__chip--full {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}
.avail-cal__chip--full i {
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}

.avail-cal__chip--off {
  background: rgba(10, 31, 36, 0.06);
  color: var(--muted);
}
.avail-cal__chip--off i {
  background: #94a3b8;
}

.avail-cal__weekdays {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.35rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.avail-cal__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.4rem;
}

.avail-cal__cell {
  position: relative;
  aspect-ratio: 1;
  border: 0;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.avail-cal__cell.is-empty {
  visibility: hidden;
  pointer-events: none;
}

.avail-cal__num {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
}

.avail-cal__dot {
  position: absolute;
  bottom: 0.35rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  opacity: 0.9;
}

.avail-cal__cell.is-available {
  background: linear-gradient(160deg, #34d399 0%, #059669 100%);
  color: white;
  box-shadow: 0 8px 18px rgba(16, 185, 129, 0.28);
  animation: availPulse 2.8s ease-in-out infinite;
}

.avail-cal__cell.is-available .avail-cal__dot {
  background: rgba(255, 255, 255, 0.85);
}

.avail-cal__cell.is-available:hover {
  transform: translateY(-3px) scale(1.04);
  filter: saturate(1.08);
}

.avail-cal__cell.is-booked {
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.08) 4px,
      transparent 4px,
      transparent 8px
    ),
    linear-gradient(160deg, #f87171 0%, #dc2626 100%);
  color: white;
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.22);
  cursor: not-allowed;
  opacity: 0.92;
}

.avail-cal__cell.is-booked .avail-cal__dot {
  background: rgba(255, 255, 255, 0.7);
}

.avail-cal__cell.is-closed,
.avail-cal__cell.is-past {
  background: rgba(148, 163, 184, 0.18);
  color: #64748b;
  cursor: not-allowed;
}

.avail-cal__cell.is-closed .avail-cal__dot,
.avail-cal__cell.is-past .avail-cal__dot {
  background: #94a3b8;
}

.avail-cal__cell.is-selected {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
  transform: scale(1.06);
  z-index: 2;
}

.avail-cal__cell:disabled {
  cursor: not-allowed;
}

.avail-cal__loading,
.avail-cal__error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 11rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.avail-cal__error {
  color: #b91c1c;
}

.avail-cal__footer {
  position: relative;
  z-index: 1;
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.avail-cal__footer p {
  margin: 0;
}

.avail-cal__footer .is-ok {
  color: #047857;
}

.avail-cal__footer .is-bad {
  color: #b91c1c;
}

@keyframes availPulse {
  0%,
  100% {
    box-shadow: 0 8px 18px rgba(16, 185, 129, 0.22);
  }
  50% {
    box-shadow: 0 10px 24px rgba(16, 185, 129, 0.4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .avail-cal__cell.is-available {
    animation: none;
  }
}


/* Light header */
.site-header,
.site-header--light {
  background: rgba(255, 250, 251, 0.72) !important;
  border-bottom: 1px solid rgba(232, 180, 200, 0.25);
  color: var(--ink);
  backdrop-filter: blur(16px);
}
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 250, 251, 0.96) !important;
  box-shadow: 0 10px 32px rgba(120, 60, 90, 0.08);
}
.site-header .nav-desktop a:not(.btn) { color: rgba(42,32,48,.72); }
.site-header .nav-desktop a:not(.btn):hover { color: var(--brand); }
.site-header .nav-toggle {
  border: 1px solid rgba(232,180,200,.55);
  background: rgba(248,232,239,.7);
  color: var(--ink);
}
.site-header .nav-mobile {
  background: #fffafb;
  border-top: 1px solid rgba(232,180,200,.35);
}
.site-header .nav-mobile a { color: var(--ink); }

/* Açık pembe hero — flyer uyumu */
.hero-soft {
  min-height: 100svh;
  padding: 6.5rem 1.15rem 2.5rem;
  background:
    radial-gradient(900px 480px at 10% 0%, rgba(248, 200, 220, 0.7), transparent 55%),
    radial-gradient(700px 420px at 95% 20%, rgba(255, 255, 255, 0.95), transparent 50%),
    linear-gradient(180deg, #fffafb 0%, #f8e8ef 55%, #fff5f8 100%);
}

@media (min-width: 768px) {
  .hero-soft {
    padding: 7.5rem 2rem 3.5rem;
    display: flex;
    align-items: center;
  }
}

.hero-soft__glow {
  pointer-events: none;
  position: absolute;
  inset: auto -10% 10% 40%;
  height: 50%;
  background: radial-gradient(circle, rgba(232, 180, 200, 0.35), transparent 60%);
  filter: blur(20px);
}

.hero-soft__grid {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-soft__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.75rem;
  }
}

.hero-soft__title {
  margin: 1.35rem 0 0;
  max-width: 22ch;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(1.65rem, 4.2vw, 2.55rem);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.hero-soft__lead {
  margin: 0.9rem 0 0;
  max-width: 36rem;
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  line-height: 1.7;
  color: var(--muted);
}

.hero-soft__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 560px) {
  .hero-soft__actions {
    flex-direction: row;
    align-items: center;
  }

  .hero-soft__actions .btn-soft {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(232, 180, 200, 0.7);
  box-shadow: 0 10px 24px rgba(120, 60, 90, 0.06);
}

.btn-soft:hover {
  background: var(--blush);
}


.hero-soft__visual {
  position: relative;
  min-height: 280px;
}
@media (min-width: 960px) {
  .hero-soft__visual { min-height: 520px; }
}
.hero-soft__photo {
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  background-size: cover;
  background-position: center 20%;
  box-shadow: 0 28px 60px rgba(80, 40, 70, 0.18);
}

.hero-soft__frame {
  position: absolute;
  inset: 1rem -0.75rem -0.75rem 1rem;
  border-radius: 2rem;
  border: 1.5px solid rgba(232, 180, 200, 0.65);
  pointer-events: none;
}

@media (max-width: 959px) {
  .hero-soft__visual {
    order: -1;
    min-height: 42vw;
    max-height: 320px;
  }

  .hero-soft__photo {
    border-radius: 1.5rem;
  }

  .hero-soft__frame {
    inset: 0.65rem -0.45rem -0.45rem 0.65rem;
    border-radius: 1.5rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  font-weight: 650;
  letter-spacing: -0.015em;
  border: 0;
  cursor: pointer;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

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

.btn-sun {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 13, 199, 0.32);
}

.btn-sun:hover {
  background: #1a28e0;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.btn-wa {
  background: #25d366;
  color: white;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
}

.btn-wa:hover {
  background: #1ebe5d;
}

.btn-outline-pkg {
  background: white;
  color: var(--ink);
  border: 1px solid rgba(10, 31, 36, 0.14);
}

.packages-section {
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(248, 200, 220, 0.55), transparent 55%),
    radial-gradient(700px 380px at 90% 100%, rgba(255, 255, 255, 0.9), transparent 50%),
    linear-gradient(180deg, #fff5f8 0%, #f8e8ef 42%, #fffafb 100%);
}

.package-card {
  background: #fff;
  border: 1px solid rgba(232, 180, 200, 0.35);
  box-shadow: 0 14px 36px rgba(120, 60, 90, 0.08);
  color: var(--text);
  min-height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(120, 60, 90, 0.12);
}

.package-card--hot {
  background: linear-gradient(165deg, #3a2448 0%, #5a3568 55%, #2a1838 100%);
  color: #fff8fb;
  border-color: transparent;
  box-shadow: 0 24px 52px rgba(58, 36, 72, 0.28);
}

.package-card--hot:hover {
  transform: translateY(-6px);
}

.package-card__badge {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
}

.package-check {
  color: var(--aqua-deep);
  font-weight: 700;
}

.package-card--hot .package-check {
  color: #c4b5fd;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-ink {
  background: var(--ink);
  color: white;
}

.btn-ink:hover {
  background: var(--ink-soft);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn-outline:hover {
  border-color: var(--aqua);
  color: var(--sea);
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.95rem;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--aqua);
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 13, 199, 0.14);
}

.textarea {
  min-height: 110px;
  resize: vertical;
}

.label {
  display: block;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
  background: #f1f5f4;
}

@media (max-width: 960px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }
}

.admin-card {
  background: white;
  border: 1px solid rgba(10, 31, 36, 0.08);
  border-radius: 1.1rem;
  padding: 1.25rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: white;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes soft-shine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.animate-float {
  animation: float-y 5.5s ease-in-out infinite;
}

.reveal {
  animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal-delay-1 {
  animation-delay: 0.1s;
}

.reveal-delay-2 {
  animation-delay: 0.2s;
}

.reveal-delay-3 {
  animation-delay: 0.32s;
}

.brand-mark {
  font-family: var(--font-display), Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark .g {
  color: var(--brand);
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.brand-lockup--mark {
  display: inline-flex;
}

.brand-lockup__row {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}

.brand-lockup__word {
  font-family: var(--font-body), system-ui, sans-serif;
  font-weight: 800;
  font-size: calc(var(--brand-mark-size, 36px) * 0.72);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.brand-lockup.is-on-dark .brand-lockup__word {
  color: #fff;
}

.brand-lockup__script {
  margin-top: 0.12em;
  margin-left: 0.05em;
  font-family: var(--font-script), Georgia, cursive;
  font-size: calc(var(--brand-mark-size, 36px) * 0.42);
  font-weight: 400;
  color: var(--brand);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-lockup.is-on-dark .brand-lockup__script {
  color: #7b8cff;
}

.brand-lockup svg {
  display: block;
  flex-shrink: 0;
  border-radius: 0.35em;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-brand__meta p:first-child {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.admin-brand__meta p:last-child {
  margin-top: 0.15rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-brand-logo {
  display: block;
}

.hero-brand-logo .brand-lockup__word {
  font-size: clamp(2.35rem, 7vw, 3.8rem);
  color: var(--ink);
}

.hero-brand-logo .brand-lockup__script {
  font-size: clamp(1.35rem, 4vw, 2.05rem);
  margin-top: 0.18em;
  color: var(--brand);
}

.hero-brand-logo svg {
  width: clamp(2.5rem, 7vw, 4rem);
  height: clamp(2.5rem, 7vw, 4rem);
}

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

