@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700&display=swap");
/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  background: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== TOP BAR ===== */
.topbar {
  background: #1a1a1a;
  padding: 8px 0;
  font-size: 13px;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .topbar-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.topbar .topbar-contact a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.topbar .topbar-contact a:hover {
  opacity: 0.8;
}

.topbar .topbar-contact .separator {
  margin: 0 4px;
  color: #b0c4ce;
}

.topbar .topbar-contact i {
  margin-right: 4px;
  font-size: 12px;
}

/* ===== MAIN HEADER ===== */
.main-header {
  background: #000;
  padding: 0;
  position: relative;
  z-index: 1000;
}

.main-header .header-inner {
  display: flex;
  align-items: center;
  min-height: 80px;
  position: relative;
}

.main-header {
  /* Navigasyon */
}

.main-header .header-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0;
}

.main-header .header-nav .nav-item {
  position: relative;
}

.main-header .header-nav .nav-item > a {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  padding: 28px 20px;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  position: relative;
}

.main-header .header-nav .nav-item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: #ffffff;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.main-header .header-nav .nav-item > a:hover::after {
  transform: scaleX(1);
}

.main-header .header-nav .nav-item {
  /* Mega menü tetikleyici */
}

.main-header .header-nav .nav-item.has-megamenu:hover > a::after {
  transform: scaleX(1);
}

.main-header .header-nav .nav-item.has-megamenu:hover > .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-header {
  /* CTA Buton */
}

.main-header .nav-cta {
  padding-left: 25px;
}

.main-header .nav-cta .btn-cta {
  display: inline-block;
  background: #0D7377;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 18px !important;
  border-radius: 4px;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

.main-header .nav-cta .btn-cta::after {
  display: none !important;
}

.main-header .nav-cta .btn-cta:hover {
  background: rgb(17.0181818182, 150.5454545455, 155.7818181818);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(13, 115, 119, 0.4);
}

.main-header {
  /* ILSSI Badge */
}

.main-header .header-badge {
  flex-shrink: 0;
  margin-left: 15px;
  margin-top: -8px;
  margin-bottom: -8px;
}

.main-header .header-badge img {
  height: 80px;
  width: auto;
}

.main-header {
  /* Logo - alta çıkıntı (absolute) */
}

.main-header .header-logo {
  position: absolute;
  top: -8px;
  left: 15px;
  z-index: 1050;
}

.main-header .header-logo a {
  display: flex;
  align-items: center;
}

.main-header .header-logo img {
  height: 115px;
  width: auto;
}

/* ===== MEGA MENU ===== */
.megamenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 960px;
  background: #0B2E3D;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1001;
  display: flex;
  gap: 0;
  /* Mega menü kolon */
}

.megamenu .mega-col {
  flex: 1;
  padding: 30px;
  background: #1E4E63;
}

.megamenu .mega-col:first-child {
  background: #165D7B;
}

.megamenu .mega-col:last-child {
  background: #165D7B;
}

.megamenu .mega-col.mega-col-wide {
  flex: 1.6;
}

.megamenu .mega-col .mega-col-split {
  display: flex;
  gap: 25px;
}

.megamenu .mega-col .mega-col-split .mega-col-left,
.megamenu .mega-col .mega-col-split .mega-col-right {
  flex: 1;
}

.megamenu .mega-col .mega-col-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.megamenu .mega-col .mega-col-image {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 18px;
}

.megamenu .mega-col .mega-subtitle {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 10px;
}

.megamenu .mega-col .mega-badge {
  margin-bottom: 15px;
}

.megamenu .mega-col .mega-badge img {
  height: 50px;
  width: auto;
}

.megamenu .mega-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.megamenu .mega-col ul li {
  margin-bottom: 5px;
}

.megamenu .mega-col ul li a {
  color: #b0c4ce;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  padding: 2px 0;
}

.megamenu .mega-col ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* Megamenu pozisyon ayarı - navbar üzerine göreceli */
.nav-item.has-megamenu {
  position: static !important;
}

.nav-item.has-megamenu .megamenu {
  left: 0;
  right: 0;
  transform: translateY(10px);
  width: auto;
  margin: 0 auto;
  max-width: 1340px;
}

