/* =========================================================
   ElektroEnt Career Page Widget
   ========================================================= */

.ocp-wrap{
  --ee-blue-900:#243b77;
  --ee-blue-800:#2c4aa0;
  --ee-blue-700:#355fcb;
  --ee-blue-100:#eef3ff;
  --ee-border:#e6ecff;
  --ee-text:#0f172a;
  --ee-muted:#475569;
  --ee-white:#ffffff;

  --radius-xl:22px;
  --radius-lg:16px;
  --radius-md:12px;

  font-family: inherit;
  color: var(--ee-text);
}

/* Layout spacing */
.ocp-wrap .ocp-section{
  max-width: 980px;
  margin: 0 auto 22px auto;
  padding: 0 16px;
}
.ocp-wrap .ocp-hero{
  max-width: 980px;
  margin: 0 auto 22px auto;
  padding: 0 16px;
}

/* HERO */
.ocp-hero{
  position: relative;
}
.ocp-hero__grid{
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 22px;
  background: linear-gradient(135deg, var(--ee-blue-700), var(--ee-blue-900));
  border-radius: var(--radius-xl);
  padding: 30px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15,23,42,.10);
}

.ocp-hero__left{
  color: var(--ee-white);
  min-width: 0;
}

.ocp-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.92);
  margin-bottom: 10px;
}

.ocp-title{
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 8px 0;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ocp-desc{
  margin: 0 0 18px 0;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.55;
  max-width: 560px;
}

.ocp-hero__btns{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.ocp-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
  user-select: none;
  white-space: nowrap;
}

.ocp-btn--primary{
  background: var(--ee-white);
  color: var(--ee-blue-900);
  box-shadow: 0 10px 18px rgba(0,0,0,.10);
}
.ocp-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0,0,0,.14);
}

.ocp-btn--ghost{
  background: transparent;
  color: var(--ee-white);
  border: 1px solid rgba(255,255,255,.45);
}
.ocp-btn--ghost:hover{
  background: rgba(255,255,255,.10);
  transform: translateY(-1px);
}

/* Stats (hero altındaki küçük kutular) */
.ocp-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 6px;
}
.ocp-stat{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}
.ocp-stat__big{
  color: rgba(255,255,255,.98);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 3px;
}
.ocp-stat__small{
  color: rgba(255,255,255,.80);
  font-size: 12px;
  line-height: 1.4;
}

/* Hero image */
.ocp-hero__right{ min-width: 0; }
.ocp-hero__img{
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 210px;
}
.ocp-hero__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.ocp-hero__img--placeholder{
  color: rgba(255,255,255,.85);
  font-weight: 700;
}

/* Section headers */
.ocp-head{
  margin-bottom: 12px;
}
.ocp-head h3{
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.ocp-sub{
  margin: 6px 0 0 0;
  color: var(--ee-muted);
  font-size: 14px;
  line-height: 1.55;
}
.ocp-head__title{
  display:flex;
  align-items:center;
  gap:10px;
}
.ocp-tag{
  display:inline-flex;
  align-items:center;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  background: #dff6d7;
  color: #1a7f2e;
}

/* WHY cards */
.ocp-cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}
.ocp-card{
  background: var(--ee-white);
  border: 1px solid var(--ee-border);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: 0 10px 22px rgba(15,23,42,.06);
}
.ocp-card__icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--ee-blue-100);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 16px;
  margin-bottom: 10px;
}
.ocp-card__title{
  font-weight: 900;
  margin-bottom: 4px;
}
.ocp-card__desc{
  color: var(--ee-muted);
  font-size: 13px;
  line-height: 1.5;
}

/* PROCESS steps (görseldeki gibi kart + numara) */
.ocp-steps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
}
.ocp-step{
  background: var(--ee-white);
  border: 1px dashed #d5dcf6;
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: 0 10px 22px rgba(15,23,42,.05);
  position: relative;
}
.ocp-step__num{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #22c55e;
  color: #ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 10px;
}
.ocp-step__title{
  font-weight: 900;
  margin-bottom: 5px;
}
.ocp-step__desc{
  color: var(--ee-muted);
  font-size: 13px;
  line-height: 1.5;
}

