/* ==========================================================================
   Dr. Göze Ercan — Pediatric Clinic
   main.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Variables
   -------------------------------------------------------------------------- */
:root {
  --pk:    #C4185C;
  --pk2:   #A3174E;
  --pk3:   #E8649A;
  --pkl:   #FBEAF2;
  --pkm:   #F4B6D0;
  --tl:    #0F7E6A;
  --tll:   #E0F4F0;
  --bg:    #FAF8FA;
  --txt:   #1C1018;
  --muted: #6B5A64;
  --bdr:   #EDE0E9;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);

  --nav-h:    72px;
  --font:     'Plus Jakarta Sans', system-ui, sans-serif;
  --trans:    all .2s ease;
}

/* --------------------------------------------------------------------------
   2. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
address { font-style: normal; }

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.375rem); }
p  { line-height: 1.7; }

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pk);
  background: var(--pkl);
  padding: .25rem .75rem;
  border-radius: 99px;
  margin-bottom: .75rem;
}

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  padding: 0 clamp(1.25rem, 4vw, 6rem);
}

section { padding: 4rem 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-header p { color: var(--muted); margin-top: .75rem; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: .9375rem;
  transition: var(--trans);
  border: none;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--pk);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--pk2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196,24,92,.3);
}
.btn-outline {
  background: transparent;
  color: var(--pk);
  border: 2px solid var(--pk);
}
.btn-outline:hover {
  background: var(--pkl);
}
.btn-ghost {
  background: transparent;
  color: var(--muted);
}
.btn-ghost:hover { color: var(--pk); }
.btn-sm { padding: .5rem 1rem; font-size: .875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; }

/* --------------------------------------------------------------------------
   6. Navbar
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250,248,250,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bdr);
  height: var(--nav-h);
}
.navbar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--nav-h);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--txt);
  flex-shrink: 0;
}
.nav-brand-icon { display: flex; }
.nav-logo-img { width: 52px; height: 52px; object-fit: contain; display: block; }
.exp-congress-list { margin: .5rem 0 0 .25rem; padding-left: 1rem; list-style: disc; }
.exp-congress-list li { font-size: .8125rem; color: var(--muted); margin-bottom: .2rem; line-height: 1.5; }
.nav-brand-text { white-space: nowrap; }
.nav-links {
  display: none;
  align-items: center;
  gap: .25rem;
  margin-left: auto;
}
.nav-link {
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--muted);
  transition: var(--trans);
}
.nav-link:hover, .nav-link.active { color: var(--pk); background: var(--pkl); }

/* Lang switcher */
.lang-switcher {
  display: none;
  align-items: center;
  gap: .25rem;
  flex-shrink: 0;
}
.lang-pill {
  padding: .25rem .5rem;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
  transition: var(--trans);
  border: 1px solid transparent;
}
.lang-pill:hover { color: var(--pk); border-color: var(--pkm); }
.lang-pill.active { background: var(--pkl); color: var(--pk); border-color: var(--pkm); }

.nav-cta { display: none; }

/* Hamburger */
.hamburger {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--txt);
  padding: .375rem;
  border-radius: var(--radius-sm);
  transition: var(--trans);
}
.hamburger:hover { background: var(--pkl); color: var(--pk); }

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 998;
}
.mobile-overlay.open { display: block; }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 66%;
  max-width: 260px;
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(196,24,92,.08);
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--bdr);
  background: var(--pkl);
  flex-shrink: 0;
}
.mobile-nav-brand { font-size: .875rem; font-weight: 700; color: var(--pk); }
.mobile-nav-close {
  background: transparent;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: .375rem;
  display: flex;
  align-items: center;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.mobile-nav-close:hover { color: var(--pk); background: var(--pkl); }

.mobile-nav-body { flex: 1; padding: 1.5rem 1.25rem; }
.mobile-nav-links { display: flex; flex-direction: column; gap: .25rem; list-style: none; align-items: flex-end; }
.mobile-nav-link {
  display: inline-flex;
  align-items: center;
  padding: .8rem 1.25rem;
  border-radius: var(--radius-lg);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--txt);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.mobile-nav-link:hover { background: var(--pkl); color: var(--pk); }
.mobile-nav-link.active { background: var(--pkl); color: var(--pk); font-weight: 600; }
.mobile-cta {
  background: var(--pk) !important;
  color: #fff !important;
  justify-content: center;
  font-weight: 600 !important;
  margin-top: .625rem;
}
.mobile-cta:hover { background: var(--pk2) !important; color: #fff !important; }

.mobile-nav-footer {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--bdr);
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
}
.mobile-lang { display: flex; gap: .5rem; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   7. WhatsApp Float
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: var(--trans);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, var(--pkl) 0%, var(--bg) 60%);
  overflow: hidden;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: 99px;
  padding: .375rem 1rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
}
.hero-title { max-width: 640px; color: var(--txt); }
.hero-title-highlight { color: var(--pk); }
.hero-subtitle { max-width: 540px; color: var(--muted); font-size: 1.0625rem; margin-top: .75rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: .5rem; }
.hero-social {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-top: 1rem;
}
.hero-social-avatars {
  display: flex;
}
.hero-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: var(--pkm);
  margin-left: -8px;
  overflow: hidden;
}
.hero-avatar:first-child { margin-left: 0; }
.hero-social-text { font-size: .875rem; color: var(--muted); font-weight: 500; }

/* --------------------------------------------------------------------------
   9. Trust bar
   -------------------------------------------------------------------------- */
.trust-bar {
  padding: 1.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
}
.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--pk);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   10. Services
   -------------------------------------------------------------------------- */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: var(--trans);
}
.service-card:hover {
  border-color: var(--pkm);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card.tourist {
  background: var(--tll);
  border-color: #b0ddd7;
}
.service-card.tourist .service-icon { color: var(--tl); background: rgba(15,126,106,.1); }
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--pkl);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pk);
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.service-card h3 { font-size: 1rem; margin-bottom: .375rem; }
.service-card p  { font-size: .875rem; color: var(--muted); line-height: 1.5; }

/* --------------------------------------------------------------------------
   11. Booking Banner
   -------------------------------------------------------------------------- */
.booking-banner {
  background: linear-gradient(135deg, var(--pk) 0%, var(--pk2) 100%);
  padding: 4rem 0;
}
.booking-banner-inner {
  text-align: center;
  color: var(--white);
}
.booking-banner .eyebrow {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.booking-banner h2 { color: var(--white); margin-bottom: .75rem; }
.booking-banner p  { color: rgba(255,255,255,.85); margin-bottom: 2rem; }
.booking-banner .btn-primary {
  background: var(--white);
  color: var(--pk);
  font-size: 1.0625rem;
  padding: .875rem 2rem;
}
.booking-banner .btn-primary:hover {
  background: var(--pkl);
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}

/* --------------------------------------------------------------------------
   12. About
   -------------------------------------------------------------------------- */
.about { background: var(--bg); }
.about-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--pkl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .875rem;
}
.about-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--pk);
  box-shadow: var(--shadow-md);
}
.about-content { display: flex; flex-direction: column; gap: 1.25rem; }
.about-content p { color: var(--muted); font-size: 1.0625rem; }
.about-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}
.stat-item {}
.stat-number { font-size: 2rem; font-weight: 800; color: var(--pk); line-height: 1; }
.stat-label  { font-size: .8125rem; color: var(--muted); margin-top: .25rem; }

/* --------------------------------------------------------------------------
   13. Blog cards
   -------------------------------------------------------------------------- */
.blog { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.blog-card {
  background: var(--bg);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--pkm); }
