/* ===================================================
   ENM DIGITAL — Staj Süreci (Tam İzole Stil)
   =================================================== */

/* Ana kapsayıcı */
.staj-page * {
  box-sizing: border-box;
  font-family: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif !important;
  color: #000;
}

/* =============================
   HERO ALANI
   ============================= */
.staj-page .staj-hero {
  background: linear-gradient(135deg, #4fb8a9 0%, #5098d2 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.staj-page .staj-hero::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.15) 0%, transparent 60%);
  transform: rotate(15deg);
}
.staj-page .staj-hero h2 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 1;
  position: relative;
}
.staj-page .staj-hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

/* =============================
   KARTLAR (AŞAMALAR)
   ============================= */
.staj-page .staj-cards .card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: all 0.35s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}
.staj-page .staj-cards .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.staj-page .staj-cards .card-body {
  padding: 28px;
}
.staj-page .staj-cards .card i {
  transition: transform 0.3s ease;
}
.staj-page .staj-cards .card:hover i {
  transform: scale(1.15);
}
.staj-page .staj-cards h5 {
  font-weight: 700;
  color: #333;
}
.staj-page .staj-cards ul li {
  margin-bottom: 6px;
}

/* Aşamalar arası çizgi */
.staj-page .staj-cards .row.gy-4 {
  position: relative;
}
.staj-page .staj-cards .row.gy-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, #4fb8a9 0%, #5098d2 100%);
  opacity: 0.1;
  transform: translateX(-50%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .staj-page .staj-cards .row.gy-4::before { display: none; }
}

/* =============================
   FORM TASARIMI
   ============================= */
.staj-page .staj-form {
  background-color: #f8f9fa;
  padding: 80px 0;
}
.staj-page .staj-form form {
  border-radius: 20px;
  padding: 45px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
.staj-page .staj-form .form-label {
  font-weight: 600;
  color: #222;
}
.staj-page .staj-form .form-control {
  border-radius: 10px;
  border: 1.5px solid #e2e2e2;
  padding: 10px 14px;
  transition: all 0.25s ease;
}
.staj-page .staj-form .form-control:focus {
  border-color: #4fb8a9;
  box-shadow: 0 0 0 4px rgba(79,184,169,0.15);
}
.staj-page .staj-form button {
  border-radius: 50px;
  background-color: #4fb8a9;
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 12px 32px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(79,184,169,0.3);
}
.staj-page .staj-form button:hover {
  transform: translateY(-3px);
  background-color: #3aa392;
  box-shadow: 0 8px 24px rgba(79,184,169,0.4);
}
.staj-page .staj-form #success-message-text {
  display: inline-block !important;
  background-color: rgba(79,184,169,0.1);
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: 600;
  margin-left: 10px;
  color: #28a745;
}

/* =============================
   ALT METİN VE FOOTER
   ============================= */
.staj-page .alt-bilgi p {
  font-size: 0.95rem;
  color: #666;
}
.staj-page .alt-bilgi a {
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed #4fb8a9;
  transition: all 0.25s ease;
}
.staj-page .alt-bilgi a:hover {
  color: #3aa392;
  border-color: #3aa392;
}

/* =============================
   SCROLLBAR
   ============================= */
.staj-page::-webkit-scrollbar {
  width: 10px;
}
.staj-page::-webkit-scrollbar-thumb {
  background-color: #4fb8a9;
  border-radius: 8px;
}
.staj-page::-webkit-scrollbar-thumb:hover {
  background-color: #3aa392;
}
.staj-page::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* =============================
   MOBİL DÜZENLEMELER
   ============================= */
@media (max-width: 576px) {
  .staj-page .staj-hero h2 {
    font-size: 2rem;
  }
  .staj-page .staj-form form {
    padding: 25px;
  }
}
