/* --- GENERAL SETTINGS (RESET & TAŞMA ÖNLEME) --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&display=swap');

html, body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  position: relative;
  scroll-behavior: smooth;

  /* ANDROID/CHROME FONT INFLATION KAPAT */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Mavi tıklama çerçevesini kaldır */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
*:focus { outline: none !important; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #333;

  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-fluid { width: 100%; padding: 0; }

a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

:root {
  --primary-orange: #f39c12;
  --dark-maroon: #5e2629;
  --text-white: #ffffff;
  --text-grey: #777;
}

/* UTILITIES */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 36px; color: #333; margin-bottom: 15px; font-weight: 700; }
.header-line { width: 70px; height: 4px; background: var(--primary-orange); margin: 0 auto; border-radius: 2px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.grid-2-no-gap { display: grid; grid-template-columns: 1fr 1fr; }

/* Buttons */
.btn-orange {
  display: inline-block;
  background-color: var(--primary-orange);
  color: #fff;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  border: 2px solid var(--primary-orange);
  cursor: pointer;
}
.btn-orange:hover { background-color: transparent; color: var(--primary-orange); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(243,156,18,0.4); }

.btn-transparent {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 13px 30px;
  border-radius: 30px;
  font-weight: 600;
  margin-left: 15px;
  cursor: pointer;
}
.btn-transparent:hover { background-color: #fff; color: #fff; }

/* TOP BAR & HEADER */
.top-bar { background-color: var(--primary-orange); color: var(--text-white); padding: 10px 0; font-size: 14px; }
.top-bar-content { display: flex; justify-content: space-between; align-items: center; }
.contact-info span { margin-right: 20px; }
.social-contact { display: flex; align-items: center; gap: 20px; }
.social-icons a { color: var(--text-white); margin-left: 10px; }
.social-icons a:hover { color: var(--dark-maroon); }

header { background-color: #fff; padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: relative; z-index: 100; }
.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-badge { background-color: var(--dark-maroon); color: #fff; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.logo-area h1 { font-size: 24px; color: var(--dark-maroon); font-weight: 700; }
nav ul { display: flex; gap: 30px; }
nav ul li a { color: #333; font-weight: 600; font-size: 15px; }
nav ul li a:hover, nav ul li a.active { color: var(--primary-orange); }
.header-actions { display: flex; align-items: center; gap: 15px; }
.search-btn { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--primary-orange); }
.btn-primary { background-color: var(--primary-orange); color: #fff; padding: 10px 25px; border-radius: 5px; font-weight: 600; cursor: pointer; }
.btn-primary:hover { background-color: #d35400; }

/* ✅ Mobilde top-bar'ı kaldır (bilgiler hamburger menüye taşınacak) */
@media (max-width: 992px){
  .top-bar{ display: none !important; }
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 90svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
}
.slider-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease-in-out; }
.slide.active { opacity: 1; }

.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(rgba(94, 38, 41, 0.6), rgba(0, 0, 0, 0.4)); z-index: 2; }
.hero-content-centered { position: relative; z-index: 3; text-align: center; width: 100%; }
.hero-text-center { max-width: 800px; margin: 0 auto; color: #fff; }
.hero-text-center h2 { font-size: 60px; font-weight: 700; margin: 20px 0; line-height: 1.2; }

.hero-text-center p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-btn:hover { background: var(--primary-orange); border-color: var(--primary-orange); }
.prev-hero-btn { left: 30px; } .next-hero-btn { right: 30px; }

@media (max-width: 768px) {
  .hero-btn{
    display: flex;
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  .prev-hero-btn{ left: 12px; }
  .next-hero-btn{ right: 12px; }
}

/* --- STUDENT SLIDER --- */
.info-cards-section { padding: 100px 0; background-color: #fff; position: relative; overflow: hidden; }
.student-slider-container { position: relative; padding: 0 60px; max-width: 1200px; margin: 0 auto; }
.student-track-window { width: 100%; overflow: hidden; }
.student-track { display: flex; gap: 30px; width: max-content; transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); padding: 40px 10px; align-items: center; }

.info-card {
  flex: 0 0 320px; width: 320px; height: 420px;
  padding: 40px 30px; text-align: center; border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative; overflow: hidden;
  transition: all 0.4s ease; cursor: pointer; background-color: #fff;
  display: flex; flex-direction: column; align-items: center; margin: 0;
}
.student-img img { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 20px; border: 4px solid var(--primary-orange); transition: 0.4s ease; }
.info-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; color: #333; transition: 0.4s; }
.info-card .role { font-size: 15px; color: var(--text-grey); font-weight: 500; transition: 0.4s; }

/* MAROON CARD */
.maroon-card { background-color: var(--dark-maroon); transform: scale(1.05); z-index: 5; box-shadow: 0 20px 50px rgba(94, 38, 41, 0.3); }
.maroon-card h3, .maroon-card .role { color: #fff !important; }
.maroon-card .student-img img { border-color: #fff; }
.maroon-card .card-details { background: linear-gradient(to top, var(--dark-maroon) 95%, rgba(94, 38, 41, 0)); border-top: 2px solid #fff; }
.maroon-card .card-details ul li { border-bottom: 1px solid rgba(255,255,255,0.2); color: #fff; }

/* YAN KARTLAR */
.info-card:not(.maroon-card) .card-details { background-color: var(--dark-maroon); border-top: 2px solid rgba(255,255,255,0.2); }
.info-card:not(.maroon-card) .card-details ul li { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.2); }

.card-details { position: absolute; bottom: 0; left: 0; width: 100%; height: 160px; padding: 20px; display: flex; align-items: center; justify-content: center; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.card-details ul li { margin: 8px 0; font-size: 15px; padding-bottom: 5px; }

/* --- PC HOVER --- */
@media (hover: hover) {
  .info-card:hover .card-details { transform: translateY(0); }
  .info-card:not(.maroon-card):hover { transform: translateY(-10px); }
  .feature-box:hover, .course-box:hover { transform: translateY(-10px); background-color: var(--dark-maroon); }
  .feature-box:hover h3, .course-box:hover h3, .feature-box:hover p, .course-box:hover p, .feature-box:hover .icon-box, .course-box:hover .course-icon { color: #fff !important; }
  .feature-box:hover .icon-box i { transform: rotate(360deg); transition: transform 0.6s ease-in-out; }
}

/* SLIDER BUTONLARI */
.student-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 9999; background: var(--primary-orange); color: #fff; width: 50px; height: 50px; border-radius: 50%; font-size: 20px; cursor: pointer; border: none; box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4); transition: 0.3s; display: flex; align-items: center; justify-content: center; pointer-events: auto; }
.student-btn:hover { background: var(--dark-maroon); }
.prev-student-btn { left: 5px; } .next-student-btn { right: 5px; }

/* WHATSAPP */
.whatsapp-btn {
  position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
  background-color: #25d366; color: #fff; border-radius: 50%; text-align: center;
  font-size: 35px; box-shadow: 2px 2px 10px rgba(0,0,0,0.2); z-index: 10000;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-btn:hover { background-color: #128C7E; transform: scale(1.1); color: #fff; }
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* FEATURES & COURSES & FOUNDER */
.features-section { padding: 80px 0; background-color: #f9f9f9; }
.feature-box { background: #fff; padding: 40px 30px; text-align: center; border-radius: 10px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); transition: all 0.4s ease; cursor: pointer; }
.icon-box { font-size: 40px; color: var(--primary-orange); margin-bottom: 20px; display: inline-block; transition: 0.4s; }
.feature-box h3 { font-size: 20px; margin-bottom: 15px; transition: 0.4s; }
.feature-box p { color: var(--text-grey); line-height: 1.6; transition: 0.4s; }
.maroon-feature { background-color: var(--dark-maroon); color: #fff; }
.maroon-feature .icon-box, .maroon-feature h3 { color: #fff; }
.maroon-feature p { color: rgba(255,255,255,0.8); }

.courses-section { padding: 80px 0; background-color: #fff; }
.course-box { background: #fff; padding: 40px 30px; text-align: center; border-radius: 10px; border: 1px solid #eee; transition: all 0.4s ease; cursor: pointer; }
.course-icon { font-size: 45px; color: var(--primary-orange); margin-bottom: 25px; transition: 0.4s; }
.course-box h3 { font-size: 22px; margin-bottom: 15px; color: var(--dark-maroon); font-weight: 700; transition: 0.4s; }
.course-box p { color: var(--text-grey); font-size: 15px; line-height: 1.6; transition: 0.4s; }

/* --- ENGLISH & BIOLOGY ÖZEL RENK --- */
.course-box.maroon-course { background-color: var(--dark-maroon); border-color: var(--dark-maroon); }
.course-box.maroon-course h3, .course-box.maroon-course p, .course-box.maroon-course .course-icon { color: #fff !important; }

/* Founder */
.founder-section { padding: 100px 0; background-color: #fff; }
.founder-wrapper { display: flex; align-items: center; gap: 60px; }
.founder-img { flex: 1; position: relative; max-width: 450px; }
.founder-img img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0px var(--primary-orange); object-fit: cover; }
.founder-badge { position: absolute; bottom: -30px; right: -30px; width: 80px; height: 80px; background-color: var(--dark-maroon); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; border: 5px solid #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.founder-content { flex: 1.2; }
.founder-content .subtitle { color: var(--primary-orange); font-weight: 700; letter-spacing: 2px; font-size: 14px; display: block; margin-bottom: 15px; }
.founder-content h2 { font-size: 42px; font-weight: 700; color: var(--dark-maroon); line-height: 1.2; margin-bottom: 25px; }
.founder-text { font-size: 16px; line-height: 1.8; color: var(--text-grey); margin-bottom: 30px; font-style: italic; }
.founder-info { margin-bottom: 30px; border-left: 4px solid var(--primary-orange); padding-left: 20px; }
.founder-info p { color: var(--text-grey); font-size: 14px; margin: 0; }
.signature { font-family: 'Dancing Script', cursive; font-size: 32px; color: var(--dark-maroon); margin-top: 10px; opacity: 0.9; }

.stats-section {
  padding: 80px 0;
  background: linear-gradient(rgba(94, 38, 41, 0.9), rgba(94, 38, 41, 0.9)), url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?q=80&w=2670&auto=format&fit=crop');
  background-size: cover;
  background-attachment: scroll;
  background-position: center;
  color: #fff;
  text-align: center;
}
.stat-box i { font-size: 50px; color: var(--primary-orange); margin-bottom: 20px; }
.stat-box h3 { font-size: 48px; font-weight: 700; margin-bottom: 10px; }
.stat-box p { font-size: 18px; font-weight: 500; opacity: 0.9; }

/* MAP & FOOTER */
.contact-map-section { position: relative; }
.contact-box-maroon { background-color: var(--dark-maroon); color: #fff; padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.contact-box-maroon h2 { font-size: 36px; margin-bottom: 20px; }
.contact-box-maroon p { margin-bottom: 40px; opacity: 0.8; }
.contact-details-list li { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.contact-details-list li i { font-size: 24px; color: var(--primary-orange); margin-top: 5px; }
.contact-details-list li strong { display: block; font-size: 18px; margin-bottom: 5px; }
.contact-details-list li p { opacity: 0.8; margin: 0; }
.map-box { min-height: 600px; }

footer { background-color: #222; color: #ccc; padding: 80px 0 0; }
.footer-content { padding-bottom: 60px; }
.footer-logo .logo-badge { background-color: var(--primary-orange); color: #fff; }
.footer-logo h1 { color: #fff; }
.footer-col h3 { color: #fff; font-size: 20px; margin-bottom: 25px; position: relative; padding-bottom: 10px; }
.footer-col h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 50px; height: 2px; background-color: var(--primary-orange); }
.footer-col ul li { margin-bottom: 15px; }
.footer-col ul li a { color: #ccc; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--primary-orange); padding-left: 5px; }
.footer-col ul li i { color: var(--primary-orange); margin-right: 10px; }
.footer-social a { display: inline-flex; width: 40px; height: 40px; background: rgba(255,255,255,0.1); color: #fff; align-items: center; justify-content: center; border-radius: 50%; margin-right: 10px; transition: 0.3s; }
.footer-social a:hover { background: var(--primary-orange); }
.footer-bottom { background-color: #111; text-align: center; padding: 20px 0; margin-top: 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { margin: 0; }

.fade-in-up { opacity: 0; transform: translateY(30px); animation: fadeInUp 1s forwards; }
.delay-1 { animation-delay: 0.3s; } .delay-2 { animation-delay: 0.6s; } .delay-3 { animation-delay: 0.9s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.reveal { opacity: 0; transform: translateY(100px); transition: all 2.5s cubic-bezier(0.2, 1, 0.3, 1); visibility: hidden; }
.reveal.active { opacity: 1; transform: translateY(0); visibility: visible; }

/* MODAL STYLES */
.modal { display: none; position: fixed; z-index: 99999; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.7); backdrop-filter: blur(5px); justify-content: center; align-items: center; }
.modal-content { background-color: #fefefe; margin: auto; padding: 40px; border-radius: 15px; width: 90%; max-width: 500px; position: relative; box-shadow: 0 10px 40px rgba(0,0,0,0.3); animation: slideDown 0.4s ease; }
@keyframes slideDown { from { transform: translateY(-50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.close-btn { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; position: absolute; right: 20px; top: 10px; }
.close-btn:hover { color: #000; }
.modal-header h2 { margin-bottom: 5px; color: var(--dark-maroon); }
.modal-header p { color: var(--text-grey); margin-bottom: 30px; font-size: 14px; }
.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: #333; font-size: 14px; }
.form-group input, .form-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-family: 'Poppins', sans-serif; }
.form-group input:focus, .form-group select:focus { border-color: var(--primary-orange); }
.course-list { display: flex; flex-direction: column; gap: 10px; }
.course-item { display: flex; align-items: center; gap: 10px; }
.course-item input[type="checkbox"] { margin: 0; width: 16px; height: 16px; }
.course-item label { margin: 0; font-weight: 500; cursor: pointer; }

/* --- BLOG HOME SLIDER --- */
.blog-slider-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  padding-top: 10px;
  padding-bottom: 70px;
  overflow: hidden;
}
.blog-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}
.blog-slide-layout {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
}
.blog-visual { flex: 1.2; position: relative; z-index: 1; }
.blog-visual img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
  border-radius: 12px 0 0 12px;
  box-shadow: none;
}

.blog-info-card {
  flex: 1;
  background: #fff;
  padding: 50px;
  margin-left: 0;
  border-radius: 0 12px 12px 0;
  box-shadow: 10px 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #f0f0f0;
  border-left: none;
}

.blog-author {
  color: #5e2629;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-author i { color: #f39c12; }

.blog-title-large {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #f39c12;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-meta-row {
  font-size: 12px;
  color: #999;
  margin-bottom: 25px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  gap: 20px;
}
.blog-meta-row i { color: #f39c12; margin-right: 5px; }

.blog-excerpt {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 35px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.btn-learn-more {
  background-color: #f39c12;
  color: #fff;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  width: fit-content;
  box-shadow: 0 5px 15px rgba(243, 156, 18, 0.2);
}
.btn-learn-more:hover { background-color: #5e2629; transform: translateY(-2px); }

.blog-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 10;
}
.dot {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dot.active { background-color: #f39c12; transform: scale(1.3); }

.view-all-btn-custom {
  display: inline-block;
  border: 2px solid #ccc;
  color: #555;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}
.view-all-btn-custom:hover {
  background-color: #5e2629 !important;
  border-color: #5e2629 !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(94, 38, 41, 0.3);
}

/* BLOG slider mobile */
@media (max-width: 992px) {
  .blog-slider-container{ padding-top: 10px !important; padding-bottom: 60px !important; }
  .blog-slide-layout{
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    min-width: 100% !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
  .blog-visual{ width: 100% !important; flex: 0 0 auto !important; }
  .blog-visual img{
    width: 100% !important;
    height: auto !important;
    max-height: clamp(220px, 55vw, 340px) !important;
    object-fit: cover !important;
    border-radius: 12px 12px 0 0 !important;
  }
  .blog-info-card{
    width: 100% !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    padding: 22px 16px !important;
    border-radius: 0 0 12px 12px !important;
    border: 1px solid #eee !important;
    border-top: none !important;
    box-sizing: border-box !important;
  }
  .blog-info-card > *{
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 42ch !important;
  }
  .blog-title-large{ font-size: 20px !important; margin-bottom: 10px !important; }
  .blog-meta-row{ justify-content: center !important; margin-bottom: 12px !important; }
  .blog-excerpt{ font-size: 14px !important; -webkit-line-clamp: 3 !important; margin-bottom: 16px !important; }
  .btn-learn-more{ margin: 0 auto !important; padding: 10px 22px !important; }
}

/* 2. YUKARI ÇIK BUTONU */
#scrollTopBtn {
  display: none;
  position: fixed !important;
  bottom: 125px !important;
  right: 30px !important;
  z-index: 2147483647 !important;

  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  outline: none;
  background-color: #ffffff;
  color: #5e2629;

  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;

  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}
#scrollTopBtn:hover { background-color: #5e2629; color: #ffffff; transform: translateY(-5px); }

/* ScrollTop - Mobil */
@media (max-width: 992px) {
  #scrollTopBtn {
    bottom: 85px !important;
    right: 25px !important;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .whatsapp-btn { width: 55px; height: 55px; bottom: 20px; right: 20px; font-size: 30px; }
}

/* --- BLOGS.HTML PREMIUM GRID TASARIMI --- */
.blog-grid-system {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  padding-bottom: 100px;
  margin-top: 40px;
}
.premium-blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.premium-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(94, 38, 41, 0.15);
}
.premium-card-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}
.premium-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.premium-blog-card:hover .premium-card-img img { transform: scale(1.1); }

.premium-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.p-date {
  font-size: 12px;
  font-weight: 700;
  color: #f39c12;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}
.p-title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: 0.3s;
}
.premium-blog-card:hover .p-title { color: #5e2629; }

.p-summary {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.p-read-more {
  font-size: 14px;
  font-weight: 700;
  color: #5e2629;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.p-read-more:hover { gap: 15px; color: #f39c12; }

@media (max-width: 768px) {
  .blog-grid-system { grid-template-columns: 1fr; }
}

/* --- PREMIUM HEADER --- */
.page-header-premium {
  background: linear-gradient(rgba(94, 38, 41, 0.92), rgba(94, 38, 41, 0.92)), url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?q=80&w=2670&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 90px 0;
  text-align: center;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
}
.page-header-premium h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 30px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumb a {
  color: #f39c12;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.6); }
.breadcrumb span { font-size: 14px; opacity: 0.6; }

/* BLOG DETAILS PAGE */
.blog-detail-container{
  max-width: 980px;            /* biraz geniş: satırda daha çok kelime */
  margin: 46px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 50px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid #eee;
}

.blog-detail-img{
  width: 100%;
  height: clamp(260px, 38vw, 520px);
  object-fit: cover;
}

.blog-text-area{
  padding: 36px 46px;
  text-align: left;            /* modern okuma: PC’de soldan */
}

/* meta satırı */
.blog-header-meta{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.blog-date{
  color: #f39c12;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.back-link{
  color: #777;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #eee;
  background: #fafafa;
}
.back-link:hover{
  color: #5e2629;
  border-color: rgba(94,38,41,0.18);
  background: #fff;
}

/* başlık */
.blog-detail-title{
  font-size: 30px;
  font-weight: 800;
  color: #5e2629;
  margin: 18px 0 18px 0;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

/* içerik */
.blog-detail-content{
  font-size: 15.2px;          /* küçült -> satıra daha çok kelime */
  line-height: 1.65;          /* daha modern sıkı */
  color: #444;
}

.blog-detail-content p{
  margin: 0 0 16px 0;
}

/* içerik içinde başlıklar varsa */
.blog-detail-content h2,
.blog-detail-content h3{
  color: #222;
  margin: 22px 0 10px 0;
  line-height: 1.25;
}
.blog-detail-content h2{ font-size: 20px; }
.blog-detail-content h3{ font-size: 17px; }

/* liste görünümü modern */
.blog-detail-content ul,
.blog-detail-content ol{
  margin: 10px 0 18px 18px;
}
.blog-detail-content li{
  margin: 8px 0;
}

/* alıntı/quote varsa */
.blog-detail-content blockquote{
  margin: 18px 0;
  padding: 14px 16px;
  border-left: 4px solid #f39c12;
  background: #fff7e8;
  border-radius: 10px;
  color: #333;
}

/* BLOG DETAILS - MOBILE */
@media (max-width: 992px){
  .blog-text-area{
    padding: 22px 16px;
    text-align: center;
  }

  .blog-header-meta{
    justify-content: center;
    flex-wrap: wrap;
  }

  .blog-detail-title{
    font-size: 22px;
    line-height: 1.25;
  }

  .blog-detail-content{
    font-size: 14.6px;
    line-height: 1.6;
  }

  .blog-detail-content ul,
  .blog-detail-content ol{
    list-style-position: inside;
    padding-left: 0;
    margin-left: 0;
  }
}


/* =========================================================
   MOBILE HEADER + DRAWER MENU
   ========================================================= */
.mobile-header { display: none; }
.mobile-menu-overlay, .mobile-menu { display: none; }

@media (max-width: 992px) {

  .mobile-menu-overlay { display: block; }
  .mobile-menu { display: flex; }

  header .header-content > .logo-area,
  header .header-content > nav,
  header .header-content > .header-actions {
    display: none !important;
  }

  header { padding: 10px 0; }
  header .header-content { justify-content: center; }

  .mobile-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
  }

  .mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-maroon);
    text-decoration: none;
    min-width: 0;
  }
  .mobile-logo .logo-badge{
    width: 42px;
    height: 42px;
    font-size: 18px;
    flex: 0 0 auto;
  }
  .mobile-logo-text{
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
  }

  .mobile-actions{
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
  }
  .mobile-icon-btn{
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid #eee;
    background: #fff;
    color: var(--primary-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    transition: 0.2s;
    padding: 0;
  }
  .mobile-icon-btn:active{ transform: scale(0.98); }

  .mobile-apply-btn{
    background: var(--primary-orange);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.25);
  }
  .mobile-apply-btn:active{ transform: scale(0.98); }

  .mobile-menu-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s;
  }
  .mobile-menu{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(85vw, 360px);
    background: #fff;
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
  }
  .mobile-menu-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px;
    border-bottom: 1px solid #f1f1f1;
    font-weight: 800;
    color: var(--dark-maroon);
  }
  .mobile-menu-nav{
    display: flex;
    flex-direction: column;
    padding: 14px;
    gap: 8px;
  }
  .mobile-menu-nav a{
    padding: 14px 12px;
    border-radius: 12px;
    color: #333;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #f1f1f1;
    background: #fff;
  }
  .mobile-menu-nav a:active{ transform: scale(0.99); }

  body.menu-open .mobile-menu{ transform: translateX(0); }
  body.menu-open .mobile-menu-overlay{ opacity: 1; pointer-events: auto; }
}

/* Drawer içi Contact alanı */
@media (max-width: 992px){
  .mobile-menu-contact{
    padding: 14px;
    border-top: 1px solid #f1f1f1;
    margin-top: 6px;
  }
  .mobile-menu-contact-title{
    font-weight: 900;
    color: var(--dark-maroon);
    margin: 6px 2px 12px 2px;
    letter-spacing: .3px;
  }
  .mm-contact-item{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid #f1f1f1;
    background: #fff;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
    text-decoration: none;
  }
  .mm-contact-item i{
    color: var(--primary-orange);
    width: 18px;
    text-align: center;
    flex: 0 0 auto;
  }
  .mm-contact-item span{
    overflow-wrap: anywhere;
    word-break: break-word;
    font-weight: 700;
  }
  .mm-social{
    display: flex;
    gap: 10px;
    margin-top: 6px;
  }
  .mm-social a{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #f1f1f1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-maroon);
    background: #fff;
  }
  .mm-social a:active{ transform: scale(0.98); }
}

/* =========================================================
   TEAM / FOUNDER - MOBİL
   ========================================================= */
@media (max-width: 992px){
  .founder-section .container{ padding-left: 12px !important; padding-right: 12px !important; }
  .founder-section{ padding-top: 28px !important; padding-bottom: 60px !important; }

  .team-window{
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin: 0 auto 0 -20px !important;
    box-sizing: border-box !important;
    position: relative !important;
  }

  .team-slide{ padding: 12px 0 !important; }

  .founder-wrapper{
    width: 100% !important;
    margin: 0 auto !important;
    padding: 14px !important;
    gap: 14px !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  :root{ --teamImgH: clamp(220px, 62vw, 360px); }

  .founder-img img{
    width: auto !important;
    max-width: 92vw !important;
    height: auto !important;
    max-height: var(--teamImgH) !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 20px !important;
    box-shadow: 0 14px 0 var(--primary-orange) !important;
    background: #fff !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .team-window .team-nav-btn{
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9999 !important;
    width: 42px !important;
    height: 42px !important;
    font-size: 16px !important;
    display: flex !important;
  }
  .team-window .prev-team{ left: 12px !important; }
  .team-window .next-team{ right: 12px !important; }

  .founder-content{
    width: 100% !important;
    max-width: min(96vw, 560px) !important;
    margin: 0 auto !important;
    padding: 10px 14px !important;
    text-align: center !important;
    overflow-wrap: anywhere !important;
  }

  .founder-text{
    padding: 0 6px !important;
    overflow-wrap: anywhere !important;
    display: block !important;
    overflow: visible !important;
    text-overflow: initial !important;
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
  }

  .founder-content a,
  .founder-content button{
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 12px auto 0 auto !important;
  }
}

@media (max-width: 480px){
  .team-nav-btn{
    width: 44px !important;
    height: 44px !important;
    font-size: 16px !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .prev-team{ left: 10px !important; }
  .next-team{ right: 10px !important; }
}

/* =========================================================
   HERO CTA - FINTECH (MOBILE ONLY)  ✅ tek sürüm bırakıldı
   ========================================================= */
@media (max-width: 576px){

  /* HERO okları - mobilde gizle */
  .prev-hero-btn, .next-hero-btn{ display: none !important; }

  /* overlay mobilde okunur */
  .overlay{
    background: linear-gradient(rgba(0,0,0,0.64), rgba(0,0,0,0.34)) !important;
  }

  .hero-text-center{ padding: 0 18px !important; }

  .hero-text-center h2{
    font-size: 34px !important;
    line-height: 1.12 !important;
    letter-spacing: -0.6px !important;
    margin: 14px 0 10px !important;
  }

  .hero-text-center p{
    font-size: 15px !important;
    line-height: 1.55 !important;
    margin-bottom: 18px !important;
    opacity: 0.95 !important;
  }

  .hero-text-center div[style*="display:flex"],
  .hero-text-center div[style*="display: flex"]{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .hero-slider .hero-text-center a.btn-orange,
  .hero-slider .hero-text-center a.btn-transparent{
    width: min(92vw, 360px) !important;
    height: 56px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    position: relative !important;
    padding: 0 18px !important;

    border-radius: 16px !important;
    margin-left: 0 !important;

    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.7px !important;
    text-transform: uppercase !important;

    box-sizing: border-box !important;
    transition: transform .18s ease, box-shadow .25s ease, filter .25s ease;
  }

  .hero-slider .hero-text-center a i{
    position: absolute;
    right: 16px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    opacity: 0.95;
  }

  .hero-slider .btn-orange{
    background: linear-gradient(135deg, #f39c12, #ffb347) !important;
    border: 1px solid rgba(255,255,255,0.16) !important;
    box-shadow: 0 16px 34px rgba(0,0,0,0.28) !important;
    filter: saturate(1.05);
  }
  .hero-slider .btn-orange i{ background: rgba(255,255,255,0.22); }

  .hero-slider .btn-transparent{
    background: rgba(255,255,255,0.10) !important;
    border: 1px solid rgba(255,255,255,0.22) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18) !important;
  }
  .hero-slider .btn-transparent i{ background: rgba(255,255,255,0.14); }

  .hero-slider .hero-text-center a:active{ transform: scale(0.985); }
}

/* --- MOBİL / TABLET AYARLARI (GENEL) --- */
@media (max-width: 992px) {
  .card-details { transform: none !important; opacity: 1 !important; transition: none !important; bottom: 0 !important; display: flex !important; visibility: visible !important; background-color: var(--dark-maroon) !important; border-top: 2px solid rgba(255,255,255,0.2) !important; }
  .card-details ul li { color: #fff !important; border-bottom: 1px solid rgba(255,255,255,0.2) !important; }
  .info-card { overflow: visible !important; }
  .info-card:hover { transform: none; }
  .blog-wrapper { flex-direction: column; }
  .blog-img { height: 300px; }
  .founder-wrapper { flex-direction: column; text-align: center; }
  .founder-img { max-width: 100%; margin-bottom: 40px; }
  .founder-badge { right: 50%; transform: translateX(50%); bottom: -40px; }
  .founder-info { border-left: none; border-top: 4px solid var(--primary-orange); padding-top: 20px; padding-left: 0; }
  .grid-2-no-gap { grid-template-columns: 1fr; }
  .map-box { min-height: 400px; order: -1; }
  .contact-box-maroon { padding: 60px 30px; }
  .student-btn { display: flex; }
}
/* --- OPSİYON 1: PREMIUM DARK (ŞARAP KIRMIZISI ZEMİN) --- */
@media (max-width: 992px) {
    /* Header Zemini */
    header {
        background-color: #5e2629 !important; /* Şarap Kırmızısı */
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 12px 0 !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    /* Logo Kısmı */
    .mobile-logo-text {
        color: #ffffff !important; /* Beyaz Yazı */
        font-weight: 700 !important;
        font-size: 18px !important;
    }
    .mobile-logo .logo-badge {
        background-color: #ffffff !important; /* Beyaz Daire */
        color: #5e2629 !important; /* İkon Şarap Rengi */
        width: 38px !important; 
        height: 38px !important;
        font-size: 16px !important;
    }

    /* İkon Butonları (Arama & Menü) */
    .mobile-icon-btn {
        background: rgba(255,255,255,0.1) !important; /* Hafif Şeffaf */
        border: 1px solid rgba(255,255,255,0.2) !important;
        color: #ffffff !important;
        width: 38px !important;
        height: 38px !important;
        border-radius: 10px !important;
    }

    /* Apply Butonu (Modern Hap Şekli) */
    .mobile-apply-btn {
        background: #fffffff !important; /* Beyaz Yuvarlak */
        color: #5e2629 !important;
        border-radius: 50px !important; /* Tam Yuvarlak */
        padding: 8px 18px !important;
        font-size: 12px !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3) !important;
    }
}

