/* ================================
   GÜZELLİK DURAĞI
   PREMIUM DARK / GOLD DESIGN
================================ */

:root {
  --bg: #090909;
  --bg-soft: #11100e;
  --gold: #c9a45c;
  --gold-light: #e4c985;
  --cream: #f4eee1;
  --muted: #aaa49a;
  --line: rgba(201,164,92,.22);
  --white: #f8f5ee;
}

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

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background:
    radial-gradient(circle at 75% 35%, rgba(201,164,92,.08), transparent 30%),
    radial-gradient(circle at 15% 80%, rgba(201,164,92,.05), transparent 25%),
    var(--bg);

  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  overflow: hidden;
}


/* ================= HEADER ================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;

  z-index: 1000;

  background: rgba(9,9,9,.88);
  backdrop-filter: blur(16px);

  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1400px, 92%);
  height: 100%;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}


/* ================= LOGO ================= */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;

  color: var(--white);
  text-decoration: none;

  min-width: 190px;
}

.brand-logo {
  width: 138px;
  height: 74px;
  display: block;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: brightness(1.28) contrast(1.12) saturate(1.08)
          drop-shadow(0 0 5px rgba(214,178,88,.18));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 22px;
  font-weight: 400;
}

.brand-text span {
  margin-top: 5px;

  font-size: 8px;
  letter-spacing: 4px;

  color: var(--gold);
}


/* ================= NAV ================= */

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  border: 0;
  background: transparent;

  color: #bdb8ae;

  padding: 12px 16px;

  font-family: Georgia, serif;
  font-size: 14px;

  cursor: pointer;

  transition: .3s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}


/* ================= RANDEVU BUTTON ================= */

.appointment-btn {
  position: relative;

  border: 1px solid var(--gold);

  background: rgba(201,164,92,.08);

  color: var(--gold-light);

  padding: 13px 22px;

  font-family: Georgia, serif;
  font-size: 11px;

  letter-spacing: 1.5px;

  cursor: pointer;

  transition: .3s;
}

.appointment-btn:hover {
  background: var(--gold);
  color: #111;
}

.pulse-dot {
  display: inline-block;

  width: 6px;
  height: 6px;

  margin-right: 8px;

  border-radius: 50%;

  background: var(--gold-light);

  box-shadow: 0 0 0 rgba(201,164,92,.7);

  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201,164,92,.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(201,164,92,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(201,164,92,0);
  }
}


/* ================= MOBILE MENU ================= */

.mobile-menu {
  display: none;

  background: transparent;
  border: 1px solid var(--line);

  color: var(--gold);

  font-size: 22px;

  padding: 8px 12px;

  cursor: pointer;
}


/* ================= MAIN ================= */

#pageContent {
  position: relative;

  width: 100%;
  height: 100vh;
  overflow: hidden;
}


/* ================= PAGES ================= */

.page {
  position: absolute;

  inset: 0;

  padding: 125px 7% 50px;

  overflow-y: auto;

  opacity: 0;
  visibility: hidden;

  transform: translateY(15px);

  transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(201,164,92,.07),
      transparent 30%
    ),
    var(--bg);
}

.page.active {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);

  z-index: 2;
}


/* ================= HERO ================= */

#page-anasayfa {
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.hero {
  width: 100%;
  height: calc(100vh - 136px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
}

.hero-content {
  position: relative;
  z-index: 5;

  max-width: 720px;
}

.gold-label {
  display: inline-block;

  color: var(--gold);

  font-size: 11px;

  letter-spacing: 3px;

  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(64px, 7vw, 112px);

  font-weight: 400;

  line-height: .88;

  letter-spacing: -4px;

  color: var(--cream);
}

.hero h1 em,
h2 em,
h3 em {
  color: var(--gold-light);
  font-style: italic;
}

.hero p {
  margin-top: 30px;

  max-width: 520px;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.7;
}


/* ================= HERO BUTTONS ================= */

.hero-buttons {
  display: flex;

  gap: 14px;

  margin-top: 34px;
}

.gold-button,
.outline-button {
  padding: 15px 26px;

  font-family: Georgia, serif;

  font-size: 11px;

  letter-spacing: 1.5px;

  cursor: pointer;

  transition: .3s;
}

.gold-button {
  border: 1px solid var(--gold);

  background: var(--gold);

  color: #111;
}

.gold-button:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.outline-button {
  border: 1px solid var(--line);

  background: transparent;

  color: var(--cream);
}

.outline-button:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}


/* ================= HERO DECORATION ================= */

