/* ============================================
   ALKA LABORATUVARLARI - İÇ SAYFA ORTAK CSS
   Bootstrap 5 + tema1.css üzerine kuruludur.
   Yükleme sırası: bootstrap.min.css -> tema1.css -> ic-sayfa.css
   ============================================ */

/* ---- Bootstrap uyum düzeltmeleri ---- */
ul { padding-left: 0; margin-bottom: 0; }
h1, h2, h3, h4, h5, h6 { margin-top: 0; }
.form-check { padding-left: 0; }
.form-check .form-check-input { margin-left: 0; }

/* Bootstrap Icons döndürme animasyonu (form gönderimi vb.) */
@keyframes icSpin { to { transform: rotate(360deg); } }
.bi-spin { display: inline-block; animation: icSpin 1s linear infinite; }

/* ============================================
   SAYFA HERO (Başlık + Breadcrumb)
   ============================================ */
.page-hero {
  position: relative;
  background:
    linear-gradient(120deg, rgba(0,42,70,.93) 0%, rgba(0,75,130,.85) 55%, rgba(23,84,50,.82) 100%);
  color: var(--white);
  padding: 72px 0 60px;
  overflow: hidden;
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}

.ph-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .84rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 16px;
}

.ph-breadcrumb a {
  color: rgba(255,255,255,.72);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--trans);
}
.ph-breadcrumb a:hover { color: var(--white); }
.ph-breadcrumb i { font-size: .68rem; }
.ph-breadcrumb .current { color: #a8e6cf; font-weight: 600; }

.page-hero h1 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.page-hero h1 strong { color: #a8e6cf; }

.ph-desc {
  max-width: 640px;
  color: rgba(255,255,255,.85);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   GENEL BÖLÜM YAPISI
   ============================================ */
.ic-section { padding: 80px 0; }
.ic-section--gray { background: var(--gray-100); }
.ic-section--sm { padding: 56px 0; }

/* ============================================
   KURUMSAL SAYFASI
   ============================================ */
.about-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-media img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }

.exp-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--primary);
  color: var(--white);
  border-radius: 14px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.exp-badge b { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.exp-badge b sup { font-size: 1rem; color: #a8e6cf; }
.exp-badge small {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.8);
  margin-top: 4px;
  font-weight: 600;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: .95rem;
  color: var(--text);
}
.check-list li i { color: var(--green-l); font-size: 1.05rem; flex-shrink: 0; margin-top: 2px; }

/* Misyon & Vizyon kartları */
.mv-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--primary);
  border-radius: 16px;
  padding: 36px 32px;
  height: 100%;
  transition: transform var(--trans), box-shadow var(--trans);
}
.mv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.mv-card--vizyon { border-top-color: var(--green-l); }

.mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0,95,163,.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.mv-card--vizyon .mv-icon { background: rgba(76,175,80,.12); color: var(--green); }

.mv-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.mv-card p { font-size: .93rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 0; }

/* Değerlerimiz */
.value-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 22px;
  text-align: center;
  height: 100%;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.value-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(0,95,163,.25); }

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(0,95,163,.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--trans);
}
.value-item:hover .value-icon { background: var(--primary); color: var(--white); }

.value-item h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.value-item p { font-size: .85rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 0; }

/* İstatistik bandı "+" işareti */
.stat-item .stat-plus { font-size: 2.6rem; font-weight: 800; }

/* ============================================
   CTA BANDI
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--primary-d) 0%, var(--primary) 60%, #1a6636 100%);
  border-radius: 20px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-band h2 { color: var(--white); font-size: 1.5rem; margin-bottom: 8px; }
.cta-band h2 strong { color: #a8e6cf; }
.cta-band p { color: rgba(255,255,255,.82); font-size: .95rem; margin-bottom: 0; max-width: 560px; }
.cta-band .btn-white { position: relative; z-index: 2; }

/* ============================================
   SIDEBAR (Detay Sayfaları)
   ============================================ */
.side-widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 26px 24px;
  margin-bottom: 24px;
}

.side-widget > h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--gray-200);
  position: relative;
}
.side-widget > h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 48px;
  height: 2px;
  background: var(--primary);
}

