/* YKS Kursu Sayfası Özel CSS */
/* Renkler: Primary #2D6A4F, Secondary #E0F2E9, Accent #1C2B3A, BG #F9F9F9, Text #1B4332, Neutral #3C3C3C */

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Poppins:wght@400;600;700&display=swap");

/* Genel Ayarlar */
.yks-hero,
.yks-avantajlar,
.yks-timeline,
.yks-gruplar,
.yks-gelisim,
.yks-hikayeler,
.yks-galeri,
.yks-sss {
  font-family: "Poppins", "Open Sans", Arial, sans-serif;
  background: #f9f9f9;
  color: #1b4332;
  margin-bottom: 48px;
  margin-top: 48px;
  padding: 32px 15px; /* Bölümlere genel padding */
}
.yks-hero {
  background: #fff;
  padding: 60px 15px;
}
.yks-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 48px;
  flex-wrap: wrap;
}
.yks-hero-left {
  flex: 1 1 50%;
  min-width: 300px;
}
.yks-hero-left h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1c2b3a; /* Koyu Lacivert */
  margin-bottom: 24px;
}
.yks-hero-left p {
  font-size: 1rem;
  color: #3c3c3c; /* Neutral Text */
  margin-bottom: 18px;
  line-height: 1.7;
}
.yks-hero-buttons {
  display: flex;
  gap: 16px;
}
.btn-primary,
.btn-secondary {
  font-family: inherit;
  font-weight: 600;
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}
.btn-primary {
  background: #1c2b3a;
  color: #fff;
}
.btn-primary:hover {
  background: #145132;
}
.btn-secondary {
  background: #fff;
  color: #2d6a4f;
  border: 2px solid #2d6a4f;
}
.btn-secondary:hover {
  background: #e0f2e9;
}
.yks-hero-right {
  flex: 1 1 40%;
  min-width: 300px;
  display: flex;
  justify-content: center;
}
.yks-hero-media {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.yks-hero-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Avantajlar */
.yks-avantajlar {
  background: #ebf5f0;
  text-align: center;
}
.yks-avantajlar h2 {
  font-size: 2rem;
  color: #2d6a4f;
  margin-bottom: 32px;
}
.yks-avantajlar-list {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.avantaj-kutu {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(44, 106, 79, 0.07);
  flex: 1 1 180px;
  min-width: 180px;
  max-width: 260px;
  padding: 32px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.avantaj-kutu i {
  font-size: 2.2rem;
  color: #2d6a4f;
  margin-bottom: 14px;
}
.avantaj-kutu h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1c2b3a;
}
.avantaj-kutu p {
  color: #3c3c3c;
  font-size: 1rem;
}

/* YKS Programlar Accordion Başlangıç */
.yks-programlar {
  background: #fff;
}
.yks-programlar h2 {
  text-align: center;
  color: #2d6a4f;
  font-size: 2rem;
  margin-bottom: 24px;
}
.program-accordion {
  max-width: 900px;
  margin: 0 auto;
}
.program-accordion-item {
  background: #e0f2e9; /* Açık Yeşil */
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.program-accordion-btn {
  width: 100%;
  text-align: left;
  background: #e0f2e9;
  color: #1c2b3a; /* Koyu Lacivert */
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  padding: 18px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.program-accordion-btn::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s;
}
.program-accordion-item.open .program-accordion-btn::after {
  content: "−";
  transform: rotate(180deg);
}
.program-accordion-item.open .program-accordion-btn {
  background: #2d6a4f; /* Ana Yeşil */
  color: #fff;
}
.program-accordion-btn:focus,
.program-accordion-btn:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}
.program-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  background: #fff;
}
.program-image-container {
  padding: 24px;
}
.program-image-container img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
}
/* YKS Programlar Accordion Bitiş */