.blog-card-img {
  aspect-ratio: 16/9;
  background: var(--pkl);
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.25rem; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .75rem;
}
.blog-cat {
  font-size: .75rem;
  font-weight: 700;
  color: var(--pk);
  background: var(--pkl);
  padding: .2rem .625rem;
  border-radius: 99px;
}
.blog-date, .blog-time { font-size: .75rem; color: var(--muted); }
.blog-card h3 { font-size: 1rem; margin-bottom: .5rem; line-height: 1.4; }
.blog-card h3 a:hover { color: var(--pk); }
.blog-card p { font-size: .875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.blog-read-more { font-size: .875rem; font-weight: 600; color: var(--pk); transition: var(--trans); }
.blog-read-more:hover { color: var(--pk2); }
.blog-cta { text-align: center; margin-top: 2.5rem; }

/* --------------------------------------------------------------------------
   14. Contact form
   -------------------------------------------------------------------------- */
.contact-form-wrap {
  width: 100%;
}
.form-grid { display: grid; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .375rem; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--txt); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--bdr);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: .9375rem;
  color: var(--txt);
  background: var(--white);
  transition: var(--trans);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--pk);
  box-shadow: 0 0 0 3px rgba(196,24,92,.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-msg {
  padding: .875rem 1rem;
  border-radius: var(--radius-md);
  font-size: .9375rem;
  display: none;
}
.form-msg.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; display: block; }
.form-msg.error   { background: #fce4ec; color: #c62828; border: 1px solid #f48fb1; display: block; }
.honeypot { display: none !important; }

/* --------------------------------------------------------------------------
   15. Page hero (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--pkl) 0%, var(--bg) 70%);
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-hero h1 { margin-bottom: .75rem; }
.page-hero p  { color: rgba(255,255,255,.82); font-size: 1.0625rem; max-width: 540px; margin: 0 auto; }

/* --------------------------------------------------------------------------
   16. Appointment page
   -------------------------------------------------------------------------- */
.randevu-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
.randevu-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.randevu-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pk);
  color: var(--white);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .875rem;
}
.randevu-step p { color: var(--muted); font-size: .9375rem; }
.randevu-cta-wrap { text-align: center; }

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: linear-gradient(160deg, #160b30 0%, #1e1040 50%, #12082a 100%);
  color: rgba(255,255,255,.7);
  padding: 0;
  position: relative;
}
.site-footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--pk) 0%, var(--pk3) 50%, var(--pk) 100%);
}
.footer-inner {
  padding: 3.5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-icon {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: .875rem;
}
.footer-brand-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--pk);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.footer-logo-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.footer-tagline { font-size: .8125rem; color: rgba(255,255,255,.45); margin-top: .25rem; line-height: 1.5; }
.footer-contact { display: flex; flex-direction: column; gap: .625rem; margin-top: 1.25rem; }
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-contact-link svg { flex-shrink: 0; opacity: .7; }
.footer-contact-link:hover { color: var(--pkm); }
.footer-contact-link:hover svg { opacity: 1; }
.footer-nav-title {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1rem;
}
.footer-nav-list { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav-link {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color .2s, padding-left .2s;
  display: inline-flex;
  align-items: center;
  gap: .375rem;
}
.footer-nav-link::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--pk3);
  transition: width .2s;
  display: inline-block;
  vertical-align: middle;
}
.footer-nav-link:hover { color: #fff; }
.footer-nav-link:hover::before { width: 10px; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 0;
  align-items: flex-start;
}
.footer-copy { font-size: .8125rem; color: rgba(255,255,255,.3); }
.footer-lang { display: flex; gap: .25rem; }
.footer-lang .lang-pill { color: rgba(255,255,255,.35); border-color: rgba(255,255,255,.1); }
.footer-lang .lang-pill:hover { color: var(--pkm); border-color: var(--pkm); }
.footer-lang .lang-pill.active { background: rgba(196,24,92,.2); color: var(--pkm); border-color: rgba(196,24,92,.35); }

/* --------------------------------------------------------------------------
   18. Cookie banner
   -------------------------------------------------------------------------- */
#cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 9999;
  background: #fff;
  border-radius: 1rem;
  padding: 1.125rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.1), 0 0 0 1px rgba(0,0,0,.04);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 420px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease;
}
#cookie-banner .cookie-text {
  font-size: .8125rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
#cookie-banner .cookie-text a {
  color: var(--pk);
  text-decoration: underline;
  text-underline-offset: 2px;
}
#cookie-banner .cookie-actions {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
}
#cookie-banner .cb-accept {
  background: var(--pk);
  color: #fff;
  border: none;
  border-radius: .5rem;
  padding: .5rem 1rem;
  font-size: .8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
#cookie-banner .cb-accept:hover { background: var(--pk2); }
#cookie-banner .cb-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--bdr);
  border-radius: .5rem;
  padding: .5rem 1rem;
  font-size: .8125rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
#cookie-banner .cb-decline:hover {
  color: var(--txt);
  border-color: var(--muted);
}
@media (max-width: 480px) {
  #cookie-banner {
    left: .75rem;
    right: .75rem;
    max-width: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem;
    gap: .75rem;
  }
  #cookie-banner .cookie-actions { justify-content: stretch; }
  #cookie-banner .cb-accept,
  #cookie-banner .cb-decline { flex: 1; text-align: center; }
}

/* --------------------------------------------------------------------------
   19. Admin
   -------------------------------------------------------------------------- */
.admin-wrap { min-height: 100vh; background: #f5f5f5; }
.admin-nav {
  background: var(--white);
  border-bottom: 1px solid var(--bdr);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 60px;
}
.admin-nav-brand { font-weight: 700; color: var(--pk); font-size: 1rem; margin-right: auto; }
.admin-nav-link  { font-size: .9375rem; color: var(--muted); font-weight: 500; padding: .375rem .75rem; border-radius: var(--radius-sm); transition: var(--trans); }
.admin-nav-link:hover { background: var(--pkl); color: var(--pk); }
.admin-content { padding: 2rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.admin-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.admin-table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
.admin-table th { text-align: left; padding: .75rem 1rem; font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); border-bottom: 2px solid var(--bdr); }
.admin-table td { padding: .875rem 1rem; border-bottom: 1px solid var(--bdr); color: var(--txt); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg); }
.status-badge {
  display: inline-block;
  padding: .2rem .625rem;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 700;
}
.status-published { background: #e8f5e9; color: #2e7d32; }
.status-draft     { background: #fff8e1; color: #f57f17; }

.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 1.5rem;
}
.admin-login-card {
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 400px;
  box-shadow: var(--shadow-md);
}
.admin-login-logo {
  text-align: center;
  margin-bottom: 2rem;
}
.admin-login-logo span { font-size: 1.25rem; font-weight: 800; color: var(--pk); }
.admin-login-logo p  { font-size: .875rem; color: var(--muted); margin-top: .25rem; }
.admin-error { background: #fce4ec; color: #c62828; border: 1px solid #f48fb1; border-radius: var(--radius-md); padding: .75rem 1rem; font-size: .875rem; margin-bottom: 1rem; }

/* --------------------------------------------------------------------------
   20. Responsive — Tablet (768px)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .blog-grid       { grid-template-columns: repeat(2, 1fr); }
  .randevu-steps   { grid-template-columns: repeat(2, 1fr); }
  .about-inner     { flex-direction: row; align-items: flex-start; }
  .about-image-wrap { flex: 0 0 340px; }
  .footer-grid     { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-bottom   { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* --------------------------------------------------------------------------
   21. Responsive — Desktop (1024px)
   -------------------------------------------------------------------------- */
@media (min-width: 1024px) {
  .nav-links    { display: flex; }
  .lang-switcher { display: flex; }
  .nav-cta      { display: inline-flex; }
  .hamburger    { display: none; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid     { grid-template-columns: repeat(3, 1fr); }
  .randevu-steps { grid-template-columns: repeat(4, 1fr); }
  .hero-inner    { flex-direction: row; align-items: center; justify-content: space-between; gap: 4rem; }
  .about-image-wrap { flex: 0 0 420px; }
}

/* ==========================================================================
   PHASE 2 — Homepage-specific styles
   New class names: .hero-wrap/.hero-left/.hero-right, .svc-*, .about-grid,
   .about-photo-wrap, .blog-section, .btn-book, etc.
   Appended — does NOT overwrite Phase 1 styles above.
   ========================================================================== */

/* --------------------------------------------------------------------------
   22. Section utilities (homepage)
   -------------------------------------------------------------------------- */
.section-alt { background: var(--bg); }

.sec-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}
.sec-eye {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pk);
  background: var(--pkl);
  padding: .25rem .75rem;
  border-radius: 99px;
  margin-bottom: .625rem;
}
.sec-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--txt);
  line-height: 1.15;
  margin-bottom: .625rem;
}
.sec-sub {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   23. Hero — two-column layout (Phase 2 override)
   -------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(155deg, var(--pkl) 0%, var(--bg) 65%);
  padding: 3.5rem 0 0;
  overflow: hidden;
}