.hero-decoration {
  width: 430px;
  height: 430px;
  position: relative;
  margin-right: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Kampanya hero alanında temiz ve halkasız görünür. */
.hero-campaign {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: visible;
}
.hero-campaign.campaign-ready { display: flex; }

/* Kampanya metni solda, karakter sağda ve aynı dikey hizada. */
.hero-campaign-copy {
  position: relative;
  z-index: 3;
  width: 235px;
  transform: translate(-35px, 0);
}

.hero-campaign-label {
  display: block;
  color: #ffe7a3;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 3.5px;
  line-height: 1.25;
  margin-bottom: 14px;
  text-shadow:
    0 0 5px rgba(255, 214, 118, .95),
    0 0 12px rgba(201, 164, 92, .85),
    0 0 24px rgba(201, 164, 92, .55);
  animation: campaignNeon 2.2s ease-in-out infinite alternate;
}

@keyframes campaignNeon {
  from {
    opacity: .88;
    text-shadow:
      0 0 4px rgba(255, 214, 118, .75),
      0 0 10px rgba(201, 164, 92, .65),
      0 0 18px rgba(201, 164, 92, .35);
  }
  to {
    opacity: 1;
    text-shadow:
      0 0 6px rgba(255, 232, 170, 1),
      0 0 15px rgba(201, 164, 92, .95),
      0 0 30px rgba(201, 164, 92, .65);
  }
}

.hero-campaign-copy h3 {
  margin: 0 auto 8px;
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 27px;
  line-height: 1.05;
  max-width: 230px;
}

.hero-campaign-copy p {
  margin: 0 auto 10px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
  max-width: 215px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-campaign-price {
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}
.hero-campaign-price del { color: #8f887f; font-size: 11px; }
.hero-campaign-price strong { color: var(--gold-light); font-size: 22px; line-height: 1; }

.hero-campaign-button {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-light);
  padding: 9px 14px;
  font-size: 9px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: .25s ease;
}
.hero-campaign-button:hover { background: var(--gold); color: #15120f; }

/* Karakter kampanya metniyle aynı hizada ve belirgin boyutta. */
.hero-campaign-character {
  position: relative;
  flex: 0 0 175px;
  width: 175px;
  height: 250px;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: translate(5px, 0);
}

.hero-campaign-character img {
  display: block;
  width: 175px;
  height: 250px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.5));
}

/* Karakterin üzerindeki yazı: daha büyük ve okunaklı. */
.hero-campaign-speech {
  position: absolute;
  right: -55px;
  top: 5px;
  width: 155px;
  padding: 11px 13px;
  border: 1px solid var(--gold);
  border-radius: 10px;
  background: rgba(18,15,12,.97);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  z-index: 4;
  box-shadow: 0 8px 22px rgba(0,0,0,.42);
}

.hero-campaign-speech:after {
  content: "";
  position: absolute;
  left: 25px;
  bottom: -7px;
  width: 12px;
  height: 12px;
  background: rgba(18,15,12,.97);
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
}

@media (max-width:900px) {
  .hero-decoration { width: 360px; height: 360px; margin-right: 2%; }
  .hero-campaign-copy { width: 200px; transform: translate(-18px, 0); }
  .hero-campaign-copy h3 { font-size: 23px; }
  .hero-campaign-character {
    flex-basis: 145px;
    width: 145px;
    height: 210px;
    transform: translate(0, 0);
  }
  .hero-campaign-character img { width: 145px; height: 210px; }
  .hero-campaign-speech { right: -45px; width: 135px; font-size: 10px; }
}

@media (max-width:700px) {
  .hero-decoration { width: 300px; height: 300px; margin: 30px auto 0; }
  .hero-campaign-copy { width: 175px; transform: translate(-10px, 0); }
  .hero-campaign-label { font-size: 11px; letter-spacing: 2.4px; }
  .hero-campaign-copy h3 { font-size: 20px; }
  .hero-campaign-copy p { font-size: 8px; }
  .hero-campaign-price strong { font-size: 18px; }
  .hero-campaign-character {
    flex-basis: 115px;
    width: 115px;
    height: 175px;
  }
  .hero-campaign-character img { width: 115px; height: 175px; }
  .hero-campaign-speech { right: -35px; top: 0; width: 115px; font-size: 9px; padding: 8px 9px; }
}

/* ================= HOME INTRO ================= */

.home-intro {
  display: none;
}


/* ================= PAGE HEADING ================= */

.page-heading {
  max-width: 700px;

  margin: 0 auto 55px;

  text-align: center;
}

.page-heading h2 {
  font-size: clamp(45px, 5vw, 75px);

  line-height: .95;

  font-weight: 400;
}

.page-heading p {
  margin-top: 22px;

  color: var(--muted);

  line-height: 1.7;
}


/* ================= SERVICES ================= */

.service-grid {
  width: min(1250px, 100%);

  margin: auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 280px;

  padding: 38px;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);

  position: relative;

  transition: .35s;
}

.service-card:hover {
  background: rgba(201,164,92,.045);
}

.service-number {
  position: absolute;

  top: 20px;
  right: 25px;

  color: rgba(201,164,92,.4);

  font-size: 11px;
}

.service-icon {
  color: var(--gold);

  font-size: 25px;

  margin-bottom: 30px;
}

.service-card h3 {
  font-size: 25px;

  font-weight: 400;
}

.service-card p {
  margin-top: 15px;

  color: var(--muted);

  font-family: Arial, sans-serif;

  font-size: 13px;

  line-height: 1.7;
}

.service-card button {
  margin-top: 20px;

  border: 0;

  background: transparent;

  color: var(--gold);

  font-family: Georgia, serif;

  cursor: pointer;
}


/* ================= ABOUT ================= */