.nav-item.has-megamenu .megamenu:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item.has-megamenu:hover > .megamenu {
  transform: translateY(0);
}

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  margin-right: 10px;
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: block;
  }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .main-header .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0B2E3D;
    flex-direction: column;
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 999;
  }
  .main-header .header-nav.open {
    display: flex;
  }
  .main-header .header-nav .nav-item {
    width: 100%;
  }
  .main-header .header-nav .nav-item > a {
    padding: 12px 25px;
  }
  .main-header .header-nav .nav-item > a::after {
    display: none;
  }
  .main-header .header-nav .nav-item.nav-cta {
    padding: 15px 25px 5px;
  }
  .main-header .header-nav .nav-item.nav-cta .btn-cta {
    display: inline-block;
    width: auto;
  }
  .main-header .header-badge {
    display: none;
  }
  .megamenu {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    flex-direction: column;
    transform: none !important;
    box-shadow: none;
    padding: 0;
    display: none;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .megamenu .mega-col {
    margin-bottom: 0;
    padding: 15px 20px;
  }
  .megamenu .mega-col .mega-col-image {
    height: 80px;
  }
  .megamenu .mega-col .mega-col-split {
    flex-direction: column;
    gap: 10px;
  }
  .nav-item.has-megamenu.open .megamenu {
    display: flex;
  }
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 600px;
  max-height: 800px;
  overflow: hidden;
  background: #0B2E3D;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 70vh;
    min-height: 500px;
  }
}
@media (max-width: 576px) {
  .hero-slider {
    height: auto;
    min-height: 420px;
  }
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide .slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
}

.hero-slide.active .slide-bg {
  transform: scale(1.05);
}

.hero-slide .slide-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide .slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 60px 15px 80px;
}

.hero-slide .slide-content--left {
  text-align: left;
}

.hero-slide .slide-content--center {
  text-align: center;
}

.hero-slide .slide-content--right {
  text-align: right;
}

.hero-slide .slide-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hero-slide .slide-title {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 700px;
}

@media (max-width: 768px) {
  .hero-slide .slide-title {
    font-size: 34px;
  }
}
@media (max-width: 576px) {
  .hero-slide .slide-title {
    font-size: 26px;
  }
}
.hero-slide .slide-content--center .slide-title {
  margin-left: auto;
  margin-right: auto;
}

.hero-slide .slide-desc {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
  margin-bottom: 24px;
}

/* Description lines (big subtitle-style text) */
.slide-desc-lines {
  margin-bottom: 16px;
  max-width: 600px;
}

.slide-desc-lines p {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 2px;
}

@media (max-width: 768px) {
  .slide-desc-lines p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .hero-slide .slide-desc {
    font-size: 15px;
  }
}
.hero-slide .slide-content--center .slide-desc {
  margin-left: auto;
  margin-right: auto;
}

.hero-slide .slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
  margin-bottom: 30px;
}

.hero-slide .slide-btn:hover {
  background: #ffffff;
  color: #0B2E3D;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.hero-slide .slide-btn i, .hero-slide .slide-btn svg {
  transition: transform 0.2s;
}

.hero-slide .slide-btn:hover i, .hero-slide .slide-btn:hover svg {
  transform: translateX(4px);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}

.slider-dots .dot {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.slider-dots .dot.active {
  background: #ffffff;
  width: 50px;
}

.slider-dots .dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}

.slider-arrow--prev {
  left: 20px;
}

.slider-arrow--next {
  right: 20px;
}

@media (max-width: 768px) {
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
/* ===== SLIDE MODES ===== */
/* Hero mode: no description - big title & subtitle */
.slide-mode--hero .slide-title {
  font-size: 62px;
}

.slide-mode--hero .slide-subtitle {
  font-size: 18px;
  letter-spacing: 3px;
}

.slide-mode--hero .slide-desc {
  font-size: 22px;
}

@media (max-width: 768px) {
  .slide-mode--hero .slide-title {
    font-size: 42px;
  }
  .slide-mode--hero .slide-subtitle {
    font-size: 14px;
  }
}
/* Simple mode: single line description */
.slide-mode--simple .slide-title {
  font-size: 54px;
}

.slide-mode--simple .slide-desc {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .slide-mode--simple .slide-title {
    font-size: 38px;
  }
}
/* ===== SLIDE FEATURES (multi-line description) ===== */
.slide-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
  margin-bottom: 20px;
  max-width: 600px;
}

.slide-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.slide-feature-dash {
  display: block;
  width: 28px;
  min-width: 28px;
  height: 3px;
  background: #d4a843;
  margin-top: 13px;
  border-radius: 2px;
}

.slide-feature strong {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.slide-feature span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .slide-features {
    gap: 12px;
  }
  .slide-feature strong {
    font-size: 16px;
  }
  .slide-feature span {
    font-size: 12px;
  }
  .slide-feature-dash {
    width: 20px;
    min-width: 20px;
    margin-top: 10px;
  }
}
/* ===== SLIDE LOGO (badge right-center) ===== */
.slide-logo {
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  z-index: 2;
}

