.sector-hero{
  height:420px;
  background:url("hero.jpg") center/cover no-repeat;
  position:relative;
}
.sector-hero .overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.6);
}
.hero-inner{
  max-width:1200px;
  width:92%;
  margin:auto;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:#fff;
}
.hero-inner h1{font-size:40px;font-weight:900}
.hero-inner p{margin-top:8px;font-size:18px}

.sector-intro, .positions, .success-model, .contact-form{
  max-width:1100px;
  width:92%;
  margin:70px auto;
}

h2{font-size:30px;margin-bottom:18px}

.accordion-item{
  border:1px solid #e5e7eb;
  border-radius:10px;
  margin-bottom:12px;
  overflow:hidden;
}
.accordion-header{
  width:100%;
  padding:18px;
  background:#fff;
  border:none;
  text-align:left;
  font-weight:700;
  cursor:pointer;
}
.accordion-body{
  max-height:0;
  overflow:hidden;
  transition:.3s ease;
  padding:0 18px;
}
.accordion-body p{margin:16px 0}
.accordion-body ul{padding-left:18px;margin-bottom:16px}

.contact-form form{
  display:grid;
  gap:12px;
}
.contact-form input, .contact-form textarea{
  padding:12px;
  border-radius:8px;
  border:1px solid #ccc;
}
.contact-form button{
  background:#0b3c5d;
  color:#fff;
  padding:14px;
  border:none;
  border-radius:10px;
  font-weight:700;
}
#thanks{
  display:none;
  margin-top:14px;
  color:green;
  font-weight:600;
}



/* =========================
   BAŞARI MODELİ
========================= */

.success-model{
  max-width:1100px;
  width:92%;
  margin:90px auto;
  padding:60px 70px;
  background:linear-gradient(135deg,#0b3c5d,#0f4c75);
  border-radius:22px;
  color:#fff;
  position:relative;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(0,0,0,.18);
}

/* Dekoratif soft şekil */
.success-model::before{
  content:"";
  position:absolute;
  top:-60px;
  right:-60px;
  width:220px;
  height:220px;
  background:rgba(255,255,255,.06);
  border-radius:50%;
}
.success-model::after{
  content:"";
  position:absolute;
  bottom:-80px;
  left:-80px;
  width:260px;
  height:260px;
  background:rgba(255,255,255,.04);
  border-radius:50%;
}

.success-model h2{
  font-size:34px;
  font-weight:900;
  letter-spacing:.3px;
  margin-bottom:22px;
  position:relative;
}

.success-model h2::after{
  content:"";
  display:block;
  width:70px;
  height:4px;
  background:#ff9f1c;
  border-radius:3px;
  margin-top:14px;
}

.success-model p{
  font-size:18px;
  line-height:1.75;
  margin-bottom:18px;
  max-width:820px;
  opacity:.95;
}

/* Mobil uyum */
@media(max-width:768px){
  .success-model{
    padding:40px 26px;
    margin:70px auto;
  }
  .success-model h2{
    font-size:28px;
  }
  .success-model p{
    font-size:16px;
  }
}









/* =========================
   BAŞARI HİKAYELERİ
========================= */

.success-stories{
  max-width:1100px;
  width:92%;
  margin:100px auto;
  padding:70px 80px;
  background:#ffffff;
  border-radius:24px;
  box-shadow:0 20px 50px rgba(0,0,0,.08);
  position:relative;
}

/* Sol vurgu çizgisi */
.success-stories::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:6px;
  height:100%;
  background:linear-gradient(180deg,#0b3c5d,#ff9f1c);
  border-radius:24px 0 0 24px;
}

.success-stories h2{
  font-size:34px;
  font-weight:900;
  margin-bottom:28px;
  color:#0b3c5d;
  letter-spacing:.3px;
}

.success-stories h2::after{
  content:"";
  display:block;
  width:80px;
  height:4px;
  background:#ff9f1c;
  border-radius:4px;
  margin-top:16px;
}

.success-stories p{
  font-size:17.5px;
  line-height:1.8;
  color:#333;
  margin-bottom:20px;
  max-width:900px;
}

/* Son paragrafı vurgula */
.success-stories p:last-child{
  margin-top:26px;
  font-weight:600;
  color:#0b3c5d;
}

/* Mobil uyum */
@media(max-width:768px){
  .success-stories{
    padding:40px 26px;
    margin:70px auto;
  }

  .success-stories h2{
    font-size:28px;
  }

  .success-stories p{
    font-size:16px;
  }
}



/* =========================
   BAŞARI HİKAYELERİ CTA
========================= */

.success-cta{
  margin-top:50px;
  display:flex;
  justify-content:flex-start;
}

.success-cta a{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:18px 34px;
  font-size:17px;
  font-weight:800;
  letter-spacing:.3px;
  color:#fff;
  text-decoration:none;
  border-radius:999px;
  background:linear-gradient(135deg,#0b3c5d,#0f4c75);
  box-shadow:0 18px 40px rgba(11,60,93,.35);
  transition:.35s ease;
  position:relative;
  overflow:hidden;
}

/* Işık geçiş efekti */
.success-cta a::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:60%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );
  transition:.6s ease;
}