.about-content {
  width: min(1100px, 100%);

  margin: auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.about-box {
  padding: 45px;

  border: 1px solid var(--line);

  min-height: 240px;
}

.about-box span {
  color: var(--gold);

  font-size: 12px;
}

.about-box h3 {
  margin-top: 35px;

  font-size: 25px;

  font-weight: 400;
}

.about-box p {
  margin-top: 18px;

  color: var(--muted);

  line-height: 1.7;
}


/* ================= REVIEWS ================= */

.reviews-grid {
  width: min(1100px, 100%);

  margin: auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.review-card {
  padding: 40px;

  border: 1px solid var(--line);

  min-height: 240px;
}

.stars {
  color: var(--gold);

  letter-spacing: 4px;
}

.review-card p {
  margin-top: 25px;

  color: var(--cream);

  line-height: 1.7;

  font-style: italic;
}

.review-card strong {
  display: block;

  margin-top: 25px;

  color: var(--muted);

  font-size: 12px;
}


/* ================= CONTACT ================= */

.contact-grid {
  width: min(1000px, 100%);

  margin: auto;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;
}

.contact-card {
  padding: 45px;

  border: 1px solid var(--line);

  min-height: 180px;
}

.contact-card span {
  color: var(--gold);

  font-size: 10px;

  letter-spacing: 2px;
}

.contact-card h3 {
  margin-top: 25px;

  font-size: 20px;

  font-weight: 400;
}


/* ================= APPOINTMENT ================= */

.appointment-container {
  width: min(1000px, 100%);

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  border: 1px solid var(--line);
}

.appointment-info {
  padding: 55px;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(201,164,92,.1),
      transparent 55%
    );
}

.appointment-info h3 {
  font-size: 50px;

  font-weight: 400;

  line-height: 1;
}

.appointment-info p {
  margin-top: 25px;

  color: var(--muted);

  line-height: 1.7;
}

.appointment-form {
  padding: 45px;

  display: flex;

  flex-direction: column;

  gap: 9px;

  background: rgba(255,255,255,.015);
}

.appointment-form label {
  margin-top: 5px;

  color: var(--gold);

  font-size: 10px;

  letter-spacing: 1px;
}

.appointment-form input,
.appointment-form select {
  width: 100%;

  padding: 13px;

  background: #111;

  border: 1px solid var(--line);

  color: var(--cream);

  outline: none;
}

.appointment-form input:focus,
.appointment-form select:focus {
  border-color: var(--gold);
}

.full {
  width: 100%;

  margin-top: 15px;
}

#appointmentMessage {
  display: none;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(214, 175, 82, 0.45);
  background: rgba(214, 175, 82, 0.08);
  color: var(--gold);
  font-size: 14px;
  line-height: 1.7;
  white-space: pre-line;
  text-align: left;
}

#appointmentMessage.success {
  border-color: rgba(214, 175, 82, 0.65);
  background: rgba(214, 175, 82, 0.12);
}

#appointmentMessage.error {
  border-color: rgba(190, 80, 80, 0.65);
  background: rgba(190, 80, 80, 0.10);
  color: #f0b5b5;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

  .main-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .brand {
    min-width: auto;
  }

  .hero-decoration {
    opacity: .35;

    position: absolute;

    right: -100px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content,
  .reviews-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .appointment-container {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 650px) {

  .site-header {
    height: 72px;
  }

  .header-inner {
    width: 90%;
  }

  .appointment-btn {
    padding: 10px 12px;

    font-size: 9px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .brand-logo {
    width: 120px;
    height: 64px;
  }

  .page {
    padding: 100px 6% 30px;
  }

  .hero {
    height: calc(100vh - 100px);
  }

  .hero h1 {
    font-size: 58px;

    letter-spacing: -3px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: flex-start;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .page-heading {
    margin-bottom: 30px;
  }

}

/* ================= WHATSAPP / CONTACT ================= */

.contact-card h3 a {
  color: inherit;
  text-decoration: none;
}

.contact-card h3 a:hover {
  color: var(--gold-light);
}

.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 10px 14px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 1.2px;
  transition: .3s;
}

.contact-action:hover {
  background: var(--gold);
  color: #111;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(9,9,9,.94);
  color: var(--gold-light);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  letter-spacing: .8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
  transition: .3s;
}

.floating-whatsapp:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-2px);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
}

@media (max-width: 600px) {
  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding: 12px 14px;
  }

  .floating-whatsapp span:last-child {
    display: none;
  }
}


/* ================= IN-PAGE WHATSAPP CHAT ================= */

button.floating-whatsapp,
button.contact-action {
  font: inherit;
  font-size: 10px;
  letter-spacing: 1.2px;
  line-height: normal;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 0;
  color: var(--gold-light);
  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;
}

button.floating-whatsapp {
  border-width: 1px;
}

.whatsapp-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.whatsapp-modal.open {
  display: flex;
}

.whatsapp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(5px);
}

.whatsapp-chat {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 18px;
  background: #111;
  box-shadow: 0 25px 70px rgba(0,0,0,.55);
  animation: whatsappChatIn .22s ease-out;
}

@keyframes whatsappChatIn {
  from { opacity: 0; transform: translateY(15px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.whatsapp-chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 48px 16px 18px;
  border-bottom: 1px solid rgba(197,166,74,.35);
  background: #151515;
  color: var(--gold-light);
}

.whatsapp-chat-head strong,
.whatsapp-chat-head span {
  display: block;
}

.whatsapp-chat-head strong {
  font-size: 17px;
}

.whatsapp-chat-head span {
  margin-top: 3px;
  font-size: 11px;
  opacity: .7;
}

.whatsapp-chat-logo {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 12px;
  letter-spacing: 1px;
}

.whatsapp-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--gold-light);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-chat-body {
  min-height: 170px;
  padding: 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(197,166,74,.07), transparent 35%),
    #0d0d0d;
}

.whatsapp-bubble {
  width: fit-content;
  max-width: 88%;
  margin-bottom: 10px;
  padding: 11px 14px;
  border: 1px solid rgba(197,166,74,.25);
  border-radius: 4px 14px 14px 14px;
  background: #1b1b1b;
  color: #eee;
  font-size: 13px;
  line-height: 1.55;
}

.whatsapp-bubble-note {
  opacity: .75;
}

.whatsapp-chat-form {
  display: flex;
  gap: 9px;
  align-items: flex-end;
  padding: 13px;
  border-top: 1px solid rgba(197,166,74,.25);
  background: #151515;
}

.whatsapp-chat-form textarea {
  flex: 1;
  min-width: 0;
  resize: none;
  padding: 11px 12px;
  border: 1px solid rgba(197,166,74,.45);
  border-radius: 10px;
  outline: none;
  background: #0b0b0b;
  color: #fff;
  font: inherit;
  font-size: 13px;
}

