/* ═══════════════════════════════════════════════════════════════
   Ories Homecare & Bodycare — Shared Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ivory:      #F7F4EF;
  --sage:       #8DA68A;
  --sage-dark:  #5C7A58;
  --clay:       #C4A882;
  --charcoal:   #2A2A2A;
  --gray:       #6B6B6B;
  --white:      #FFFFFF;
  --dark-bg:    #1E2420;
  --dark-card:  #242C27;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
section { position: relative; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Reveal Animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  cursor: pointer;
  border: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-primary { background: var(--sage-dark); color: var(--white); }
.btn-primary:hover { background: var(--charcoal); }
.btn-outline { background: transparent; color: var(--charcoal); border: 1.5px solid var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: var(--white); color: var(--charcoal); }

/* ── Section Labels & Titles ───────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--sage-dark);
}
.section-title {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  margin-bottom: 24px;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(247,244,239,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(141,166,138,0.18);
  transition: box-shadow 0.3s;
}
#nav.scrolled { box-shadow: 0 2px 24px rgba(42,42,42,0.07); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 48px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--sage-dark);
  transition: width 0.25s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--charcoal); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--ivory);
  border-bottom: 1px solid rgba(141,166,138,0.2);
  padding: 24px 40px 32px;
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { padding: 12px 0; border-bottom: 1px solid rgba(141,166,138,0.12); }
.mobile-menu ul li a {
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-menu .btn { margin-top: 20px; width: 100%; text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════════════════════════════════════ */
.page-hero {
  padding: 140px 0 80px;
  background: var(--ivory);
  border-bottom: 1px solid rgba(141,166,138,0.15);
}
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 20px;
}
.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--sage-dark);
}
.page-hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 300;
  max-width: 720px;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--sage-dark); }
.page-hero-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
}

.price-list-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 14px 22px;
  background: var(--white);
  border: 1px solid rgba(141,166,138,0.3);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.price-list-link:hover { border-color: var(--sage); box-shadow: 0 10px 24px rgba(92,122,88,0.12); transform: translateY(-2px); }
.price-list-icon { display: inline-flex; flex-shrink: 0; width: 30px; height: 30px; color: var(--sage-dark); }
.price-list-icon svg { width: 100%; height: 100%; }
.price-list-link strong { display: block; font-size: 13.5px; font-weight: 600; color: var(--charcoal); margin-bottom: 2px; }
.price-list-meta { display: block; font-size: 11.5px; color: var(--gray); }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 12px;
  color: var(--gray);
}
.breadcrumb a { color: var(--sage-dark); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: rgba(141,166,138,0.4); }

/* ═══════════════════════════════════════════════════════════════
   HERO (homepage)
═══════════════════════════════════════════════════════════════ */
#hero {
  padding-top: 68px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ivory);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 68px);
  padding: 80px 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--sage-dark);
}
.hero-title {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--sage-dark); }
.hero-sub { font-size: 16px; color: var(--gray); line-height: 1.7; max-width: 440px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-panel {
  background-image:
    linear-gradient(180deg, rgba(26,36,25,0.5) 0%, rgba(26,36,25,0.2) 45%, rgba(26,36,25,0.8) 100%),
    url('../material/ories-goz-kremi.jpg');
  background-size: cover;
  background-position: center 20%;
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-panel-deco { display: none; }
.hero-badge { position: relative; z-index: 2; text-align: center; padding: 40px 48px; border: 1px solid rgba(255,255,255,0.5); background: rgba(26,36,25,0.35); backdrop-filter: blur(3px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.hero-badge-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); margin-bottom: 16px; }
.hero-badge-main { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 300; color: var(--white); line-height: 1.3; margin-bottom: 16px; }
.hero-badge-sub { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); }
.hero-badge-divider { width: 32px; height: 1px; background: var(--sage); margin: 14px auto; }
.hero-leaf { position: absolute; bottom: 40px; right: 40px; opacity: 0.5; }
.hero-leaf svg path { stroke: var(--sage); }
.hero-leaf svg { width: 80px; height: 80px; }

/* ═══════════════════════════════════════════════════════════════
   STATS BAR
═══════════════════════════════════════════════════════════════ */
#stats {
  background: var(--dark-bg);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.stat-item { padding: 36px 32px; text-align: center; background: var(--dark-bg); }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 8px; }
