* {margin:0;padding:0;box-sizing:border-box;}
body {font-family: 'Inter', sans-serif;line-height: 1.6;color: #333;}
:root {
  --primary-color: #ff8c42;
  --secondary-color: #ffa726;
  --success-color: #28a745;
  --dark-color: #1a1a1a;
  --light-gray: #f8f5f0;
  --text-color: #333;
  --border-color: #e9ecef;
}
.header {background:white !important;box-shadow:0 2px 20px rgba(0,0,0,0.1);padding:1rem 0;position:fixed;top: 0;width:100%;z-index: 1000;}
.header .logo img {max-height: 32px;margin-right: 8px;}
/* Navigation Menu - Desktop */
@media (min-width: 1200px) {
  .navmenu {padding: 0;}
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--text-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    text-decoration: none;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--primary-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

  .navmenu>ul>li>a:hover,
  .navmenu li:hover>a,
  .navmenu .active {
    color: var(--primary-color);
  }

  /* Desktop Dropdown Styles */
  .navmenu .dropdown {
    position: relative;
  }

  .navmenu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    margin: 0;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
  }

  .navmenu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navmenu .dropdown-item {
    color: var(--text-color);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: none;
  }

  .navmenu .dropdown-item:hover {
    color: var(--primary-color);
    background-color: #f8f9fa;
    padding-left: 25px;
  }

  .navmenu .dropdown-toggle::after {
    content: '';
    border: none;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 8px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    transition: transform 0.3s ease;
  }

  .navmenu .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  color: #333;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  position: relative;
  z-index: 9999;
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navmenu {
    position: fixed;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.95);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9997;
    transform: translateX(100%);
  }

  .navmenu * {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .navmenu > ul {
    display: block;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #333;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--primary-color);
  }

  .navmenu a:hover:before,
  .navmenu .active:before {
    visibility: hidden;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    transform: translateX(0);
  }

  /* Mobile Dropdown Styles */
  .navmenu .dropdown-menu {
    position: static;
    background: #f8f9fa;
    padding: 5px 0;
    margin: 5px 20px;
    border-radius: 5px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .navmenu .dropdown.show .dropdown-menu {
    display: block;
  }

  .navmenu .dropdown-item {
    padding: 8px 15px;
    font-size: 15px;
    color: #333;
    text-decoration: none;
    display: block;
  }

  .navmenu .dropdown-item:hover {
    color: var(--primary-color);
  }

  .navmenu .dropdown-toggle {
    cursor: pointer;
  }
}

/* Sosyal medya ikonları */
.social-icons {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  margin-bottom: 15px;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: scale(1.1);
  color: white;
  text-decoration: none;
}

/* Mobilde gizle */
@media (max-width: 768px) {
  .social-icons {
    display: none !important;
  }
}

/* ===== INDEX SAYFASI STILLER ===== */

/* Hero section */
.hero {
  background: #f8f5f0;
  padding: 87px 0 0px;
  color: var(--text-color);
  position: relative;
  overflow: hidden;
  min-height: 700px;
}

.hero h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.2;
  color: var(--dark-color);
  max-width: 900px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hero h2 .highlight {
  color: #ff8c42;
  display: block;
  text-align: left;
  padding-left: 30px;
}

.hero p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #666;
  line-height: 1.5;
  max-width: 800px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
}

.hero .images-container {
  padding-left: 2rem;
  position: relative;
  height: 600px;
}

/* Büyük eğitmen kartı - sol üst */
.instructors-grid-large {
  position: absolute;
  top: 50px;
  left: 0px;
  width: 400px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 3;
  background-color: transparent;
}

.instructors-grid-large img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Küçük öğrenci kartı - sol orta */
.student-count-small {
  position: absolute;
  top: 380px;
  left: 80px;
  background: #ff8c42;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3);
  width: 250px;
  height: 70px;
  z-index: 2;
}

.student-avatars {
  display: flex;
  margin-right: 15px;
  align-items: center;
}

.student-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 3px solid white;
  margin-left: -8px;
  background: #666;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.student-avatar:first-child {
  margin-left: 0;
}