.whatsapp-chat-form textarea:focus {
  border-color: var(--gold);
}

.whatsapp-chat-form button {
  flex: 0 0 auto;
  min-height: 43px;
  padding: 0 13px;
  border: 1px solid var(--gold);
  border-radius: 9px;
  background: var(--gold);
  color: #111;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .7px;
  cursor: pointer;
}

.whatsapp-chat-form button:hover {
  filter: brightness(1.08);
}

body.whatsapp-modal-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .whatsapp-modal {
    align-items: flex-end;
    padding: 0;
  }

  .whatsapp-chat {
    width: 100%;
    border-radius: 18px 18px 0 0;
  }

  .whatsapp-chat-body {
    min-height: 145px;
  }

  .whatsapp-chat-form button {
    padding: 0 10px;
  }
}


/* ===== GERÇEK SOHBET GÖRÜNÜMÜ ===== */
.whatsapp-chat {
  width: min(430px, 100%);
  height: min(680px, 88vh);
  display: flex;
  flex-direction: column;
}

.whatsapp-online-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  border-radius: 50%;
  background: #6bcf72;
}

.whatsapp-chat-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 16px 14px 12px;
  background:
    radial-gradient(circle at 15% 15%, rgba(197,166,74,.08), transparent 32%),
    #0b0b0b;
  scroll-behavior: smooth;
}

.chat-date {
  width: fit-content;
  margin: 0 auto 14px;
  padding: 5px 9px;
  border-radius: 9px;
  background: #242424;
  color: #aaa;
  font-size: 9px;
  letter-spacing: 1px;
}

.chat-row {
  display: flex;
  gap: 8px;
  margin: 8px 0;
  align-items: flex-end;
}

.chat-row.user {
  justify-content: flex-end;
}

.chat-row.user .chat-avatar {
  display: none;
}

.chat-avatar {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197,166,74,.6);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 7px;
  letter-spacing: .5px;
}

.chat-row .whatsapp-bubble {
  margin: 0;
  max-width: 290px;
  padding: 9px 12px;
  border-radius: 4px 13px 13px 13px;
  font-size: 12px;
}

.chat-row.user .whatsapp-bubble {
  border-color: rgba(197,166,74,.5);
  border-radius: 13px 4px 13px 13px;
  background: #4d4020;
  color: #fff;
}

.chat-time {
  display: block;
  margin: 3px 4px 0;
  color: #777;
  font-size: 8px;
}

.chat-row.user .chat-time {
  text-align: right;
}

.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0 5px 35px;
}

.chat-quick-actions button {
  padding: 8px 10px;
  border: 1px solid rgba(197,166,74,.55);
  border-radius: 18px;
  background: #171717;
  color: #e8d99c;
  font-size: 10px;
  cursor: pointer;
  transition: .15s ease;
}

.chat-quick-actions button:hover {
  background: #29230f;
  transform: translateY(-1px);
}

.chat-typing {
  display: none;
  width: fit-content;
  margin: 8px 0 8px 35px;
  padding: 9px 12px;
  border-radius: 4px 13px 13px 13px;
  background: #1b1b1b;
}

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

.chat-typing span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #999;
  animation: chatTypingDot 1s infinite ease-in-out;
}

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

@keyframes chatTypingDot {
  0%,60%,100% { transform: translateY(0); opacity: .45; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.whatsapp-chat-form {
  flex: 0 0 auto;
  align-items: flex-end;
}

.whatsapp-chat-form textarea {
  max-height: 90px;
  overflow-y: auto;
  line-height: 1.35;
}

.whatsapp-chat-form button {
  width: 43px;
  padding: 0;
  border-radius: 50%;
  font-size: 18px;
}

.chat-secure-note {
  flex: 0 0 auto;
  padding: 5px 10px 8px;
  text-align: center;
  background: #151515;
  color: #666;
  font-size: 8px;
}

@media (max-width: 600px) {
  .whatsapp-chat {
    height: min(720px, 92vh);
  }
}

/* İletişim - adres ve Google Maps */
.address-card p {
  line-height: 1.65;
  margin: 10px 0 18px;
}
.address-card .contact-action {
  display: inline-block;
  text-decoration: none;
}


/* Adres / harita animasyonu */
.address-card p {
  margin: 8px 0 14px;
  line-height: 1.55;
}

.address-map-link {
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid rgba(214, 179, 82, 0.75);
  border-radius: 14px;
  text-decoration: none;
  background: #111;
}

.address-map-link img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.address-map-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.58), transparent 55%);
  pointer-events: none;
}

.map-overlay {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  padding: 8px 12px;
  border: 1px solid rgba(230, 200, 110, .9);
  border-radius: 999px;
  background: rgba(18,18,18,.82);
  color: #f3d889;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.address-map-link:hover img {
  transform: scale(1.02);
  transition: transform .35s ease;
}