.stat-number span { color: var(--sage); }
.stat-label { font-size: 11px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); }

/* ═══════════════════════════════════════════════════════════════
   HAKKIMIZDA
═══════════════════════════════════════════════════════════════ */
#hakkimizda { padding: 120px 0; background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; height: 520px; }
.about-visual-main { position: absolute; top: 0; left: 0; width: 75%; height: 85%; background: var(--ivory) url('../material/hakkimizda-gorsel.jpg') center/cover no-repeat; }
.about-visual-accent { position: absolute; bottom: 0; right: 0; width: 55%; height: 55%; border: 1.5px solid var(--clay); opacity: 0.5; }
.about-year-badge { position: absolute; bottom: 40px; left: 0; background: var(--charcoal); color: var(--white); padding: 20px 28px; z-index: 3; }
.about-year-badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 300; color: var(--clay); line-height: 1; }
.about-year-badge span { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.about-body { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 40px; }

.value-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.value-card { padding: 20px 22px; border: 1px solid rgba(141,166,138,0.2); background: var(--white); }
.value-card-icon { width: 32px; height: 32px; background: var(--sage); opacity: 0.15; margin-bottom: 12px; position: relative; }
.value-card-icon::after { content: ''; position: absolute; inset: 6px; border: 1px solid var(--sage-dark); }
.value-card h4 { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 6px; }
.value-card p { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════════
   ÜRÜNLER
═══════════════════════════════════════════════════════════════ */
#urunler { padding: 120px 0; background: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.product-card { position: relative; overflow: hidden; cursor: pointer; background: var(--ivory); aspect-ratio: 3/2; display: flex; flex-direction: column; justify-content: flex-end; }
.product-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); }
.product-card-bg::after { content: ''; position: absolute; inset: 0; background: rgba(247,244,239,0.55); }
.product-card:hover .product-card-bg { transform: scale(1.04); }
.product-card-info { position: relative; z-index: 2; padding: 18px 20px 22px; background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 62%, rgba(255,255,255,0) 100%); padding-top: 34px; }
.product-card-cat { font-size: 11px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 5px; }
.product-card-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 500; color: var(--charcoal); margin-bottom: 7px; }
.product-card-desc { font-size: 13px; color: #4A4A4A; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-card-arrow { position: absolute; top: 20px; right: 20px; z-index: 2; width: 36px; height: 36px; background: var(--charcoal); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.product-card:hover .product-card-arrow { opacity: 1; }
.product-card-arrow svg { width: 14px; height: 14px; stroke: white; fill: none; }

/* Product page filter */
.product-filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px; }
.product-filter-btn { background: none; border: 1.5px solid rgba(141,166,138,0.25); padding: 8px 18px; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); cursor: pointer; transition: all 0.2s; }
.product-filter-btn:hover { border-color: var(--sage-dark); color: var(--sage-dark); }
.product-filter-btn.active { background: var(--sage-dark); border-color: var(--sage-dark); color: var(--white); }

