:root {
  --primary: #5e72e4;
  --secondary: #ff7675;
  --dark: #2d3748;
  --light: #f8fafc;
  --text: #4a5568;
  --transition: all 0.3s ease;
  --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--light);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
  color: var(--dark);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 80px;
  height: 4px;
  background-color: var(--primary);
}

/* Header */
header {
  background-color: white;
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark);
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  color: var(--text);
  font-weight: 600;
  padding: 5px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-btn {
  display: none;
  cursor: pointer;
}

.menu-btn .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--dark);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  background-color: white;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hero-text {
  flex: 1;
}

.hero-img {
  flex: 1;
  text-align: center;
}

.hero-img img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.hero-subtitle {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
  animation: fadeInUp 1s forwards;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--dark);
  margin-bottom: 20px;
  animation: fadeInUp 1s 0.2s forwards;
  opacity: 0;
}

.hero-description {
  margin-bottom: 30px;
  color: var(--text);
  font-size: 1.1rem;
  animation: fadeInUp 1s 0.4s forwards;
  opacity: 0;
}

.btn-group {
  display: flex;
  gap: 15px;
  animation: fadeInUp 1s 0.6s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary);
  color: white;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--primary);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: white;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  animation: fadeInUp 1s 0.8s forwards;
  opacity: 0;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: white;
  color: var(--text);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-5px);
}

/* About Section */
.about {
  background-color: var(--light);
}

.about-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.about-img {
  flex: 1;
  position: relative;
}

.about-img img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.about-img::after {
  content: '';
  position: absolute;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background-color: var(--primary);
  top: 20px;
  left: 20px;
  border-radius: 10px;
  z-index: 1;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text);
}

.skills {
  margin: 30px 0;
}