.side-nav li { margin-bottom: 4px; }
.side-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .88rem;
  color: var(--text);
  transition: all var(--trans);
}
.side-nav li a i { font-size: .72rem; color: var(--gray-400); transition: all var(--trans); }
.side-nav li a:hover,
.side-nav li.active a {
  background: rgba(0,95,163,.07);
  color: var(--primary);
  font-weight: 600;
}
.side-nav li a:hover i,
.side-nav li.active a i { color: var(--primary); transform: translateX(3px); }

/* Sidebar CTA kutusu */
.side-cta {
  background: linear-gradient(145deg, #012d5e 0%, var(--primary) 100%);
  border: none;
  text-align: center;
  color: var(--white);
}
.side-cta i { font-size: 2.2rem; color: #a8e6cf; display: block; margin-bottom: 14px; }
.side-cta h3 { color: var(--white); font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.side-cta p { color: rgba(255,255,255,.75); font-size: .85rem; line-height: 1.7; margin-bottom: 18px; }

/* Sidebar mini haber */
.side-post {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.side-post:last-child { margin-bottom: 0; }
.side-post img {
  width: 74px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.side-post h4 { font-size: .84rem; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.side-post h4 a { color: var(--dark); transition: color var(--trans); }
.side-post h4 a:hover { color: var(--primary); }
.side-post span { font-size: .72rem; color: var(--gray-400); display: flex; align-items: center; gap: 5px; }
.side-post span i { color: var(--primary); font-size: .72rem; }

/* Sidebar iletişim mini */
.side-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .86rem;
  color: var(--gray-600);
  margin-bottom: 12px;
  line-height: 1.5;
}
.side-contact li:last-child { margin-bottom: 0; }
.side-contact li i { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.side-contact li a { color: var(--primary); font-weight: 600; }
.side-contact li a:hover { text-decoration: underline; }

/* ============================================
   DETAY İÇERİĞİ (Hizmet & Haber)
   ============================================ */
.detail-img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}
.detail-img img { width: 100%; max-height: 420px; object-fit: cover; }

.detail-content h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark);
  margin: 34px 0 14px;
}
.detail-content h2:first-child { margin-top: 0; }
.detail-content h2 strong { color: var(--primary); }
.detail-content h3 { font-size: 1.12rem; font-weight: 700; color: var(--dark); margin: 26px 0 10px; }

.detail-content p {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 16px;
}

.detail-content .check-list { margin: 18px 0 24px; }

.detail-content blockquote {
  border-left: 4px solid var(--primary);
  background: var(--gray-100);
  border-radius: 0 12px 12px 0;
  padding: 20px 26px;
  margin: 26px 0;
  font-style: italic;
  color: var(--gray-600);
  font-size: .97rem;
  line-height: 1.8;
}

/* Süreç adımları */
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 24px 20px;
  height: 100%;
  position: relative;
  transition: transform var(--trans), box-shadow var(--trans);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step-card h3 { font-size: .95rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.step-card p { font-size: .82rem; color: var(--gray-600); line-height: 1.65; margin-bottom: 0; }

/* Parametre tablosu */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  margin: 20px 0 28px;
}
.table-wrap table { margin-bottom: 0; }
.table-wrap thead th {
  background: var(--primary);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  padding: 13px 18px;
  white-space: nowrap;
  border: none;
}
.table-wrap tbody td {
  font-size: .87rem;
  color: var(--text);
  padding: 12px 18px;
  border-color: var(--gray-200);
  vertical-align: middle;
}
.table-wrap tbody tr:nth-child(even) { background: var(--gray-100); }

/* ============================================
   HABER DETAY
   ============================================ */
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: .85rem;
  color: var(--gray-600);
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-meta i { color: var(--primary); }

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-200);
}

.article-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.article-tags a {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: .76rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  transition: all var(--trans);
}
.article-tags a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

.share-box { display: flex; align-items: center; gap: 8px; }
.share-box > span { font-size: .82rem; font-weight: 700; color: var(--dark); margin-right: 4px; }
.share-box a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: .95rem;
  transition: all var(--trans);
}
.share-box a:hover { background: var(--primary); border-color: var(--primary); color: var(--white); transform: translateY(-2px); }

/* ============================================
   SAYFALAMA
   ============================================ */
.alka-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 52px;
}
.alka-pagination a,
.alka-pagination span {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
  transition: all var(--trans);
}
.alka-pagination a:hover { border-color: var(--primary); color: var(--primary); }
.alka-pagination .active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.alka-pagination .disabled { opacity: .45; pointer-events: none; }