/* OPEN POSITIONS */
.ocp-pos{
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.ocp-pos__item{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  background: var(--ee-white);
  border: 1px solid var(--ee-border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  box-shadow: 0 10px 22px rgba(15,23,42,.05);
  text-decoration: none !important;
  color: var(--ee-text);
  transition: transform .12s ease, box-shadow .12s ease;
}
.ocp-pos__item:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(15,23,42,.08);
}
.ocp-pos__title{
  font-weight: 900;
  margin-bottom: 6px;
}
.ocp-pos__meta{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--ee-muted);
  font-size: 12px;
}
.ocp-pos__meta i{
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #c7d2fe;
  display:inline-block;
  transform: translateY(6px);
}
.ocp-pos__right{
  background: var(--ee-blue-800);
  color: var(--ee-white);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 14px;
  border-radius: 10px;
}

/* FAQ accordion */
.ocp-faq{
  background: var(--ee-white);
  border: 1px solid var(--ee-border);
  border-radius: var(--radius-xl);
  padding: 10px;
  box-shadow: 0 10px 22px rgba(15,23,42,.05);
}
.ocp-faq__item + .ocp-faq__item{
  border-top: 1px solid #edf2ff;
}
.ocp-faq__q{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  background: transparent;
  border: 0;
  padding: 14px 10px;
  cursor: pointer;
  font-weight: 900;
  font-size: 14px;
  color: var(--ee-text);
}
.ocp-faq__icon{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--ee-blue-100);
  display:flex;
  align-items:center;
  justify-content:center;
  font-style: normal;
  color: var(--ee-blue-900);
}
.ocp-faq__a{
  padding: 0 10px 14px 10px;
}
.ocp-faq__aIn{
  color: var(--ee-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* CTA bottom bar */
.ocp-cta{
  max-width: 980px;
  margin: 0 auto 10px auto;
  padding: 0 16px;
  display:flex;
}
.ocp-cta > div{
  flex:1;
}
.ocp-cta{
  background: linear-gradient(135deg, var(--ee-blue-800), var(--ee-blue-900));
  border-radius: var(--radius-xl);
  padding: 22px 24px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 18px 40px rgba(15,23,42,.10);
  gap: 16px;
}
.ocp-cta__title{
  color: var(--ee-white);
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 4px;
}
.ocp-cta__desc{
  color: rgba(255,255,255,.86);
  font-size: 13px;
  line-height: 1.5;
}
.ocp-btn--cta{
  background: #1f8f2f;
  color: #ffffff;
  height: 44px;
  padding: 0 18px;
  box-shadow: 0 10px 18px rgba(0,0,0,.12);
}
.ocp-btn--cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0,0,0,.16);
}

/* Responsive */
@media (max-width: 900px){
  .ocp-hero__grid{ grid-template-columns: 1fr; }
  .ocp-hero__img{ min-height: 190px; }
  .ocp-stats{ grid-template-columns: 1fr; }
  .ocp-cards{ grid-template-columns: 1fr; }
  .ocp-steps{ grid-template-columns: 1fr; }
  .ocp-title{ font-size: 28px; }
  .ocp-cta{ flex-direction: column; align-items: flex-start; }
  .ocp-cta__right{ width: 100%; }
  .ocp-btn--cta{ width: 100%; }
}
/* =========================================================
   ElektroEnt FIX PATCH (Tema/Elementor override sorunları)
   Bunu mevcut CSS'in EN ALTINA ekle.
   ========================================================= */

.ocp-wrap,
.ocp-wrap *{
  box-sizing: border-box;
}

/* Elementor/theme global link-button stillerini kır */
.ocp-wrap a,
.ocp-wrap a:visited{
  color: inherit;
  text-decoration: none !important;
}
.ocp-wrap a:hover{ text-decoration: none !important; }