/* ================= CAMPAIGN ================= */
.campaign-section{
  position:relative;
  width:min(1180px,calc(100% - 48px));
  min-height:420px;
  margin:80px auto 30px;
  padding:58px 54px 30px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(330px,420px);
  align-items:center;
  overflow:hidden;
  border:1px solid var(--line);
  background:
    radial-gradient(circle at 78% 55%,rgba(201,164,92,.12),transparent 34%),
    linear-gradient(135deg,#11100e,#0a0a09);
}
.campaign-section.campaign-empty{display:none}
.campaign-copy{position:relative;z-index:2;max-width:620px}
.campaign-copy h2{font-family:Georgia,serif;font-size:clamp(30px,4vw,52px);line-height:1.08;color:var(--cream);margin:12px 0 18px}
.campaign-copy p{color:var(--muted);font-size:16px;line-height:1.8;max-width:560px}
.campaign-price{display:flex;gap:15px;align-items:center;margin:22px 0 24px}
.campaign-price del{color:#8f887f;font-size:18px}
.campaign-price strong{color:var(--gold-light);font-size:30px;font-weight:700}
.campaign-character{position:relative;height:390px;align-self:end;display:flex;justify-content:center;align-items:flex-end}
.campaign-character img{height:100%;max-width:100%;object-fit:contain;object-position:center bottom;filter:drop-shadow(0 20px 35px rgba(0,0,0,.45))}
.campaign-speech{
  position:absolute;z-index:3;right:8px;top:8px;max-width:250px;
  padding:13px 17px;border:1px solid rgba(201,164,92,.5);
  background:#f4eee1;color:#302b27;font-size:13px;font-weight:700;
  box-shadow:0 14px 30px rgba(0,0,0,.25);
}
.campaign-speech:after{content:"";position:absolute;left:28px;bottom:-10px;border-width:10px 10px 0 0;border-style:solid;border-color:#f4eee1 transparent transparent transparent}
@media(max-width:800px){
  .campaign-section{width:calc(100% - 28px);margin:55px auto 20px;padding:35px 24px 0;grid-template-columns:1fr;min-height:0}
  .campaign-character{height:330px;margin-top:10px}
  .campaign-speech{right:0;top:0}
  .campaign-copy h2{font-size:34px}
}

/* Eski uzun kampanya bölümü artık kullanılmıyor; kampanya hero içinde gösteriliyor. */
.campaign-section{display:none !important;}


/* =========================================================
   HERO KAMPANYA - REFERANS GÖRSEL DÜZENİ
   Bu bölüm mevcut site yapısını bozmadan hero'yu yeniden hizalar.
   ========================================================= */

.hero {
  height: calc(100vh - 188px);
  min-height: 585px;
  max-height: 690px;
  padding: 0 3%;
  box-sizing: border-box;
  gap: 20px;
}

.hero-content {
  flex: 0 0 48%;
  max-width: 650px;
  padding-left: 1%;
}

.hero-decoration {
  flex: 1 1 52%;
  width: auto;
  height: 100%;
  min-width: 610px;
  margin-right: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}

/* Büyük logo: kampanyanın arkasında, belirgin ama metni ezmeyecek kadar silik. */
.hero-bg-logo {
  position: absolute;
  z-index: 0;
  left: -120px;
  top: 50%;
  width: 610px;
  height: 610px;
  transform: translateY(-50%);
  opacity: .22;
  pointer-events: none;
}

.hero-bg-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* Kampanya metni ve kız tek satırda, aynı alt hizaya bağlı. */
.hero-campaign {
  position: relative;
  inset: auto;
  z-index: 5;
  width: 690px;
  height: 100%;
  min-height: 520px;
  display: grid !important;
  grid-template-columns: 330px 360px;
  align-items: end;
  justify-content: end;
  text-align: center;
  overflow: visible;
}

.hero-campaign.campaign-empty {
  display: none !important;
}

.hero-campaign-copy {
  position: relative;
  z-index: 4;
  width: 330px;
  align-self: center;
  transform: none;
  padding: 40px 0 95px;
  box-sizing: border-box;
}

.hero-campaign-label {
  font-size: 16px;
  line-height: 1.15;
  letter-spacing: 3.5px;
  margin-bottom: 18px;
  color: #f5d889;
  text-shadow:
    0 0 5px rgba(255,214,118,.9),
    0 0 15px rgba(201,164,92,.7);
}

.hero-campaign-copy h3 {
  max-width: 310px;
  margin: 0 auto 12px;
  color: #f8f3e8;
  font-size: clamp(31px, 3vw, 43px);
  line-height: .98;
  text-shadow: 0 2px 12px rgba(0,0,0,.55);
}

.hero-campaign-copy p {
  max-width: 285px;
  margin: 0 auto 13px;
  color: #d5cec2;
  font-size: 11px;
  line-height: 1.45;
}

.hero-campaign-price {
  min-height: 30px;
  margin-bottom: 18px;
  gap: 10px;
}

.hero-campaign-price del {
  color: #8d877f;
  font-size: 13px;
}

.hero-campaign-price strong {
  color: #e1b950;
  font-size: 27px;
}

.hero-campaign-button {
  min-width: 130px;
  padding: 10px 18px;
  border: 1px solid #d4ac4d;
  color: #f3dfae;
  font-size: 10px;
  letter-spacing: 1.1px;
}

/* Kız + cihaz: metnin sağında ve zemine tam oturuyor. */
.hero-campaign-character {
  position: relative;
  width: 360px;
  height: 530px;
  flex: none;
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: none;
  z-index: 3;
}

.hero-campaign-character img {
  position: relative;
  z-index: 2;
  display: block;
  width: 360px;
  height: 530px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.45));
}

/* Mesaj kızın başına yakın, açık renk kutu ve okunaklı yazı. */
.hero-campaign-speech {
  position: absolute;
  z-index: 6;
  top: 22px;
  right: -5px;
  width: 190px;
  min-height: 82px;
  box-sizing: border-box;
  padding: 13px 15px;
  border: 1px solid #d7b45a;
  border-radius: 13px;
  background: rgba(10,10,10,.96);
  color: #fff5dd;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .15px;
  text-align: left;
  text-shadow: 0 1px 2px #000;
  box-shadow: 0 10px 28px rgba(0,0,0,.48);
}

.hero-campaign-speech:after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: rgba(10,10,10,.96);
  border-right: 1px solid #d7b45a;
  border-bottom: 1px solid #d7b45a;
  transform: rotate(45deg);
}