/* ============================================
   BELGELERİMİZ
   ============================================ */
.belge-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.belge-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--green-l));
  transform: scaleX(0);
  transition: transform var(--trans);
}
.belge-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(0,95,163,.25); }
.belge-card:hover::after { transform: scaleX(1); }

.belge-logo {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.belge-logo img { max-height: 92px; max-width: 78%; width: auto; object-fit: contain; }
.belge-logo .belge-icon {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-d) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.belge-card h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.belge-card p { font-size: .85rem; color: var(--gray-600); line-height: 1.7; flex: 1; margin-bottom: 16px; }

.belge-meta {
  display: inline-block;
  align-self: center;
  font-size: .74rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(0,95,163,.08);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.belge-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: center;
  padding: 10px 22px;
  border: 2px solid var(--primary);
  border-radius: 8px;
  color: var(--primary);
  font-size: .85rem;
  font-weight: 700;
  transition: all var(--trans);
}
.belge-btn:hover { background: var(--primary); color: var(--white); }

/* Bilgi bandı (akreditasyon kapsamı) */
.info-band {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
  padding: 26px 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.info-band > i { font-size: 1.8rem; color: var(--primary); flex-shrink: 0; }
.info-band h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.info-band p { font-size: .88rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 0; }

/* ============================================
   KARİYER SAYFASI
   ============================================ */
.job-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.job-card + .job-card { margin-top: 16px; }
.job-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(0,95,163,.25);
}

.job-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(0,95,163,.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.job-card__body { flex: 1; min-width: 220px; }
.job-card__body h3 { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.job-card__body p { font-size: .86rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 10px; }

.job-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.job-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: .74rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.job-tags span i { color: var(--primary); font-size: .74rem; }

.job-card__apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 2px solid var(--primary);
  border-radius: 8px;
  color: var(--primary);
  font-size: .85rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--trans);
}
.job-card__apply:hover { background: var(--primary); color: var(--white); }

/* Başvuru formu — dosya yükleme alanı */
.form-group input[type="file"] {
  padding: 10px 12px;
  cursor: pointer;
}
.form-group input[type="file"]::file-selector-button {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 7px 14px;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 600;
  margin-right: 12px;
  cursor: pointer;
  transition: background var(--trans);
}
.form-group input[type="file"]::file-selector-button:hover { background: var(--primary-d); }
.form-hint { display: block; font-size: .76rem; color: var(--gray-400); margin-top: 6px; }

/* ============================================
   İLETİŞİM SAYFASI
   ============================================ */
.contact-quick {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  height: 100%;
  transition: transform var(--trans), box-shadow var(--trans);
}
.contact-quick:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.contact-quick .cq-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(0,95,163,.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.contact-quick h3 { font-size: .98rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.contact-quick p { font-size: .86rem; color: var(--gray-600); margin-bottom: 4px; line-height: 1.6; }
.contact-quick a { color: var(--primary); font-weight: 700; }
.contact-quick a:hover { text-decoration: underline; }

.map-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.map-frame iframe { width: 100%; height: 320px; border: 0; display: block; }
.map-frame figcaption {
  padding: 14px 20px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-frame figcaption i { color: var(--primary); }

/* ============================================
   GALERİ KÜÇÜK RESİMLERİ (detay sayfaları)
   ============================================ */
.urunProdSlide {
  border-radius: 8px;
  overflow: hidden;
}

.img-thumbnail {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 4px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.img-thumbnail:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
  .ic-section { padding: 64px 0; }
  .page-hero { padding: 56px 0 48px; }
  /* Mobilde sidebar içeriğin altına düşünce araya nefes payı bırak */
  .ic-section aside[class*="col-"] { margin-top: 8px; }
}

@media (max-width: 768px) {
  .ic-section { padding: 52px 0; }
  .cta-band { padding: 34px 28px; text-align: center; justify-content: center; }
  .article-footer { justify-content: center; text-align: center; }
  .detail-content h2 { font-size: 1.25rem; }
}

@media (max-width: 520px) {
  .page-hero { padding: 44px 0 40px; }
  .exp-badge { padding: 12px 16px; }
  .exp-badge b { font-size: 1.5rem; }
  .map-frame iframe { height: 260px; }
}
