/* ═══════════════════════════════════════════
   ECLIPTA — Pages: Hakkımızda & Hizmetler
   ═══════════════════════════════════════════ */

/* ── PAGE HERO (shared) ── */
.page-hero {
  background: var(--hero-grad);
  padding: 48px 20px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.05;
}
.page-hero h1 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

/* ── ABOUT PAGE ── */
.about-story {
  padding: 56px 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-story-text h2 {
  font-size: 24px;
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.about-story-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-logo-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}

/* Mission / Vision */
.about-mv {
  background: var(--surface-alt);
  padding: 56px 0;
  transition: background var(--transition);
}

.about-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-mv-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
}

.about-mv-card h3 {
  font-size: 18px;
  font-family: var(--font-display);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-mv-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Founder */
.about-founder {
  padding: 56px 0;
}

.founder-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: start;
  background: var(--surface);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.founder-photo {
  width: 240px;
  height: 240px;
  border-radius: 14px;
  object-fit: cover;
  border: 3px solid var(--border);
}

.founder-info h3 {
  font-size: 22px;
  font-family: var(--font-display);
  margin-bottom: 4px;
}

.founder-title {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 4px;
}

.founder-exp {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.founder-bio p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: #0A66C2;
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  transition: transform 0.2s;
}
.founder-linkedin:hover {
  transform: scale(1.04);
  color: #fff;
}

/* References placeholder */
.about-refs {
  background: var(--surface-alt);
  padding: 48px 0;
  text-align: center;
  transition: background var(--transition);
}
.about-refs-placeholder {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 16px;
}

/* ── SERVICES PAGE ── */
.svc-detail {
  padding: 56px 0;
}

/* Featured service detail */
.svc-featured-detail {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.svc-featured-detail h2 {
  font-size: 24px;
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.svc-featured-badge {
  display: inline-block;
  background: var(--warm);
  color: #fff;
  font-size: 10px;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 800;
  margin-bottom: 16px;
}

.svc-featured-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 640px;
}

/* Process timeline */
.svc-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.svc-process-step {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
}

.svc-process-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  margin: 0 auto 10px;
}

.svc-process-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.svc-process-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.svc-process-arrow {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 16px;
  z-index: 1;
}

/* Other services grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.svc-card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.svc-card-icon { font-size: 28px; margin-bottom: 10px; }

/* Dashboard CMS tarafından yayınlanan içerik blokları */
.managed-content-block { margin: 0 0 28px; }
.managed-content-block h2 { margin-bottom: 10px; }
.managed-content-block div { line-height: 1.8; white-space: normal; }
.managed-content-image { margin: 28px 0; }
.managed-content-image img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 12px; }
.managed-content-image figcaption { color: var(--text-muted); font-size: 12px; margin-top: 6px; }
.managed-content-links { display: flex; flex-direction: column; gap: 10px; }
.managed-content-links a { display: flex; flex-direction: column; gap: 3px; padding: 14px 18px; background: var(--surface-alt); border: 1px solid var(--border); border-radius: 10px; }
.managed-content-links span { color: var(--text-muted); font-size: 12px; }

.svc-card h3 {
  font-size: 17px;
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.svc-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.svc-card ul {
  list-style: none;
  margin-top: 12px;
}
.svc-card ul li {
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.svc-card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-mv-grid { grid-template-columns: 1fr; }
  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }
  .svc-process { grid-template-columns: repeat(2, 1fr); }
  .svc-process-arrow { display: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 26px; }
}