.student-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Büyük mezuniyet fotoğrafı - sağ alt (uzun) */
.graduation-image-large {
  position: absolute;
  bottom: 50px;
  right: 30px;
  width: 280px;
  height: 550px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

.graduation-image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.graduation-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

/* Stats Banner Section */
.stats-banner {
  background: #f5f1eb;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.stats-banner .container-fluid {
  position: relative;
  z-index: 2;
}

.stats-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.stats-row {
  justify-content: flex-end;
}

.stat-box {
  text-align: center;
  padding: 0 15px;
  position: relative;
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
  padding: 15px;
  border-radius: 50%;
  background-color: #ff8c42;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff8c42;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
}

/* About Section */
.about {
  padding: 80px 0;
  background: #ffffff;
}

.about .video-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about .video-container iframe {
  border-radius: 20px;
}

.about .content {
  padding-left: 40px;
}

.about .content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--dark-color);
  line-height: 1.3;
}

.about .content h2 .highlight {
  color: #ff8c42;
}

.about .content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 0;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.additional-content {
  padding-right: 50px;
}

.additional-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1.5rem;
}

.additional-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

.additional-content p:last-child {
  margin-bottom: 0;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: #f5f1eb;
}

.testimonials .section-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 3rem;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-content {
  flex-grow: 1;
  margin-bottom: 20px;
}

.testimonial-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  font-style: italic;
  margin: 0;
}

.testimonial-author h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.testimonial-author span {
  font-size: 0.9rem;
  color: #999;
}

.testimonials .carousel-indicators {
  justify-content: center;
  margin-top: 50px;
}

.testimonials .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #ddd;
  margin: 0 5px;
  opacity: 1;
}

.testimonials .carousel-indicators button.active {
  background-color: #ff8c42;
}

.testimonials .carousel-control-prev,
.testimonials .carousel-control-next {
  display: none;
}

/* Teachers Section */
.teachers {
  padding: 80px 0;
  background: #ffffff;
}

.teachers-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 2rem;
}

.teachers-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 0;
}

#teachersCarousel {
  position: relative;
}

.teachers-slide {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Teacher Image - Daire içi fotoğraf sistemi */
.teacher-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ff8c42;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff8c42;
  color: white;
  font-size: 16px;
  font-weight: bold;
  flex-shrink: 0;
}

.teacher-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Teacher Card Small - Index sayfası için */
.teacher-card-small {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  margin-bottom: 12px;
  min-height: 75px;
  width: 100%;
}

.teacher-card-small:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  background: white;
}

.teacher-card-small .teacher-info {
  flex: 1;
}

.teacher-card-small .teacher-info h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 6px;
  line-height: 1.3;
}

.skill-tag {
  background: #ff8c42;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-block;
}

.teachers .carousel-control-prev,
.teachers .carousel-control-next {
  width: 40px;
  height: 40px;
  background: #ff8c42;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.teachers .carousel-control-prev {
  left: -20px;
}

.teachers .carousel-control-next {
  right: -20px;
}

.teachers .carousel-control-prev:hover,
.teachers .carousel-control-next:hover {
  opacity: 1;
}

.teachers .carousel-control-prev-icon,
.teachers .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

.teachers .carousel-indicators {
  position: static;
  margin-top: 30px;
  margin-bottom: 0;
  justify-content: center;
}

.teachers .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #ddd;
  margin: 0 5px;
  opacity: 1;
}

.teachers .carousel-indicators button.active {
  background-color: #ff8c42;
}

/* Packages Section */
.packages {
  padding: 80px 0;
  background: #f5f1eb;
}

.packages .section-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 3rem;
}

/* Package Cards */
.package-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.package-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  margin-bottom: 30px;
  overflow: visible; /* EKLE */
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.package-card.popular {
  border: 3px solid #ff8c42;
  transform: scale(1.02);
}

.package-card.popular:hover {
  transform: scale(1.02) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: -15px; /* DEĞİŞTİR */
  left: 50%; /* DEĞİŞTİR */
  transform: translateX(-50%); /* EKLE */
  background: #ff8c42;
  color: white;
  padding: 8px 20px; /* DEĞİŞTİR */
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10; /* DEĞİŞTİR */
  white-space: nowrap; /* EKLE */
  box-shadow: 0 2px 8px rgba(255, 140, 66, 0.3); /* EKLE */
}

/* Premium badge EKLE */
.premium-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #28a745;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.package-header {
  margin-bottom: 2rem;
}