/* Alt bilgi bandı - referans görseldeki gibi hero'nun hemen altında. */
.hero-benefits {
  width: 100%;
  min-height: 102px;
  box-sizing: border-box;
  padding: 18px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid rgba(201,164,92,.45);
  border-bottom: 1px solid rgba(201,164,92,.35);
  background: linear-gradient(180deg, rgba(16,15,13,.98), rgba(8,8,7,.98));
}

.hero-benefit {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 0 18px;
  border-right: 1px solid rgba(201,164,92,.18);
}

.hero-benefit:last-child {
  border-right: 0;
}

.hero-benefit-icon {
  flex: 0 0 auto;
  color: #d4ad4f;
  font-family: Georgia, serif;
  font-size: 43px;
  line-height: 1;
}

.hero-benefit div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-benefit strong {
  color: #eee5d5;
  font-family: Georgia, serif;
  font-size: 14px;
  letter-spacing: 1.2px;
  font-weight: 500;
}

.hero-benefit span:not(.hero-benefit-icon) {
  color: #a9a196;
  font-size: 12px;
  line-height: 1.3;
}

/* Laptop */
@media (max-width: 1200px) and (min-width: 801px) {
  .hero {
    min-height: 545px;
  }

  .hero-content {
    flex-basis: 45%;
  }

  .hero-decoration {
    min-width: 545px;
  }

  .hero-campaign {
    width: 600px;
    grid-template-columns: 275px 325px;
  }

  .hero-campaign-copy {
    width: 275px;
    padding-bottom: 85px;
  }

  .hero-campaign-copy h3 {
    font-size: 33px;
  }

  .hero-campaign-character {
    width: 325px;
    height: 480px;
  }

  .hero-campaign-character img {
    width: 325px;
    height: 480px;
  }

  .hero-campaign-speech {
    right: 0;
    width: 165px;
    font-size: 12px;
  }

  .hero-bg-logo {
    width: 510px;
    height: 510px;
    left: -90px;
  }

  .hero-benefit {
    gap: 10px;
    padding: 0 10px;
  }

  .hero-benefit-icon {
    font-size: 34px;
  }

  .hero-benefit strong {
    font-size: 11px;
  }

  .hero-benefit span:not(.hero-benefit-icon) {
    font-size: 10px;
  }
}

/* Mobil */
@media (max-width: 800px) {
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 110px 6% 30px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content {
    flex: none;
    max-width: none;
    padding: 0;
  }

  .hero-decoration {
    flex: none;
    width: 100%;
    min-width: 0;
    height: 410px;
    margin: 12px 0 0;
  }

  .hero-bg-logo {
    left: 50%;
    top: 50%;
    width: 390px;
    height: 390px;
    transform: translate(-50%,-50%);
    opacity: .13;
  }

  .hero-campaign {
    width: 100%;
    height: 410px;
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) 170px;
    align-items: end;
  }

  .hero-campaign-copy {
    width: auto;
    padding: 0 0 55px;
    align-self: center;
  }

  .hero-campaign-label {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero-campaign-copy h3 {
    font-size: 25px;
  }

  .hero-campaign-copy p {
    font-size: 9px;
  }

  .hero-campaign-price strong {
    font-size: 21px;
  }

  .hero-campaign-character {
    width: 170px;
    height: 300px;
  }

  .hero-campaign-character img {
    width: 170px;
    height: 300px;
  }

  .hero-campaign-speech {
    top: 7px;
    right: -3px;
    width: 125px;
    min-height: 0;
    padding: 9px 10px;
    font-size: 10px;
  }

  .hero-benefits {
    grid-template-columns: 1fr 1fr;
    padding: 12px 4%;
  }

  .hero-benefit {
    min-height: 60px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(201,164,92,.12);
  }

  .hero-benefit:nth-child(odd) {
    border-right: 1px solid rgba(201,164,92,.12);
  }

  .hero-benefit:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .hero-benefit-icon {
    font-size: 29px;
  }

  .hero-benefit strong {
    font-size: 10px;
  }

  .hero-benefit span:not(.hero-benefit-icon) {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .hero-decoration {
    height: 350px;
  }

  .hero-campaign {
    height: 350px;
    grid-template-columns: minmax(0, 1fr) 145px;
  }

  .hero-campaign-character {
    width: 145px;
    height: 265px;
  }

  .hero-campaign-character img {
    width: 145px;
    height: 265px;
  }

  .hero-campaign-speech {
    width: 112px;
    font-size: 9px;
  }

  .hero-benefit {
    gap: 8px;
    padding: 8px;
  }

  .hero-benefit strong {
    font-size: 9px;
  }

  .hero-benefit span:not(.hero-benefit-icon) {
    font-size: 8px;
  }
}

/* =========================================================
   FINAL LAYOUT PATCH — REFERANS GÖRSEL + MOBİL MENÜ
   Mevcut Supabase / randevu yapısına dokunmaz.
   ========================================================= */

/* Büyük, silik arka plan logosu */
.hero-bg-logo {
  z-index: 1 !important;
  left: 50% !important;
  top: 50% !important;
  width: 590px !important;
  height: 590px !important;
  transform: translate(-50%, -50%) !important;
  opacity: .17 !important;
  pointer-events: none !important;
}
.hero-bg-logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}
.hero-campaign { z-index: 6 !important; }
.hero-campaign-copy,
.hero-campaign-character { z-index: 7 !important; }