.slide-logo img {
  width: 300px;
  height: auto;
  opacity: 0.85;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
  .slide-logo {
    display: none;
  }
}
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0B2E3D;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.home-features {
  padding: 60px 0;
  background: #ffffff;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.home-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .home-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .home-features-grid {
    grid-template-columns: 1fr;
  }
}
.hf-card {
  background: #ffffff;
  border: 1px solid #e8ecef;
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.hf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.hf-card .hf-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(13, 115, 119, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: #0D7377;
}

.hf-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0B2E3D;
  margin-bottom: 8px;
}

.hf-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.home-programs {
  padding: 70px 0;
  background: #f5f5f5;
}

.hp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .hp-grid {
    grid-template-columns: 1fr;
  }
}
.hp-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px;
  text-decoration: none;
  border: 1px solid #e8ecef;
  transition: all 0.3s;
}

.hp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: #0D7377;
}

.hp-card .hp-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.hp-card--sigma .hp-card-icon {
  background: rgba(13, 115, 119, 0.1);
  color: #0D7377;
}

.hp-card--lean .hp-card-icon {
  background: rgba(37, 99, 235, 0.1);
  color: #2563EB;
}

.hp-card--quality .hp-card-icon {
  background: rgba(217, 119, 6, 0.1);
  color: #D97706;
}

.hp-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0B2E3D;
  margin-bottom: 10px;
}

.hp-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  flex: 1;
}

.hp-card .hp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #0D7377;
  transition: gap 0.3s;
}

.hp-card:hover .hp-card-link {
  gap: 10px;
}

.home-stats {
  padding: 60px 0;
  background: #0B2E3D;
}

.hs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

@media (max-width: 576px) {
  .hs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
.hs-item .hs-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 8px;
}

.hs-item .hs-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-about {
  padding: 70px 0;
  background: #ffffff;
}

.ha-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media (max-width: 768px) {
  .ha-wrapper {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }
}
.ha-content {
  flex: 1;
}

.ha-content .ha-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0D7377;
  margin-bottom: 12px;
}

.ha-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0B2E3D;
  margin-bottom: 16px;
  line-height: 1.3;
}

.ha-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

.ha-content .ha-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 12px 24px;
  background: #0D7377;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.ha-content .ha-btn:hover {
  background: rgb(8.9818181818, 79.4545454545, 82.2181818182);
  transform: translateY(-2px);
}

.ha-badge {
  flex-shrink: 0;
  background: #0B2E3D;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ha-badge img {
  width: 220px;
  height: auto;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .ha-badge {
    padding: 20px;
  }
  .ha-badge img {
    width: 160px;
  }
}
/* ===== HERO BANNER ===== */
.page-hero {
  background: linear-gradient(135deg, #092430 0%, #165D7B 100%);
  padding: 50px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.page-hero .hero-breadcrumb {
  margin-bottom: 20px;
  font-size: 13px;
}

.page-hero .hero-breadcrumb a, .page-hero .hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.page-hero .hero-breadcrumb a:hover {
  color: #ffffff;
}

.page-hero .hero-breadcrumb .sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
}

.page-hero .hero-breadcrumb span:last-child {
  color: #ffffff;
}

.page-hero--article {
  padding: 40px 0 50px;
}

.page-hero--article .hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.page-hero--article h1 {
  font-size: 32px;
  max-width: 700px;
}

.page-hero .hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width: 992px) {
  .page-hero .hero-content {
    flex-direction: column;
    text-align: center;
  }
}
.page-hero .hero-text {
  flex: 1;
}

.page-hero .hero-text h1 {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .page-hero .hero-text h1 {
    font-size: 28px;
  }
}
.page-hero .hero-text .hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.page-hero .hero-text .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 10px 18px;
}

.page-hero .hero-text .hero-badge img {
  height: 35px;
  width: auto;
}

.page-hero .hero-text .hero-badge span {
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
}

.page-hero .hero-image {
  flex-shrink: 0;
  width: 400px;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .page-hero .hero-image {
    width: 100%;
    max-width: 500px;
    height: 220px;
  }
}
.page-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== PAGE CONTENT ===== */
.page-content {
  padding: 0;
  min-height: 40vh;
}

/* ===== CONTENT SECTION ===== */
.content-section {
  padding: 60px 0;
}

.content-section:nth-child(even) {
  background: #f7f8fa;
}

.content-section .section-title {
  font-size: 26px;
  font-weight: 700;
  color: #0B2E3D;
  text-align: center;
  margin-bottom: 15px;
}