/* Individual product (SKU) listings */
.sku-section { padding-top: 80px; scroll-margin-top: 90px; }
.sku-section-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 400; color: var(--charcoal); margin-bottom: 28px; }
.sku-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.sku-card { background: var(--white); border: 1px solid rgba(0,0,0,0.07); transition: box-shadow 0.25s, transform 0.25s; }
.sku-card:hover { box-shadow: 0 14px 32px rgba(0,0,0,0.09); transform: translateY(-3px); }
.sku-img { aspect-ratio: 4/5; background-color: var(--ivory); background-size: cover; background-position: center; }
.sku-body { padding: 16px 18px 20px; }
.sku-name { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 500; color: var(--charcoal); line-height: 1.3; margin-bottom: 6px; min-height: 42px; }
.sku-desc { font-size: 12px; color: var(--gray); line-height: 1.5; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.sku-price { font-size: 14px; font-weight: 600; color: var(--sage-dark); }

/* ═══════════════════════════════════════════════════════════════
   NEDEN ORIES
═══════════════════════════════════════════════════════════════ */
#neden { padding: 120px 0; background: var(--ivory); }
.neden-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 100px; align-items: start; }
.neden-left { position: sticky; top: 100px; }
.neden-left .section-title { margin-bottom: 20px; }
.neden-left p { font-size: 14px; color: var(--gray); line-height: 1.7; }
.neden-items { display: flex; flex-direction: column; }
.neden-item { display: grid; grid-template-columns: 64px 1fr; gap: 28px; align-items: start; padding: 40px 0; border-bottom: 1px solid rgba(141,166,138,0.18); }
.neden-item:first-child { border-top: 1px solid rgba(141,166,138,0.18); }
.neden-number { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: var(--sage); line-height: 1; opacity: 0.5; }
.neden-content h3 { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; margin-top: 8px; letter-spacing: 0.02em; }
.neden-content p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   SERTİFİKALAR
═══════════════════════════════════════════════════════════════ */
#sertifikalar { padding: 100px 0; background: var(--dark-bg); }
#sertifikalar .section-label { color: var(--sage); }
#sertifikalar .section-label::before { background: var(--sage); }
#sertifikalar .section-title { color: var(--white); }
.cert-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 2px; margin-top: 56px; }
.cert-card { background: var(--dark-card); padding: 36px 20px; text-align: center; border: 1px solid rgba(255,255,255,0.04); transition: border-color 0.25s, background 0.25s; }
.cert-card:hover { border-color: rgba(141,166,138,0.3); background: rgba(141,166,138,0.06); }