/* Mobile: stacked, photo below */
.hero-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: end;
}

/* Mobile: image above text, hide float card, tighter gap */
.hero-right       { order: -1; }
.hero-left        { order:  0; }
.hero-card-float  { display: none; }
.hero-wrap        { gap: 1.25rem; }

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1px solid var(--bdr);
  border-radius: 99px;
  padding: .375rem 1rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pk);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(196,24,92,.2);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(196,24,92,.2); }
  50%       { box-shadow: 0 0 0 6px rgba(196,24,92,.08); }
}

.hero-h1 {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--txt);
  letter-spacing: -.02em;
}
.hero-h1 span { color: var(--pk); }

.hero-p {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

/* Ghost btn override for hero */
.hero-actions .btn-ghost {
  color: var(--txt);
  border: 1.5px solid var(--bdr);
  background: var(--white);
}
.hero-actions .btn-ghost:hover {
  border-color: var(--pk);
  color: var(--pk);
  background: var(--pkl);
}

.hero-social {
  display: flex;
  align-items: center;
  gap: .875rem;
}
.hero-avatars { display: flex; }
.hero-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  margin-left: -10px;
  flex-shrink: 0;
}
.hero-av:first-child { margin-left: 0; }
.hero-social span {
  font-size: .875rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-right {
  position: relative;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: url('/assets/img/dr-goze-hero.jpg') no-repeat center top / cover,
              linear-gradient(180deg, var(--pkm) 0%, var(--pkl) 100%);
  overflow: hidden;
  min-height: 320px;
}

.hero-photo {
  /* img stays in DOM for SEO/accessibility but image is shown via background */
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.hero-card-float {
  position: absolute;
  bottom: 1.5rem;
  left: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: .75rem 1rem;
  display: none;
  align-items: center;
  gap: .75rem;
  box-shadow: var(--shadow-lg);
  min-width: 170px;
}
.hcf-title {
  font-weight: 700;
  font-size: .875rem;
  color: var(--txt);
  margin: 0;
  line-height: 1.3;
}
.hcf-sub {
  font-size: .75rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   24. Trust bar — dark primary background (Phase 2 override)
   -------------------------------------------------------------------------- */
.trust-bar {
  background: var(--pk);
  border: none;
  padding: 1.125rem 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 0;
  align-items: center;
  justify-items: center;
}
.trust-bar-inner::-webkit-scrollbar { display: none; }

.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  white-space: nowrap;
  padding: .25rem 1rem;
  flex-shrink: 0;
}
.trust-icon {
  color: rgba(255,255,255,.85);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-div {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   25. Services grid (Phase 2 — new .svc-* classes)
   -------------------------------------------------------------------------- */
/* Mobile-first: 2-col */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.svc-card {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 1.375rem 1.25rem;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.svc-card:hover {
  border-color: var(--pkm);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.svc-tourist {
  background: var(--tll);
  border-color: rgba(15,126,106,.2);
}
.svc-tourist:hover { border-color: var(--tl); }
.svc-tourist .svc-icon {
  background: rgba(15,126,106,.1);
  color: var(--tl);
}

.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--pkl);
  color: var(--pk);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.svc-name {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: .375rem;
  line-height: 1.3;
}
.svc-desc {
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   26. Booking banner (Phase 2 override — removes old gradient, adds orbs)
   -------------------------------------------------------------------------- */
.booking-banner {
  background: var(--pk);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
.booking-banner::before,
.booking-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.booking-banner::before {
  width: 480px;
  height: 480px;
  top: -240px;
  right: -120px;
}
.booking-banner::after {
  width: 320px;
  height: 320px;
  bottom: -160px;
  left: -80px;
}

.booking-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.booking-text {}
.bk-eye {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.15);
  padding: .25rem .875rem;
  border-radius: 99px;
  margin-bottom: .625rem;
}
.bk-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: .75rem;
}
.bk-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.82);
  max-width: 520px;
  line-height: 1.65;
  margin: 0 auto;
}
.booking-action {}
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  color: var(--pk);
  font-weight: 700;
  font-size: 1.0625rem;
  padding: .9375rem 2.25rem;
  border-radius: var(--radius-md);
  transition: var(--trans);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,.14);
  text-decoration: none;
}
.btn-book:hover {
  background: var(--pkl);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}

/* --------------------------------------------------------------------------
   BOOKING BANNER — calendar deco icon (Option B)
   -------------------------------------------------------------------------- */
.bk-action-b {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.bk-deco-icon {
  width: 80px;
  height: 80px;
  opacity: .65;
}

/* --------------------------------------------------------------------------
   27. About snippet (Phase 2 — grid layout with real photo)
   -------------------------------------------------------------------------- */
.about-section {
  background: var(--white);
  padding: 4rem 0;
}

/* Mobile: stacked */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

.about-photo-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(160deg, var(--pkl) 0%, var(--pkm) 100%);
  aspect-ratio: 1/1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.about-badge-float {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 72px;
}
.abf-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--pk);
  line-height: 1;
}
.abf-label {
  display: block;
  font-size: .6875rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: .25rem;
}

.about-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
/* Scoped to avoid conflicting with Phase 1 .about-tag (absolute positioned) */
.about-text-wrap .about-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pk);
  background: var(--pkl);
  padding: .25rem .875rem;
  border-radius: 99px;
  width: fit-content;
  position: static;
  box-shadow: none;
}
.about-h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--txt);
  line-height: 1.2;
}
.about-p {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.75;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.375rem;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--bdr);
}
.stat-box { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--pk);
  line-height: 1;
}
.stat-lbl {
  display: block;
  font-size: .75rem;
  color: var(--muted);
  margin-top: .375rem;
  font-weight: 500;
}
/* Ghost btn inside about section */
.about-text-wrap .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--pk);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--trans);
  text-decoration: none;
  width: fit-content;
}
.about-text-wrap .btn-ghost:hover {
  color: var(--pk2);
  gap: .625rem;
}

/* --------------------------------------------------------------------------
   28. Blog section (Phase 2 — .blog-section wraps .blog-grid)
   -------------------------------------------------------------------------- */
.blog-section {
  padding: 5rem 0;
}
.blog-section .sec-header { margin-bottom: 0; }

