:root {
  --bg: #0b1220;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --text: #0f1728;
  --text-soft: #5b667d;
  --brand: #f2b705;
  --brand-deep: #d89a00;
  --accent: #1ca56f;
  --line: rgba(16, 26, 43, 0.08);
  --shadow: 0 24px 60px rgba(4, 12, 24, 0.16);
  --radius: 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242, 183, 5, 0.18), transparent 28%),
    radial-gradient(circle at right 10%, rgba(28, 165, 111, 0.16), transparent 24%),
    linear-gradient(180deg, #eef2f7 0%, #f7f9fc 48%, #eef2f7 100%);
}

body.menu-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(242, 183, 5, 0.45);
  outline-offset: 3px;
}

img {
  max-width: 100%;
  display: block;
}

.page-glow {
  position: fixed;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.page-glow-left {
  top: 4rem;
  left: -10rem;
  background: rgba(242, 183, 5, 0.3);
}

.page-glow-right {
  top: 18rem;
  right: -8rem;
  background: rgba(28, 165, 111, 0.22);
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 2000;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: #0d1627;
  color: #fff;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.top-strip {
  background: #0d1627;
  color: #f5f7fb;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-strip-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.7rem 0;
  text-align: center;
  line-height: 1.45;
}

.top-strip-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd45f;
}

.notice-link {
  display: block;
  max-width: 100%;
  color: rgba(255, 255, 255, 0.86);
  overflow-wrap: anywhere;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  text-align: center;
  border: 1px solid transparent;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, #ffcb3d 100%);
  color: #141414;
  box-shadow: 0 16px 32px rgba(242, 183, 5, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-deep) 0%, #f0bf2f 100%);
}

.btn-secondary {
  background: linear-gradient(135deg, #169a67 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 16px 32px rgba(28, 165, 111, 0.26);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #107b52 0%, #189765 100%);
}

.small-btn {
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading span {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(242, 183, 5, 0.12);
  color: #8a6500;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 2.3vw, 2.4rem);
  line-height: 1.18;
  margin-bottom: 0.9rem;
  overflow-wrap: anywhere;
}

.section-heading p,
.muted-copy {
  color: var(--text-soft);
  font-size: 0.96rem;
}

.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 82px;
  gap: 1rem;
}

.logo a {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1rem;
  font-weight: 800;
}

.logo-badge {
  width: 2.6rem;
  height: 2.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #111827 0%, #27334c 100%);
  color: var(--brand);
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.logo-text {
  color: #152033;
}

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
}

.nav ul li a {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: #20304a;
  border-radius: 999px;
  font-weight: 600;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.nav ul li a:hover {
  color: #0f1728;
  background: rgba(21, 32, 51, 0.06);
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(16, 26, 43, 0.08);
  border-radius: 14px;
  background: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  color: #20304a;
}

.mobile-call-btn {
  display: none;
  white-space: nowrap;
}

.nav.show ul {
  display: block;
}

.hero {
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(9, 16, 29, 0.88) 0%, rgba(9, 16, 29, 0.62) 42%, rgba(9, 16, 29, 0.32) 100%),
    linear-gradient(180deg, rgba(242, 183, 5, 0.12), transparent 45%);
  pointer-events: none;
}

#about,
#services,
#booking,
#contact {
  scroll-margin-top: 108px;
}

.hero-content {
  position: relative;
  color: #fff;
  padding: 5rem 0 4rem;
  max-width: 860px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.3rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffe18c;
  font-weight: 700;
  font-size: 0.76rem;
  line-height: 1.4;
}

.hero-content h1 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 1.2rem;
  max-width: 12ch;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hero-content p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 62ch;
  margin-bottom: 1.5rem;
  overflow-wrap: anywhere;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
  align-items: stretch;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  max-width: 760px;
  margin-top: 2rem;
}

.stat-card {
  padding: 1.15rem 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.stat-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.45;
}

.why-us,
.services,
.testimonials,
.booking,
.contact,
.pharmacy-section {
  padding: 6rem 0;
}

.features,
.service-cards,
.testimonial-cards,
.service-highlight-grid,
.eczane-layout,
.pharmacy-grid {
  display: grid;
  gap: 1.35rem;
}

.features,
.service-cards,
.testimonial-cards,
.service-highlight-grid,
.pharmacy-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.eczane-layout {
  grid-template-columns: 0.95fr 1.05fr;
}

.feature-card,
.service-card,
.testimonial,
.contact-details,
.contact-map,
.booking-form,
.highlight-card,
.eczane-card,
.pharmacy-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card,
.service-card,
.testimonial,
.highlight-card,
.eczane-card,
.pharmacy-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  padding: 1.7rem;
  backdrop-filter: blur(10px);
}

.feature-card i,
.service-card i,
.highlight-card i {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(242, 183, 5, 0.18), rgba(242, 183, 5, 0.04));
  color: #8b6500;
}

.feature-card h3,
.service-card h3,
.highlight-card h3,
.eczane-card h3,
.pharmacy-card h3 {
  font-size: 1.22rem;
  margin-bottom: 0.55rem;
}

.feature-card p,
.service-card p,
.highlight-card p,
.testimonial,
.contact-details p,
.eczane-card p,
.pharmacy-card p {
  color: var(--text-soft);
}