.package-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 1rem;
  line-height: 1.4;
  min-height: 60px; /* DEĞİŞTİR */
  margin-top: 10px; /* EKLE */
}

.package-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

.package-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.package-features .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 10px;
}

.package-features .feature-item i {
  color: #ff8c42;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.package-features .feature-item span {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

.package-price {
  text-align: center;
  border-top: 2px solid #f0f0f0;
  padding-top: 20px;
  margin-top: auto;
}

.package-price .price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff8c42;
  margin-bottom: 1rem;
}
.packages .btn-primary{
      background: #ff8c42;
      border: none;
      padding: 12px 30px;
      border-radius: 25px;
      font-weight: 600;
      transition: all 0.3s ease;
      text-decoration: none;
      color: white;
      display: inline-block;
}
.packages .btn-primary:hover {
      background: #e67529;
      transform: translateY(-2px);
      color: white;
      text-decoration: none;
    }
/* Blog Section */
.blog {
  padding: 80px 0;
  background: #ffffff;
}

.blog .section-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 3rem;
}

.blog-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  background: white;
}

.blog-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-read-more {
  color: var(--primary-color);
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  margin-top: auto;
  display: inline-block;
}

.blog-read-more:hover {
  color: #e67a35;
  text-decoration: none;
}

/* FAQ Section */
.faq {
  padding: 60px 0;
  background: #f5f1eb;
}

.faq .section-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 2.5rem;
}

.accordion-item {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  background: #ffffff;
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 20px;
  border: none;
  box-shadow: none;
  font-family: 'Poppins', sans-serif;
}

.accordion-button:not(.collapsed) {
  background: #ff8c42;
  color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px;
  line-height: 1.5;
  color: #666;
  font-size: 0.95rem;
  border-top: 1px solid #f0f0f0;
}


/* ===== HAKKIMIZDA SAYFASI STILLER ===== */

