/* ============================================
   EYE Taşımacılık - Sub-Page Shared CSS
   Page Banner + Breadcrumb + Inner Sections
   ============================================ */

/* ---- Page Banner ---- */
.page-banner {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--primary-light);
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-banner-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,7,24,0.92) 0%, rgba(14,7,24,0.78) 100%);
}
.page-banner .container {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dark);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--text-muted);
  transition: var(--transition);
}
.breadcrumb a:hover { color: var(--gold-text); }
.breadcrumb-sep { color: var(--text-dark); }
.breadcrumb-current { color: var(--gold-text); font-weight: 600; }
.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: var(--text-strong);
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-banner p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}
.page-banner-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 14px;
}

/* ---- Inner Page Layout ---- */
.inner-page { padding: var(--section-py) 0; }

/* Two-column content layout */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.content-grid.reverse { grid-template-columns: 420px 1fr; }
.content-grid.reverse .content-image { order: -1; }

.content-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 96px;
}
.content-image img { width: 100%; display: block; }

.content-body h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1.2;
  margin-bottom: 20px;
}
.content-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 12px;
  margin-top: 36px;
}
.content-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
}
.content-body ul {
  list-style: none;
  margin-bottom: 24px;
}
.content-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}
.content-body ul li:last-child { border-bottom: none; }
.content-body ul li::before {
  content: '';
  width: 18px; height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(226,169,79,0.15);
  border: 1.5px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23E2A94F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Info cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.info-card {
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}
.info-card:hover {
  border-color: var(--border-gold);
  background: var(--glass-hover);
  transform: translateY(-2px);
}
.info-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(226,169,79,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-text);
  margin-bottom: 12px;
}
.info-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 6px;
}
.info-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 32px;
  margin: 32px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 32px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent-gold);
  border: 3px solid var(--primary-light);
  box-shadow: 0 0 0 3px rgba(226,169,79,0.2);
}
.timeline-year {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-text);
  margin-bottom: 4px;
}
.timeline-item h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 6px;
}
.timeline-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ---- Full-width section alternating bg ---- */
.section-alt { background: var(--primary-mid); }
.section-light { background: var(--primary-light); }

/* Value cards */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--glass);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.value-card:hover::before { transform: scaleX(1); }
.value-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-card-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: rgba(226,169,79,0.1);
  border: 1px solid rgba(226,169,79,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-text);
  margin: 0 auto 20px;
  transition: var(--transition);
}
.value-card:hover .value-card-icon {
  background: rgba(226,169,79,0.2);
  border-color: var(--gold-text);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-strong);
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Career job cards */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.job-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  cursor: pointer;
}
.job-card:hover {
  border-color: var(--gold-text);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.job-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.job-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1.3;
}
.job-badge {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.job-badge.fulltime {
  background: rgba(226,169,79,0.15);
  color: var(--gold-text);
  border: 1px solid rgba(226,169,79,0.3);
}
.job-badge.parttime {
  background: rgba(157,122,220,0.15);
  color: #B99AE8;
  border: 1px solid rgba(157,122,220,0.3);
}
.job-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.job-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
}
.job-meta-item svg { color: var(--gold-text); }
.job-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.job-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}
.job-dept {
  font-size: 12px;
  color: var(--text-dark);
  font-weight: 500;
}
.job-apply {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-text);
  transition: var(--transition);
}
.job-apply:hover { gap: 9px; }

/* Career Application Form */
.apply-form-section {
  background: var(--primary-mid);
  padding: var(--section-py) 0;
}
.apply-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}
.apply-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-strong);
  margin-bottom: 8px;
}
.apply-form-wrap > p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text-strong);
  font-family: var(--font-main);
  transition: var(--transition);
  outline: none;
}
.form-input::placeholder { color: var(--text-dark); }
.form-input:focus {
  border-color: var(--gold-text);
  background: rgba(226,169,79,0.04);
}
.form-input.textarea { resize: vertical; min-height: 120px; }
.form-file-area {
  border: 2px dashed var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.form-file-area:hover { border-color: var(--gold-text); background: rgba(226,169,79,0.03); }
.form-file-area svg { color: var(--gold-text); margin-bottom: 8px; }
.form-file-area p { font-size: 13px; color: var(--text-muted); margin: 0; }
.form-file-area small { font-size: 11px; color: var(--text-dark); }

/* News grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover {
  border-color: var(--gold-text);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.news-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.news-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent-violet);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}
.news-card-body { padding: 24px; }
.news-date {
  font-size: 12px;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.news-date svg { color: var(--gold-text); }
.news-card-body h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1.35;
  margin-bottom: 12px;
}
.news-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-text);
  transition: var(--transition);
}
.news-read-more:hover { gap: 10px; }

/* Featured news */
.news-featured {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.news-card.featured .news-card-img { height: 340px; }
.news-card.featured .news-card-body h3 { font-size: 22px; }

/* News sidebar */
.news-sidebar-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition);
  cursor: pointer;
}
.news-sidebar-item:last-child { border-bottom: none; }
.news-sidebar-item:hover { padding-left: 6px; }
.news-sidebar-img {
  width: 80px; height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.news-sidebar-img img { width: 100%; height: 100%; object-fit: cover; }
.news-sidebar-body { flex: 1; }
.news-sidebar-body h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-sidebar-body small { font-size: 11px; color: var(--text-dark); }

/* Divider line */
.gold-divider {
  width: 60px; height: 3px;
  background: var(--accent-gold);
  border-radius: 2px;
  margin: 20px 0 28px;
}

/* CTA strip */
.cta-strip {
  background: linear-gradient(135deg, #4A1690 0%, var(--brand-violet) 55%, #1B0640 100%);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.07) 0%, transparent 60%);
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}
.cta-strip p {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-strip .btn-gold {
  font-size: 15px;
  padding: 16px 36px;
}

/* Responsive */
@media (max-width: 1024px) {
  .content-grid, .content-grid.reverse { grid-template-columns: 1fr; }
  .content-image { position: static; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-featured { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .info-cards { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .apply-form-wrap { padding: 32px 20px; }
}