.skill-title {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: var(--dark);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  padding: 8px 20px;
  background-color: white;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.skill-tag:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* Projects Section */
.projects {
  background-color: white;
}

.project-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.project-filter {
  padding: 8px 20px;
  background-color: var(--light);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.project-filter.active,
.project-filter:hover {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--shadow);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  background-color: var(--light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover .project-img img {
  transform: scale(1.1);
}

.project-category {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 15px;
  background-color: var(--primary);
  color: white;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.project-content {
  padding: 25px;
}

.project-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.project-description {
  margin-bottom: 20px;
  color: var(--text);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.project-tag {
  padding: 5px 12px;
  background-color: white;
  border-radius: 50px;
  font-size: 0.8rem;
}

.project-links {
  display: flex;
  gap: 15px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

/* Blog Section */
.blog {
  background-color: var(--light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 15px;
  background-color: var(--primary);
  color: white;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #888;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.blog-description {
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.blog-link i {
  transition: var(--transition);
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* Contact Section */
.contact {
  background-color: white;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.contact-info {
  padding: 30px;
  background-color: var(--primary);
  color: white;
  border-radius: 10px;
}

.contact-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.contact-text {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-list {
  list-style: none;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 1.2rem;
}

.contact-form {
  padding: 30px;
  background-color: var(--light);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(94, 114, 228, 0.2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-about h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-links a i {
  font-size: 0.8rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {

  .hero-content,
  .about-content {
    flex-direction: column;
  }

  .hero-img,
  .about-img {
    order: -1;
    margin-bottom: 40px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .menu-btn.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .menu-btn.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-btn.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
  }

  .nav-links.active {
    left: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.show {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* Fixed Footer Styles */
.fixed-footer {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

/* Rounded Social Buttons */
.rounded-social-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--light);
  color: var(--primary);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
}

.social-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.social-button.github:hover {
  background-color: #333;
  color: white;
}

.social-button.linkedin:hover {
  background-color: #0077b5;
  color: white;
}

.social-button.twitter:hover {
  background-color: #1da1f2;
  color: white;
}

.social-button.instagram:hover {
  background-color: #e1306c;
  color: white;
}

/* Theme Toggle */
.theme-toggle {
  margin-top: 5px;
}

.theme-toggle button {
  width: 40px;
  height: 40px;
  border: none;
  background-color: var(--light);
  color: var(--dark);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.theme-toggle button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Dark Mode Styles */
/* Dark Mode Text Improvements */
body.dark-mode {
  background-color: #1a1a2e;
  color: #e0e0e0;
  /* Daha açık metin rengi */
}

/* Dark Mode için Skill Title Düzeltmesi */
body.dark-mode .skill-title {
  color: #e0e0e0;
  /* Açık renk metin */
}

/* Diğer .title class'ları için de kontrol */
body.dark-mode h3.title,
body.dark-mode .contact-title,
body.dark-mode .form-label,
body.dark-mode .contact-info h3 {
  color: #e0e0e0;
}

/* Ekleme - Diğer başlıklar için de kontrol */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
  color: #e0e0e0;
}

body.dark-mode header,
body.dark-mode .hero,
body.dark-mode .projects,
body.dark-mode .contact {
  background-color: #1a1a2e;
}

body.dark-mode .about,
body.dark-mode .blog {
  background-color: #16213e;
}

body.dark-mode .section-title,
body.dark-mode .project-title,
body.dark-mode .blog-title,
body.dark-mode .hero-title,
body.dark-mode .logo,
body.dark-mode .hero-subtitle,
body.dark-mode .hero-description,
body.dark-mode p,
body.dark-mode .about-text p {
  color: #e0e0e0;
  /* Ana başlıklar ve metinler için daha açık renk */
}

body.dark-mode .nav-link {
  color: #e0e0e0;
}

body.dark-mode .hero-description,
body.dark-mode .about-text p {
  color: #cccccc;
  /* About bölümündeki metinler için çok daha açık renk */
}

body.dark-mode .project-card,
body.dark-mode .blog-card {
  background-color: #16213e;
}

body.dark-mode .project-description,
body.dark-mode .blog-description {
  color: #cccccc;
  /* Proje açıklamaları için daha açık renk */
}

body.dark-mode .social-button,
body.dark-mode .theme-toggle button {
  background-color: #16213e;
  color: #e0e0e0;
}

body.dark-mode .skill-tag,
body.dark-mode .project-tag {
  background-color: #1a1a2e;
  color: #e0e0e0;
}

/* Kontrast artırma */
body.dark-mode a:not(.btn) {
  color: #7eb6ff;
  /* Linkler için daha parlak mavi */
}

body.dark-mode .hero-subtitle {
  color: #7eb6ff;
  /* Daha parlak vurgu rengi */
}

/* Responsive for fixed footer */
@media (max-width: 768px) {
  .fixed-footer {
    bottom: 20px;
    left: 20px;
  }

  .social-button,
  .theme-toggle button {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

@media (max-height: 600px) {
  .fixed-footer {
    display: none;
  }
}

/* For very small screens, switch to horizontal layout */
@media (max-width: 576px) and (min-height: 600px) {
  .fixed-footer {
    flex-direction: row;
    gap: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    justify-content: center;
  }

  .rounded-social-buttons {
    flex-direction: row;
  }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 576px) {
  /* Hero Section Adjustments */
  .hero {
    padding-top: 100px;
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-img img {
    max-width: 280px;
    margin-bottom: 30px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /* About Section Adjustments */
  .about-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-img img {
    max-width: 280px;
  }

  .skills {
    text-align: center;
  }

  .skill-tags {
    justify-content: center;
  }

  /* Projects Section Adjustments */
  .project-filters {
    
    align-items: center;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  /* Blog Section Adjustments */
  .blog-grid {
    grid-template-columns: 1fr;
  }

  /* Contact Section Adjustments */
  .contact-container {
    grid-template-columns: 1fr;
  }

  /* Footer Adjustments */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
  }

  /* Typography Adjustments */
  .section-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  /* Social Links */
  .social-links {
    justify-content: center;
  }

  /* Fixed Footer Adjustments */
  .fixed-footer {
    bottom: 15px;
    right: 0;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    width: 100%;
  }

  .rounded-social-buttons {
    flex-direction: row;
  }

  .theme-toggle {
    margin-top: 0;
  }
}

/* Additional Small Device Tweaks */
@media (max-width: 375px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-img img {
    max-width: 250px;
  }

  .about-img img {
    max-width: 250px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .project-card,
  .blog-card {
    margin-bottom: 20px;
  }
}

/* Accessibility and Touch Improvements */
@media (pointer: coarse) {
  /* Increase touch target sizes for mobile devices */
  .btn,
  .nav-link,
  .social-button,
  .project-filter,
  .form-control {
    min-height: 44px;
    min-width: 44px;
  }

  .nav-links {
    gap: 20px;
  }

  .social-links a,
  .social-button {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* Typography Scaling for Smaller Screens */
@media (max-width: 576px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: white;
    min-height: 100vh;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 2.5em;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
}

h2 {
    color: #34495e;
    margin-top: 35px;
    margin-bottom: 15px;
    font-size: 1.6em;
    border-left: 4px solid #3498db;
    padding-left: 15px;
}

h3 {
    color: #555;
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.2em;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 10px;
    line-height: 1.7;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

    a:hover {
        color: #2980b9;
        text-decoration: underline;
    }

.summary-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

    .summary-box h2 {
        color: white;
        margin-top: 0;
        border-left: none;
        padding-left: 0;
    }

    .summary-box p {
        text-align: left;
        margin-bottom: 0;
    }

.contact-box {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #e74c3c;
}

    .contact-box p {
        margin-bottom: 10px;
    }

.turkish-summary {
    background-color: #fff3cd;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
    border-left: 4px solid #ffc107;
}

    .turkish-summary h2 {
        color: #856404;
        margin-top: 0;
        border-left: none;
        padding-left: 0;
    }

.faq-item {
    background-color: #f8f9fa;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

    .faq-item h3 {
        color: #2980b9;
        margin-top: 0;
    }

strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Form Styles */
.contact-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #2c3e50;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 2px solid #e0e0e0;
        border-radius: 6px;
        font-size: 16px;
        font-family: inherit;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #3498db;
        }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    }

    .btn-submit:active {
        transform: translateY(0);
    }

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 500;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .container {
        padding: 20px 15px;
        box-shadow: none;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.4em;
    }

    h3 {
        font-size: 1.1em;
    }

    .summary-box,
    .contact-box,
    .turkish-summary {
        padding: 15px;
    }

    .contact-form {
        padding: 20px;
    }

    .btn-submit {
        width: 100%;
    }
}
