:root {
  --navy: #0b1f4a;
  --navy-2: #132a5c;
  --pink: #ec008c;
  --ink: #1a2333;
  --muted: #5f6b7a;
  --line: #e6ebf2;
  --soft: #f5f7fb;
  --white: #fff;
  --shadow: 0 18px 40px rgba(11, 31, 74, 0.12);
  --font: "Heebo", "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }

.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.88);
  font-size: .86rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  flex-wrap: wrap;
  align-items: center;
}
.topbar-social { display: flex; gap: .85rem; }
.topbar-social a { color: #fff; font-weight: 700; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: inherit;
  text-decoration: none;
}
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  color: #fff;
  font-weight: 800;
}
.brand-text { display: grid; line-height: 1.2; }
.brand-text strong { font-size: .95rem; }
.brand-text small {
  color: var(--pink);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.nav a {
  color: var(--ink);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.nav a:hover { color: var(--pink); }
.header-phone {
  background: var(--pink);
  color: #fff !important;
  font-weight: 800;
  padding: .7rem 1.05rem;
  border-radius: 999px;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(236,0,140,.28);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11,31,74,.92) 0%, rgba(11,31,74,.72) 42%, rgba(11,31,74,.28) 72%, rgba(236,0,140,.18) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 7rem 0 5.5rem;
  animation: rise .8s ease both;
}
.hero-kicker {
  margin: 0 0 .8rem;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .85;
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.08;
  font-weight: 800;
  max-width: 12ch;
}
.hero-lead {
  margin: 1.1rem 0 0;
  max-width: 34rem;
  font-size: 1.08rem;
  opacity: .95;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  align-items: center;
  margin-top: 1.6rem;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border: 0;
  border-radius: 999px;
  padding: .85rem 1.35rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-pink { background: var(--pink); color: #fff; }
.btn-play {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.play-circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--pink);
  display: grid; place-items: center;
  font-size: .85rem;
  box-shadow: 0 10px 24px rgba(236,0,140,.35);
}

.overlap { margin-top: -3.5rem; position: relative; z-index: 5; }
.overlap-grid {
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  gap: 1rem;
}
.info-card, .appt-card {
  border-radius: 18px;
  padding: 1.6rem 1.7rem;
  box-shadow: var(--shadow);
}
.info-card { background: #fff; }
.info-card h2 {
  margin: 0 0 .7rem;
  color: var(--navy);
  font-size: 1.7rem;
}
.info-card p { color: var(--muted); margin: 0 0 1rem; }
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  color: var(--navy);
}
.check-list li::before {
  content: "✓";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid; place-items: center;
  font-size: .75rem;
  flex: 0 0 auto;
}
.appt-card {
  background: var(--navy);
  color: #fff;
  display: grid;
  align-content: center;
  gap: .7rem;
}
.appt-card h3 { margin: 0; font-size: 1.35rem; }
.appt-card p { margin: 0; opacity: .85; }
.appt-phone {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
}

section { padding: 4.5rem 0; }
.section-head { margin-bottom: 1.8rem; }
.section-head.center { text-align: center; }
.section-head h2 {
  margin: 0 0 .45rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
}
.section-head p { margin: 0; color: var(--muted); max-width: 40rem; }
.section-head.center p { margin-inline: auto; }
.eyebrow {
  margin: 0 0 .4rem;
  color: var(--pink);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-soft { background: var(--soft); }

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}
.about-badge {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  background: rgba(11,31,74,.92);
  color: #fff;
  border-radius: 14px;
  padding: .85rem 1rem;
}
.about-badge strong { display: block; }
.about-badge span { opacity: .8; font-size: .9rem; }
.about-copy h2 { margin: 0 0 1rem; color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.5rem); }
.about-copy p { color: var(--muted); }
.link-more { font-weight: 800; color: var(--pink); }

.about-full { padding: 4rem 0; }
.about-sub { color: var(--muted); margin-top: .35rem; }
.about-full-grid {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}
.about-side-photo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  background: #e8edf2;
}
.about-side-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
}
.about-social {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .65rem;
}
.about-social-btn {
  display: grid;
  justify-items: center;
  gap: .35rem;
  padding: .85rem .5rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--navy);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 700;
  transition: transform .15s, border-color .15s;
}
.about-social-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
  border-color: var(--pink);
}
.about-social-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.about-social-li { color: #0a66c2; }
.about-social-ig { color: #e1306c; }
.about-social-wa { color: #25d366; }
.about-main {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow);
}
.hisar-embed p,
.hisar-embed li { color: var(--muted); line-height: 1.7; }
.hisar-embed h3,
.hisar-embed h4 { color: var(--navy); margin: 1.25rem 0 .65rem; }
.hisar-embed .vc_row.vc_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-tabs { margin-top: 1.5rem; display: grid; gap: .65rem; }
.about-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--soft);
}
.about-panel > summary {
  cursor: pointer;
  padding: .85rem 1rem;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
}
.about-panel > summary::-webkit-details-marker { display: none; }
.about-panel[open] > summary { background: rgba(11,31,74,.06); }
.about-panel-body {
  padding: 0 1rem 1rem;
  max-height: 420px;
  overflow: auto;
  font-size: .92rem;
}
.about-source {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--muted);
  font-size: .88rem;
}