/* Ana Container */
.main-container {
  padding-top: 100px;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Hero Section - 3 Kolon Layout */
.main-container .hero-section {
  display: grid;
  grid-template-columns: 350px 1fr 1fr;
  gap: 40px;
  margin-bottom: 100px;
  min-height: 500px;
  align-items: start;
}

.main-container .hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-container .hero-illustration {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.main-container .hero-illustration img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 15px;
}

.main-container .cta-box {
  background: linear-gradient(135deg, #ff8c42 0%, #ffa726 100%);
  color: white;
  padding: 15px 18px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(255, 140, 66, 0.3);
}

.main-container .cta-box h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.main-container .cta-box .number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.main-container .hero-center {
  display: flex;
  align-items: center;
}

.main-container .hero-image {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-container .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-container .hero-right {
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.main-container .hero-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  line-height: 1.3;
}

.main-container .hero-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Mission Vision Section */
.main-container .mission-vision-section {
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin-bottom: 100px;
  min-height: 280px;
}

.main-container .mv-left {
  flex: 0 0 320px;
  background: linear-gradient(135deg, #ff8c42 0%, #ffa726 100%);
  border-radius: 15px;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  text-align: center;
}

.main-container .company-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 15px;
  opacity: 0.9;
}

.main-container .vision-mission {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.main-container .mv-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.main-container .mv-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.main-container .mv-icon {
  flex: 0 0 50px;
  height: 50px;
  background: #ff6b6b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.main-container .mv-item:nth-child(2) .mv-icon {
  background: #ff8c42;
}

.main-container .mv-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.main-container .mv-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

.main-container .features-section {
  background: linear-gradient(135deg, #f5f1eb 0%, #ede4d3 100%);
  padding: 50px 0;
  margin-bottom: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.main-container .features-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: nowrap;
 padding: 0 40px;
}

.main-container .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  flex: 1;
  min-width: 0;
  max-width: 280px;
  text-align: left;
}

.main-container .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.main-container .feature-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  margin-top: 5px;
}

.main-container .feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-container .feature-content {
  flex: 1;
}

.main-container .feature-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 1.3;
}

.main-container .feature-item p {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #666;
  margin: 0;
}

/* Sabit Sosyal Medya Butonları - HAKKIMIZDA için - GİZLİ */
.fixed-social {
  display: none;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
  color: #333;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  position: relative;
  z-index: 9999;
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navmenu {
    position: fixed;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(255, 255, 255, 0.95);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9997;
    transform: translateX(100%);
  }

  .navmenu * {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .navmenu > ul {
    display: block;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #333;
    padding: 10px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--primary-color);
  }

  .navmenu a:hover:before,
  .navmenu .active:before {
    visibility: hidden;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    transform: translateX(0);
  }
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablet Responsive */
@media (max-width: 1200px) {
  .main-container .hero-section {
    grid-template-columns: 300px 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .main-container .hero-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .main-container .hero-right {
    padding-left: 0;
  }
  
  .main-container .mission-vision-section {
    flex-direction: column;
  }
  
  .main-container .mv-left {
    flex: none;
    width: 100%;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* INDEX sayfası mobile */
  .hero h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    line-height: 1.3;
    max-width: 100%;
    letter-spacing: 0.5px;
    word-spacing: 4px;
  }
  
  .hero h2 .highlight {
    padding-left: 0;
    text-align: center;
  }
  
  .hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 100%;
    letter-spacing: 0.3px;
    word-spacing: 2px;
    padding-left: 0;
  }
  
  .hero .images-container {
    padding-left: 0;
    margin-top: 3rem;
    height: 400px;
  }
  
  .instructors-grid-large {
    width: 200px;
    height: 140px;
    top: 0;
    left: 10px;
  }
  
  .student-count-small {
    width: 180px;
    height: 60px;
    top: 160px;
    left: 10px;
  }
  
  .graduation-image-large {
    width: 150px;
    height: 200px;
    bottom: 20px;
    right: 10px;
  }
  
  .social-icons {
    display: none;
  }
  
  .stats-banner {
    padding: 60px 0;
  }
  
  .stats-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .stats-row {
    justify-content: center;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .about .content {
    padding-left: 0;
    margin-top: 3rem;
  }
  
  .about .content h2 {
    font-size: 2rem;
  }
  
  .about .video-container iframe {
    height: 250px;
  }
  
  .about-image img {
    height: 300px;
    margin-bottom: 3rem;
  }
  
  .additional-content {
    padding-right: 0;
  }
  
  .additional-content h3 {
    font-size: 1.8rem;
  }

  .testimonials .section-title h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .testimonials .carousel-item .row > div {
    margin-bottom: 20px;
  }

/* Teachers Section */
.teachers {
  padding: 80px 0;
  background: #ffffff;
}

.teachers-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 2rem;
}

.teachers-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 0;
}

#teachersCarousel {
  position: relative;
}

.teachers-slide {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.teacher-card-small {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.teacher-card-small:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.teacher-card-small .teacher-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ff8c42;
}

.teacher-card-small .teacher-info h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.teacher-card-small .skill-tag {
  background: #ff8c42;
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
}

.teachers .carousel-control-prev,
.teachers .carousel-control-next {
  width: 40px;
  height: 40px;
  background: #ff8c42;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.teachers .carousel-control-prev {
  left: -20px;
}

.teachers .carousel-control-next {
  right: -20px;
}

.teachers .carousel-control-prev:hover,
.teachers .carousel-control-next:hover {
  opacity: 1;
}

.teachers .carousel-control-prev-icon,
.teachers .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

.teachers .carousel-indicators {
  position: static;
  margin-top: 30px;
  margin-bottom: 0;
}

.teachers .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #ddd;
  margin: 0 5px;
  opacity: 1;
}

.teachers .carousel-indicators button.active {
  background-color: #ff8c42;
}

@media (max-width: 768px) {
  .teachers-content h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .teacher-card-small {
    flex-direction: column;
    text-align: center;
  }
  
  .teacher-card-small .teacher-image img {
    width: 100px;
    height: 100px;
  }
  
  .teachers .carousel-control-prev,
  .teachers .carousel-control-next {
    display: none;
  }
}

  /* HAKKIMIZDA sayfası mobile */
  .main-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .main-container .hero-illustration {
    height: 300px;
    padding: 0;
  }
  
  .main-container .hero-image {
    height: 300px;
  }
  
  .main-container .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .main-container .mv-left {
    padding: 40px 30px;
  }
  
  .main-container .vision-mission {
    font-size: 1.8rem;
  }
  
  .main-container .mv-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .main-container .mv-icon {
    margin: 0 auto;
  }
  
  .main-container .mv-content h3 {
    font-size: 1.3rem;
  }
  
  .main-container .mv-content p {
    font-size: 1rem;
    text-align: center;
  }
  
  /* Features mobil */
  .main-container .features-grid {
    flex-direction: column;
    gap: 20px;
    padding: 0 15px;
  }
  
  .main-container .feature-item {
    padding: 20px 15px;
    max-width: 100%;
  }
  
  .main-container .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  
  .main-container .feature-item h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    min-height: auto;
  }
  
  .main-container .feature-item p {
    font-size: 0.85rem;
  }
  
  .fixed-social {
    display: none;
  }
}