/* Gelişim ve Deneme (Modern) */
.yks-gelisim {
  background: linear-gradient(120deg, #e0f2e9 60%, #f9f9f9 100%);
  padding: 56px 0 56px 0;
  margin-bottom: 48px;
}
.yks-gelisim-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(44, 106, 79, 0.1);
  padding: 36px 32px;
}
.gelisim-svg-card {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gelisim-svg-circle {
  background: linear-gradient(135deg, #2d6a4f 60%, #e0f2e9 100%);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(44, 106, 79, 0.13);
}
.gelisim-svg-circle svg {
  display: block;
}
.gelisim-text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.gelisim-text-block h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1c2b3a;
  margin-bottom: 8px;
}
.gelisim-main {
  font-size: 1.15rem;
  color: #2d6a4f;
  font-weight: 600;
  margin-bottom: 0;
}
.gelisim-sub {
  font-size: 1rem;
  color: #3c3c3c;
  opacity: 0.85;
  margin-top: 0;
}
@media (max-width: 900px) {
  .yks-gelisim-inner {
    flex-direction: column;
    gap: 24px;
    padding: 24px 10px;
  }
  .gelisim-svg-circle {
    width: 90px;
    height: 90px;
  }
  .gelisim-text-block h3 {
    font-size: 1.2rem;
  }
}
/* Gelişim ve Deneme (Modern) End */

/* Başarı Hikayeleri Slider Düzeltme Başlangıç */
.yks-hikayeler {
  background: #f9f9f9;
}
.yks-hikayeler h2 {
  text-align: center;
  color: #2d6a4f;
  font-size: 2rem;
  margin-bottom: 24px;
}
.hikaye-slider {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}
.slider-item {
  width: 100%;
  min-width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(44, 106, 79, 0.06);
  padding: 24px;
  box-sizing: border-box;
}
.slider-item img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.slider-item strong {
  color: #2d6a4f;
  font-size: 1.1rem;
}
.slider-item span {
  color: #1c2b3a;
  font-size: 0.98rem;
  margin-left: 6px;
}
.slider-item p {
  color: #3c3c3c;
  margin-top: 8px;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}
.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0f2e9;
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dots .dot.active {
  background: #2d6a4f;
}
/* Başarı Hikayeleri Slider Düzeltme Bitiş */

/* Galeri ve Video Düzeltme Başlangıç */
.yks-galeri {
  background: #e0f2e9;
}
.galeri-inner {
  display: flex;
  gap: 32px;
  max-width: 900px;
  margin: auto;
  flex-wrap: wrap;
}
.galeri-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1 1 220px;
}
.galeri-grid img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.galeri-video {
  flex: 1 1 320px;
  display: flex;
  align-items: center;
}
.galeri-video iframe {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 16/9;
  height: auto;
}
/* Galeri ve Video Düzeltme Bitiş */