/* Masaüstü: referans görseldeki yatay kompozisyon */
@media (min-width: 1001px) {
  .hero {
    min-height: 590px !important;
    height: calc(100vh - 175px) !important;
    max-height: 700px !important;
    padding-left: 3.5% !important;
    padding-right: 2.5% !important;
  }
  .hero-content {
    flex-basis: 47% !important;
    max-width: 650px !important;
    z-index: 10 !important;
  }
  .hero h1 {
    font-size: clamp(70px, 6.1vw, 100px) !important;
    line-height: .9 !important;
  }
  .hero-decoration {
    flex-basis: 53% !important;
    min-width: 610px !important;
    z-index: 4 !important;
  }
  .hero-campaign {
    width: 690px !important;
    min-height: 530px !important;
    grid-template-columns: 335px 355px !important;
  }
  .hero-campaign-copy {
    width: 335px !important;
    padding-bottom: 82px !important;
  }
  .hero-campaign-label {
    font-size: 16px !important;
    letter-spacing: 3.5px !important;
    line-height: 1.15 !important;
  }
  .hero-campaign-copy h3 {
    font-size: 34px !important;
    line-height: 1.02 !important;
  }
  .hero-campaign-character {
    width: 355px !important;
    height: 500px !important;
  }
  .hero-campaign-character img {
    width: 355px !important;
    height: 500px !important;
    object-fit: contain !important;
    object-position: center bottom !important;
  }
  .hero-campaign-speech {
    right: 5px !important;
    top: 4px !important;
    width: 170px !important;
    font-size: 12px !important;
    padding: 10px 12px !important;
    font-weight: 700 !important;
  }
  .hero-benefits {
    position: relative !important;
    z-index: 20 !important;
  }
}

/* Laptop */
@media (min-width: 801px) and (max-width: 1200px) {
  .hero-bg-logo {
    width: 500px !important;
    height: 500px !important;
    opacity: .14 !important;
  }
  .hero-campaign {
    width: 600px !important;
    grid-template-columns: 275px 325px !important;
  }
  .hero-campaign-copy { width: 275px !important; padding-bottom: 75px !important; }
  .hero-campaign-character,
  .hero-campaign-character img { width: 325px !important; height: 455px !important; }
}

/* =========================================================
   MOBİL — hero ayrı, kampanya ayrı ve taşma yok
   ========================================================= */
@media (max-width: 800px) {
  .site-header {
    height: 84px !important;
    background: rgba(9,9,9,.97) !important;
  }
  .header-inner {
    width: calc(100% - 34px) !important;
    gap: 10px !important;
  }
  .brand-logo {
    width: 92px !important;
    height: 58px !important;
    border: 0 !important;
    object-fit: contain !important;
  }
  .appointment-btn {
    padding: 12px 15px !important;
    font-size: 9px !important;
    white-space: nowrap !important;
  }
  .mobile-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 52px !important;
    height: 52px !important;
    padding: 0 !important;
    font-size: 24px !important;
    line-height: 1 !important;
    background: rgba(201,164,92,.03) !important;
    border: 1px solid rgba(201,164,92,.35) !important;
  }

  /* Üç çizgi açılınca menüler gerçekten görünür */
  .main-nav {
    display: none !important;
    position: fixed !important;
    top: 84px !important;
    left: 16px !important;
    right: 16px !important;
    z-index: 2000 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 8px !important;
    background: rgba(12,12,11,.98) !important;
    border: 1px solid rgba(201,164,92,.35) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,.55) !important;
    backdrop-filter: blur(14px) !important;
    animation: gdMenuIn .18s ease-out !important;
  }
  .main-nav.mobile-open { display: flex !important; }
  .main-nav .nav-link {
    width: 100% !important;
    min-height: 48px !important;
    padding: 12px 16px !important;
    text-align: left !important;
    border-bottom: 1px solid rgba(201,164,92,.10) !important;
    color: #eee5d5 !important;
    font-size: 14px !important;
  }
  .main-nav .nav-link:last-child { border-bottom: 0 !important; }
  .main-nav .nav-link.active,
  .main-nav .nav-link:hover { color: var(--gold-light) !important; background: rgba(201,164,92,.07) !important; }

  @keyframes gdMenuIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .page { padding: 84px 0 25px !important; }
  #page-anasayfa { overflow-x: hidden !important; }
  .hero {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 52px 22px 0 !important;
    display: block !important;
  }
  .hero-content {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
  }
  .gold-label {
    font-size: 10px !important;
    line-height: 1.65 !important;
    letter-spacing: 2.6px !important;
    margin-bottom: 20px !important;
  }
  .hero h1 {
    font-size: clamp(53px, 15vw, 76px) !important;
    line-height: .92 !important;
    letter-spacing: -3px !important;
  }
  .hero p {
    max-width: 100% !important;
    margin-top: 28px !important;
    font-size: 15px !important;
    line-height: 1.7 !important;
  }
  .hero-buttons {
    width: 100% !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 30px !important;
  }
  .gold-button,
  .outline-button {
    width: 100% !important;
    min-height: 64px !important;
    font-size: 12px !important;
  }

  /* Mobil watermark: kampanyanın arkasında ama metni boğmuyor */
  .hero-decoration {
    width: 100% !important;
    min-width: 0 !important;
    height: 410px !important;
    margin: 28px 0 0 !important;
    position: relative !important;
    opacity: 1 !important;
    right: auto !important;
    display: block !important;
    overflow: visible !important;
  }
  .hero-bg-logo {
    left: 50% !important;
    top: 52% !important;
    width: 410px !important;
    height: 410px !important;
    opacity: .105 !important;
  }
  .hero-campaign {
    position: relative !important;
    width: 100% !important;
    height: 410px !important;
    min-height: 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 150px !important;
    align-items: end !important;
    justify-content: stretch !important;
  }
  .hero-campaign-copy {
    width: auto !important;
    align-self: center !important;
    padding: 0 0 45px !important;
    transform: none !important;
  }
  .hero-campaign-label {
    font-size: 11px !important;
    letter-spacing: 2.3px !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
  }
  .hero-campaign-copy h3 {
    font-size: 26px !important;
    line-height: 1.03 !important;
  }
  .hero-campaign-copy p {
    font-size: 9px !important;
    max-width: 190px !important;
    margin: 8px auto !important;
  }
  .hero-campaign-price strong { font-size: 20px !important; }
  .hero-campaign-button { padding: 9px 14px !important; font-size: 9px !important; }
  .hero-campaign-character {
    width: 150px !important;
    height: 285px !important;
    align-self: end !important;
  }
  .hero-campaign-character img {
    width: 150px !important;
    height: 285px !important;
    object-fit: contain !important;
    object-position: center bottom !important;
  }
  .hero-campaign-speech {
    top: 0 !important;
    right: -2px !important;
    width: 120px !important;
    padding: 8px 9px !important;
    font-size: 9px !important;
  }

  .hero-benefits {
    margin-top: 0 !important;
    grid-template-columns: 1fr 1fr !important;
    padding: 0 12px !important;
    position: relative !important;
    z-index: 20 !important;
  }
  .hero-benefit {
    min-height: 74px !important;
    padding: 12px 8px !important;
  }
  .hero-benefit strong { font-size: 9px !important; }
  .hero-benefit span:not(.hero-benefit-icon) { font-size: 8px !important; }
}