.ocp-wrap img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* HERO renkleri kesinleştir */
.ocp-wrap .ocp-hero__left{ color:#fff !important; }
.ocp-wrap .ocp-title{ color:#fff !important; }
.ocp-wrap .ocp-desc{ color:rgba(255,255,255,.88) !important; }
.ocp-wrap .ocp-badge{
  color: rgba(255,255,255,.95) !important;
  background: rgba(255,255,255,.16) !important;
  border-color: rgba(255,255,255,.22) !important;
}

/* HERO background (ElektroEnt) – tema gradient ezmesin */
.ocp-wrap .ocp-hero__grid{
  background: linear-gradient(180deg,#355bc4 0%, #2f4e95 45%, #243b77 100%) !important;
  border-radius: 22px !important;
}

/* Buton reset + kilitle */
.ocp-wrap .ocp-btn{
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  outline: 0;
  cursor: pointer;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  height: 42px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;

  font-weight: 800 !important;
  font-size: 14px !important;
  line-height: 1 !important;

  white-space: nowrap !important;
  text-decoration: none !important;
  transform: translateZ(0);
}

/* Primary */
.ocp-wrap .ocp-btn--primary{
  background: #ffffff !important;
  color: #243b77 !important;
  box-shadow: 0 10px 18px rgba(0,0,0,.10) !important;
}
.ocp-wrap .ocp-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(0,0,0,.14) !important;
}

/* Ghost */
.ocp-wrap .ocp-btn--ghost{
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,.55) !important;
}
.ocp-wrap .ocp-btn--ghost:hover{
  background: rgba(255,255,255,.12) !important;
}

/* CTA buton okunurluk (şu an yazı koyu kalmış) */
.ocp-wrap .ocp-btn--cta{
  background: #1f8f2f !important;
  color: #ffffff !important;
  height: 44px !important;
  padding: 0 18px !important;
  box-shadow: 0 10px 18px rgba(31,143,47,.22) !important;
}
.ocp-wrap .ocp-btn--cta:hover{
  background: #22a23a !important;
}

/* Stats kartlar theme padding/typography ezmesin */
.ocp-wrap .ocp-stat{
  background: rgba(255,255,255,.10) !important;
  border: 1px solid rgba(255,255,255,.18) !important;
}
.ocp-wrap .ocp-stat__big{ color: rgba(255,255,255,.98) !important; }
.ocp-wrap .ocp-stat__small{ color: rgba(255,255,255,.82) !important; }

/* WHY / cards */
.ocp-wrap .ocp-card{
  background:#fff !important;
  border: 1px solid #dfe7ff !important;
}
.ocp-wrap .ocp-card__icon{
  background:#eef3ff !important;
  border: 1px solid #e2e9ff !important;
}

/* PROCESS numara yeşil kalsın ve hizalı */
.ocp-wrap .ocp-step__num{
  background:#22a23a !important;
  color:#fff !important;
  line-height: 1 !important;
}

/* OPEN POSITIONS sağ buton mavi sabit */
.ocp-wrap .ocp-pos__right{
  background:#2f4e95 !important;
  color:#fff !important;
}
.ocp-wrap .ocp-pos__item:hover .ocp-pos__right{
  background:#243b77 !important;
}

/* =========================================================
   SSS (Accordion) – ikon kayma ve ortalanma sorunları FIX
   ========================================================= */

/* container */
.ocp-wrap .ocp-faq{
  background:#fff !important;
  border: 1px solid #dfe7ff !important;
  border-radius: 22px !important;
  padding: 12px !important;
}

/* her satır */
.ocp-wrap .ocp-faq__item{
  border-radius: 16px;
  overflow: hidden;
}

/* button sıfırla + layout */
.ocp-wrap .ocp-faq__q{
  appearance:none;
  -webkit-appearance:none;
  border: 1px solid #dfe7ff !important;
  background:#ffffff !important;

  width: 100% !important;
  display:flex !important;
  align-items:center !important;
  justify-content: space-between !important;

  padding: 18px 18px !important;
  border-radius: 999px !important;

  text-align: left !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  color: #0f172a !important;

  gap: 14px !important;
}

/* soru metni sola yaslansın, ortalanmasın */
.ocp-wrap .ocp-faq__q > span{
  flex: 1 1 auto !important;
  text-align: left !important;
}

/* + ikonu sağda sabit */
.ocp-wrap .ocp-faq__icon{
  width: 32px !important;
  height: 32px !important;
  border-radius: 999px !important;
  background:#eef3ff !important;
  border: 1px solid #e2e9ff !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  font-style: normal !important;
  font-weight: 900 !important;
  color:#243b77 !important;

  flex: 0 0 32px !important;
}

/* panel */
.ocp-wrap .ocp-faq__a{
  padding: 12px 18px 18px 18px !important;
}
.ocp-wrap .ocp-faq__aIn{
  color:#475569 !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
}

/* aradaki çizgileri kaldır (çünkü her item zaten border'lı) */
.ocp-wrap .ocp-faq__item + .ocp-faq__item{
  border-top: 0 !important;
  margin-top: 10px;
}

/* CTA bar renkleri garanti */
.ocp-wrap .ocp-cta{
  background: linear-gradient(180deg,#2f4e95 0%, #243b77 100%) !important;
  border-radius: 22px !important;
  box-shadow: 0 18px 40px rgba(36,59,119,.18) !important;
}

/* Responsive küçük düzeltme */
@media (max-width: 900px){
  .ocp-wrap .ocp-hero__grid{ padding: 22px !important; }
  .ocp-wrap .ocp-faq__q{ border-radius: 16px !important; }
}
.emoji{
  margin-top: 10px !important;
}