/* Mobile: 1-col */
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.blog-section .blog-card {
  background: var(--white);
  border: 1.5px solid var(--bdr);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.blog-section .blog-card:hover {
  border-color: var(--pkm);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.blog-section .blog-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.blog-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--pkl);
  flex-shrink: 0;
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.blog-section .blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-thumb-placeholder {
  background: linear-gradient(135deg, var(--pkl) 0%, var(--pkm) 100%);
  width: 100%;
  height: 100%;
  min-height: 160px;
}
.blog-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}
.blog-section .blog-cat {
  display: inline-block;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--pk);
  background: var(--pkl);
  padding: .2rem .625rem;
  border-radius: 99px;
  width: fit-content;
}
.blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt);
  line-height: 1.4;
  margin: 0;
  transition: color .2s ease;
}
.blog-section .blog-card:hover .blog-title { color: var(--pk); }
.blog-meta {
  font-size: .8125rem;
  color: var(--muted);
  margin: 0;
  margin-top: auto;
  padding-top: .375rem;
}
.blog-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}
.blog-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.blog-cta .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--pk);
  border: 1.5px solid var(--pkm);
  padding: .75rem 1.75rem;
  border-radius: var(--radius-md);
  transition: var(--trans);
  background: none;
  text-decoration: none;
}
.blog-cta .btn-ghost:hover {
  background: var(--pkl);
  border-color: var(--pk);
}

/* --------------------------------------------------------------------------
   29. Phase 2 — Responsive
   -------------------------------------------------------------------------- */

/* Small tablets: 2-col blog */
@media (min-width: 640px) {
  .blog-section .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet (768px) */
@media (min-width: 768px) {
  .booking-inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 3rem;
  }
  .booking-text { flex: 1; }
  .booking-action { flex-shrink: 0; }
  .bk-sub { margin: 0; }

  .trust-bar-inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: center;
    grid-template-columns: none;
  }
  .trust-item { padding: 0 1.375rem; white-space: nowrap; }
  .trust-div  { display: block; }

  .about-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .about-photo-wrap { max-width: none; margin: 0; }
}

/* Desktop (1024px) */
@media (min-width: 1024px) {
  .hero-right      { order: 0; }
  .hero-left       { order: 0; }
  .hero-card-float { display: flex; }
  .hero-wrap       { gap: 2.5rem; }
  .hero-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: end;
  }
  .hero-wrap {
    padding-right: 0;
  }
  .hero-right {
    min-height: 520px;
    border-radius: var(--radius-xl) 0 0 0;
  }
  .hero-left { padding-bottom: 3rem; }

  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-section .blog-grid { grid-template-columns: repeat(3, 1fr); }

  .about-photo-wrap { aspect-ratio: unset; max-height: none; height: 100%; min-height: 340px; }
}

/* ===== PHASE 3 — STATIC PAGES ===== */

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--pk) 0%, var(--pk2) 100%);
  padding: 5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(255,255,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pkm);
  margin-bottom: .75rem;
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 .75rem;
  line-height: 1.15;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== HAKKIMDA PAGE ===== */
.about-main { padding: 3rem 0 2rem; }
.about-main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
.about-main-photo {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(196,24,92,.18);
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.about-main-content {}
.about-main-tag {
  display: inline-block;
  background: var(--pkl);
  color: var(--pk);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.about-main-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--txt);
  margin: 0 0 1.25rem;
}
.about-main-bio {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1rem;
}

/* Cred cards (stats) */
.cred-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.cred-card {
  background: var(--pkl);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  text-align: center;
}
.cred-card--top {
  background: var(--pk);
  color: #fff;
}
.cred-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--pk);
  line-height: 1;
}
.cred-card--top .cred-num { color: #fff; }
.cred-lbl {
  font-size: .8rem;
  color: var(--muted);
  margin-top: .25rem;
}
.cred-card--top .cred-lbl { color: rgba(255,255,255,.82); }

/* Expertise section */
.expertise { padding: 4rem 0; background: var(--bg); }
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.exp-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.exp-icon {
  width: 44px; height: 44px;
  background: var(--pkl);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.exp-icon svg { width: 22px; height: 22px; }
.exp-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt);
  margin-bottom: .75rem;
}
.exp-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: .5rem;
}
.exp-list li {
  font-size: .9rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
}
.exp-list li::before {
  content: '';
  position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pk);
}

/* ===== HİZMETLER PAGE ===== */
.services-detail { padding: 5rem 0; }
.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.svc-detail-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: box-shadow .2s;
}
.svc-detail-card:hover { box-shadow: 0 8px 32px rgba(196,24,92,.10); }
.svc-detail-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-detail-icon svg { width: 28px; height: 28px; }
.svc-detail-header { display: flex; align-items: center; gap: 1rem; }
.svc-detail-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--txt);
  margin: 0;
}
.svc-detail-desc {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
/* Tourist highlight */
.tourist-highlight {
  background: linear-gradient(135deg, var(--tl) 0%, #0a6657 100%);
  border: none !important;
  color: #fff;
}
.tourist-highlight .svc-detail-title { color: #fff; }
.tourist-highlight .svc-detail-desc { color: rgba(255,255,255,.85); }
.tourist-highlight .svc-detail-icon { background: rgba(255,255,255,.15); }
.lang-pills {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-top: 1.25rem;
}
.lang-flag-pill {
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: .35rem .85rem;
  border-radius: 999px;
  letter-spacing: .05em;
}

/* ===== İLETİŞİM PAGE ===== */
.contact-section { padding: 5rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.contact-info-col { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-map-col .contact-map iframe { height: 220px; }
.contact-info-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--pkl);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.ci-icon svg { width: 20px; height: 20px; }
.ci-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--pk);
  margin-bottom: .25rem;
}
.ci-value {
  font-size: .95rem;
  color: var(--txt);
  line-height: 1.5;
}
.ci-value a { color: var(--pk); text-decoration: none; }
.ci-value a:hover { text-decoration: underline; }
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--bdr);
  line-height: 0;
}
.contact-map iframe {
  width: 100%; height: 220px;
  border: none; display: block;
}
/* Contact form */
.contact-form-wrap {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.contact-form-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--txt);
  margin: 0 0 1.5rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--txt);
}
.form-input,
.form-textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--bdr);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .95rem;
  color: var(--txt);
  background: #fff;
  transition: border-color .2s;
  box-sizing: border-box;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--pk);
  box-shadow: 0 0 0 3px rgba(196,24,92,.10);
}
.form-textarea { resize: vertical; min-height: 130px; }
.btn-full { width: 100%; justify-content: center; }
.form-msg--success,
.form-msg--error {
  border-radius: var(--radius);
  padding: .85rem 1rem;
  font-size: .9rem;
  font-weight: 600;
  margin-top: .75rem;
}
.form-msg--success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.form-msg--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ===== KVKK / LEGAL PAGE ===== */
.legal-content { padding: 5rem 0; }
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.legal-date {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.legal-body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--txt);
  margin: 2rem 0 .5rem;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 .75rem;
}
.legal-body ul {
  padding-left: 1.5rem;
  margin: 0 0 .75rem;
}
.legal-body li {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: .3rem;
}