.content-section .section-desc {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

/* ===== FEATURE CARDS ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
.feature-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature-card .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, #165D7B, #092430);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-card .card-icon i {
  font-size: 22px;
  color: #ffffff;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0B2E3D;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* ===== TWO COLUMN SECTION ===== */
.two-col {
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width: 992px) {
  .two-col {
    flex-direction: column;
  }
}
.two-col.reverse {
  flex-direction: row-reverse;
}

@media (max-width: 992px) {
  .two-col.reverse {
    flex-direction: column;
  }
}
.two-col .col-text {
  flex: 1;
}

.two-col .col-text h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0B2E3D;
  margin-bottom: 15px;
}

.two-col .col-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.two-col .col-text ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 15px;
}

.two-col .col-text ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.two-col .col-text ul li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #165D7B;
  font-size: 14px;
}

.two-col .col-image {
  flex-shrink: 0;
  width: 450px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .two-col .col-image {
    width: 100%;
  }
}
.two-col .col-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== EDUCATION SUB-PAGES (ZigZag) ===== */
.edu-subpages {
  padding: 60px 0;
}

.edu-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid #eee;
}

.edu-row--reverse {
  flex-direction: row-reverse;
}

.edu-row:last-child {
  margin-bottom: 0;
}

.edu-row-image {
  flex: 0 0 40%;
  min-height: 240px;
  overflow: hidden;
}

.edu-row-image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.edu-row-placeholder {
  width: 100%;
  min-height: 240px;
  background: linear-gradient(135deg, #0B2E3D, #0D7377);
  display: flex;
  align-items: center;
  justify-content: center;
}

.edu-row-placeholder i {
  font-size: 48px;
  color: rgba(255, 255, 255, 0.3);
}

.edu-row-content {
  flex: 1;
  padding: 30px 40px 30px 0;
}

.edu-row--reverse .edu-row-content {
  padding: 30px 0 30px 40px;
}

.edu-row-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0B2E3D;
  margin-bottom: 10px;
}

.edu-row-content h3 a {
  color: #0B2E3D;
  text-decoration: none;
}

.edu-row-content h3 a:hover {
  color: #0D7377;
}

.edu-row-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.edu-row-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #0D7377;
  text-decoration: none;
}

.edu-row-link:hover {
  color: #0B2E3D;
}

.edu-row-link i {
  font-size: 12px;
  transition: transform 0.2s;
}

.edu-row-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .edu-row, .edu-row--reverse {
    flex-direction: column;
    gap: 0;
  }
  .edu-row-image {
    flex: none;
    width: 100%;
    min-height: 180px;
  }
  .edu-row-content,
  .edu-row--reverse .edu-row-content {
    padding: 24px;
  }
}
/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #092430 0%, #165D7B 100%);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 25px;
}

.cta-section .btn-cta {
  display: inline-block;
  background: #ffffff;
  color: #0B2E3D;
  padding: 14px 40px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.cta-section .btn-cta:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* ===== CTA DOCUMENT ===== */
.cta-document {
  background: linear-gradient(135deg, #092430 0%, #165D7B 100%);
  padding: 50px 0;
}

.cta-document .cta-document-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

@media (max-width: 768px) {
  .cta-document .cta-document-inner {
    flex-direction: column;
    text-align: center;
  }
}
.cta-document .cta-document-text h2 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.cta-document .cta-document-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.cta-document .cta-document-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #0B2E3D;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.cta-document .cta-document-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  color: #0B2E3D;
  text-decoration: none;
}

.cta-document .cta-document-btn i {
  font-size: 20px;
  color: #e74c3c;
}

/* ===== ARTICLE (Blog/Press tarzı) ===== */
.article-section {
  padding: 50px 0 70px;
}

.article-section .article-wrapper {
  display: flex;
  gap: 50px;
}

@media (max-width: 992px) {
  .article-section .article-wrapper {
    flex-direction: column;
  }
}
.article-section .article-body {
  flex: 1;
}

.article-section .article-body .lead {
  font-size: 17px;
  line-height: 1.9;
  color: #333;
  font-weight: 400;
  margin-bottom: 25px;
}

.article-section .article-body h2 {
  font-size: 22px;
  font-weight: 600;
  color: #0B2E3D;
  margin: 30px 0 15px;
}

.article-section .article-body p {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
}

.article-section .article-body ul, .article-section .article-body ol {
  margin-bottom: 18px;
  padding-left: 20px;
}

.article-section .article-body ul li, .article-section .article-body ol li {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 6px;
}

.article-section .article-body blockquote {
  border-left: 4px solid #165D7B;
  padding: 15px 25px;
  margin: 25px 0;
  background: #f7f8fa;
  font-style: italic;
  color: #555;
}

.article-section .article-sidebar {
  flex-shrink: 0;
  width: 250px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

@media (max-width: 992px) {
  .article-section .article-sidebar {
    width: 100%;
    position: static;
  }
}
.article-section .article-sidebar .sidebar-share {
  margin-bottom: 30px;
}

.article-section .article-sidebar .sidebar-share h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.article-section .article-sidebar .sidebar-share .share-links {
  display: flex;
  gap: 8px;
}

.article-section .article-sidebar .sidebar-share .share-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f0f1f3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}

.article-section .article-sidebar .sidebar-share .share-links a:hover {
  background: #0B2E3D;
  color: #ffffff;
}

.article-section .article-sidebar .sidebar-related h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #999;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.article-section .article-sidebar .sidebar-related ul {
  list-style: none;
  padding: 0;
}