/* ===== PAKETLER SAYFASI STILLER ===== */

/* Paketler Container */
.packages-container {
  padding-top: 100px;
}

/* Paketler Hero Section - Gradient Banner */
.packages-hero {
  background: linear-gradient(135deg, #ff8c42 0%, #ffa726 50%, #ff7043 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.packages-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="85" cy="15" r="2" fill="white" opacity="0.6"/><circle cx="90" cy="25" r="1.5" fill="white" opacity="0.4"/><circle cx="80" cy="30" r="1" fill="white" opacity="0.5"/><polygon points="95,10 98,16 92,16" fill="white" opacity="0.7"/></svg>') no-repeat;
  background-size: 300px 200px;
  background-position: top right;
  pointer-events: none;
}

.packages-hero .container {
  position: relative;
  z-index: 2;
}

.packages-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: white;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.packages-hero p {
  font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  margin-top: 20px;
  line-height: 1.6;
  max-width: 800px;
}

/* Paketler Section */
.packages-section {
  padding: 100px 0;
  background: #ffffff;
}

.packages-section .section-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.packages-section .section-title p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 60px;
}

/* Package Groups Styling */
.package-group {
  margin-bottom: 80px;
}

.group-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.group-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #ff8c42;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Package Card Düzeltmesi */
.package-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  margin-bottom: 30px;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.package-card.popular {
  border: 2px solid #ff8c42;
  transform: scale(1.02);
}

.package-card.popular:hover {
  transform: scale(1.02) translateY(-10px);
}

.package-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
  text-align: left;
  line-height: 1.3;
  min-height: 80px;
}

.package-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 25px;
}

.package-features {
  flex-grow: 1;
  margin-bottom: 25px;
}

.package-features .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.package-features .feature-item i {
  color: #28a745;
  margin-right: 10px;
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 1rem;
}

.package-features .feature-item span {
  color: #555;
  flex: 1;
}

/* Mobile Responsive - Groups */
@media (max-width: 768px) {
  .package-group {
    margin-bottom: 60px;
  }
  
  .group-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
  
  .package-card {
    margin-bottom: 20px;
  }
  
  .package-header h3 {
    font-size: 1.2rem;
    min-height: auto;
  }
}

.package-price {
  text-align: center;
  padding-top: 25px;
  border-top: 2px solid #f0f0f0;
}

.package-price .price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff8c42;
  margin-bottom: 20px;
}

.package-price .btn {
  background: #ff8c42;
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.package-price .btn:hover {
  background: #e6743a;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #f5f1eb;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.faq-section .section-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 60px;
}

/* Responsive - Paketler */
@media (max-width: 992px) {
  .packages-hero h1 {
    font-size: 3rem;
  }
  
  .packages-hero p {
    font-size: 1.1rem;
  }
  
  .package-card.popular {
    transform: none;
    margin-bottom: 30px;
  }
  
  .package-card.popular:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .packages-container {
    padding-top: 80px;
  }
  
  .packages-hero {
    padding: 100px 0 60px;
  }
  
  .packages-hero h1 {
    font-size: 2.5rem;
  }
  
  .packages-hero p {
    font-size: 1rem;
  }
  
  .packages-section {
    padding: 80px 0;
  }
  
  .packages-section .section-title h2 {
    font-size: 2rem;
  }
  
  .package-card {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .package-header h3 {
    font-size: 1.5rem;
  }
  
  .package-price .price {
    font-size: 2rem;
  }
  
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-section .section-title h2 {
    font-size: 2rem;
  }
}

/* Packages Section - Detay */
.package-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  margin-bottom: 30px;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.package-card.popular {
  border: 2px solid #ff8c42;
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff8c42;
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
}

.package-header {
  margin-bottom: 25px;
}

.package-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 70px;
}

.package-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.package-features {
  flex-grow: 1;
  margin-bottom: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
}

.feature-item i {
  color: #28a745;
  margin-right: 10px;
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item span {
  color: #555;
}

.package-price {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.package-price .price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff8c42;
}

/* Blog Section */
.blog {
  padding: 80px 0;
  background: #ffffff;
}

.blog .section-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 3rem;
}

.blog-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.blog-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-read-more {
  color: #ff8c42;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  margin-top: auto;
  display: inline-block;
}

.blog-read-more:hover {
  color: #e6743a;
  text-decoration: none;
}

/* FAQ Section */
.faq {
  padding: 60px 0;
  background: #f5f1eb;
}

.faq .section-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 2.5rem;
}