.success-cta a:hover::before{
  left:140%;
}

.success-cta a span{
  font-size:20px;
  transition:.3s ease;
}

.success-cta a:hover{
  transform:translateY(-3px);
  box-shadow:0 26px 60px rgba(11,60,93,.45);
}

.success-cta a:hover span{
  transform:translateX(6px);
}

/* Mobil */
@media(max-width:768px){
  .success-cta{
    justify-content:center;
  }

  .success-cta a{
    width:100%;
    justify-content:center;
    font-size:16px;
    padding:16px 24px;
  }
}




/* =========================
   SIK SORULAN SORULAR
========================= */

.faq-section{
  max-width:1100px;
  width:92%;
  margin:100px auto;
}

.faq-section h2{
  font-size:32px;
  font-weight:900;
  margin-bottom:30px;
  color:#0b3c5d;
  letter-spacing:.3px;
}

.faq-section h2::after{
  content:"";
  display:block;
  width:70px;
  height:4px;
  background:#ff9f1c;
  border-radius:4px;
  margin-top:14px;
}

.faq-section .accordion-item{
  margin-bottom:14px;
  border-radius:14px;
  border:1px solid #e5e7eb;
  background:#fff;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}

.faq-section .accordion-header{
  font-size:17px;
  font-weight:700;
  padding:20px 22px;
}

.faq-section .accordion-body{
  padding:0 22px;
}

.faq-section .accordion-body p{
  margin:16px 0 22px;
  font-size:16.5px;
  line-height:1.7;
  color:#333;
}

/* Mobil */
@media(max-width:768px){
  .faq-section{
    margin:70px auto;
  }

  .faq-section h2{
    font-size:26px;
  }

  .faq-section .accordion-header{
    font-size:16px;
  }
}



/* =========================
   SEO İÇERİK BÖLÜMÜ
========================= */

.seo-content{
  max-width:1100px;
  width:92%;
  margin:110px auto;
  padding:70px 80px;
  background:#f9fafb;
  border-radius:26px;
  border:1px solid #e5e7eb;
}

.seo-content h2{
  font-size:32px;
  font-weight:900;
  color:#0b3c5d;
  margin-bottom:26px;
  letter-spacing:.3px;
}

.seo-content h2::after{
  content:"";
  display:block;
  width:90px;
  height:4px;
  background:#ff9f1c;
  border-radius:4px;
  margin-top:16px;
}

.seo-content p{
  font-size:17.5px;
  line-height:1.85;
  color:#333;
  margin-bottom:20px;
  max-width:920px;
}

/* Mobil */
@media(max-width:768px){
  .seo-content{
    padding:40px 26px;
    margin:80px auto;
  }

  .seo-content h2{
    font-size:26px;
  }

  .seo-content p{
    font-size:16px;
  }
}


/* =========================
   GÜVEN BÖLÜMÜ
========================= */

.trust-section{
  max-width:1100px;
  width:92%;
  margin:110px auto;
  padding:75px 85px;
  background:linear-gradient(180deg,#ffffff,#f6f8fb);
  border-radius:28px;
  border:1px solid #e5e7eb;
  position:relative;
}

/* Üst şerit vurgu */
.trust-section::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background:linear-gradient(90deg,#0b3c5d,#ff9f1c);
  border-radius:28px 28px 0 0;
}

.trust-section h2{
  font-size:32px;
  font-weight:900;
  color:#0b3c5d;
  margin-bottom:28px;
  letter-spacing:.3px;
}

.trust-section h2::after{
  content:"";
  display:block;
  width:80px;
  height:4px;
  background:#ff9f1c;
  border-radius:4px;
  margin-top:16px;
}

.trust-section p{
  font-size:17.5px;
  line-height:1.85;
  color:#333;
  margin-bottom:20px;
  max-width:940px;
}

/* Son paragraf vurgusu */
.trust-section p:last-child{
  margin-top:28px;
  font-weight:600;
  color:#0b3c5d;
}

/* Mobil */
@media(max-width:768px){
  .trust-section{
    padding:42px 28px;
    margin:80px auto;
  }

  .trust-section h2{
    font-size:26px;
  }

  .trust-section p{
    font-size:16px;
  }
}
/* =========================
   SEO ÖNE ÇIKARMA EFEKTİ
========================= */

.seo-highlight{
  position:relative;
  transition:all .6s ease;
}

/* Pasif hali */
.seo-highlight:not(.active){
  opacity:.75;
}

/* Aktif olduğunda */
.seo-highlight.active{
  opacity:1;
  box-shadow:
    0 30px 80px rgba(11,60,93,.18),
    0 0 0 6px rgba(255,159,28,.08);
  transform:translateY(-4px);
}

/* Arka planda soft glow */
.seo-highlight::after{
  content:"";
  position:absolute;
  inset:-25px;
  background:radial-gradient(
    ellipse at center,
    rgba(255,159,28,.12),
    transparent 70%
  );
  opacity:0;
  transition:.6s ease;
  pointer-events:none;
  border-radius:30px;
}

.seo-highlight.active::after{
  opacity:1;
}




/* =========================
   BAŞARI HİKAYELERİ CTA (FIX)
========================= */

.success-cta{
  margin-top:60px;
  width:100%;
  display:flex;
  justify-content:center;   /* 🔥 ORTALAR */
  align-items:center;
}

.success-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;   /* 🔥 içeriği ortalar */
  gap:14px;

  padding:18px 36px;
  min-width:340px;          /* 🔥 sola kaymayı engeller */

  font-size:17px;
  font-weight:800;
  letter-spacing:.3px;
  color:#fff;
  text-decoration:none;

  border-radius:999px;
  background:linear-gradient(135deg,#0b3c5d,#0f4c75);
  box-shadow:0 18px 40px rgba(11,60,93,.35);

  position:relative;
  overflow:hidden;
  transition:.35s ease;
}

/* Işık geçiş efekti */
.success-cta a::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:60%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.35),
    transparent
  );
  transition:.6s ease;
}

.success-cta a:hover::before{
  left:140%;
}

.success-cta a span{
  font-size:20px;
  transition:.3s ease;
}

.success-cta a:hover{
  transform:translateY(-3px);
  box-shadow:0 28px 65px rgba(11,60,93,.45);
}

.success-cta a:hover span{
  transform:translateX(6px);
}

/* Mobil FIX */
@media(max-width:768px){
  .success-cta{
    justify-content:center;
  }

  .success-cta a{
    width:100%;
    max-width:420px;
    min-width:unset;
    padding:16px 22px;
    font-size:16px;
  }
}