.article-section .article-sidebar .sidebar-related ul li {
  margin-bottom: 10px;
}

.article-section .article-sidebar .sidebar-related ul li a {
  font-size: 14px;
  color: #0B2E3D;
  text-decoration: none;
  line-height: 1.5;
}

.article-section .article-sidebar .sidebar-related ul li a:hover {
  text-decoration: underline;
}

.blog-listing-section {
  padding: 60px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8ecef;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.blog-card .blog-card-thumb {
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}

.blog-card .blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card .blog-card-thumb-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 40px;
  color: #ccc;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.05);
}

.blog-card .blog-card-body {
  padding: 24px;
}

.blog-card .blog-card-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card .blog-card-body h3 a {
  color: #0B2E3D;
  transition: color 0.2s;
}

.blog-card .blog-card-body h3 a:hover {
  color: #0D7377;
}

.blog-card .blog-card-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}

.blog-card .blog-card-body .blog-card-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #0D7377;
  transition: gap 0.3s;
}

.blog-card .blog-card-body .blog-card-more:hover {
  gap: 10px;
}

.blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: #999;
}

.blog-empty i {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.blog-empty p {
  font-size: 16px;
}

.trainings-section {
  padding: 60px 0;
}

.trainings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 768px) {
  .trainings-grid {
    grid-template-columns: 1fr;
  }
}
.training-category {
  background: #ffffff;
  border: 1px solid #e8ecef;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.training-category:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.training-category .tc-header {
  padding: 28px 24px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.training-category .tc-header .tc-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(13, 115, 119, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #0D7377;
  margin-bottom: 14px;
}

.training-category .tc-header h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.training-category .tc-header h2 a {
  color: #0B2E3D;
  transition: color 0.2s;
}

.training-category .tc-header h2 a:hover {
  color: #0D7377;
}

.training-category .tc-header p {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
}

.training-category .tc-subtitle {
  font-family: "Rubik", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #0D7377;
  padding: 14px 24px 6px;
  margin: 0;
  border-top: 1px solid #f0f0f0;
}

.training-category .tc-subtitle:first-of-type {
  border-top: none;
}

.training-category .tc-list {
  list-style: none;
  padding: 8px 0;
}

.training-category .tc-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  font-size: 14px;
  color: #444;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.training-category .tc-list li a:hover {
  background: #f5f5f5;
  color: #0D7377;
  border-left-color: #0D7377;
}

.training-category .tc-list li a .tc-name {
  flex: 1;
}

.training-category .tc-list li a i {
  font-size: 10px;
  color: #ccc;
  transition: color 0.2s, transform 0.2s;
}

.training-category .tc-list li a:hover i {
  color: #0D7377;
  transform: translateX(3px);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 60px 0 80px;
}

.faq-list {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e8e8e8;
}

.faq-item:first-child {
  border-top: 1px solid #e8e8e8;
}

.faq-item .faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #0B2E3D;
  transition: color 0.2s;
}

.faq-item .faq-question:hover {
  color: #165D7B;
}

.faq-item .faq-question i {
  font-size: 13px;
  color: #999;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 5px;
}

.faq-item .faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 12px;
}

.faq-item .faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-item.open .faq-question {
  color: #165D7B;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 5px 20px;
}

/* ===== ABOUT HERO ===== */
.about-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background: url("../img/kalite-egitimleri.png") center/cover no-repeat;
}

.about-hero .about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 36, 48, 0.92), rgba(22, 93, 123, 0.85));
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero .about-hero-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.about-hero .about-hero-tag::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #ffffff;
  margin-top: 10px;
}

