/* ============================================================
   HAKKIMIZDA CSS  --  hakkimizda.css
   ============================================================ */

/* -- Section helpers ---------------------------------------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(0,102,204,.08);
  border: 1px solid rgba(0,102,204,.18);
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.2;
}
.section-header p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

/* -- HERO --------------------------------------------------- */
.hk-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #071626 0%, #002a6a 55%, #003d99 100%);
  padding: 96px 0 80px;
  color: #fff;
}
.hk-hero::before {
  content: \'\';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 40%, rgba(0,196,224,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hk-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}
.hk-breadcrumb {
  color: rgba(255,255,255,.55);
  font-size: 0.82rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hk-breadcrumb a { color: rgba(255,255,255,.8); text-decoration: none; }
.hk-breadcrumb a:hover { color: #fff; }
.hk-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0,196,224,.12);
  border: 1px solid rgba(0,196,224,.3);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #00d4f0;
  margin-bottom: 20px;
}
.hk-kicker i { font-size: 0.9rem; }
.hk-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.hk-hero h1 span {
  background: linear-gradient(90deg, #00c4e0, #4db8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hk-hero-sub {
  font-size: 1.05rem;
  opacity: .82;
  max-width: 520px;
  line-height: 1.7;
  margin: 0 0 32px;
}
.hk-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hk-btn-primary {
  background: var(--brand);
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.hk-btn-primary:hover { background: var(--brand-dark); transform: translateY(-1px); }
.hk-btn-outline {
  background: transparent;
  color: rgba(255,255,255,.9);
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,.35);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.hk-btn-outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); }
.hk-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 200px;
  align-items: flex-end;
}
.hk-hero-stat {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  text-align: center;
  min-width: 160px;
}
.hk-hero-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #00d4f0;
  line-height: 1;
  margin-bottom: 4px;
}
.hk-hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
}
@media (max-width: 768px) {
  .hk-hero-inner { grid-template-columns: 1fr; }
  .hk-hero-visual { flex-direction: row; align-items: stretch; justify-content: flex-start; }
  .hk-hero-stat { min-width: 120px; padding: 14px 16px; flex: 1; }
  .hk-hero-stat strong { font-size: 1.5rem; }
}

/* -- STORY -------------------------------------------------- */
.hk-story {
  padding: 88px 0;
  background: var(--surface);
}
.hk-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hk-story-text .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.hk-story-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 20px;
  line-height: 1.2;
}
.hk-story-text p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.hk-story-text p:last-of-type { margin-bottom: 24px; }
.hk-story-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hk-story-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.hk-story-img::after {
  content: \'\';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,102,204,.08), transparent 60%);
  pointer-events: none;
}
.hk-story-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,.95);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  z-index: 1;
}
.hk-story-badge i { font-size: 1.5rem; color: var(--brand); }
.hk-story-badge-text strong { display: block; font-size: 1.1rem; font-weight: 800; color: var(--text); line-height: 1; }
.hk-story-badge-text span { font-size: 0.78rem; color: var(--muted); }
@media (max-width: 800px) {
  .hk-story-grid { grid-template-columns: 1fr; gap: 36px; }
  .hk-story-img { display: none; }
}

/* -- MISYON / VIZYON / DEGERLER ---------------------------- */
.hk-mvd {
  background: var(--bg);
  padding: 88px 0;
}
.hk-mvd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 840px) { .hk-mvd-grid { grid-template-columns: 1fr; } }
.hk-mvd-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: box-shadow .22s, transform .18s;
}
.hk-mvd-card::before {
  content: \'\';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 3px 3px 0 0;
}
.hk-mvd-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.hk-mvd-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,102,204,.12), rgba(0,196,224,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--brand);
  margin-bottom: 22px;
}
.hk-mvd-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px;
}
.hk-mvd-card p {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

/* -- DEGERLER ---------------------------------------------- */
.hk-values {
  background: var(--surface);
  padding: 88px 0;
}
.hk-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 800px) { .hk-values-grid { grid-template-columns: repeat(4, 1fr); } }
.hk-val-card {
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: box-shadow .22s, transform .18s;
}
.hk-val-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.hk-val-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(0,102,204,.25);
}
.hk-val-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 8px;
}
.hk-val-card p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* -- STATS DARK -------------------------------------------- */
.hk-stats {
  background: linear-gradient(135deg, #071626 0%, #002a6a 60%, #003d99 100%);
  padding: 88px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hk-stats::before {
  content: \'\';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(0,196,224,.10) 0%, transparent 70%);
  pointer-events: none;
}
.hk-stats .section-header { position: relative; }
.hk-stats .section-header h2 { color: #fff; }
.hk-stats .section-header p { color: rgba(255,255,255,.65); }
.hk-stats .section-kicker {
  color: #00d4f0;
  background: rgba(0,196,224,.12);
  border-color: rgba(0,196,224,.25);
}
.hk-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
}
@media (min-width: 640px) { .hk-stats-grid { grid-template-columns: repeat(4, 1fr); } }
.hk-stat-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  backdrop-filter: blur(6px);
  transition: background .2s, transform .18s;
}
.hk-stat-box:hover { background: rgba(255,255,255,.10); transform: translateY(-3px); }
.hk-stat-box strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: #00d4f0;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hk-stat-box span {
  font-size: 0.82rem;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}

/* -- SERTIFIKALAR ------------------------------------------ */
.hk-certs {
  background: var(--bg);
  padding: 80px 0;
}
.hk-certs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 8px;
}
.hk-cert {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: box-shadow .2s, transform .15s;
}
.hk-cert:hover { box-shadow: 0 4px 16px rgba(0,0,0,.09); transform: translateY(-2px); }
.hk-cert i { color: var(--brand); font-size: 1.2rem; }

/* -- REFERANSLAR ------------------------------------------- */
.hk-refs {
  background: var(--surface);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.hk-refs-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
}
.hk-ref-logo {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 80px;
  transition: box-shadow .2s, transform .15s;
  filter: grayscale(40%);
}
.hk-ref-logo:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); filter: grayscale(0); }
.hk-ref-logo img { max-height: 48px; max-width: 130px; object-fit: contain; }

/* -- CTA ---------------------------------------------------- */
.hk-cta {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  padding: 80px 0;
  color: #fff;
  text-align: center;
}
.hk-cta h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 800;
  margin: 0 0 16px;
}
.hk-cta p {
  opacity: .82;
  font-size: 1rem;
  margin: 0 auto 32px;
  max-width: 480px;
  line-height: 1.7;
}
.hk-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #fff;
  color: var(--brand-dark);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-white:hover { background: #e8f0ff; transform: translateY(-1px); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.5);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }
