/* Modern ve responsive ana stil dosyası */

/* === ENHANCED HEADER STYLES FOR LOGIN/REGISTER PAGES === */
.enhanced-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 60px 0 40px 0;
  text-align: center;
  border-bottom: none;
  box-shadow: 0 8px 32px rgba(30,34,90,0.15);
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.enhanced-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('img/banner.jpg') center/cover;
  opacity: 0.1;
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 0 20px;
}

.header-logo {
  flex-shrink: 0;
}

.header-logo-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
  animation: float 3s ease-in-out infinite;
}

.header-text {
  text-align: left;
  flex: 1;
  max-width: 600px;
}

.enhanced-header h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
  color: white;
}

.header-subtitle {
  font-size: 1.1rem;
  margin-bottom: 24px;
  opacity: 0.9;
  line-height: 1.5;
  font-weight: 400;
}

.header-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.header-features .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.header-features .feature-item:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.header-features .feature-item i {
  font-size: 1.1rem;
  color: #fff;
}

.header-features .feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
}

/* === ENHANCED FORM STYLES === */
.input-group {
  position: relative;
  width: 100%;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.input-group i {
  color: #667eea;
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.input-group input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  font-size: 15px;
  background: #fff;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.input-group input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  outline: none;
}

.login-container h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #667eea;
  font-size: 1.8rem;
  margin-bottom: 24px;
  font-weight: 700;
}

.login-container h2 i {
  font-size: 1.6rem;
}

.login-container button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.login-container button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* === RESPONSIVE STYLES FOR ENHANCED HEADER === */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .header-text {
    text-align: center;
  }
  
  .enhanced-header h1 {
    font-size: 2rem;
  }
  
  .header-logo-img {
    width: 100px;
    height: 100px;
  }
  
  .header-features {
    justify-content: center;
    gap: 16px;
  }
  
  .header-features .feature-item {
    padding: 6px 12px;
  }
  
  .header-features .feature-item span {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .enhanced-header {
    padding: 40px 0 30px 0;
    min-height: 280px;
  }
  
  .enhanced-header h1 {
    font-size: 1.8rem;
  }
  
  .header-subtitle {
    font-size: 1rem;
  }
  
  .header-logo-img {
    width: 80px;
    height: 80px;
  }
  
  .header-features {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .input-group {
    gap: 8px;
  }
  
  .input-group i {
    font-size: 1.1rem;
    width: 18px;
  }
  
  .input-group input {
    padding: 10px 12px;
    font-size: 14px;
  }
}

/* === EĞİTİM PLANI SAYFALARI İÇİN EN GÜÇLÜ STİLLER (EN BAŞTA) === */
body #egitim-plani-sayfasi .page-title {
  font-size: 2.4rem !important;
  color: #2a3787 !important;
  text-align: center !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  margin-bottom: 8px !important;
  position: relative !important;
}

body #egitim-plani-sayfasi .page-title span {
  display: block !important;
  width: 60px !important;
  height: 4px !important;
  background: #3498db !important;
  margin: 14px auto 0 auto !important;
  border-radius: 2px !important;
}

body #egitim-plani-sayfasi .page-desc {
  text-align: center !important;
  color: #444 !important;
  font-size: 1.08em !important;
  margin-top: -10px !important;
  margin-bottom: 28px !important;
  max-width: 520px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body #egitim-plani-sayfasi .support-list {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 24px !important;
  padding: 0 !important;
}

body #egitim-plani-sayfasi .support-card {
  min-height: 260px !important;
  padding: 18px 12px 16px 12px !important;
  background: #fff !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 24px rgba(30,34,90,0.10) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  align-items: center !important;
  transition: box-shadow 0.2s, transform 0.2s !important;
  position: relative !important;
}

body #egitim-plani-sayfasi .support-card img {
  width: 100% !important;
  max-width: 280px !important;
  height: 250px !important;
  object-fit: cover !important;
  border-radius: 14px !important;
  margin-bottom: 16px !important;
  box-shadow: 0 2px 8px rgba(30,34,90,0.08) !important;
}

body #egitim-plani-sayfasi .support-card h3 {
  font-size: 1.18rem !important;
  color: #2a3787 !important;
  margin: 8px 0 8px 0 !important;
  font-weight: 700 !important;
  text-align: center !important;
}

body #egitim-plani-sayfasi .support-card p {
  color: #444 !important;
  font-size: 1em !important;
  margin-bottom: 18px !important;
  text-align: center !important;
}

body #egitim-plani-sayfasi .support-card .purchase-btn {
  background: #3498db !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border: none !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: all 0.2s !important;
  display: inline-block !important;
  margin-top: 10px !important;
}

body #egitim-plani-sayfasi .support-card .purchase-btn:hover {
  background: #2980b9 !important;
  transform: translateY(-1px) !important;
}

body #egitim-plani-sayfasi .support-card .download-btn {
  background: #27ae60 !important;
  color: #fff !important;
  padding: 8px 16px !important;
  border: none !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: all 0.2s !important;
  display: inline-block !important;
  margin: 6px !important;
}

body #egitim-plani-sayfasi .support-card .download-btn:hover {
  background: #229954 !important;
  transform: translateY(-1px) !important;
}

body #egitim-plani-sayfasi .support-card:hover {
  box-shadow: 0 8px 32px rgba(30,34,90,0.15) !important;
  transform: translateY(-2px) !important;
}

/* === BLOG CARD STİLLERİ === */
.blog-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(30,34,90,0.10);
  padding: 20px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  border: 1px solid rgba(30,34,90,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.blog-card:hover {
  box-shadow: 0 8px 32px rgba(30,34,90,0.15);
  transform: translateY(-4px);
  border-color: rgba(52, 152, 219, 0.2);
}

.blog-card img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(30,34,90,0.08);
  transition: transform 0.3s ease;
}

.blog-card:hover img {
  transform: scale(1.02);
}

.blog-card h3 {
  color: #2a3787;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.blog-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 16px 0;
  max-width: 400px;
}

.blog-card .blog-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-card .blog-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 0.9rem;
}

.blog-card .blog-btn.primary {
  background: #3498db;
  color: #fff;
}

.blog-card .blog-btn.primary:hover {
  background: #2980b9;
  transform: translateY(-1px);
}

.blog-card .blog-btn.secondary {
  background: #27ae60;
  color: #fff;
}

.blog-card .blog-btn.secondary:hover {
  background: #229954;
  transform: translateY(-1px);
}

.blog-card .blog-btn.edit {
  background: #ffb300;
  color: #222;
}

.blog-card .blog-btn.edit:hover {
  background: #ffa000;
  transform: translateY(-1px);
}

.blog-card .blog-btn.delete {
  background: #e53935;
  color: #fff;
}

.blog-card .blog-btn.delete:hover {
  background: #d32f2f;
  transform: translateY(-1px);
}

/* BLOG CARD MOBİL STİLLERİ */
@media (max-width: 700px) {
  .blog-card {
    padding: 16px;
    margin-bottom: 20px;
  }
  
  .blog-card img {
    max-width: 100%;
    height: 350px;
  }
  
  .blog-card h3 {
    font-size: 1.2rem;
  }
  
  .blog-card p {
    font-size: 0.95rem;
  }
  
  .blog-card .blog-actions {
    gap: 8px;
  }
  
  .blog-card .blog-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .blog-card {
    padding: 12px;
    margin-bottom: 16px;
  }
  
  .blog-card img {
    height: 300px;
  }
  
  .blog-card h3 {
    font-size: 1.1rem;
  }
  
  .blog-card p {
    font-size: 0.9rem;
  }
  
  .blog-card .blog-actions {
    flex-direction: column;
    gap: 6px;
  }
  
  .blog-card .blog-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* EĞİTİM PLANI SAYFALARI MOBİL STİLLERİ (700px altında) */
@media (max-width: 700px) {
  body #egitim-plani-sayfasi .page-title {
    font-size: 1.8rem !important;
    margin-bottom: 8px !important;
    letter-spacing: 0.5px !important;
  }
  
  body #egitim-plani-sayfasi .page-title span {
    width: 50px !important;
    height: 3px !important;
    margin: 10px auto 0 auto !important;
  }
  
  body #egitim-plani-sayfasi .page-desc {
    font-size: 0.95rem !important;
    margin-top: -5px !important;
    margin-bottom: 20px !important;
    max-width: 100% !important;
    padding: 0 10px !important;
  }
  
  body #egitim-plani-sayfasi .support-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 8px !important;
  }
  
  body #egitim-plani-sayfasi .support-card {
    min-height: auto !important;
    padding: 16px 12px !important;
    border-radius: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  body #egitim-plani-sayfasi .support-card img {
    width: 100% !important;
    max-width: 100% !important;
    height: 120px !important;
    border-radius: 8px !important;
    object-fit: cover !important;
  }
  
  body #egitim-plani-sayfasi .support-card h3 {
    font-size: 1.1rem !important;
    margin: 12px 0 8px 0 !important;
    text-align: center !important;
  }
  
  body #egitim-plani-sayfasi .support-card p {
    font-size: 0.9rem !important;
    margin-bottom: 12px !important;
    text-align: center !important;
  }
  
  body #egitim-plani-sayfasi .support-card .purchase-btn {
    font-size: 0.9rem !important;
    padding: 8px 16px !important;
    background: #3498db !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.2s !important;
    display: inline-block !important;
    margin-top: 8px !important;
  }
  
  body #egitim-plani-sayfasi .support-card .purchase-btn:hover {
    background: #2980b9 !important;
    transform: translateY(-1px) !important;
  }
  
  body #egitim-plani-sayfasi .support-card .download-btn {
    font-size: 0.85rem !important;
    padding: 6px 12px !important;
    background: #27ae60 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.2s !important;
    display: inline-block !important;
    margin: 4px !important;
  }
  
  body #egitim-plani-sayfasi .support-card .download-btn:hover {
    background: #229954 !important;
    transform: translateY(-1px) !important;
  }
  
  body #egitim-plani-sayfasi .support-card:hover {
    box-shadow: 0 8px 32px rgba(30,34,90,0.15) !important;
    transform: translateY(-2px) !important;
  }
}

/* EĞİTİM PLANI SAYFALARI KÜÇÜK MOBİL STİLLERİ (480px altında) */
@media (max-width: 480px) {
  body #egitim-plani-sayfasi .page-title {
    font-size: 1.6rem !important;
    margin-bottom: 6px !important;
    letter-spacing: 0.3px !important;
  }
  
  body #egitim-plani-sayfasi .page-title span {
    width: 40px !important;
    height: 2px !important;
    margin: 8px auto 0 auto !important;
  }
  
  body #egitim-plani-sayfasi .page-desc {
    font-size: 0.9rem !important;
    margin-top: -3px !important;
    margin-bottom: 16px !important;
    max-width: 100% !important;
    padding: 0 8px !important;
  }
  
  body #egitim-plani-sayfasi .support-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 0 6px !important;
  }
  
  body #egitim-plani-sayfasi .support-card {
    min-height: auto !important;
    padding: 12px 10px !important;
    border-radius: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  body #egitim-plani-sayfasi .support-card img {
    width: 100% !important;
    max-width: 100% !important;
    height: 100px !important;
    border-radius: 6px !important;
    object-fit: cover !important;
  }
  
  body #egitim-plani-sayfasi .support-card h3 {
    font-size: 1rem !important;
    margin: 10px 0 6px 0 !important;
    text-align: center !important;
  }
  
  body #egitim-plani-sayfasi .support-card p {
    font-size: 0.85rem !important;
    margin-bottom: 10px !important;
    text-align: center !important;
  }
  
  body #egitim-plani-sayfasi .support-card .purchase-btn {
    font-size: 0.8rem !important;
    padding: 6px 12px !important;
    background: #3498db !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.2s !important;
    display: inline-block !important;
    margin-top: 8px !important;
  }
  
  body #egitim-plani-sayfasi .support-card .purchase-btn:hover {
    background: #2980b9 !important;
    transform: translateY(-1px) !important;
  }
  
  body #egitim-plani-sayfasi .support-card .download-btn {
    font-size: 0.75rem !important;
    padding: 5px 10px !important;
    background: #27ae60 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.2s !important;
    display: inline-block !important;
    margin: 4px !important;
  }
  
  body #egitim-plani-sayfasi .support-card .download-btn:hover {
    background: #229954 !important;
    transform: translateY(-1px) !important;
  }
  
  body #egitim-plani-sayfasi .support-card:hover {
    box-shadow: 0 8px 32px rgba(30,34,90,0.15) !important;
    transform: translateY(-2px) !important;
  }
}

/* EĞİTİM PLANI SAYFALARI ÇOK KÜÇÜK MOBİL STİLLERİ (360px altında) */
@media (max-width: 360px) {
  body #egitim-plani-sayfasi .page-title {
    font-size: 1.4rem !important;
    margin-bottom: 4px !important;
    letter-spacing: 0.2px !important;
  }
  
  body #egitim-plani-sayfasi .page-title span {
    width: 35px !important;
    height: 2px !important;
    margin: 6px auto 0 auto !important;
  }
  
  body #egitim-plani-sayfasi .page-desc {
    font-size: 0.85rem !important;
    margin-top: -2px !important;
    margin-bottom: 12px !important;
    max-width: 100% !important;
    padding: 0 6px !important;
  }
  
  body #egitim-plani-sayfasi .support-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 0 4px !important;
  }
  
  body #egitim-plani-sayfasi .support-card {
    min-height: auto !important;
    padding: 10px 8px !important;
    border-radius: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    align-items: center !important;
  }
  
  body #egitim-plani-sayfasi .support-card img {
    width: 100% !important;
    max-width: 100% !important;
    height: 80px !important;
    border-radius: 4px !important;
    object-fit: cover !important;
  }
  
  body #egitim-plani-sayfasi .support-card h3 {
    font-size: 0.9rem !important;
    margin: 8px 0 4px 0 !important;
    text-align: center !important;
  }
  
  body #egitim-plani-sayfasi .support-card p {
    font-size: 0.8rem !important;
    margin-bottom: 8px !important;
    text-align: center !important;
  }
  
  body #egitim-plani-sayfasi .support-card .purchase-btn {
    font-size: 0.75rem !important;
    padding: 5px 10px !important;
  }
  
  body #egitim-plani-sayfasi .support-card .download-btn {
    font-size: 0.7rem !important;
    padding: 4px 8px !important;
  }
  
  body #egitim-plani-sayfasi .support-card .purchase-btn {
    background: #3498db !important;
    color: #fff !important;
    padding: 8px 16px !important;
    border: none !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.2s !important;
    display: inline-block !important;
    margin-top: 8px !important;
  }
  
  body #egitim-plani-sayfasi .support-card .purchase-btn:hover {
    background: #2980b9 !important;
    transform: translateY(-1px) !important;
  }
  
  body #egitim-plani-sayfasi .support-card .download-btn {
    background: #27ae60 !important;
    color: #fff !important;
    padding: 6px 12px !important;
    border: none !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.2s !important;
    display: inline-block !important;
    margin: 4px !important;
  }
  
  body #egitim-plani-sayfasi .support-card .download-btn:hover {
    background: #229954 !important;
    transform: translateY(-1px) !important;
  }
  
  body #egitim-plani-sayfasi .support-card:hover {
    box-shadow: 0 8px 32px rgba(30,34,90,0.15) !important;
    transform: translateY(-2px) !important;
  }
  
  /* Eğitim materyalleri kartları için çok küçük mobil optimizasyonları */
  .category-cards {
    gap: 12px;
    padding: 0 8px;
  }
  
  .category-card {
    min-height: 200px;
    padding: 16px 8px 12px 8px;
    border-radius: 12px;
  }
  
  .category-card .img-wrap {
    height: 100px;
    border-radius: 8px;
    margin-bottom: 12px;
  }
  
  .category-card h3 {
    font-size: 0.95rem;
    margin: 8px 0 4px 0;
  }
  
  .category-card p {
    font-size: 0.85em;
  }
  
  /* Pano yazıları kartları için çok küçük mobil optimizasyonları */
  .support-card:not(#egitim-plani-sayfasi .support-card) img {
    height: 260px;
    margin-bottom: 8px;
  }
  
  /* Blog kartları için çok küçük mobil optimizasyonları */
  .blog-card img {
    height: 260px;
    margin-bottom: 8px;
  }
  
  /* İletişim sayfası için çok küçük mobil optimizasyonları */
  .contact-hero {
    padding: 25px 8px;
  }
  
  .contact-hero h1 {
    font-size: 1.6rem;
  }
  
  .contact-hero-subtitle {
    font-size: 0.85rem;
  }
  
  .contact-hero-features {
    gap: 12px;
  }
  
  .feature-item {
    padding: 8px;
    gap: 8px;
  }
  
  .feature-item i {
    font-size: 0.9rem;
  }
  
  .feature-item span {
    font-size: 0.75rem;
  }
  
  .contact-container {
    margin: 12px 8px;
    padding: 20px 12px;
    max-width: calc(100% - 16px);
    border-radius: 12px;
  }
  
  .contact-header h2 {
    font-size: 1.2rem;
  }
  
  .contact-header p {
    font-size: 0.85rem;
    padding: 0 3px;
  }
}

body {
  font-family: 'Inter', 'Poppins', 'Segoe UI', 'Roboto', Arial, sans-serif;
  margin: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e3e9f7 100%) !important;
  min-height: 100vh;
  color: #222;
}

header {
  background: linear-gradient(90deg, #e3e9f7 60%, #f8fafc 100%);
  color: #1a237e;
  padding: 80px 0 30px 0; /* Yanlardaki padding'i kaldırdım */
  text-align: center;
  border-bottom: 1.5px solid #e0e0e0;
  box-shadow: 0 4px 24px rgba(30,34,90,0.08);
  min-height: 300px; /* Sabit yükseklik için */
}

header h1 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 0;
  text-shadow: 0 2px 12px rgba(30,34,90,0.08);
}

main {
  max-width: 1300px;
  margin: 0 auto 32px auto;
  background: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  display: block;
}

h2 {
  color: #2a3787;
  font-size: 1.5rem;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
}

form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

input[type="text"],
input[type="password"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px 12px;
  margin-top: 5px;
  margin-bottom: 18px;
  border: 1.5px solid #cfd8dc;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 15px;
  background: #f8fafc;
  transition: border 0.2s;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
  border: 1.5px solid #2a3787;
  outline: none;
}

button, input[type="submit"] {
  padding: 10px 20px;
  background: #3498db;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 8px;
}

button:hover, input[type="submit"]:hover {
  background-color: #2a81c2;
}

footer {
  text-align: center;
  color: #4a4a4a;
  margin-top: 40px;
  padding: 18px 0 8px 0;
  background: none;
  font-size: 1em;
}

.footer-text {
  margin: 0;
}

.social-icons {
  margin-top: 8px;
}
.social-icons a {
  color: #2a3787;
  margin: 0 8px;
  font-size: 1.2em;
  transition: color 0.2s;
}
.social-icons a:hover {
  color: #ff6f00;
}

/* === MODERN NAVBAR TASARIMI === */
/* Bu eski navbar stilleri kaldırıldı - yeni stiller aşağıda */

.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1002;
  padding-bottom: 8px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 0;
  z-index: 1003;
  pointer-events: none;
  margin-top: 5px;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a,
.dropdown-menu button {
  display: block;
  padding: 10px 15px;
  color: #2a3787;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 0;
}

.dropdown-menu a:hover,
.dropdown-menu button:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #2a3787;
  font-weight: 600;
  padding: 10px 15px;
}

.dropdown-menu a:first-child {
  border-radius: 8px 8px 0 0;
  margin: 0;
}

.dropdown-menu a:last-child,
.dropdown-menu button:last-child {
  border-radius: 0 0 8px 8px;
  margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  nav {
    padding: 0 12px;
    min-height: 60px;
    gap: 8px;
  }

  nav a,
  nav button.dropdown-toggle {
    padding: 8px 12px;
    font-size: 0.85rem;
    margin: 0 1px;
  }

  .dropdown-menu {
    min-width: 100%;
    width: max-content;
    padding: 16px 8px;
  }
  
  .dropdown-menu li {
    padding: 3px 0;
  }
  
  .dropdown-menu li a.dropdown-link {
    padding: 18px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1em;
    line-height: 1.5;
    min-height: 55px;
    display: flex;
    align-items: center;
    white-space: normal;
  }
  
  .dropdown-menu li a.dropdown-link:hover {
    background: linear-gradient(90deg, rgba(255, 111, 0, 0.15) 0%, rgba(255, 111, 0, 0.25) 100%);
    color: #ff6f00;
    transform: translateX(6px) scale(1.02);
    margin-left: 6px;
    margin-right: 0;
    box-shadow: inset 3px 0 0 #ff6f00, 0 3px 10px rgba(255, 111, 0, 0.18);
    font-weight: 700;
    letter-spacing: 0.3px;
    border-left: 3px solid #ff6f00;
    border-right: 1px solid rgba(255, 111, 0, 0.3);
  }
}

@media (max-width: 700px) {
  nav {
    flex-direction: column;
    padding: 8px 12px;
    min-height: auto;
    gap: 6px;
  }

  nav a,
  nav button.dropdown-toggle {
    width: 100%;
    text-align: center;
    padding: 10px 14px;
    margin: 1px 0;
    border-radius: 6px;
    font-size: 0.9rem;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 4px;
    pointer-events: auto;
  }

  .dropdown-menu a,
  .dropdown-menu button {
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 0;
    font-size: 0.85rem;
  }

  .dropdown-menu a:hover,
  .dropdown-menu button:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: none;
  }

  .dropdown-menu a:first-child {
    border-radius: 6px 6px 0 0;
  }

  .dropdown-menu a:last-child,
  .dropdown-menu button:last-child {
    border-radius: 0 0 6px 6px;
  }
}

@media (max-width: 700px) {
  main {
    max-width: 100vw;
    margin: 40px auto 18px auto;
    padding: 0;
    margin-top: 0; /* Mobil için boşluk kaldırıldı */
  }

  header {
    padding: 20px 0 12px 0; /* Mobil için yanlardaki padding'i kaldırdım */
    margin-top: 0; /* Mobil için boşluk kaldırıldı */
  }

  .navbar ul {
    gap: 8px;
    flex-wrap: wrap;
  }

  .navbar a.nav-link,
  .navbar a.dropdown-link,
  .navbar span.nav-link {
    padding: 10px 6px;
    font-size: 0.98em;
  }
}

@media (max-width: 480px) {
  nav {
    padding: 6px 8px;
    gap: 4px;
  }

  nav a,
  nav button.dropdown-toggle {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .dropdown-menu a,
  .dropdown-menu button {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  header h1 {
    font-size: 1.2rem;
  }

  main {
    padding: 0;
    border-radius: 0;
    margin-top: 60px; /* Küçük mobil için azaltılmış boşluk */
  }
}



/* === LOGIN CONTAINER === */
.login-container {
  width: 100%;
  max-width: 420px;
  margin: 40px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30, 34, 90, 0.1);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* İletişim sayfası hero bölümü */
.contact-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px 20px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.9;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.contact-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  font-weight: 300;
}

.contact-hero-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.2);
}

.feature-item i {
  font-size: 1.5rem;
  color: #ffd700;
}

.feature-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* İletişim container güncellemesi */
.contact-container {
  width: 100%;
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(30,34,90,0.12);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
}

.contact-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.contact-header {
  text-align: center;
  margin-bottom: 30px;
}