.feature-row { padding-top: 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow);
  transition: transform .15s;
}
.feature:hover { transform: translateY(-3px); text-decoration: none; }
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(236,0,140,.1);
  color: var(--pink);
  display: grid; place-items: center;
  font-weight: 800;
  margin-bottom: .8rem;
}
.feature h3 { margin: 0 0 .4rem; color: var(--navy); font-size: 1.05rem; }
.feature p { margin: 0; color: var(--muted); font-size: .92rem; }

.stats {
  background: var(--navy);
  color: #fff;
  padding: 2.4rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stats strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}
.stats span { opacity: .8; font-size: .9rem; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.spec-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.spec-thumb {
  height: 150px;
  background: linear-gradient(135deg, rgba(11,31,74,.85), rgba(236,0,140,.55)), #0b1f4a;
}
.spec-card:nth-child(2) .spec-thumb { background: linear-gradient(135deg, #0b1f4a, #145866); }
.spec-card:nth-child(3) .spec-thumb { background: linear-gradient(135deg, #3a1a4a, #ec008c); }
.spec-card:nth-child(4) .spec-thumb { background: linear-gradient(135deg, #0b1f4a, #1f6f8b); }
.spec-card:nth-child(5) .spec-thumb { background: linear-gradient(135deg, #132a5c, #ec008c88); }
.spec-card:nth-child(6) .spec-thumb { background: linear-gradient(135deg, #16325c, #2a8f9d); }
.spec-body { padding: 1.1rem 1.15rem 1.25rem; }
.spec-body h3 { margin: 0 0 .35rem; color: var(--navy); font-size: 1.05rem; }
.spec-body p { margin: 0; color: var(--muted); font-size: .92rem; }

.treat-hisar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow);
}
.treat-hisar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .65rem 1.25rem;
}
.treat-hisar-list li {
  position: relative;
  padding: .75rem 1rem .75rem 2rem;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  font-size: .94rem;
  font-weight: 600;
  line-height: 1.35;
}
.treat-hisar-list li::before {
  content: "✓";
  position: absolute;
  left: .75rem;
  top: .75rem;
  color: var(--pink);
  font-weight: 800;
}
.treat-source {
  margin-top: 1rem;
  text-align: center;
  color: var(--muted);
  font-size: .88rem;
}

.cta-band {
  background:
    linear-gradient(120deg, rgba(11,31,74,.94), rgba(236,0,140,.78)),
    url("assets/orhan-hero.jpg") center/cover;
  color: #fff;
  padding: 3.2rem 0;
}
.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-band h2 { margin: 0 0 .35rem; font-size: 1.2rem; opacity: .9; }
.cta-big {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  text-decoration: none;
}

.video-grid, .reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.video-card, .reel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.video-thumb, .reel-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #111;
}
.reel-thumb { aspect-ratio: 9/16; max-height: 420px; }
.video-thumb iframe,
.video-thumb img,
.reel-thumb iframe,
.reel-thumb video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #000;
}
.reel-thumb video {
  object-fit: contain;
}
.video-body, .reel-body { padding: 1rem 1.05rem 1.15rem; }
.video-body h3, .reel-body h3 {
  margin: 0 0 .35rem;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--navy);
}
.video-meta, .reel-meta {
  color: var(--muted);
  font-size: .82rem;
}
.video-body a, .reel-body a {
  display: inline-block;
  margin-top: .65rem;
  font-weight: 800;
  font-size: .88rem;
}
.reel-frame {
  position: relative;
  display: block;
  height: 100%;
  background: linear-gradient(160deg, #0b1f4a, #ec008c);
  color: #fff;
  text-decoration: none;
}
.reel-frame-inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: .6rem;
  text-align: center;
  padding: 1rem;
}
.reel-frame-inner .play {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 2px solid #fff;
  display: grid; place-items: center;
  margin: 0 auto;
}
.reels-note { margin-top: 1.2rem; color: var(--muted); font-size: .92rem; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.article {
  display: grid;
  gap: .35rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .15s;
}
.article:hover { transform: translateY(-2px); text-decoration: none; }
.article strong { color: var(--navy); }
.article span { color: var(--muted); font-size: .9rem; }

.review-list { display: grid; gap: .9rem; margin-bottom: 1.5rem; }
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
}
.review-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .35rem;
}
.stars { color: #e0a800; letter-spacing: .05em; }
.review p { margin: 0; color: var(--muted); }
.review time { display: block; margin-top: .5rem; font-size: .78rem; color: #8a98a0; }
.empty-reviews {
  text-align: center;
  padding: 1.4rem;
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: #fff;
}
.review-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem;
  max-width: 720px;
  margin-inline: auto;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: .9rem;
}
label { display: grid; gap: .35rem; font-size: .88rem; font-weight: 700; margin-top: .8rem; }
.form-grid label { margin-top: 0; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .75rem .85rem;
  font: inherit;
}
textarea { min-height: 110px; resize: vertical; }
.form-note { margin: .8rem 0; font-size: .82rem; color: var(--muted); }
.form-msg { margin-top: .7rem; font-weight: 700; min-height: 1.2em; }
.form-msg.ok { color: var(--navy); }
.form-msg.err { color: #b42318; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.5rem;
}
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.contact-list strong { display: block; color: var(--navy); font-size: .85rem; }
.hours-card {
  background: var(--navy);
  color: #fff;
  border-radius: 18px;
  padding: 1.5rem;
}
.hours-card h3 { margin: 0 0 1rem; }
.hours-card ul { list-style: none; margin: 0; padding: 0; }
.hours-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hours-note { margin: 1rem 0 0; opacity: .8; font-size: .88rem; }

footer {
  background: #071633;
  color: rgba(255,255,255,.78);
  padding: 2.5rem 0 2rem;
  font-size: .9rem;
}
footer a { color: #fff; }
.footer-brand { margin-bottom: .8rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
}
.footer-grid h4 { margin: 0 0 .7rem; color: #fff; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin: .35rem 0; }
.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  opacity: .75;
}

.fab-wa {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #053;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(37,211,102,.35);
  text-decoration: none;
}
.fab-wa svg { width: 26px; height: 26px; fill: currentColor; }

@media (max-width: 980px) {
  .nav { display: none; }
  .overlap-grid,
  .about-grid,
  .about-full-grid,
  .hisar-embed .vc_row.vc_inner,
  .treat-hisar-list,
  .feature-grid,
  .stats-grid,
  .spec-grid,
  .video-grid,
  .reels-grid,
  .article-grid,
  .contact-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 68vh; }
}