.about-hero h1 {
  font-size: 38px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  max-width: 700px;
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 26px;
  }
}
/* ===== ABOUT INTRO ===== */
.about-intro {
  padding: 70px 0;
  text-align: center;
}

.about-intro .about-intro-text {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  max-width: 750px;
  margin: 0 auto 30px;
}

.about-intro .about-intro-big {
  font-size: 48px;
  font-weight: 700;
  color: #0B2E3D;
  letter-spacing: -0.5px;
}

@media (max-width: 768px) {
  .about-intro .about-intro-big {
    font-size: 32px;
  }
}
/* ===== ABOUT SCROLLSPY ===== */
.about-scrollspy-section {
  padding: 0 0 80px;
}

.about-scrollspy-wrapper {
  display: flex;
  gap: 50px;
}

@media (max-width: 992px) {
  .about-scrollspy-wrapper {
    flex-direction: column;
    gap: 0;
  }
}
.about-spy-nav {
  flex-shrink: 0;
  width: 220px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
}

@media (max-width: 992px) {
  .about-spy-nav {
    width: 100%;
    position: static;
    flex-direction: row;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
    overflow-x: auto;
  }
}
.about-spy-nav .spy-link {
  display: block;
  padding: 12px 18px;
  border-left: 3px solid transparent;
  font-size: 15px;
  color: #666;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .about-spy-nav .spy-link {
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 12px 20px;
  }
}
.about-spy-nav .spy-link:hover {
  color: #0B2E3D;
}

.about-spy-nav .spy-link.active {
  color: #0B2E3D;
  font-weight: 600;
  border-left-color: #165D7B;
  background: rgba(22, 93, 123, 0.04);
}

@media (max-width: 992px) {
  .about-spy-nav .spy-link.active {
    border-left-color: transparent;
    border-bottom-color: #165D7B;
    background: none;
  }
}
.about-spy-content {
  flex: 1;
  min-width: 0;
}

.about-block {
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #eee;
}

.about-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.about-block h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0B2E3D;
  margin-bottom: 20px;
}

.about-block p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

.about-block .about-block-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 25px;
}

/* Values Grid */
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 25px;
}

@media (max-width: 768px) {
  .about-values {
    grid-template-columns: 1fr;
  }
}
.about-value-item {
  padding: 25px;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  transition: box-shadow 0.25s;
}

.about-value-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.about-value-item .about-value-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: linear-gradient(135deg, #165D7B, #092430);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.about-value-item .about-value-icon i {
  font-size: 18px;
  color: #ffffff;
}

.about-value-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0B2E3D;
  margin-bottom: 8px;
}

.about-value-item p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* Akreditasyon partner link */
.about-partners-link {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding: 18px 22px;
  background: linear-gradient(135deg, #f3f8fb 0%, #e7f1f6 100%);
  border: 1px solid #d4e2ea;
  border-left: 4px solid #165D7B;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.about-partners-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11, 46, 61, 0.08);
  border-left-color: #0D7377;
  color: inherit;
  text-decoration: none;
}

.about-partners-link .apl-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: #165D7B;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(11, 46, 61, 0.1);
}

.about-partners-link .apl-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-partners-link .apl-title {
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0B2E3D;
  letter-spacing: 0.2px;
}

.about-partners-link .apl-url {
  font-size: 13px;
  color: #165D7B;
}

.about-partners-link .apl-url i {
  margin-left: 6px;
  font-size: 11px;
}

/* Services */
.about-service {
  padding: 25px 0;
  border-bottom: 1px solid #eee;
}

.about-service:last-child {
  border-bottom: none;
}

.about-service h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0B2E3D;
  margin-bottom: 10px;
}

.about-service h3 i {
  color: #165D7B;
  margin-right: 8px;
  width: 22px;
  text-align: center;
}

.about-service p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0;
  padding-left: 30px;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 30px 0;
}

@media (max-width: 768px) {
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-stat {
  text-align: center;
  padding: 25px 15px;
  background: #f7f8fa;
  border-radius: 10px;
}

.about-stat .stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #165D7B;
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat .stat-label {
  font-size: 14px;
  color: #888;
  font-weight: 500;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 60px 0 0;
}

/* İletişim Kartları */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}
.contact-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.25s;
}