.contact-header h2 {
  color: #2a3787;
  font-size: 1.8rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-header h2 i {
  color: #667eea;
}

.contact-header p {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

/* Modern form ve kutu tasarımı */
.login-container, .register-container, main > form, main > .login-container, main > .register-container {
  width: 100%;
  max-width: 420px;
  margin: 40px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30,34,90,0.10);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.form-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.form-row label {
  font-weight: 600;
  color: #2a3787;
  margin-bottom: 6px;
  font-size: 1em;
}
input[type="text"],
input[type="password"],
input[type="email"],
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #cfd8dc;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 15px;
  background: #f8fafc;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
  border: 1.5px solid #2a3787;
  box-shadow: 0 0 0 2px #e3e9f7;
}
button, input[type="submit"] {
  padding: 12px 24px;
  background: linear-gradient(90deg, #3498db 60%, #2a81c2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.2s;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(30,34,90,0.08);
}
button:hover, input[type="submit"]:hover {
  background: linear-gradient(90deg, #2a81c2 60%, #3498db 100%);
  box-shadow: 0 4px 16px rgba(30,34,90,0.13);
}
.form-footer {
  text-align: center;
  margin-top: 10px;
  font-size: 0.98em;
}
/* Mesaj kutuları */
main > div[style*="color:green"], main > div[style*="color:red"] {
  width: 100%;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 1em;
  text-align: center;
}
main > div[style*="color:green"] {
  background: #e8f5e9;
  color: #2e7d32 !important;
  border: 1.5px solid #81c784;
}
main > div[style*="color:red"] {
  background: #ffebee;
  color: #c62828 !important;
  border: 1.5px solid #e57373;
}

/* Blog/Support Card Grid for pano yazıları */
.support-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 sütun */
  gap: 32px;
  margin: 40px auto 0 auto;
  padding: 0 40px; /* sağ ve sol boşluk */
  max-width: 1200px; /* ortalamak için */
  box-sizing: border-box;
}
@media (max-width: 1100px) {
  .support-list {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 16px;
  }
}
@media (max-width: 700px) {
  .support-list {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0;
  }
  
  /* Diğer sayfalar için mobil düzenlemeler */
  .content-section {
    padding: 20px 0;
    margin: 0;
  }
  
  /* Diğer sayfalar için navbar-banner boşluğu düzeltmesi */
  .content-section {
    margin-top: 0;
  }
  
  /* Diğer sayfalar için header margin düzeltmesi */
  .content-section + header,
  header + .content-section {
    margin-top: 0;
  }
  
  .page-title {
    font-size: 1.8rem !important;
    margin-bottom: 12px !important;
  }
  
  .page-desc {
    font-size: 0.95rem !important;
    margin-bottom: 20px !important;
    padding: 0;
  }
  
  /* Diğer sayfalar için footer düzenlemesi */
  footer {
    padding: 24px 0;
    margin-top: 24px;
  }
  
  .footer-text {
    font-size: 0.95rem;
  }
  
  .social-icons a {
    font-size: 1.2rem;
    padding: 10px;
  }
  
  /* Login ve Register sayfaları için özel mobil düzenlemeler */
  .login-container {
    margin: 24px auto;
    padding: 28px 20px 24px 20px;
  }
  
  /* Login ve Register sayfaları için footer düzenlemesi */
  footer {
    padding: 24px 0;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  
  .footer-text {
    font-size: 0.95rem;
    margin: 0;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 10px;
  }
  
  .social-icons a {
    font-size: 1.3rem;
    padding: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  

}
/* Eğitim planı sayfaları hariç tüm sayfalar için genel support-card stilleri */
.support-card:not(#egitim-plani-sayfasi .support-card) {
  min-height: 260px;
  padding: 18px 12px 16px 12px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(30,34,90,0.10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
/* Eğitim planı sayfaları hariç tüm sayfalar için genel support-card img stilleri */
.support-card:not(#egitim-plani-sayfasi .support-card) img {
  width: 100%;
  max-width: 280px;
  height: 250px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(30,34,90,0.08);
}
@media (max-width: 700px) {
  /* Eğitim planı sayfaları hariç tüm sayfalar için genel support-card img mobil stilleri */
  .support-card:not(#egitim-plani-sayfasi .support-card) img {
    max-width: 100%;
    height: 350px;
  }
}
/* Eğitim planı sayfaları hariç tüm sayfalar için genel support-card h3 stilleri */
.support-card:not(#egitim-plani-sayfasi .support-card) h3 {
  font-size: 1.18rem;
  color: #2a3787;
  margin: 8px 0 8px 0;
  font-weight: 700;
  text-align: center;
}
/* Eğitim planı sayfaları hariç tüm sayfalar için genel support-card p stilleri */
.support-card:not(#egitim-plani-sayfasi .support-card) p {
  color: #444;
  font-size: 1em;
  margin-bottom: 18px;
  text-align: center;
}
/* Eğitim planı sayfaları hariç tüm sayfalar için genel support-card download-btn stilleri */
.support-card:not(#egitim-plani-sayfasi .support-card) .download-btn {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(90deg, #3498db 60%, #2a81c2 100%);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1em;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(30,34,90,0.08);
  margin-top: auto;
  align-self: center;
}
/* Eğitim planı sayfaları hariç tüm sayfalar için genel support-card download-btn hover stilleri */
.support-card:not(#egitim-plani-sayfasi .support-card) .download-btn:hover {
  background: linear-gradient(90deg, #2a81c2 60%, #3498db 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(30,34,90,0.13);
}

/* Eğitim planı sayfaları hariç tüm sayfalar için genel support-card purchase-btn stilleri */
.support-card:not(#egitim-plani-sayfasi .support-card) .purchase-btn {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(90deg, #ff6f00 60%, #e65100 100%);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1em;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(255,111,0,0.2);
  margin-top: auto;
  align-self: center;
}

/* Eğitim planı sayfaları hariç tüm sayfalar için genel support-card purchase-btn hover stilleri */
.support-card:not(#egitim-plani-sayfasi .support-card) .purchase-btn:hover {
  background: linear-gradient(90deg, #e65100 60%, #ff6f00 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255,111,0,0.3);
}
/* Eğitim planı sayfaları hariç tüm sayfalar için genel support-card hover stilleri */
.support-card:not(#egitim-plani-sayfasi .support-card):hover {
  box-shadow: 0 8px 32px rgba(30,34,90,0.16);
  transform: translateY(-4px) scale(1.025);
}

.admin-panel {
  max-width: 900px;
  margin: 48px auto 32px auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(30,34,90,0.13);
  padding: 40px 32px 32px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.admin-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 32px 0 24px 0;
  padding: 0;
  list-style: none;
}
.admin-card {
  background: linear-gradient(135deg, #e3e9f7 60%, #f8fafc 100%);
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(30,34,90,0.10);
  padding: 32px 28px 24px 28px;
  min-width: 220px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  text-align: center;
}
.admin-card:hover {
  box-shadow: 0 8px 32px rgba(30,34,90,0.16);
  transform: translateY(-4px) scale(1.025);
}
.admin-card .admin-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: #3498db;
}
.admin-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 24px;
  background: linear-gradient(90deg, #3498db 60%, #2a81c2 100%);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.08em;
  text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(30,34,90,0.08);
}
.admin-btn:hover {
  background: linear-gradient(90deg, #2a81c2 60%, #3498db 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(30,34,90,0.13);
}
@media (max-width: 700px) {
  .admin-panel {
    padding: 18px 4px 18px 4px;
    border-radius: 12px;
  }
  .admin-menu {
    gap: 16px;
  }
  .admin-card {
    min-width: 90vw;
    padding: 18px 8px 14px 8px;
  }
}

.profile-card {
  max-width: 420px;
  margin: 48px auto 32px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30,34,90,0.10);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile-info {
  width: 100%;
  margin-bottom: 28px;
  background: #f8fafc;
  border-radius: 10px;
  padding: 18px 16px 10px 16px;
  box-shadow: 0 2px 8px rgba(30,34,90,0.06);
}
.profile-info-row {
  font-size: 1.08em;
  margin-bottom: 8px;
  color: #2a3787;
}
.profile-section {
  width: 100%;
  margin-bottom: 24px;
  background: #f8fafc;
  border-radius: 10px;
  padding: 18px 16px 10px 16px;
  box-shadow: 0 2px 8px rgba(30,34,90,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.profile-section h3 {
  color: #2a3787;
  font-size: 1.1em;
  margin-bottom: 10px;
  font-weight: 700;
}
.profile-danger-btn {
  background: #e53935 !important;
  color: #fff !important;
  margin-left: 8px;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(30,34,90,0.08);
}
.profile-danger-btn:hover {
  background: #b71c1c !important;
}
@media (max-width: 700px) {
  .profile-card {
    padding: 14px 4px 14px 4px;
    border-radius: 10px;
  }
  .profile-info, .profile-section {
    padding: 10px 4px 8px 4px;
  }
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: 48px;
  max-width: 1200px;
  margin: 48px auto 0 auto;
  padding: 0 32px;
  justify-content: center;
}
.category-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(30,34,90,0.10);
  padding: 32px 18px 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
  position: relative;
  min-height: 340px;
  min-width: 0;
  cursor: pointer;
  text-align: center;
}
.category-card:hover {
  box-shadow: 0 12px 36px rgba(30,34,90,0.18);
  transform: translateY(-10px) scale(1.045);
  background: linear-gradient(120deg, #f8fafc 60%, #e3e9f7 100%);
  z-index: 2;
}
.category-card:hover .img-wrap img {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 6px 24px rgba(30,34,90,0.18);
}
.category-card .img-wrap img {
  transition: transform 0.3s, box-shadow 0.3s;
}
.category-card:hover i {
  color: #ff6f00;
  transform: scale(1.2) rotate(-8deg);
}
.category-card i {
  transition: color 0.3s, transform 0.3s;
}
.category-card .img-wrap {
  width: 100%;
  max-width: 220px;
  height: 180px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30,34,90,0.08);
}
.category-card h3 {
  font-size: 1.15rem;
  color: #2a3787;
  margin: 8px 0 8px 0;
  font-weight: 700;
}
.category-card p {
  color: #444;
  font-size: 1em;
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  .category-cards {
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 28px;
    padding: 0 12px;
  }
}
@media (max-width: 700px) {
  .category-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }
  .category-card {
    min-height: 280px;
    padding: 24px 16px 20px 16px;
    border-radius: 16px;
  }
  .category-card .img-wrap {
    max-width: 100%;
    height: 140px;
    border-radius: 12px;
    margin-bottom: 16px;
  }
  .category-card h3 {
    font-size: 1.1rem;
    margin: 12px 0 8px 0;
  }
  .category-card p {
    font-size: 0.95em;
  }
}

.main-hero, .enhanced-hero {
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
  padding: 56px 0 32px 0;
  text-align: center;
  border-bottom: 1.5px solid #e0e0e0;
  box-sizing: border-box;
}

.main-hero-content {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.homepage-section {
  margin: 48px auto 0 auto;
  max-width: 1200px;
  padding: 0 12px;
  box-sizing: border-box;
}

.homepage-section-title {
  text-align: center;
}

.main-hero-content h1 {
  font-size: 2.8rem;
  color: #1a237e;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 1.5px;
}
.main-hero-content p {
  font-size: 1.18rem;
  color: #4a4a4a;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 500;
}
@media (max-width: 700px) {
  .contact-hero {
    padding: 40px 15px;
  }
  
  .contact-hero h1 {
    font-size: 2rem;
  }
  
  .contact-hero-subtitle {
    font-size: 1rem;
  }
  
  .contact-hero-features {
    gap: 20px;
  }
  
  .feature-item {
    padding: 12px;
  }
  
  .feature-item i {
    font-size: 1.2rem;
  }
  
  .feature-item span {
    font-size: 0.8rem;
  }
  
  .contact-container {
    margin: 20px 15px;
    padding: 30px 20px;
    max-width: calc(100% - 30px);
    width: auto;
  }
  
  .contact-header h2 {
    font-size: 1.5rem;
  }
  
  .contact-header p {
    font-size: 1rem;
  }
  
  .main-hero-content h1 {
    font-size: 1.5rem;
  }
}

/* HERO GÖRSELİ VE BUTON */
.enhanced-hero {
  background: linear-gradient(120deg, #e3e9f7 60%, #f8fafc 100%);
  padding-bottom: 0;
  position: relative;
}
.hero-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 50%;
  box-shadow: 0 2px 16px rgba(30,34,90,0.10);
  background: #fff;
  padding: 8px;
}
.hero-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 32px;
  background: linear-gradient(90deg, #3498db 60%, #2a81c2 100%);
  color: #fff;
  border-radius: 24px;
  font-weight: 700;
  font-size: 1.1em;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(30,34,90,0.10);
  transition: background 0.2s, box-shadow 0.2s;
}
.hero-btn:hover {
  background: linear-gradient(90deg, #2a81c2 60%, #3498db 100%);
  box-shadow: 0 4px 16px rgba(30,34,90,0.13);
}

/* KATEGORİ KART RENKLERİ */
.card-blue { background: linear-gradient(135deg, #e3f0ff 60%, #f8fafc 100%); }
.card-green { background: linear-gradient(135deg, #e0f7ef 60%, #f8fafc 100%); }
.card-orange { background: linear-gradient(135deg, #fff3e0 60%, #f8fafc 100%); }
.card-purple { background: linear-gradient(135deg, #ede7f6 60%, #f8fafc 100%); }
.card-yellow { background: linear-gradient(135deg, #fffde7 60%, #f8fafc 100%); }
.card-pink { background: linear-gradient(135deg, #fce4ec 60%, #f8fafc 100%); }
.card-teal { background: linear-gradient(135deg, #e0f2f1 60%, #f8fafc 100%); }
.card-red { background: linear-gradient(135deg, #ffebee 60%, #f8fafc 100%); }
.card-brown { background: linear-gradient(135deg, #efebe9 60%, #f8fafc 100%); }
.card-gray { background: linear-gradient(135deg, #eceff1 60%, #f8fafc 100%); }
.card-navy { background: linear-gradient(135deg, #e3e9f7 60%, #f8fafc 100%); }

.category-card i {
  color: #2a3787;
  margin-right: 6px;
}

/* BÖLÜM ARKA PLANLARI */
.colored-section {
  background: linear-gradient(120deg, #f8fafc 60%, #e3e9f7 100%);
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(30,34,90,0.06);
  margin-bottom: 36px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.alt-section {
  background: linear-gradient(120deg, #e3e9f7 60%, #f8fafc 100%);
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(30,34,90,0.06);
  margin-bottom: 36px;
  padding-top: 18px;
  padding-bottom: 18px;
}

/* Sosyal ikonlar footer'da */
.social-icons {
  margin-top: 12px;
}
.social-icons a {
  color: #2a3787;
  margin: 0 10px;
  font-size: 1.5em;
  transition: color 0.2s;
}
.social-icons a:hover {
  color: #ff6f00;
}

@media (max-width: 700px) {
  .main-hero-content h1 {
    font-size: 1.3rem;
  }
  .hero-logo {
    width: 70px;
    height: 70px;
  }
  .colored-section, .alt-section {
    border-radius: 10px;
    padding: 8px 2px 8px 2px;
  }
}

@media (min-width: 701px) {
  .dropdown-menu {
    display: none !important;
  }
  .dropdown:hover > .dropdown-menu,
  .dropdown:focus-within > .dropdown-menu {
    display: block !important;
  }
}

/* --- DROPDOWN MENÜ MODERN VE NET TASARIM --- */
.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 100%;
  width: max-content;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(15px);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(30,34,90,0.15), 0 4px 12px rgba(30,34,90,0.08);
  padding: 20px 12px;
  display: none;
  flex-direction: column;
  z-index: 9999;
  margin-top: 0;
  animation: dropdownFadeIn 0.3s ease-out;
  color: #2a3787;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
}

/* Dropdown menünün üstüne görünmez alan ekle */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}
.dropdown:hover > .dropdown-menu,
.dropdown:focus-within > .dropdown-menu {
  display: block;
}
.dropdown-menu li {
  border-bottom: 1px solid rgba(42, 55, 135, 0.1);
  margin: 0;
  padding: 4px 0;
}
.dropdown-menu li:last-child {
  border-bottom: none;
}
.dropdown-menu li a.dropdown-link {
  display: block;
  width: 100%;
  background: none;
  border-radius: 8px;
  margin: 0;
  padding: 20px 32px;
  color: #2a3787;
  font-weight: 600;
  font-size: 1.05em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: normal;
  line-height: 1.5;
  min-height: 65px;
  display: flex;
  align-items: center;
}
.dropdown-menu li a.dropdown-link:hover {
  background: linear-gradient(90deg, rgba(255, 111, 0, 0.15) 0%, rgba(255, 111, 0, 0.25) 100%);
  color: #ff6f00;
  transform: translateX(8px) scale(1.02);
  margin-left: 8px;
  margin-right: 0;
  border-radius: 12px;
  box-shadow: inset 3px 0 0 #ff6f00, 0 4px 12px rgba(255, 111, 0, 0.2);
  font-weight: 700;
  letter-spacing: 0.5px;
  border-left: 4px solid #ff6f00;
  border-right: 2px solid rgba(255, 111, 0, 0.3);
}
@media (max-width: 700px) {
  .dropdown-menu {
    position: static;
    min-width: 100%;
    width: 100%;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: none;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2px;
    padding: 16px 8px;
  }
  
  /* Mobilde görünmez alan gerekmez */
  .dropdown-menu::before {
    display: none;
  }
  
  .dropdown-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px 0;
  }
  
  .dropdown-menu li a.dropdown-link {
    color: #ffffff;
    padding: 18px 24px;
    white-space: normal;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95em;
    line-height: 1.5;
    min-height: 50px;
    display: flex;
    align-items: center;
  }
  
  .dropdown-menu li a.dropdown-link:hover {
    background: linear-gradient(90deg, rgba(255, 111, 0, 0.25) 0%, rgba(255, 111, 0, 0.35) 100%);
    color: #ffffff;
    transform: translateX(4px) scale(1.01);
    box-shadow: inset 3px 0 0 #ff6f00, 0 2px 8px rgba(255, 111, 0, 0.2);
    font-weight: 700;
    letter-spacing: 0.2px;
    border-left: 3px solid #ff6f00;
    border-right: 1px solid rgba(255, 111, 0, 0.4);
  }
}

/* === DROPDOWN ANIMATION === */
@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

nav button.dropdown-toggle {
  font-size: 1.13em;
  font-weight: 700;
  color: #2a3787;
  background: none;
  border: none;
  border-radius: 0;
  padding: 14px 22px 14px 18px;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  position: relative;
}
nav button.dropdown-toggle:active,
nav button.dropdown-toggle:visited {
  background: none;
  color: #2a3787;
}
nav button.dropdown-toggle:hover,
nav .dropdown:focus-within > .dropdown-toggle {
  background: #2a3787;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* === HERO BANNER ARKA PLAN === */
.hero-banner-bg {
  position: relative;
  background: url('img/pexels-karolina-grabowska-7269674.jpg') center center/cover no-repeat;
  min-height: 250px;
  padding: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
}
.hero-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.72);
  z-index: 2;
}
.hero-banner-bg h1,
.hero-banner-bg p,
.hero-banner-bg .hero-btn {
  position: relative;
  z-index: 3;
}
@media (max-width: 700px) {
  .hero-banner-bg {
    min-height: 180px;
    padding: 32px 0 24px 0;
    border-radius: 0 0 10px 10px;
  }
}

/* --- NAVBAR MODERN TASARIM GÜNCELLEMELERİ --- */
/* === ANA NAVBAR STİLLERİ === */
nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  padding: 0 48px;
  background: linear-gradient(90deg, #e3e9f7 0%, #f8fafc 100%);
  box-shadow: 0 6px 32px rgba(30,34,90,0.10);
  border-radius: 0 0 24px 24px;
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 84px;
  font-family: 'Inter', 'Poppins', 'Segoe UI', 'Roboto', Arial, sans-serif;
  flex-wrap: wrap;
}

/* Desktop menu varsayılan olarak görünür */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  visibility: visible;
  opacity: 1;
  position: relative;
  z-index: 1;
}
nav a, nav button.dropdown-toggle {
  color: #2a3787;
  font-weight: 700;
  text-decoration: none;
  padding: 18px 32px;
  border-radius: 12px;
  font-size: 1.18em;
  background: none;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.01em;
  white-space: nowrap;
  min-width: fit-content;
  transform: scale(1);
  position: relative;
  overflow: hidden;
}
nav a::before, nav button.dropdown-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(42, 55, 135, 0.1), transparent);
  transition: left 0.5s;
}

nav a:hover::before, nav button.dropdown-toggle:hover::before {
  left: 100%;
}
nav a:hover, nav button.dropdown-toggle:hover {
  background: #2a3787;
  color: #fff;
  box-shadow: 0 4px 16px rgba(30,34,90,0.15);
  transform: translateY(-3px) scale(1.08);
}
.navbar-logo-link {
  display: flex;
  align-items: center;
  padding: 0 8px 0 0;
  text-decoration: none;
  transition: none;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  flex: 0 0 auto;
  width: auto;
}

.navbar-logo-link:hover {
  transform: none !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  color: inherit !important;
}

.navbar-logo-link::before {
  display: none !important;
}

.navbar-logo-link:hover::before {
  display: none !important;
}

.navbar-logo-img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  transition: none;
}

.navbar-logo-img:hover {
  transform: none !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

@media (max-width: 1200px) {
  nav {
    gap: 20px;
    padding: 0 24px;
    min-height: 78px;
  }
  nav a, nav button.dropdown-toggle {
    padding: 16px 24px;
    font-size: 1.1em;
    transform: scale(0.98);
  }
  nav a:hover, nav button.dropdown-toggle:hover {
    transform: translateY(-2px) scale(1.05);
  }
}

@media (max-width: 900px) {
  nav {
    gap: 12px;
    padding: 0 16px;
    min-height: 70px;
    justify-content: space-between;
  }
  nav a, nav button.dropdown-toggle {
    padding: 14px 16px;
    font-size: 1.02em;
    transform: scale(0.95);
  }
  nav a:hover, nav button.dropdown-toggle:hover {
    transform: translateY(-2px) scale(1.02);
  }
  .navbar-logo-img {
    width: 48px;
    height: 48px;
  }
}
/* Bu çakışan media query kaldırıldı - aşağıdaki responsive stiller kullanılıyor */

@media (max-width: 480px) {
  /* Hamburger menu override for small mobile */
  nav {
    padding: 0 15px !important;
    gap: 0 !important;
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 60px !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    border-bottom: 1px solid #e0e0e0 !important;
  }
  
  /* Bu stil kaldırıldı - masaüstü navbar görünürlüğü için */
  
  /* Show only logo and hamburger menu */
  .navbar-logo-link {
    display: flex !important;
    z-index: 1002;
    align-items: center !important;
    justify-content: flex-start !important;
    height: 60px !important;
    flex: 0 0 auto !important;
    transform: translateY(0) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    max-width: 50px !important;
  }
  
  .hamburger-menu {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 60px !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    transform: translateY(0) !important;
    padding: 0 !important;
  }
  
  .navbar-logo-img {
    width: 40px;
    height: 40px;
  }
  
  main {
    margin-top: 0; /* Küçük mobil için boşluk kaldırıldı */
  }
  
  header {
    margin-top: 0; /* Küçük mobil için boşluk kaldırıldı */
    padding: 15px 0 12px 0; /* Küçük mobil için yanlardaki padding'i kaldırdım */
  }
  
  /* Diğer sayfalar için küçük mobil düzenlemeler */
  .content-section {
    padding: 12px 0;
    margin: 0;
  }
  
  /* Diğer sayfalar için navbar-banner boşluğu düzeltmesi */
  .content-section {
    margin-top: 0;
  }
  
  /* Diğer sayfalar için header margin düzeltmesi */
  .content-section + header,
  header + .content-section {
    margin-top: 0;
  }
  
  .page-title {
    font-size: 1.5rem !important;
    margin-bottom: 8px !important;
  }
  
  .page-desc {
    font-size: 0.85rem !important;
    margin-bottom: 14px !important;
    padding: 0 2px;
  }
  
  .support-list {
    gap: 10px;
    padding: 0 1px;
  }
  
  /* İletişim sayfası için küçük mobil optimizasyonları */
  .contact-hero {
    padding: 30px 10px;
  }
  
  .contact-hero h1 {
    font-size: 1.8rem;
  }
  
  .contact-hero-subtitle {
    font-size: 0.9rem;
  }
  
  .contact-hero-features {
    gap: 15px;
    flex-direction: column;
  }
  
  .feature-item {
    padding: 10px;
    flex-direction: row;
    gap: 10px;
  }
  
  .feature-item i {
    font-size: 1rem;
  }
  
  .feature-item span {
    font-size: 0.8rem;
  }
  
  .contact-container {
    margin: 15px 10px;
    padding: 25px 15px;
    max-width: calc(100% - 20px);
    border-radius: 15px;
  }
  
  .contact-header h2 {
    font-size: 1.3rem;
  }
  
  .contact-header p {
    font-size: 0.9rem;
    padding: 0 5px;
  }
  
  /* Eğitim planı sayfaları hariç tüm sayfalar için genel support-card mobil stilleri */
  .support-card:not(#egitim-plani-sayfasi .support-card) {
    min-height: 200px;
    padding: 12px 6px 10px 6px;
  }
  
  /* Eğitim materyalleri kartları için küçük mobil optimizasyonları */
  .category-cards {
    gap: 16px;
    padding: 0 12px;
  }
  
  .category-card {
    min-height: 240px;
    padding: 20px 12px 16px 12px;
    border-radius: 14px;
  }
  
  .category-card .img-wrap {
    height: 120px;
    border-radius: 10px;
    margin-bottom: 14px;
  }
  
  .category-card h3 {
    font-size: 1rem;
    margin: 10px 0 6px 0;
  }
  
  .category-card p {
    font-size: 0.9em;
  }
  
  /* Eğitim planı sayfaları hariç tüm sayfalar için genel support-card img mobil stilleri */
  .support-card:not(#egitim-plani-sayfasi .support-card) img {
    height: 300px;
    margin-bottom: 10px;
  }
  
  /* Eğitim planı sayfaları hariç tüm sayfalar için genel support-card h3 mobil stilleri */
  .support-card:not(#egitim-plani-sayfasi .support-card) h3 {
    font-size: 1rem;
    margin: 4px 0 4px 0;
  }
  
  /* Eğitim planı sayfaları hariç tüm sayfalar için genel support-card p mobil stilleri */
  .support-card:not(#egitim-plani-sayfasi .support-card) p {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  
  /* Eğitim planı sayfaları hariç tüm sayfalar için genel support-card button mobil stilleri */
  .support-card:not(#egitim-plani-sayfasi .support-card) .download-btn,
  .support-card:not(#egitim-plani-sayfasi .support-card) .purchase-btn {
    padding: 5px 12px;
    font-size: 0.85rem;
  }
  
  /* Diğer sayfalar için footer düzenlemesi */
  footer {
    padding: 20px 12px;
    margin-top: 20px;
  }
  
  .footer-text {
    font-size: 0.9rem;
  }
  
  .social-icons a {
    font-size: 1.1rem;
    padding: 8px;
  }
  
  /* Login ve Register sayfaları için özel mobil düzenlemeler */
  .login-container {
    margin: 20px auto;
    padding: 24px 16px 20px 16px;
  }
  
  /* Login ve Register sayfaları için footer düzenlemesi */
  footer {
    padding: 20px 0;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .footer-text {
    font-size: 0.9rem;
    margin: 0;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
  }
  
  .social-icons a {
    font-size: 1.2rem;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .social-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  

}

/* === HAMBURGER MENU STYLES === */

/* Hamburger Menu Button */
.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  border: 1px solid rgba(42, 55, 135, 0.1);
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 44px;
  margin: 0;
  flex: 0 0 auto;
  min-width: 44px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.hamburger-menu:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(42, 55, 135, 0.2);
  box-shadow: 0 4px 12px rgba(42, 55, 135, 0.15);
  transform: scale(1.05);
}

.hamburger-menu span {
  width: 22px;
  height: 2.5px;
  background: #2a3787;
  margin: 2px 0;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
  display: block;
  box-shadow: 0 1px 2px rgba(42, 55, 135, 0.1);
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Desktop Menu - Always visible on desktop */
/* Bu stil yukarıda tanımlandı */

/* Mobile Menu - Hidden by default */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 24px 20px;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  border-bottom: 1px solid rgba(42, 55, 135, 0.08);
  width: 100%;
  box-sizing: border-box;
}

.mobile-menu.active {
  display: flex !important;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  color: #2a3787;
  text-decoration: none;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(42, 55, 135, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}

.mobile-menu a:hover {
  background: linear-gradient(135deg, #2a3787 0%, #1a237e 100%);
  color: #ffffff;
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(42, 55, 135, 0.25);
  border-color: rgba(42, 55, 135, 0.2);
}

.mobile-menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.mobile-menu a:hover::before {
  left: 100%;
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
  position: relative;
  width: 100%;
}

.mobile-dropdown-toggle {
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(42, 55, 135, 0.08);
  color: #2a3787;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}

.mobile-dropdown-toggle:hover {
  background: linear-gradient(135deg, #2a3787 0%, #1a237e 100%);
  color: #ffffff;
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(42, 55, 135, 0.25);
  border-color: rgba(42, 55, 135, 0.2);
}

.mobile-dropdown-toggle::after {
  content: '▼';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
  opacity: 0.7;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
  transform: translateY(-50%) rotate(180deg);
}

.mobile-dropdown-toggle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.mobile-dropdown-toggle:hover::before {
  left: 100%;
}

.mobile-dropdown-menu {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  margin-top: 8px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(42, 55, 135, 0.05);
  backdrop-filter: blur(10px);
  width: 100%;
  box-sizing: border-box;
}

.mobile-dropdown-menu.active {
  display: block;
  animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  color: #2a3787;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  border: none;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
}

.mobile-dropdown-menu a:hover {
  background: linear-gradient(135deg, #2a3787 0%, #1a237e 100%);
  color: #ffffff;
  transform: scale(1.01);
  box-shadow: 0 4px 15px rgba(42, 55, 135, 0.2);
}

.mobile-dropdown-menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.mobile-dropdown-menu a:hover::before {
  left: 100%;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive Design - Fixed */
@media (max-width: 768px) {
  /* Hide desktop menu on mobile */
  .desktop-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
  
  /* Show hamburger menu on mobile */
  .hamburger-menu {
    display: flex;
    visibility: visible;
    opacity: 1;
  }
  
  /* Adjust navbar layout for mobile */
  nav {
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-direction: row;
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 70px;
  }
  
  /* Ensure logo stays visible */
  .navbar-logo-link {
    z-index: 1002;
  }
  
  /* Mobile menu visibility */
  .mobile-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
  
  .mobile-menu.active {
    display: flex;
    visibility: visible;
    opacity: 1;
  }
}

@media (min-width: 769px) {
  /* Hide mobile menu on desktop */
  .mobile-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
  
  /* Hide hamburger menu on desktop */
  .hamburger-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
  
  /* Show desktop menu on desktop */
  .desktop-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 1;
  }
  
  /* Ensure navbar layout is correct for desktop */
  nav {
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 38px;
    padding: 0 48px;
    min-height: 84px;
  }
  
  /* Force desktop menu items to be visible */
  .desktop-menu a,
  .desktop-menu .dropdown,
  .desktop-menu button {
    display: flex;
    visibility: visible;
    opacity: 1;
    position: relative;
  }
  
  /* Ensure dropdown menus work on desktop */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 200px;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}