/* ===== PHASE 3 RESPONSIVE ===== */
@media (min-width: 768px) {
  .about-main-grid {
    grid-template-columns: 340px 1fr;
    align-items: start;
  }
  .about-main-photo { max-width: none; margin: 0; }
  .cred-cards { grid-template-columns: repeat(2, 1fr); }
  .cred-card--top { grid-column: auto; }
  .expertise-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-detail-card { grid-template-columns: auto 1fr; }
  .svc-card { align-items: flex-start; text-align: left; }
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .contact-map-col { display: block; }
  .contact-map-col .contact-map { height: 100%; }
  .contact-map-col .contact-map iframe { height: 100%; min-height: 380px; }
  .form-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (min-width: 1024px) {
  .about-main-grid { grid-template-columns: 380px 1fr; gap: 4rem; }
  .contact-map-col .contact-map iframe { min-height: 420px; }
  .legal-body { padding: 3rem; }
  .svc-detail-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== PHASE 4 — APPOINTMENT PAGE ===== */
.appt-steps { padding: 5rem 0; background: #fff; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
}
.step-num {
  width: 32px; height: 32px;
  background: var(--pk);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
  margin: 0 auto 1rem;
}
.step-icon {
  width: 48px; height: 48px;
  background: var(--pkl);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .875rem;
}
.step-text {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.appt-widget-section { padding: 5rem 0; background: var(--bg); }
.appt-widget-wrap {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.appt-widget-title {
  font-size: 1.4rem; font-weight: 700;
  color: var(--txt); margin-bottom: 1.75rem;
}
.appt-widget-embed { margin-bottom: 1rem; }
.appt-ds-btn { display: inline-flex; font-size: 1rem; padding: .875rem 2.25rem; }
.appt-widget-note { font-size: .82rem; color: var(--muted); margin: 0; }
.appt-alternative { padding: 3rem 0; background: #fff; }
.alt-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
  padding: 1.75rem 2.5rem;
  background: var(--bg);
  border: 1px solid var(--bdr);
  border-radius: var(--radius-xl);
  max-width: 560px;
  margin: 0 auto;
}
.alt-item { display: flex; align-items: center; gap: .875rem; }
.alt-info {}
.alt-divider { width: 1px; height: 40px; background: var(--bdr); flex-shrink: 0; }
.alt-label {
  font-size: .75rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: .05em;
  display: block; margin-bottom: .2rem;
}
.alt-value {
  font-size: .95rem; font-weight: 600; color: var(--txt); text-decoration: none;
}
.alt-value:hover { color: var(--pk); }

/* ===== PHASE 4 — ADMIN GLOBAL ===== */
.admin-body {
  background: #F5F3F7;
  min-height: 100vh;
}
.admin-login-page {
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh;
}

/* Login */
.login-wrap { width: 100%; max-width: 420px; padding: 24px; }
.login-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.25rem;
}
.login-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 1.75rem; }
.login-brand { font-size: .875rem; font-weight: 600; color: var(--txt); }
.login-brand-sub { font-size: .7rem; color: var(--muted); }
.login-title { font-size: 1.375rem; font-weight: 700; color: var(--txt); margin-bottom: 1.5rem; }
.login-back { text-align: center; margin-top: 1.25rem; font-size: .8rem; }
.login-back a { color: var(--muted); text-decoration: none; }
.login-back a:hover { color: var(--pk); }

/* Admin nav sidebar */
.admin-nav {
  width: 220px; height: 100vh;
  position: fixed; top: 0; left: 0;
  background: var(--txt);
  display: flex; flex-direction: column;
  padding: 1.5rem 1rem;
  z-index: 100;
  overflow-y: auto;
}
.admin-nav-brand {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-size: .875rem; font-weight: 600;
  margin-bottom: 2rem; padding: 0 .5rem;
}
.admin-nav-links { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.admin-nav-link {
  display: flex; align-items: center; gap: 9px;
  padding: .625rem .75rem;
  border-radius: var(--radius);
  font-size: .8125rem; font-weight: 500;
  color: #9B8A94; text-decoration: none;
  transition: background .15s, color .15s;
}
.admin-nav-link:hover { background: rgba(255,255,255,.08); color: #fff; }
.admin-nav-active { background: var(--pk) !important; color: #fff !important; }
.admin-nav-bottom {
  display: flex; flex-direction: column; gap: 3px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1rem; margin-top: 1rem;
}
.admin-nav-logout { color: var(--pkm) !important; }
.admin-nav-logout:hover { background: rgba(196,24,92,.2) !important; }

/* Admin layout */
.admin-layout { margin-left: 220px; min-height: 100vh; }
.admin-main { padding: 2rem 2.5rem; width: 100%; }
.admin-page-header {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.75rem; gap: 1rem;
}
.admin-page-title { font-size: 1.5rem; font-weight: 700; color: var(--txt); margin-bottom: .25rem; }
.admin-page-sub { font-size: .8rem; color: var(--muted); }
.admin-page-sub a { color: var(--pk); text-decoration: none; }

/* Stat cards */
.admin-stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1rem; margin-bottom: 1.5rem;
}
.admin-stat-card {
  background: #fff; border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem; text-align: center;
}
.asc-num { display: block; font-size: 2rem; font-weight: 700; color: var(--pk); line-height: 1; }
.asc-lbl { font-size: .78rem; color: var(--muted); margin-top: .3rem; display: block; }

/* Quick actions */
.admin-quick-actions { display: flex; gap: .75rem; margin-bottom: 2rem; flex-wrap: wrap; }

/* Section */
.admin-section { margin-top: .5rem; }
.admin-section-title { font-size: 1rem; font-weight: 600; color: var(--txt); margin-bottom: 1rem; }

/* Table */
.admin-table-wrap {
  background: #fff; border: 1px solid var(--bdr);
  border-radius: var(--radius-lg); overflow: hidden;
}
.admin-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.admin-table th {
  text-align: left; padding: .75rem 1rem;
  background: #F5F3F7; font-size: .72rem; font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: .05em;
  border-bottom: 1px solid var(--bdr);
}
.admin-table td {
  padding: .875rem 1rem; border-bottom: 1px solid var(--bdr);
  color: var(--txt); vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #FAF8FA; }
.text-muted { color: var(--muted); font-size: .75rem; }
.status-badge {
  display: inline-block; font-size: .7rem; font-weight: 600;
  padding: .2rem .6rem; border-radius: 999px;
}
.status-published { background: var(--tll); color: #0A5C4A; }
.status-draft { background: #F5F3F7; color: var(--muted); }
.table-actions { display: flex; gap: 6px; flex-wrap: wrap; }
.table-action-btn {
  font-size: .72rem; font-weight: 500;
  padding: .25rem .625rem; border-radius: var(--radius);
  border: 1px solid var(--bdr); background: #fff;
  color: var(--txt); text-decoration: none; cursor: pointer;
  transition: border-color .15s, color .15s;
}
.table-action-btn:hover { border-color: var(--pk); color: var(--pk); }
.table-action-danger:hover { border-color: #dc2626; color: #dc2626; }
.admin-empty {
  background: #fff; border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  padding: 3rem; text-align: center; color: var(--muted);
}
.admin-empty a { color: var(--pk); }

/* Filters */
.admin-filters { margin-bottom: 1.25rem; }
.admin-filter-form { display: flex; gap: .625rem; flex-wrap: wrap; align-items: center; }
.admin-search { max-width: 260px; }
.admin-filter-select { max-width: 150px; }

/* Blog edit */
.blog-edit-layout {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 1.5rem; align-items: start;
}
.blog-edit-main {
  background: #fff; border: 1px solid var(--bdr);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.blog-edit-sidebar {}
.lang-tabs {
  display: flex; gap: 3px;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--bdr);
}
.lang-tab {
  padding: .5rem 1rem; font-size: .8125rem; font-weight: 500;
  border: none; background: transparent; color: var(--muted);
  cursor: pointer; border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: color .15s, border-color .15s;
}
.lang-tab:hover { color: var(--txt); }
.lang-tab-active { color: var(--pk); border-bottom-color: var(--pk); }
.lang-tab-panel.hidden { display: none; }
.seo-fields { margin-top: 1.5rem; padding-top: 1.25rem; border-top: 1px solid var(--bdr); }
.seo-fields-title {
  font-size: .72rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: .875rem;
}
.sidebar-card {
  background: #fff; border: 1px solid var(--bdr);
  border-radius: var(--radius-lg); padding: 1.25rem;
  margin-bottom: 1rem;
}
.sidebar-card-title { font-size: .875rem; font-weight: 600; color: var(--txt); margin-bottom: .875rem; }
.image-upload-placeholder {
  border: 2px dashed var(--bdr); border-radius: var(--radius);
  padding: 1.75rem 1rem; text-align: center; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: border-color .15s;
}
.image-upload-placeholder:hover { border-color: var(--pk); }
.iup-text { font-size: .8rem; font-weight: 500; color: var(--txt); margin: 0; }
.iup-hint { font-size: .7rem; color: var(--muted); margin: 0; }

/* Utility buttons used in admin */
.btn-ghost {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .625rem 1.25rem; border-radius: var(--radius-lg);
  font-size: .875rem; font-weight: 600;
  border: 1.5px solid var(--bdr); background: #fff;
  color: var(--txt); text-decoration: none; cursor: pointer;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--pk); color: var(--pk); }

/* Admin mobile header */
.admin-mobile-header {
  display: none;
  align-items: center;
  gap: .75rem;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 52px;
  background: var(--txt);
  padding: 0 1rem;
  z-index: 150;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.admin-hamburger {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: .25rem;
  display: flex;
  align-items: center;
}
.admin-mobile-brand { color: #fff; font-size: .875rem; font-weight: 600; }
.admin-nav-close-btn {
  display: none;
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  padding: .25rem;
  margin-left: auto;
  margin-bottom: 1rem;
}
.admin-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 160;
}
.admin-overlay.open { display: block; }

/* ===== PHASE 4 RESPONSIVE ===== */
@media (max-width: 1024px) {
  .admin-nav { width: 200px; }
  .admin-layout { margin-left: 200px; }
  .admin-main { padding: 1.5rem; }
  .blog-edit-layout { grid-template-columns: 1fr; }
  .admin-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Mobile header bar */
  .admin-mobile-header { display: flex; }
  .admin-nav-close-btn { display: flex; }

  /* Sidebar: off-screen left, slide in */
  .admin-nav {
    transform: translateX(-100%);
    transition: transform .28s ease;
    z-index: 180;
    width: 240px;
  }
  .admin-nav.open { transform: translateX(0); }

  /* Content area shifts down for mobile header */
  .admin-layout { margin-left: 0; padding-top: 52px; }
  .admin-stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-quick-actions { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .alt-strip { flex-direction: column; gap: 1rem; }
  .alt-divider { width: 40px; height: 1px; }
  .appt-widget-wrap { padding: 2rem 1.25rem; }
}

/* ===== PHASE 5 — BLOG LISTING PAGE ===== */
.blog-filter-bar {
  background: #fff;
  border-bottom: 1px solid var(--bdr);
  padding: 1rem 0;
  position: sticky;
  top: 64px;
  z-index: 10;
}
.blog-cats {
  display: flex; gap: .5rem; flex-wrap: wrap; align-items: center;
}
.blog-cat-pill {
  font-size: .8125rem; font-weight: 500;
  padding: .375rem .875rem; border-radius: 999px;
  border: 1px solid var(--bdr); background: #fff;
  color: var(--muted); text-decoration: none;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}
.blog-cat-pill:hover { border-color: var(--pk); color: var(--pk); }
.blog-cat-active { background: var(--pk); border-color: var(--pk); color: #fff !important; }
.blog-listing { padding: 3.5rem 0 5rem; }
.blog-filter-active {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--pkl); border: 1px solid var(--pkm);
  border-radius: 999px; padding: .3rem .75rem;
  font-size: .8rem; font-weight: 500; color: var(--pk2);
  margin-bottom: 1.5rem;
}
.blog-filter-clear { color: var(--pk); font-size: 1rem; text-decoration: none; line-height: 1; }
.blog-listing-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
.blog-listing-card {
  background: #fff; border: 1px solid var(--bdr);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.blog-listing-card:hover {
  border-color: var(--pkm);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(196,24,92,.10);
}
.blog-card-link { text-decoration: none; color: inherit; display: block; }
.blog-listing-thumb {
  height: 200px; overflow: hidden; background: var(--pkl);
}
.blog-listing-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s;
}
.blog-listing-card:hover .blog-listing-thumb img { transform: scale(1.04); }
.blog-listing-body { padding: 1.25rem; }
.blog-listing-cat {
  display: inline-block; font-size: .7rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  background: var(--pkl); color: var(--pk2);
  padding: .2rem .5rem; border-radius: .25rem; margin-bottom: .625rem;
}
.blog-listing-title {
  font-size: 1rem; font-weight: 600; color: var(--txt);
  line-height: 1.4; margin-bottom: .625rem;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.blog-listing-excerpt {
  font-size: .8125rem; color: var(--muted); line-height: 1.6;
  margin-bottom: .875rem;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.blog-listing-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .75rem; color: var(--muted);
}
.blog-listing-meta .blog-read-more { color: var(--pk); font-weight: 500; }
.blog-empty-state { text-align: center; padding: 4rem 0; color: var(--muted); }

/* Pagination */
.blog-pagination {
  display: flex; gap: .375rem; justify-content: center;
  margin-top: 3rem; flex-wrap: wrap;
}
.page-btn {
  padding: .5rem .875rem; font-size: .8125rem; font-weight: 500;
  border: 1px solid var(--bdr); border-radius: var(--radius);
  background: #fff; color: var(--txt); text-decoration: none;
  transition: border-color .15s, color .15s;
}
.page-btn:hover { border-color: var(--pk); color: var(--pk); }
.page-btn-active { background: var(--pk); border-color: var(--pk); color: #fff; }

/* ===== PHASE 5 — BLOG POST PAGE ===== */
.post-hero {
  background: var(--pkl); border-bottom: 1px solid var(--bdr);
  padding: 3rem 0 2.5rem;
}
.post-hero-inner {
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center;
}
.post-hero-img-wrap { display: none; }
.post-hero-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 12px 40px rgba(0,0,0,.13);
  display: block;
}
.post-breadcrumb {
  display: flex; align-items: center; gap: .375rem;
  font-size: .75rem; color: var(--muted);
  margin-bottom: 1rem; flex-wrap: wrap;
}
.post-breadcrumb a { color: var(--muted); text-decoration: none; transition: color .15s; }
.post-breadcrumb a:hover { color: var(--pk); }
.post-cat-tag {
  display: inline-block; font-size: .7rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  background: var(--pk); color: #fff;
  padding: .2rem .625rem; border-radius: .25rem; margin-bottom: .875rem;
}
.post-title {
  font-size: clamp(1.5rem, 4vw, 2.375rem); font-weight: 700;
  color: var(--txt); letter-spacing: -.02em; line-height: 1.25;
  margin-bottom: .875rem;
}
.post-excerpt {
  font-size: 1.0625rem; color: var(--muted);
  line-height: 1.65; margin-bottom: 1.5rem;
}
.post-meta-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.post-author { display: flex; align-items: center; gap: .75rem; }
.post-author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  overflow: hidden; background: var(--pkl); flex-shrink: 0; position: relative;
}
.post-author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-author-initials {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 700; color: var(--pk);
}
.post-author-name { display: block; font-size: .875rem; font-weight: 600; color: var(--txt); }
.post-author-title { display: block; font-size: .75rem; color: var(--muted); }
.post-meta-right {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8125rem; color: var(--muted);
}
.post-meta-dot { opacity: .4; }

/* Featured image */
.post-featured-img { background: var(--bg); padding: 2rem 0; }
.post-featured-img img {
  width: 100%; max-height: 480px; object-fit: cover;
  border-radius: var(--radius-xl); display: block;
}

/* Content layout */
.post-content-section { padding: 3.5rem 0 5rem; }
.post-content-layout {
  display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start;
}
.post-body { font-size: 1rem; line-height: 1.8; color: var(--txt); }
.post-body h2 {
  font-size: 1.375rem; font-weight: 700; color: var(--txt);
  margin: 2.25rem 0 .875rem; letter-spacing: -.01em;
}
.post-body h3 { font-size: 1.125rem; font-weight: 600; color: var(--txt); margin: 1.75rem 0 .625rem; }
.post-body p { margin-bottom: 1.125rem; }
.post-body ul, .post-body ol { padding-left: 1.5rem; margin-bottom: 1.125rem; }
.post-body li { margin-bottom: .375rem; }
.post-body a { color: var(--pk); }
.post-body img { width: 100%; border-radius: var(--radius-lg); margin: 1.5rem 0; }
.post-body blockquote {
  border-left: 4px solid var(--pk); padding: 1rem 1.25rem;
  background: var(--pkl); border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0; font-style: italic; color: var(--pk2);
}

/* Share */
.post-share {
  display: flex; align-items: center; gap: .625rem;
  padding: 1.25rem 0; border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr); margin: 2rem 0; flex-wrap: wrap;
}
.post-share-label { font-size: .8125rem; font-weight: 600; color: var(--muted); }
.share-btn {
  font-size: .8125rem; font-weight: 500; padding: .375rem .875rem;
  border-radius: 999px; text-decoration: none; border: 1px solid var(--bdr);
  transition: background .15s, color .15s;
}
.share-wa { color: #25D366; border-color: #25D366; }
.share-wa:hover { background: #25D366; color: #fff; }
.share-fb { color: #1877F2; border-color: #1877F2; }
.share-fb:hover { background: #1877F2; color: #fff; }
.post-back { margin-top: 1.5rem; }

/* Sidebar */
.post-sidebar { }
.post-sidebar-card {
  background: #fff; border: 1px solid var(--bdr);
  border-radius: var(--radius-lg); padding: 1.25rem; margin-bottom: 1rem;
}
.post-doctor-card { text-align: center; }
.pdc-photo {
  width: 80px; height: 80px; border-radius: 50%;
  overflow: hidden; background: var(--pkl); margin: 0 auto .75rem;
}
.pdc-photo img { width: 100%; height: 100%; object-fit: cover; }
.pdc-tag { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--pk); margin-bottom: .375rem; }
.pdc-name { font-size: .9375rem; font-weight: 700; color: var(--txt); margin-bottom: .5rem; }
.pdc-text { font-size: .75rem; color: var(--muted); line-height: 1.6; margin: 0; }
.sidebar-cat-link {
  display: block; font-size: .8125rem; color: var(--muted);
  text-decoration: none; padding: .5rem 0;
  border-bottom: 1px solid var(--bdr); transition: color .15s;
}
.sidebar-cat-link:last-child { border-bottom: none; }
.sidebar-cat-link:hover { color: var(--pk); }

/* Related posts */
.related-posts { background: var(--bg); border-top: 1px solid var(--bdr); padding: 3.5rem 0; }
.related-title { font-size: 1.375rem; font-weight: 700; color: var(--txt); margin-bottom: 1.75rem; }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.related-card {
  background: #fff; border: 1px solid var(--bdr);
  border-radius: var(--radius-lg); overflow: hidden;
  text-decoration: none; color: inherit; display: block;
  transition: border-color .2s, transform .2s;
}
.related-card:hover { border-color: var(--pkm); transform: translateY(-2px); }
.related-thumb { height: 155px; overflow: hidden; background: var(--pkl); }
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-body { padding: 1rem; }
.related-card-title {
  font-size: .875rem; font-weight: 600; color: var(--txt); line-height: 1.4;
  margin-bottom: .375rem;
  display: -webkit-box; -webkit-line-clamp: 2;
  -webkit-box-orient: vertical; overflow: hidden;
}
.related-date { font-size: .75rem; color: var(--muted); }

/* ===== PHASE 5 RESPONSIVE ===== */
@media (min-width: 640px) {
  .blog-listing-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .blog-listing-grid { grid-template-columns: repeat(3, 1fr); }
  .post-content-layout { grid-template-columns: 1fr 300px; gap: 3rem; }
  .post-sidebar { position: sticky; top: 96px; }
  .related-grid { grid-template-columns: repeat(4, 1fr); }
  .post-hero-inner { grid-template-columns: 9fr 11fr; gap: 3rem; }
  .post-hero-img-wrap { display: block; }
  .post-featured-img { display: none; }
}

@media (max-width: 768px) {
  .blog-filter-bar { top: 56px; }
  .post-meta-row { flex-direction: column; align-items: flex-start; }
  .post-featured-img img { border-radius: var(--radius-lg); }
  .blog-listing-thumb { height: 180px; }
}

/* ============================================================
   PHASE 6 — GLOBAL POLISH
   ============================================================ */

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus-visible — keyboard-only focus rings */
:focus-visible {
  outline: 2px solid var(--pk);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* Text selection */
::selection {
  background: var(--pkm);
  color: var(--txt);
}

/* Image reset */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container consistency — removed duplicate (main rule is at top of file) */

/* Section vertical rhythm */
.section { padding-block: 5rem; }
.section-alt { padding-block: 5rem; }

/* Button consistency */
.btn, .btn-ghost, .btn-book, .btn-primary {
  cursor: pointer;
  text-decoration: none;
  transition: opacity .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:disabled,
.btn-primary:disabled {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

/* WhatsApp float button */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}
@media (max-width: 640px) {
  .wa-float { bottom: 1rem; right: 1rem; width: 48px; height: 48px; }
  .wa-float svg { width: 24px; height: 24px; }
}

/* ── Lang dropdown (desktop navbar) ── */
.lang-dropdown { position: relative; }
.lang-trigger {
  display: flex;
  align-items: center;
  gap: .375rem;
  background: transparent;
  border: 1px solid var(--bdr);
  border-radius: 99px;
  padding: .375rem .875rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--muted);
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
  white-space: nowrap;
  font-family: inherit;
}
.lang-trigger:hover,
.lang-trigger.open {
  border-color: var(--pkm);
  color: var(--pk);
  background: var(--pkl);
}
.lang-chevron { transition: transform .2s ease; flex-shrink: 0; }
.lang-trigger.open .lang-chevron { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(28,16,24,.1);
  min-width: 88px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 200;
}
.lang-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-opt {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .625rem 1.25rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted);
  text-decoration: none;
  transition: background .12s, color .12s;
}
.lang-opt:hover { background: var(--pkl); color: var(--pk); }
.lang-opt.active { color: var(--pk); background: var(--pkl); }

/* Language pills (footer + mobile nav) */
.lang-pill {
  display: inline-flex;
  align-items: center;
  padding: .2rem .5rem;
  border-radius: 6px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--bdr);
  text-decoration: none;
  transition: color .15s, background .15s, border-color .15s;
  cursor: pointer;
}
.lang-pill:hover { color: var(--pk); border-color: var(--pkm); background: var(--pkl); }
.lang-pill.active { color: var(--pk); background: var(--pkl); border-color: var(--pkm); }

/* Footer overrides (dark bg) */
.footer-lang .lang-pill { color: rgba(255,255,255,.35); border-color: rgba(255,255,255,.12); background: transparent; }
.footer-lang .lang-pill:hover { color: var(--pkm); border-color: var(--pkm); background: transparent; }
.footer-lang .lang-pill.active { color: var(--pkm); border-color: rgba(196,24,92,.4); background: rgba(196,24,92,.15); }


/* Section eyebrow label */
.sec-eye {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pk);
  margin-bottom: .5rem;
}

/* Print styles */
@media print {
  .site-header,
  .wa-float,
  #cookie-banner,
  .booking-banner,
  .blog-section,
  footer { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  a { color: #000; text-decoration: underline; }
  .container { max-width: 100%; padding: 0; }
  img { max-width: 100% !important; page-break-inside: avoid; }
  h1, h2, h3 { page-break-after: avoid; }
}

/* ============================================================
   RESPONSIVE OVERHAUL — All Screens (360px → 2560px)
   ============================================================ */

/* ── Very small phones (max 479px) ────────────────────────── */
@media (max-width: 479px) {
  .hero-h1               { font-size: 1.75rem; }
  .hero-actions          { flex-direction: column; }
  .hero-actions .btn     { width: 100%; justify-content: center; }
  .hero-right            { min-height: 240px; }
  .trust-bar-inner       { gap: .75rem 0; }
  .trust-div             { display: none; }
  .svc-grid              { grid-template-columns: 1fr; }
  .steps-grid            { grid-template-columns: 1fr; }
  .cred-cards            { grid-template-columns: 1fr; }
  .expertise-grid,
  .exp-grid              { grid-template-columns: 1fr; }
  .about-stats           { gap: 1rem; }
  .stat-num              { font-size: 1.75rem; }
  .page-hero-title       { font-size: 1.625rem; }
  .page-hero-eyebrow     { font-size: .7rem; }
  .blog-listing-grid     { grid-template-columns: 1fr; }
  .related-grid          { grid-template-columns: 1fr; }
  .post-hero             { padding: 2rem 0 1.5rem; }
  .contact-grid          { grid-template-columns: 1fr; }
  .booking-inner         { flex-direction: column; text-align: center; }
  .footer-grid           { grid-template-columns: 1fr; }
  section                { padding: 2.5rem 0; }
  .page-hero             { padding: 3rem 0 2rem; }
  .admin-content         { padding: 1rem .75rem; }
  .admin-stats-grid      { grid-template-columns: 1fr 1fr; }
}

/* ── Phones (max 639px) ────────────────────────────────────── */
@media (max-width: 639px) {
  .sec-title             { font-size: clamp(1.5rem, 6vw, 1.875rem); }
  .hero-left             { padding-bottom: .5rem; }
  .booking-banner        { padding: 3rem 0; }
  .about-main-grid       { grid-template-columns: 1fr; }
  .contact-form-wrap     { max-width: 100%; }
  .form-row              { grid-template-columns: 1fr; }
  .post-sidebar          { display: none; }
  .blog-pagination       { gap: .25rem; flex-wrap: wrap; }
  .appt-widget-wrap      { padding: 1.5rem 1rem; }
  .alt-strip             { flex-direction: column; gap: 1rem; text-align: center; }
  .page-hero-sub         { font-size: .9375rem; }
  .admin-main            { padding: 1rem; }
}

/* ── Tablet (max 767px) ────────────────────────────────────── */
@media (max-width: 767px) {
  .about-grid            { grid-template-columns: 1fr; }
  .booking-text          { text-align: center; }
  .bk-sub                { margin-bottom: 1.5rem; }
  .tourist-highlight     { padding: 2rem 1.25rem; }
  .post-hero             { padding: 3rem 0 2rem; }
  .post-hero-inner       { padding-bottom: 0; }
  .post-content-section  { padding: 2rem 0 3rem; }
}

/* ── Large laptop / desktop (min 1280px) ───────────────────── */
@media (min-width: 1280px) {
  .hero-wrap             { gap: 5rem; }
  .hero-h1               { font-size: clamp(3rem, 3.5vw, 3.75rem); }
  .hero-right            { min-height: 540px; }
  .hero-photo            { max-width: 440px; }

  .svc-grid              { gap: 1.75rem; }
  .about-grid            { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .about-main-grid       { grid-template-columns: 420px 1fr; gap: 5rem; }
  .about-main-photo      { max-width: none; }

  .blog-listing-grid     { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .post-content-layout   { grid-template-columns: 1fr 320px; gap: 4rem; }
  .related-grid          { grid-template-columns: repeat(4, 1fr); }

  .contact-grid          { gap: 4rem; }
  .contact-map iframe    { height: 360px; }

  .steps-grid            { grid-template-columns: repeat(4, 1fr); }

  .expertise-grid,
  .exp-grid              { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

  .footer-grid           { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom         { flex-direction: row; align-items: center; justify-content: space-between; }

  section                { padding: 5.5rem 0; }
  .page-hero             { padding: 6rem 0 4rem; }
  .admin-content         { max-width: 1400px; }

  .sec-title             { font-size: 2.625rem; }
  .hero-card-float       { padding: 1rem 1.5rem; bottom: 2.5rem; left: 2.5rem; }
}

/* ── Large desktop / 1440p (min 1440px) ───────────────────── */
@media (min-width: 1440px) {
  :root                  { --nav-h: 80px; }

  .hero                  { padding: 5rem 0 0; }
  .hero-h1               { font-size: 3.75rem; }
  .hero-right            { min-height: 580px; }
  .hero-photo            { max-width: 470px; }
  .hero-left             { padding-bottom: 4rem; }

  .sec-title             { font-size: 2.875rem; }
  .sec-sub               { font-size: 1.125rem; }

  .booking-banner        { padding: 5rem 0; }
  .booking-inner         { gap: 6rem; }

  .about-main-grid       { grid-template-columns: 460px 1fr; }
  .svc-detail-card       { padding: 2.5rem; gap: 2rem; }
  .post-content-layout   { grid-template-columns: 1fr 360px; }

  .page-hero             { padding: 7rem 0 4.5rem; }
  .page-hero-title       { font-size: clamp(2.25rem, 4vw, 3rem); }
}

/* ── 2K (min 1920px) ───────────────────────────────────────── */
@media (min-width: 1920px) {
  :root                  { --nav-h: 84px; }
  body                   { font-size: 17px; }

  .hero                  { padding: 6rem 0 0; }
  .hero-h1               { font-size: 4.5rem; }
  .hero-right            { min-height: 660px; }
  .hero-photo            { max-width: 540px; }
  .hero-p                { font-size: 1.1875rem; max-width: 540px; }
  .hero-left             { padding-bottom: 5rem; }

  .sec-title             { font-size: 3.25rem; }
  .sec-sub               { font-size: 1.1875rem; }
  .sec-header            { max-width: 760px; }

  .svc-grid              { gap: 2rem; }
  .svc-card              { padding: 2rem; }

  .blog-listing-grid     { gap: 2.5rem; }
  .blog-listing-thumb    { height: 260px; }

  .booking-banner        { padding: 6.5rem 0; }

  .about-grid            { gap: 7rem; }
  .about-stats           { gap: 3.5rem; }
  .stat-num              { font-size: 3rem; }

  section                { padding: 7rem 0; }
  .page-hero             { padding: 8rem 0 5.5rem; }
  .page-hero-title       { font-size: 3.5rem; }
  .page-hero-sub         { font-size: 1.25rem; }

  .post-content-layout   { grid-template-columns: 1fr 400px; gap: 5rem; }
  .post-hero             { padding: 5rem 0 3rem; }

  .navbar                { gap: 2.5rem; }
  .nav-link              { font-size: 1rem; padding: .5rem 1rem; }
  .nav-brand-text        { font-size: 1.125rem; }

  .footer-grid           { gap: 4rem; }
  .trust-bar-inner       { gap: 1.5rem 3.5rem; }
  .trust-item            { font-size: .9375rem; }
}

/* ── Ultra-wide 2560px ─────────────────────────────────────── */
@media (min-width: 2560px) {
  body                   { font-size: 18px; }
  .hero-h1               { font-size: 5.25rem; }
  .sec-title             { font-size: 3.75rem; }
  .hero-right            { min-height: 780px; }
  .hero-photo            { max-width: 620px; }
  section                { padding: 8rem 0; }
}