/* SSS Accordion */
.yks-sss {
  background: #f9f9f9;
}
.yks-sss h2 {
  text-align: center;
  color: #2d6a4f;
  font-size: 2rem;
  margin-bottom: 24px;
}
.sss-accordion {
  max-width: 700px;
  margin: 0 auto;
}
.sss-item {
  border-bottom: 1px solid #e0f2e9;
}
.sss-btn {
  width: 100%;
  text-align: left;
  background: #e0f2e9;
  color: #1c2b3a;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  padding: 18px 48px 18px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.sss-btn::before {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #2d6a4f;
  font-weight: 700;
  transition: content 0.2s;
}
.sss-btn.active::before {
  content: "−";
  color: #2d6a4f;
}
.sss-btn:hover,
.sss-btn.active {
  background: #2d6a4f;
  color: #fff;
}
.sss-btn.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.sss-content {
  display: none;
  padding: 18px;
  background: #fff;
  border-radius: 0 0 6px 6px;
}
.sss-btn:focus,
.sss-btn:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}
/* Input/textarea örnekleri için (form eklenirse) */
input,
textarea {
  border-radius: 6px;
  border: 1px solid #cccccc;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 1rem;
  color: #1b4332;
  background: #fff;
  transition: border 0.2s;
}
input:focus,
textarea:focus {
  border-color: #2d6a4f;
  outline: none;
}
::placeholder {
  color: #6b9080;
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .yks-hero-inner,
  .galeri-inner,
  .yks-gelisim-inner {
    flex-direction: column;
    gap: 24px;
  }
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .yks-hero-inner,
  .galeri-inner,
  .yks-gelisim-inner {
    flex-direction: column;
    gap: 18px;
  }
  .yks-hero-left h1 {
    font-size: 2.2rem;
  }
  .yks-avantajlar-list {
    gap: 18px;
  }
  .timeline-grid {
    grid-template-columns: 1fr;
  }
  .galeri-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* YKS Başarılarımız (Yeni) */
.yks-basarilarimiz {
  background: #fff;
  padding: 40px 0;
  margin-bottom: 48px;
}
.basari-flex {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.basari-img {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(44, 106, 79, 0.07);
  padding: 12px;
  min-width: 280px;
  max-width: 520px;
}
.basari-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}
@media (max-width: 900px) {
  .basari-flex {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .basari-img {
    max-width: 95vw;
  }
}
/* YKS Başarılarımız (Yeni) End */

/* mezun-yks-programi start */
.mezun-yks-programi {
  background: #fffbe6;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(44, 106, 79, 0.1);
  padding: 32px 18px 28px 18px;
  margin: 32px 0;
  color: #1c2b3a;
  font-family: "Poppins", "Open Sans", Arial, sans-serif;
}
.mezun-yks-programi h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2d6a4f;
  margin-bottom: 12px;
}
.mezun-yks-programi ul {
  margin-bottom: 18px;
  padding-left: 18px;
}
.mezun-yks-tablo-wrapper {
  margin-top: 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(44, 106, 79, 0.08);
  padding: 18px 10px 24px 10px;
}
.mezun-yks-tablo-baslik {
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  border-radius: 8px;
  padding: 10px 0;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.mezun-yks-tablo-grid {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.mezun-yks-gun {
  background: #fffde7;
  border: 2.5px solid #ffe066;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(44, 106, 79, 0.07);
  min-width: 180px;
  max-width: 220px;
  flex: 1 1 180px;
  padding: 12px 10px 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 8px;
}
.gun-baslik {
  background: #111;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  padding: 6px 0;
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.gun-icerik {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ders-mavi {
  color: #1c2b3a;
  font-weight: 700;
  font-size: 1.05rem;
}
.ders-kirmizi {
  color: #d32f2f;
  font-weight: 700;
  font-size: 1.05rem;
}
.ders-saat {
  color: #222;
  font-size: 0.98rem;
  margin-left: 8px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .mezun-yks-tablo-grid {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .mezun-yks-gun {
    max-width: 95vw;
    min-width: 0;
    width: 100%;
  }
}
/* mezun-yks-programi end */

/* yks-basarilarimiz-yeni start */
.yks-basarilarimiz-yeni {
  background: #f9f9f9;
  padding: 48px 0 32px 0;
}
.yks-basarilar-flex {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.yks-basarilar-kutu {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(44, 106, 79, 0.1);
  padding: 32px 24px 28px 24px;
  min-width: 280px;
  max-width: 520px;
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  color: #1c2b3a;
  font-family: "Poppins", "Open Sans", Arial, sans-serif;
}
.yks-basarilar-kutu h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #2d6a4f;
  margin-bottom: 12px;
}
.yks-basarilar-kutu p {
  font-size: 1rem;
  color: #3c3c3c;
  margin-bottom: 10px;
}
.yks-basarilar-kutu ul {
  margin-bottom: 0;
  padding-left: 18px;
}
.yks-basarilar-kutu ul li {
  font-size: 0.98rem;
  color: #222;
  margin-bottom: 7px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .yks-basarilar-flex {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .yks-basarilar-kutu {
    max-width: 95vw;
    min-width: 0;
    width: 100%;
  }
}
/* yks-basarilarimiz-yeni end */

/* // hero mobilde resim üstte yazı altta olsun start */
@media (max-width: 600px) {
  .yks-hero-inner {
    flex-direction: column-reverse !important;
  }
  .yks-hero-media img {
    height: 430px !important;
  }
  .yks-hero {
    padding: 0px 15px !important;
  }
}
/* // hero mobilde resim üstte yazı altta olsun end */