.contact-card:hover {
  border-color: #165D7B;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.contact-card .contact-card-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #165D7B, #092430);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.contact-card .contact-card-icon i {
  font-size: 20px;
  color: #ffffff;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0B2E3D;
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.contact-card a {
  font-size: 14px;
  font-weight: 500;
  color: #165D7B;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card .contact-card-social {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.contact-card .contact-card-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f0f1f3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 14px;
  transition: all 0.2s;
}

.contact-card .contact-card-social a:hover {
  background: #0B2E3D;
  color: #ffffff;
  text-decoration: none;
}

/* Form + Sidebar Layout */
.contact-main {
  display: flex;
  gap: 40px;
  padding-bottom: 60px;
}

@media (max-width: 992px) {
  .contact-main {
    flex-direction: column;
  }
}
/* Form */
.contact-form-wrapper {
  flex: 1;
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 35px;
}

.contact-form-wrapper h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0B2E3D;
  margin-bottom: 6px;
}

.contact-form-wrapper .contact-form-desc {
  font-size: 14px;
  color: #888;
  margin-bottom: 25px;
}

.contact-form .form-row {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .contact-form .form-row {
    flex-direction: column;
    gap: 0;
  }
}
.contact-form .form-row .form-group {
  flex: 1;
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  margin-bottom: 6px;
}

.contact-form .form-group label span {
  color: #e74c3c;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  color: #333;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #165D7B;
  box-shadow: 0 0 0 3px rgba(22, 93, 123, 0.1);
  background: #ffffff;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group select::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #bbb;
}

.contact-form .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 35px;
}

.contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-check {
  margin-bottom: 22px;
}

.contact-form .form-check .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #666;
  cursor: pointer;
}

.contact-form .form-check .checkbox-label input[type=checkbox] {
  width: auto;
  margin-top: 2px;
  cursor: pointer;
}

.contact-form .form-check .checkbox-label a {
  color: #165D7B;
  text-decoration: underline;
}

.contact-form .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #165D7B, #092430);
  color: #ffffff;
  border: none;
  padding: 13px 35px;
  border-radius: 6px;
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.contact-form .btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(22, 93, 123, 0.3);
}

.contact-form .btn-submit i {
  font-size: 14px;
}

/* Sidebar */
.contact-info-sidebar {
  flex-shrink: 0;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 992px) {
  .contact-info-sidebar {
    width: 100%;
    flex-direction: row;
  }
}
@media (max-width: 992px) and (max-width: 768px) {
  .contact-info-sidebar {
    flex-direction: column;
  }
}
.info-box {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 28px;
}

.info-box h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0B2E3D;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 15px;
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.info-box ul li i {
  color: #165D7B;
  font-size: 12px;
}

.info-box--dark {
  background: linear-gradient(135deg, #092430, #165D7B);
  border: none;
}

.info-box--dark h3, .info-box--dark p {
  color: #ffffff;
}

.info-box--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.info-box--dark .info-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}

.info-box--dark .info-phone:hover {
  background: rgba(255, 255, 255, 0.25);
}

.info-box--dark .info-phone i {
  font-size: 15px;
}

/* Harita */
.map-section iframe {
  display: block;
  width: 100%;
  height: 400px;
}

.edu-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.edu-info-card {
  background: #f5f5f5;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 18px;
  text-align: center;
}

.edu-info-card i {
  font-size: 24px;
  color: #0D7377;
  margin-bottom: 8px;
  display: block;
}

.edu-info-card strong {
  display: block;
  font-size: 14px;
  color: #0B2E3D;
  margin-bottom: 4px;
}

.edu-info-card span {
  font-size: 12px;
  color: #888;
}

.edu-highlight {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 1px solid #bbf7d0;
  border-radius: 10px;
  padding: 24px 28px;
  margin: 20px 0;
}

.edu-highlight h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0B2E3D;
  margin-bottom: 10px;
}

.edu-modules {
  counter-reset: module;
}

.edu-module {
  position: relative;
  padding: 16px 20px 16px 60px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 10px;
}

.edu-module::before {
  counter-increment: module;
  content: counter(module);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #0D7377, #0B2E3D);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.edu-module h4 {
  font-size: 15px;
  font-weight: 600;
  color: #0B2E3D;
  margin-bottom: 4px;
}

.edu-module p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.edu-detail {
  padding: 50px 0 70px;
}

.edu-detail-wrapper {
  display: flex;
  gap: 40px;
}

.edu-spy-nav {
  position: sticky;
  top: 100px;
  width: 220px;
  flex-shrink: 0;
  align-self: flex-start;
}

.edu-spy-nav .spy-link {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s;
  margin-bottom: 2px;
}

.edu-spy-nav .spy-link:hover {
  color: #0D7377;
  background: #f5f5f5;
}

.edu-spy-nav .spy-link.active {
  color: #0D7377;
  border-left-color: #0D7377;
  background: rgba(13, 115, 119, 0.06);
  font-weight: 600;
}