/* ═══════════════════════════════════════════════════════════════
   ECZACI EĞİTİM PORTALI
═══════════════════════════════════════════════════════════════ */
#eczaci-portal { padding: 140px 0; background: var(--white); }
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.edu-desc { font-size: 15px; line-height: 1.8; color: var(--gray); margin: 20px 0 32px; max-width: 460px; }
.edu-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.edu-dealer-note { font-size: 13px; color: var(--gray); }
.edu-dealer-note a { color: var(--sage-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.edu-panel { background: var(--ivory); border: 1px solid rgba(0,0,0,0.06); padding: 44px 40px; position: relative; }
.edu-panel-label { font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 26px; }
.edu-topic-list { list-style: none; display: grid; gap: 4px; }
.edu-topic-list li { display: flex; align-items: center; gap: 14px; padding: 16px 4px; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 13.5px; color: var(--charcoal); line-height: 1.5; }
.edu-topic-list li:last-child { border-bottom: none; }
.edu-topic-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 6px; background: var(--sage-dark); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 12px; }

@media (max-width: 800px) {
  .edu-grid { grid-template-columns: 1fr; gap: 40px; }
  .edu-panel { padding: 28px; }
}
.cert-icon { width: 48px; height: 48px; margin: 0 auto 16px; border: 1.5px solid rgba(141,166,138,0.35); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.cert-name { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 6px; }
.cert-desc { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.4; }

/* ═══════════════════════════════════════════════════════════════
   UZMANLAR
═══════════════════════════════════════════════════════════════ */
#uzmanlar { padding: 120px 0; background: var(--ivory); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, 200px); justify-content: center; gap: 28px; margin-top: 60px; }
.team-card { position: relative; }
.team-photo { aspect-ratio: 3/4; position: relative; overflow: hidden; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; }
.team-card:nth-child(3n+1) .team-photo { background: #D4DDD2; }
.team-card:nth-child(3n+2) .team-photo { background: #DDD4C8; }
.team-card:nth-child(3n+3) .team-photo { background: #D2D9D1; }
.team-photo-initial { font-family: 'Cormorant Garamond', serif; font-size: 72px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.team-photo::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 12px); }
.team-card-accent { position: absolute; top: 0; right: 0; width: 3px; height: 60px; }
.team-card:nth-child(3n+1) .team-card-accent { background: var(--sage); }
.team-card:nth-child(3n+2) .team-card-accent { background: var(--clay); }
.team-card:nth-child(3n+3) .team-card-accent { background: var(--sage-dark); }
.team-title { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 6px; }
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: var(--charcoal); margin-bottom: 8px; }
.team-bio { font-size: 13px; color: var(--gray); line-height: 1.6; }

.uzman-join { margin-top: 64px; padding: 40px 48px; background: rgba(141,166,138,0.09); border: 1.5px solid var(--sage); border-radius: 4px; box-shadow: 0 12px 32px rgba(92,122,88,0.08); display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.uzman-join h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; color: var(--charcoal); margin-bottom: 8px; }
.uzman-join p { font-size: 13.5px; color: var(--gray); line-height: 1.6; max-width: 460px; }
.uzman-join .btn { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════════
   LOKASYON
═══════════════════════════════════════════════════════════════ */
#lokasyon { padding: 120px 0; background: var(--white); }
.lokasyon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.location-cards { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.location-card { padding: 28px 32px; border: 1px solid rgba(141,166,138,0.2); display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start; background: var(--ivory); }
.location-flag { font-size: 28px; line-height: 1; margin-top: 2px; }
.location-card h3 { font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 6px; }
.location-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.location-card-tag { display: inline-block; margin-top: 10px; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-dark); border-bottom: 1px solid var(--sage); padding-bottom: 1px; }
.route-map { position: relative; height: 100%; min-height: 440px; background: #E8EDEA; overflow: hidden; display: flex; align-items: center; justify-content: space-between; padding: 0 15%; }
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(141,166,138,0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(141,166,138,0.15) 1px, transparent 1px); background-size: 40px 40px; }
.map-label { position: absolute; top: 20px; left: 24px; font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-dark); opacity: 0.6; }
.map-dot-circle { width: 14px; height: 14px; background: var(--sage-dark); border-radius: 50%; box-shadow: 0 0 0 0 rgba(92,122,88,0.4); animation: pulse 2.5s infinite; }
.map-dot-circle.clay { background: var(--clay); box-shadow: 0 0 0 0 rgba(196,168,130,0.4); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(92,122,88,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(92,122,88,0); }
  100% { box-shadow: 0 0 0 0 rgba(92,122,88,0); }
}
.route-line { position: absolute; top: 50%; left: 15%; right: 15%; height: 0; border-top: 1.5px dashed rgba(92,122,88,0.35); transform: translateY(-50%); z-index: 1; }
.route-line-plane { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(90deg); font-size: 18px; background: #E8EDEA; padding: 0 10px; display: inline-block; }
.route-stop { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px; background: #E8EDEA; padding: 10px; }
.route-stop-flag { font-size: 34px; line-height: 1; }
.route-stop-city { font-family: 'Cormorant Garamond', serif; font-size: 21px; font-weight: 500; color: var(--charcoal); }
.route-stop-tag { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage-dark); }

/* ═══════════════════════════════════════════════════════════════
   İLETİŞİM
═══════════════════════════════════════════════════════════════ */
#iletisim { padding: 120px 0; background: var(--ivory); border-top: 1px solid rgba(141,166,138,0.15); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info { padding-top: 8px; }
.contact-detail { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.contact-item h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: 6px; }
.contact-item p, .contact-item a { font-size: 15px; color: var(--charcoal); line-height: 1.5; }
.contact-item a:hover { color: var(--sage-dark); }
.contact-item-row { display: flex; align-items: center; gap: 10px; }
.contact-item-row svg { flex-shrink: 0; }
.contact-social { margin-top: 36px; display: flex; gap: 12px; }
.social-icon { width: 40px; height: 40px; border: 1.5px solid rgba(141,166,138,0.3); display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gray); transition: border-color 0.2s, color 0.2s; }
.social-icon:hover { border-color: var(--sage-dark); color: var(--sage-dark); }
.contact-form { background: var(--white); padding: 48px; border: 1px solid rgba(141,166,138,0.15); }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 400; margin-bottom: 32px; color: var(--charcoal); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; background: var(--ivory); border: 1.5px solid rgba(141,166,138,0.2); font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--charcoal); outline: none; transition: border-color 0.2s; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%236B6B6B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; }
.form-submit { width: 100%; margin-top: 8px; font-size: 12px; padding: 16px; }
.form-success { display: none; padding: 20px 24px; background: rgba(141,166,138,0.1); border: 1px solid rgba(141,166,138,0.3); color: var(--sage-dark); font-size: 14px; margin-top: 16px; text-align: center; }
.form-success.show { display: block; }

/* ═══════════════════════════════════════════════════════════════
   BLOG
═══════════════════════════════════════════════════════════════ */
#blog { padding: 120px 0; background: var(--white); }
.blog-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 48px; }
.blog-filters { display: flex; gap: 0; margin-bottom: 52px; border-bottom: 1px solid rgba(141,166,138,0.18); overflow-x: auto; scrollbar-width: none; }
.blog-filters::-webkit-scrollbar { display: none; }
.blog-filter-btn { background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -1px; padding: 12px 22px; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); cursor: pointer; white-space: nowrap; transition: color 0.2s, border-color 0.2s; }
.blog-filter-btn:hover { color: var(--charcoal); }
.blog-filter-btn.active { color: var(--sage-dark); border-bottom-color: var(--sage-dark); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog-card { display: flex; flex-direction: column; border: 1px solid rgba(141,166,138,0.14); background: var(--ivory); transition: border-color 0.25s, box-shadow 0.25s; }
.blog-card:hover { border-color: rgba(141,166,138,0.4); box-shadow: 0 4px 24px rgba(92,122,88,0.08); }
.blog-card[hidden] { display: none; }
.blog-card-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.blog-card:nth-child(1) .blog-card-thumb { background: #DDE5DA; }
.blog-card:nth-child(2) .blog-card-thumb { background: #E5DDD4; }
.blog-card:nth-child(3) .blog-card-thumb { background: #DAE3D9; }
.blog-card:nth-child(4) .blog-card-thumb { background: #E3DDD7; }
.blog-card:nth-child(5) .blog-card-thumb { background: #D9E2D8; }
.blog-card:nth-child(6) .blog-card-thumb { background: #E1DBD4; }
.blog-card:nth-child(7) .blog-card-thumb { background: #DBE4DA; }
.blog-card:nth-child(8) .blog-card-thumb { background: #E4DDD7; }
.blog-card:nth-child(9) .blog-card-thumb { background: #D8E1D7; }
.blog-card-thumb-icon { font-size: 36px; opacity: 0.35; transition: transform 0.4s; }
.blog-card:hover .blog-card-thumb-icon { transform: scale(1.12); }
.blog-card-thumb-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-thumb-img { transform: scale(1.05); }
.blog-card-thumb-label { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 10px; background: var(--white); color: var(--sage-dark); }
.blog-card-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-card-date { font-size: 11px; color: var(--gray); letter-spacing: 0.04em; }
.blog-card-read { font-size: 11px; color: rgba(141,166,138,0.8); letter-spacing: 0.04em; }
.blog-card-read::before { content: '·'; margin-right: 12px; color: rgba(141,166,138,0.4); }
.blog-card-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 400; color: var(--charcoal); line-height: 1.3; margin-bottom: 10px; }
.blog-card-excerpt { font-size: 13px; color: var(--gray); line-height: 1.65; flex: 1; margin-bottom: 20px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(141,166,138,0.14); }
.blog-card-author { font-size: 11px; font-weight: 500; color: var(--charcoal); letter-spacing: 0.04em; }
.blog-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage-dark); transition: gap 0.2s; }
.blog-card:hover .blog-card-link { gap: 10px; }
.blog-card-link svg { width: 12px; height: 12px; stroke: currentColor; fill: none; stroke-width: 2; }
.blog-card.featured { grid-column: span 2; flex-direction: row; }
.blog-card.featured .blog-card-thumb { aspect-ratio: auto; min-height: 100%; width: 44%; flex-shrink: 0; }
.blog-card.featured .blog-card-title { font-size: 26px; }
.blog-card.featured .blog-card-excerpt { font-size: 14px; }
.blog-empty { display: none; grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: var(--gray); font-size: 15px; }
.blog-empty.show { display: block; }
.blog-index-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.blog-count { font-size: 12px; color: var(--gray); letter-spacing: 0.06em; }
.blog-count span { color: var(--charcoal); font-weight: 600; }

/* ── Article page ───────────────────────────────────────────── */
.article-layout { display: grid; grid-template-columns: 1fr 300px; gap: 80px; padding: 80px 0 120px; }
.article-header { margin-bottom: 48px; }
.article-cat { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage-dark); background: rgba(141,166,138,0.1); padding: 6px 12px; margin-bottom: 20px; }
.article-title { font-size: clamp(32px, 4vw, 52px); font-weight: 300; line-height: 1.15; margin-bottom: 20px; }
.article-meta { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-top: 1px solid rgba(141,166,138,0.15); border-bottom: 1px solid rgba(141,166,138,0.15); margin-bottom: 48px; }
.article-meta-author { font-size: 13px; font-weight: 500; color: var(--charcoal); }
.article-meta-date, .article-meta-read { font-size: 12px; color: var(--gray); }
.article-meta-sep { color: rgba(141,166,138,0.4); }
.article-body { font-size: 16px; line-height: 1.85; color: var(--charcoal); }
.article-body h2 { font-size: 28px; font-weight: 400; margin: 48px 0 16px; color: var(--charcoal); }
.article-body h3 { font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600; margin: 32px 0 12px; color: var(--charcoal); }
.article-body p { margin-bottom: 20px; color: var(--gray); }
.article-body strong { color: var(--charcoal); font-weight: 600; }
.article-body blockquote { border-left: 3px solid var(--sage); padding: 16px 24px; margin: 32px 0; background: rgba(141,166,138,0.05); }
.article-body blockquote p { margin: 0; font-style: italic; color: var(--charcoal); }
.article-sidebar { position: sticky; top: 100px; }
.sidebar-widget { padding: 24px; border: 1px solid rgba(141,166,138,0.15); background: var(--ivory); margin-bottom: 24px; }
.sidebar-widget h4 { font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); margin-bottom: 16px; }
.sidebar-toc-list { list-style: none; }
.sidebar-toc-list li { padding: 6px 0; border-bottom: 1px solid rgba(141,166,138,0.1); }
.sidebar-toc-list li:last-child { border: none; }
.sidebar-toc-list a { font-size: 13px; color: var(--gray); transition: color 0.2s; }
.sidebar-toc-list a:hover { color: var(--sage-dark); }
.sidebar-related-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.sidebar-related-item a { font-size: 13px; color: var(--charcoal); line-height: 1.4; transition: color 0.2s; }
.sidebar-related-item a:hover { color: var(--sage-dark); }
.sidebar-related-item span { display: block; font-size: 11px; color: var(--gray); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════════════ */
.cta-band { padding: 100px 0; background: var(--charcoal); text-align: center; }
.cta-band h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 300; color: var(--white); margin-bottom: 16px; }
.cta-band h2 em { font-style: italic; color: var(--clay); }
.cta-band p { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 36px; }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
footer { background: var(--charcoal); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand-logo { display: block; margin-bottom: 16px; }
.footer-brand-logo img { height: 52px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; }
.footer-tagline { margin-top: 16px; display: inline-block; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); border-top: 1px solid rgba(196,168,130,0.3); padding-top: 12px; }
.footer-col h5 { font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-email { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 8px; display: block; }
.footer-contact-email:hover { color: var(--sage); }
.footer-contact-loc { font-size: 12px; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-socials a:hover { color: var(--sage); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; padding: 60px 0 40px; }
  .hero-right { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .neden-grid, .lokasyon-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { height: 280px; }
  .neden-left { position: static; }
  .cert-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card.featured { grid-column: span 2; flex-direction: column; }
  .blog-card.featured .blog-card-thumb { width: 100%; aspect-ratio: 16/9; min-height: auto; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

@media (max-width: 700px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .hero-title { font-size: 36px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .value-cards { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card.featured { grid-column: span 1; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  #hakkimizda, #urunler, #neden, #sertifikalar, #eczaci-portal,
  #uzmanlar, #lokasyon, #iletisim, #blog { padding: 80px 0; }
}