.accordion-item {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-button {
  background: #ffffff;
  color: var(--dark-color);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 20px;
  border: none;
  box-shadow: none;
  font-family: 'Poppins', sans-serif;
}

.accordion-button:not(.collapsed) {
  background: #ff8c42;
  color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px;
  line-height: 1.5;
  color: #666;
  font-size: 0.95rem;
  border-top: 1px solid #f0f0f0;
}

/* Footer - Tam Genişlik */
.footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 60px 0 20px;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.footer-top {
  padding-bottom: 40px;
}

.footer-section h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 25px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  line-height: 1.5;
}

.footer-links a:hover {
  color: #ff8c42;
}

.footer-contact .contact-item {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: #bdc3c7;
}

.footer-contact .contact-item strong {
  color: #ffffff;
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}
footer a img:hover {
  opacity: 1 !important;
  transform: scale(1.05);
}
.working-hours .hours-item {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #bdc3c7;
  line-height: 1.5;
}

/* Sosyal Medya Linkleri */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 5px;
  display: flex;

  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #ff8c42;
  color: white;
  border-color: #ff8c42;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #95a5a6;
  font-size: 0.9rem;
}
/* ===== ÖĞRETMENLER SAYFASI STILLER ===== */

/* Teachers Page Title Section */
.teachers-page .page-title {
  background: linear-gradient(135deg, #ff8c42 0%, #ffa726 100%);
  padding: 140px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.teachers-page .page-title::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.teachers-page .page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}

.teachers-page .page-title .heading {
  position: relative;
  z-index: 2;
}

.teachers-page .page-title h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.teachers-page .page-title p {
  font-size: 1.2rem;
  text-align: center;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Teachers Grid Section */
.teachers-page .teachers-grid {
  padding: 100px 0;
  background: #f8f5f0;
}

.teachers-page .teacher-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 30px;
}

.teachers-page .teacher-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.teachers-page .teacher-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 4px solid #ff8c42;
  position: relative;
}

.teachers-page .teacher-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teachers-page .teacher-avatar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #ff8c42, #ffa726);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.teachers-page .teacher-card:hover .teacher-avatar::before {
  opacity: 0.1;
}

.teachers-page .teacher-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.teachers-page .teacher-subject {
  background: #ff8c42;
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}

.teachers-page .teacher-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Teacher Action Button */
.teachers-page .teacher-action {
  margin-top: 20px;
  text-align: center;
}

.teachers-page .btn-teacher-info {
  background: #ff8c42;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 200px;
  box-shadow: 0 3px 15px rgba(255, 140, 66, 0.3);
}