.edu-spy-content {
  flex: 1;
  min-width: 0;
}

.edu-spy-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0B2E3D;
  margin: 0 0 16px;
  padding-top: 10px;
}

.edu-spy-content h2:not(:first-child) {
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid #eee;
}

.edu-spy-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 16px;
}

.edu-spy-content ul, .edu-spy-content ol {
  margin-bottom: 18px;
  padding-left: 20px;
}

.edu-spy-content li {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 6px;
}

.edu-child-section {
  padding-top: 25px;
  margin-top: 45px;
  border-top: 1px solid #eee;
}

.edu-siblings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .edu-siblings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .edu-siblings-grid {
    grid-template-columns: 1fr;
  }
}
.edu-sibling-card {
  display: block;
  background: #ffffff;
  border: 1px solid #e8ecef;
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  transition: all 0.3s;
}

.edu-sibling-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: #0D7377;
}

.edu-sibling-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #0B2E3D;
  margin-bottom: 8px;
}

.edu-sibling-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 12px;
}

.edu-sibling-card .edu-sibling-link {
  font-size: 13px;
  font-weight: 600;
  color: #0D7377;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.edu-sibling-card:hover .edu-sibling-link {
  gap: 10px;
}

.edu-info-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .edu-detail-wrapper {
    flex-direction: column;
  }
  .edu-spy-nav {
    position: static;
    width: 100%;
    display: flex;
    overflow-x: auto;
    gap: 4px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }
  .edu-spy-nav .spy-link {
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 8px 14px;
  }
  .edu-spy-nav .spy-link.active {
    border-bottom-color: #0D7377;
    border-left: none;
  }
}
.legal-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow: hidden;
}

.legal-modal-overlay.active {
  display: flex;
}

.legal-modal {
  background: #ffffff !important;
  border-radius: 12px;
  width: 100%;
  max-width: 800px;
  max-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  backface-visibility: hidden;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid #e8ecef;
  flex-shrink: 0;
}

.legal-modal-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #0B2E3D;
  margin: 0;
}

.legal-modal-close {
  width: 36px;
  height: 36px;
  border: none;
  background: #f1f5f9;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #666;
  transition: all 0.2s;
}

.legal-modal-close:hover {
  background: #e2e8f0;
  color: #0B2E3D;
}

.legal-modal-body {
  padding: 28px;
  overflow-y: auto;
  flex: 1;
}

.legal-modal-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0B2E3D;
  margin: 24px 0 10px;
}

.legal-modal-body h3:first-child {
  margin-top: 0;
}

.legal-modal-body p {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-modal-body ul, .legal-modal-body ol {
  margin: 10px 0 16px 20px;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

.legal-modal-body ul li, .legal-modal-body ol li {
  margin-bottom: 6px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #000;
  color: #b0c4ce;
  font-size: 14px;
  /* Footer üst kısım */
}

.site-footer .footer-top {
  padding: 50px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .footer-top .footer-col {
  margin-bottom: 25px;
}

.site-footer .footer-top .footer-col .footer-logo {
  margin-bottom: 15px;
}

.site-footer .footer-top .footer-col .footer-logo img {
  height: 120px;
  width: auto;
}

.site-footer .footer-top .footer-col .footer-desc {
  color: #b0c4ce;
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.site-footer .footer-top .footer-col .footer-social {
  display: flex;
  gap: 10px;
}

.site-footer .footer-top .footer-col .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}

.site-footer .footer-top .footer-col .footer-social a:hover {
  background: #0D7377;
}

.site-footer .footer-top .footer-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.site-footer .footer-top .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-top .footer-links li {
  margin-bottom: 8px;
}

.site-footer .footer-top .footer-links li a {
  color: #b0c4ce;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
}

.site-footer .footer-top .footer-links li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.site-footer .footer-top .footer-links li a i {
  margin-right: 6px;
  font-size: 11px;
}

.site-footer .footer-top .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-top .footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 13px;
}

.site-footer .footer-top .footer-contact li i {
  margin-right: 10px;
  margin-top: 3px;
  color: #ffffff;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.site-footer .footer-top .footer-contact li a {
  color: #b0c4ce;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer .footer-top .footer-contact li a:hover {
  color: #ffffff;
}

.site-footer {
  /* Footer alt kısım */
}

.site-footer .footer-bottom {
  background: #1a1a1a;
  padding: 18px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer .footer-bottom .footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .site-footer .footer-bottom .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
.site-footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.site-footer .footer-bottom a:hover {
  color: #ffffff;
}