@media (max-width: 480px) {
  .header-inner { width: calc(100% - 24px) !important; }
  .brand-logo { width: 78px !important; height: 54px !important; }
  .appointment-btn { padding: 11px 10px !important; font-size: 8px !important; }
  .mobile-menu { width: 48px !important; height: 48px !important; }
  .hero { padding-left: 18px !important; padding-right: 18px !important; }
  .hero h1 { font-size: 54px !important; }
  .hero-decoration { height: 365px !important; }
  .hero-bg-logo { width: 350px !important; height: 350px !important; }
  .hero-campaign { height: 365px !important; grid-template-columns: minmax(0,1fr) 132px !important; }
  .hero-campaign-character,
  .hero-campaign-character img { width: 132px !important; height: 250px !important; }
  .hero-campaign-copy h3 { font-size: 23px !important; }
  .hero-campaign-speech { width: 108px !important; font-size: 8px !important; }
}
@media (max-width:800px){
  body.gd-menu-open { overflow:hidden !important; }
}

/* =========================================================
   FINAL POLISH — MERKEZ LOGO / TAM EKRAN / KVKK
   ========================================================= */

/* Üst logo: gerçek logo görseli, dengeli ve belirgin */
.site-header .brand {
  min-width: 120px;
  height: 100%;
}
.site-header .brand-logo {
  width: 104px !important;
  height: 68px !important;
  border: 0 !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
  filter: drop-shadow(0 0 7px rgba(201,164,92,.22));
}

/* Büyük watermark: tam orta + altın ışıltı */
.hero-bg-logo {
  left: 50% !important;
  top: 50% !important;
  width: 650px !important;
  height: 650px !important;
  transform: translate(-50%, -50%) !important;
  opacity: .30 !important;
  z-index: 0 !important;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle,
      rgba(228,201,133,.22) 0%,
      rgba(201,164,92,.13) 25%,
      rgba(201,164,92,.055) 48%,
      transparent 72%);
  box-shadow:
    0 0 70px rgba(201,164,92,.16),
    0 0 150px rgba(201,164,92,.08);
}
.hero-bg-logo::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,225,150,.12), transparent 66%);
  filter: blur(18px);
}
.hero-bg-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 5px rgba(228,201,133,.40))
    drop-shadow(0 0 22px rgba(201,164,92,.24));
}

/* Ana sayfa: masaüstünde tek viewport, dikey scrollbar yok */
@media (min-width: 801px) {
  #page-anasayfa {
    overflow: hidden !important;
    height: 100vh !important;
    padding-bottom: 0 !important;
  }
  #page-anasayfa .hero {
    height: calc(100vh - 86px - 78px) !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 0 !important;
  }
  #page-anasayfa .home-benefits {
    position: absolute;
    left: 7%;
    right: 7%;
    bottom: 0;
    height: 78px;
    z-index: 20;
  }
}

/* Alt avantaj bandı */
.home-benefits {
  width: 86%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(9,9,9,.72);
  backdrop-filter: blur(8px);
}
.home-benefits .benefit-item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 18px;
  border-right: 1px solid rgba(201,164,92,.14);
}
.home-benefits .benefit-item:last-child { border-right: 0; }
.home-benefits .benefit-icon {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
}
.home-benefits .benefit-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.home-benefits strong {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 1px;
  white-space: nowrap;
}
.home-benefits small {
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

/* KVKK */
.kvkk-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 9px;
  padding: 12px 13px;
  border: 1px solid rgba(201,164,92,.20);
  background: rgba(201,164,92,.035);
}
.kvkk-consent > input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  margin: 2px 0 0;
  accent-color: var(--gold);
}
.kvkk-consent label {
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 11px !important;
  line-height: 1.55;
  letter-spacing: 0 !important;
}
.kvkk-consent label a {
  display: inline-block;
  margin-left: 5px;
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 800px) {
  .site-header .brand-logo {
    width: 92px !important;
    height: 60px !important;
  }
  .hero-bg-logo {
    width: 430px !important;
    height: 430px !important;
    top: 52% !important;
    opacity: .22 !important;
  }
  .home-benefits {
    width: 100%;
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
  }
  .home-benefits .benefit-item {
    min-height: 72px;
    padding: 10px 8px;
    justify-content: flex-start;
  }
  .home-benefits strong { font-size: 10px; }
  .home-benefits small { font-size: 8px; }
  .home-benefits .benefit-icon { font-size: 24px; }
}