.teachers-page .btn-teacher-info:hover {
  background: #e6743a;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(255, 140, 66, 0.4);
  text-decoration: none;
}
 /* Modal Styles */
    .teacher-modal {
      display: none;
      position: fixed;
      z-index: 10000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.5);
      backdrop-filter: blur(5px);
    }

    .teacher-modal.show {
      display: flex;
      align-items: center;
      justify-content: center;
      animation: fadeIn 0.3s ease-out;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .teacher-modal-content {
      background: white;
      border-radius: 20px;
      padding: 0;
      max-width: 800px;
      width: 90%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      animation: slideIn 0.3s ease-out;
    }

    @keyframes slideIn {
      from { transform: translateY(-50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .modal-header {
      background: linear-gradient(135deg, #ff8c42 0%, #ffa726 100%);
      color: white;
      padding: 25px 30px;
      border-radius: 20px 20px 0 0;
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 20px;
      right: 25px;
      background: none;
      border: none;
      color: white;
      font-size: 28px;
      cursor: pointer;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .modal-close:hover {
      background: rgba(255,255,255,0.2);
      transform: rotate(90deg);
    }

    .modal-body {
      padding: 30px;
    }

/* Teachers Page Section Title */
.teachers-page .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.teachers-page .section-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.teachers-page .section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Teachers Page CTA Section */
.teachers-page .cta-section {
  background: linear-gradient(135deg, #ff8c42 0%, #ffa726 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
}

.teachers-page .cta-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.teachers-page .cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.teachers-page .btn-cta {
  background: white;
  color: #ff8c42;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.teachers-page .btn-cta:hover {
  background: #f8f9fa;
  color: #ff8c42;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Blog Section - Teachers Page */
.teachers-page .blog {
  padding: 80px 0;
  background: #ffffff;
}

.teachers-page .blog .section-title h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 3rem;
}

.teachers-page .blog-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.teachers-page .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.teachers-page .blog-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.teachers-page .blog-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.teachers-page .blog-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.teachers-page .blog-read-more {
  color: #ff8c42;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  margin-top: auto;
  display: inline-block;
}

.teachers-page .blog-read-more:hover {
  color: #e6743a;
  text-decoration: none;
}

/* Teachers Page Responsive */
@media (max-width: 768px) {
  .teachers-page .page-title h1 {
    font-size: 2.5rem;
  }

  .teachers-page .page-title p {
    font-size: 1rem;
  }

  .teachers-page .teachers-grid {
    padding: 60px 0;
  }

  .teachers-page .section-title h2 {
    font-size: 2rem;
  }

  .teachers-page .teacher-card {
    padding: 20px;
  }

  .teachers-page .cta-section h3 {
    font-size: 1.8rem;
  }
}
/* ===== BLOG SAYFASI STILLER ===== */

/* Blog Page Title Section */
.blog-page .page-title {
  background: linear-gradient(135deg, #ff8c42 0%, #ffa726 100%);
  padding: 140px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}

.blog-page .page-title::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.blog-page .page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(-50%, 50%);
}

.blog-page .page-title .heading {
  position: relative;
  z-index: 2;
}

.blog-page .page-title h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.blog-page .page-title p {
  font-size: 1.2rem;
  text-align: center;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Grid Section */
.blog-page .blog-grid {
  padding: 100px 0;
  background: #ffffff;
}

.blog-page .blog-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
  margin-bottom: 30px;
}

.blog-page .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.blog-page .blog-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-page .blog-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
  line-height: 1.3;
  min-height: 60px;
}

.blog-page .blog-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-page .blog-read-more {
  color: #ff8c42;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
  margin-top: auto;
  display: inline-block;
}

.blog-page .blog-read-more:hover {
  color: #e6743a;
  text-decoration: none;
}

/* Pagination */
.blog-page .pagination {
  margin-top: 50px;
}

.blog-page .pagination .page-link {
  color: var(--text-color);
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  padding: 12px 16px;
  font-weight: 500;
  border-radius: 8px;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.blog-page .pagination .page-link:hover {
  color: #ff8c42;
  background-color: #f8f9fa;
  border-color: #ff8c42;
}
.blog-page .pagination .page-item.active .page-link {background-color:#ff8c42;border-color:#ff8c42;color:white;}
.blog-page .pagination .page-item.disabled .page-link {color:#6c757d;background-color:#ffffff;border-color:#dee2e6;}
@media (max-width: 768px) {
  .blog-page .page-title h1 {font-size:2.5rem;}
  .blog-page .page-title p {font-size:1rem;}
  .blog-page .blog-grid {padding:60px 0;}
  .blog-page .blog-card {padding:20px;}
  .blog-page .blog-content h3 {font-size:1.2rem;min-height:auto;}
  .blog-page .pagination .page-link {padding:10px 12px;font-size:0.9rem;}
}
@media (max-width: 500px) {
  .hero {min-height: 290px;}
}