.services {
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 26, 43, 0.02), rgba(17, 26, 43, 0.05));
  pointer-events: none;
}

.testimonial {
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
  font-family: "Sora", sans-serif;
  font-size: 3.8rem;
  line-height: 1;
  color: rgba(242, 183, 5, 0.22);
}

.testimonial .author {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: #172338;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.82);
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
}

.booking-form .form-group.full-width {
  grid-column: 1 / -1;
}

.booking-form label {
  margin-bottom: 0.45rem;
  font-weight: 700;
  color: #1a2740;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(16, 26, 43, 0.12);
  border-radius: 16px;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: rgba(242, 183, 5, 0.8);
  box-shadow: 0 0 0 4px rgba(242, 183, 5, 0.14);
}

.booking-form button {
  margin-top: 0.5rem;
  grid-column: 1 / -1;
  cursor: pointer;
}

.contact-content {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.35rem;
}

.contact-details,
.contact-map {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.82);
  padding: 1.7rem;
}

.contact-details h3 {
  font-family: "Sora", sans-serif;
  margin-bottom: 1rem;
}

.contact-details i {
  width: 1.3rem;
  color: #8b6500;
}

.social-links {
  margin-top: 1rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: rgba(16, 26, 43, 0.06);
  color: #20304a;
  font-size: 1rem;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  color: #111;
  background: rgba(242, 183, 5, 0.28);
  transform: translateY(-2px);
}

.contact-map iframe,
.eczane-map-card iframe {
  width: 100%;
  border: none;
  border-radius: 18px;
}

.info-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.info-list li {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(16, 26, 43, 0.04);
}

.info-list strong {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8b6500;
}

.footer {
  padding: 1.25rem 0 2.2rem;
  text-align: center;
  color: #5b667d;
}

.footer-article-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-article-links a {
  color: #20304a;
  font-weight: 600;
}

.footer-article-links a:hover,
.footer-article-links a:focus-visible {
  color: #0f1728;
}

.article-links-section .service-card {
  text-align: left;
}

.article-link-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-link-card:hover {
  transform: translateY(-4px);
}

.article-section {
  padding: 5.5rem 0 2rem;
}

.article-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.article-header {
  margin-bottom: 2rem;
}

.article-kicker {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(242, 183, 5, 0.12);
  color: #8a6500;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-header h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.article-header p,
.article-content p {
  color: var(--text-soft);
}

.article-content {
  display: grid;
  gap: 1.1rem;
}

.article-content h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.article-list {
  padding-left: 1.2rem;
  color: var(--text-soft);
}

@media (max-width: 920px) {
  .hero-stats,
  .contact-content,
  .eczane-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 96px;
  }

  body {
    overflow-x: hidden;
  }

  .top-strip-inner {
    justify-content: flex-start;
  }

  .top-strip-label,
  .notice-link {
    width: 100%;
    text-align: left;
  }

  .nav ul {
    flex-direction: column;
    align-items: stretch;
    background-color: rgba(255, 255, 255, 0.96);
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    width: min(260px, calc(100vw - 2rem));
    display: none;
    padding: 0.6rem;
    border-radius: 22px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(16, 26, 43, 0.08);
  }

  .nav.show ul {
    display: flex;
  }

  .nav ul li a {
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-call-btn {
    display: inline-flex;
    margin-left: auto;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .hero-content {
    padding: 4.5rem 0 3rem;
  }

  .hero-content h1 {
    max-width: none;
    font-size: clamp(1.65rem, 7vw, 2.35rem);
  }

  .hero-buttons,
  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .why-us,
  .services,
  .testimonials,
  .booking,
  .contact,
  .pharmacy-section {
    padding: 4.5rem 0;
  }

  #about,
  #services,
  #booking,
  #contact {
    scroll-margin-top: 96px;
  }

  .article-card {
    padding: 1.4rem;
  }

  .contact-details,
  .contact-map,
  .booking-form,
  .feature-card,
  .service-card,
  .testimonial,
  .highlight-card,
  .eczane-card,
  .pharmacy-card {
    padding: 1.25rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1rem, 1180px);
  }

  .nav-container {
    gap: 0.6rem;
  }

  .logo a {
    gap: 0.55rem;
  }

  .logo-text {
    font-size: 0.88rem;
  }

  .mobile-call-btn {
    padding: 0.72rem 0.95rem;
    font-size: 0.85rem;
  }

  .nav-toggle {
    width: 2.6rem;
    height: 2.6rem;
  }

  .section-heading h2,
  .article-header h2 {
    text-wrap: balance;
  }

  .hero-points span,
  .hero-kicker {
    width: 100%;
    justify-content: center;
  }

  .stat-card {
    padding: 1rem;
  }
}

/* Dil değiştirici */
.dil-secici {
  display: flex;
  gap: 6px;
  align-items: center;
}
.dil-secici a {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(13, 22, 39, 0.12);
  color: inherit;
  white-space: nowrap;
}
.dil-secici a.aktif {
  background: rgba(13, 22, 39, 0.08);
  border-color: transparent;
}
.footer-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 12px 0 6px;
  font-size: 0.9rem;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .dil-secici { justify-content: center; padding: 8px 0; }
}
