/* Genel Ayarlar */
:root {
  --blue: #1877f2;
  --blue-gradient: linear-gradient(135deg, #1877f2 0%, #4f8cff 100%);
  --bg: #f7f9fb;
  --text: #222;
  --gray: #666;
  --card-bg: #fff;
  --shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
  --radius: 16px;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  box-sizing: border-box;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .container {
    max-width: 1200px;
    padding: 0 4px;
  }
}

.bold { font-weight: 700; color: #222; }
.blue { color: var(--blue); }

/* Header ve Navigasyon */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}

.container.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1877f2;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 32px;
  margin-right: 8px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #1877f2;
  background: #eaf2ff;
}

.nav-btn {
  margin-left: 20px;
}

/* Mobil Menü Butonu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #1877f2;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobil Menü */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.show {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: white;
  padding: 20px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.show .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #666;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  overflow-y: auto;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: #333;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.2s, color 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #eaf2ff;
  color: #1877f2;
}

.mobile-nav-link i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
  font-size: 18px;
}

/* Mobil Responsive */
@media (max-width: 768px) {
  .container.nav-flex {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .mobile-menu-btn {
    position: absolute;
    right: 20px;
    display: flex !important;
  }
  
  .nav-links, .nav-btn {
    display: none !important;
  }

  .nav-flex {
    padding: 0 15px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo img {
    height: 28px;
  }

  body.menu-open {
    overflow: hidden;
  }

  /* Hero section için margin ayarı */
  .hero {
    margin-top: 50px;
  }
}

/* Butonlar */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(24,119,242,0.08);
}
.btn-primary:hover {
  background: #1456b8;
}

/* Hero */
.hero {
  background: var(--bg);
  padding: 24px 0; /* Mobil için padding geri ayarlandı */
}
@media (min-width: 768px) {
  .hero {
    padding: 64px 0 32px 0; /* Masaüstü için orijinal padding */
  }
}
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hero-content {
  flex: 1 1 0;
}
.hero-content h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 16px;
  margin-top: 0; /* Mobil için üst boşluk sıfırlandı */
}
.hero-desc {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 32px;
}
.hero-img {
  position: relative;
  width: 220px;
  height: 170px;
  margin-left: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-shape { display: none; }
.hero-photo {
  position: absolute;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  object-fit: cover;
}
.hero-photo1 {
  width: 170px; height: 110px;
  left: 0; top: 0;
  z-index: 2;
}
.hero-photo2 {
  width: 170px; height: 110px;
  left: 80px; top: 80px;
  z-index: 3;
  border: 4px solid #fff;
}
.hero-card {
  position: absolute;
  background: #000;
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25);
}
.card1 {
  width: 320px;
  height: 240px;
  left: 50%;
  top: 50%;
  transform: translate(-80%, -80%);
  z-index: 2;
}
.card2 {
  width: 320px;
  height: 240px;
  left: 50%;
  top: 50%;
  transform: translate(-10%, -10%);
  z-index: 3;
}

.hero-oval-card {
  width: 400px !important;
  height: 300px !important;
  background: #000 !important;
  border-radius: 50% !important;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.25) !important;
  position: relative !important;
  margin: 0 auto !important;
  flex: 1 1 0 !important;
  min-width: 400px !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Ortaklar */
.partners {
  background: var(--bg);
  padding: 48px 0 24px 0;
  text-align: center;
}
.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.partner-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  opacity: 0.8;
}
.partner-logo.stripe { font-family: 'Arial Black', Arial, sans-serif; color: #222; }
.partner-logo.novo { color: var(--blue); font-family: 'Arial Black', Arial, sans-serif; }

/* Testimonials */
.testimonials, .testimonials-bottom {
  background: var(--bg);
  padding: 32px 0;
}
.testimonials-flex {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 32px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #eaeaea;
  margin-bottom: 8px;
}
.testimonial-info {
  font-size: 1rem;
  margin-bottom: 4px;
}
.testimonial-stars {
  color: #f7b500;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.testimonial-text {
  color: var(--gray);
  font-size: 1rem;
}

/* Stats */
.stats {
  background: var(--bg);
  padding: 32px 0 16px 0;
}
.stats-flex {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.stat-label {
  color: var(--gray);
  font-size: 1rem;
}

/* Why */
.why {
  background: var(--bg);
  padding: 48px 0;
  text-align: center;
}
.why-flex {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.why-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  word-break: break-word;
  hyphens: auto;
}

/* Mobil cihazlar için why-card responsive ayarları */
@media (max-width: 768px) {
  .why-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 16px auto;
    padding: 20px 12px;
    box-sizing: border-box;
    word-break: break-word;
    hyphens: auto;
    overflow-x: unset;
  }
  .why-flex {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .why-card {
    width: 100%;
    max-width: 98vw;
    margin: 0 auto 12px auto;
    padding: 14px 6px;
    box-sizing: border-box;
  }
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--blue);
  border-radius: 16px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
  transition: all 0.3s ease;
}

.why-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* Mobil cihazlar için why-icon responsive ayarları */
@media (max-width: 768px) {
  .why-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin: 0 auto 16px auto;
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .why-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    margin: 0 auto 14px auto;
    border-radius: 12px;
  }
}

.why-card h3 {
  margin-bottom: 8px;
  word-break: break-word;
  hyphens: auto;
}
.why-card p {
  color: var(--gray);
  font-size: 1rem;
  word-break: break-word;
  hyphens: auto;
}

/* Steps */
.steps {
  background: var(--bg);
  padding: 48px 0 24px 0;
  text-align: center;
}
.steps-flex {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.step-item {
  flex: 1 1 0;
  min-width: 160px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-content {
  text-align: center;
  margin-bottom: 20px;
}

.step-line {
  width: 100%;
  height: 2px;
  background: #e0e7ef;
  position: relative;
  margin: 20px 0;
}

.step-circle {
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(24,119,242,0.12);
  border: 4px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.step-title {
  font-weight: 700;
  margin-bottom: 4px;
  text-align: center;
  font-size: 1.1rem;
}

.step-desc {
  color: var(--gray);
  font-size: 0.98rem;
  text-align: center;
  line-height: 1.4;
}

.step-item-1 .step-circle { margin-top: 0; }
.step-item-2 .step-circle { margin-top: 12px; }
.step-item-3 .step-circle { margin-top: 18px; }
.step-item-4 .step-circle { margin-top: 10px; }
.step-item-5 .step-circle { margin-top: 0; }

/* Packages */
.packages {
  padding: 64px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.packages::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

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

.packages-flex {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.package-card {
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 32px 24px 40px 24px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 0;
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.package-card.popular {
  border: 2px solid var(--blue);
  z-index: 2;
}
.package-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(24,119,242,0.10);
}
.package-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue);
  margin: 16px 0 12px 0;
}
.package-price span {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 400;
}
.package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  text-align: left;
}
.package-list li {
  margin-bottom: 8px;
  color: #222;
  font-size: 1rem;
  position: relative;
  padding-left: 20px;
}
.package-list li:before {
  content: '\2713';
  color: #2ecc40;
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}

/* Paket kartlarındaki butonları aynı seviyeye getir */
.package-card .btn {
  margin-top: auto;
  width: auto;
}

/* Daha güçlü hizalama için ek kurallar */
.package-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  min-height: 500px !important;
}

.package-card .btn {
  margin-top: auto !important;
  align-self: center !important;
  width: auto !important;
}

/* Footer */
.footer {
  background: #393939;
  color: #fff;
  padding: 48px 0 0 0;
  margin-top: 48px;
}
.footer-flex {
  display: flex;
  gap: 48px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-col {
  flex: 1 1 0;
  min-width: 200px;
  margin-bottom: 32px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-social a {
  color: #fff;
  margin-right: 12px;
  font-size: 1.2rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: var(--blue);
}
.footer-col h4 {
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 600;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
  color: #eaeaea;
  font-size: 1rem;
}
.footer-col ul li a {
  color: #eaeaea;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--blue);
}
.footer-bottom {
  border-top: 1px solid #555;
  padding: 16px 0;
  text-align: center;
  color: #ccc;
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links a {
  color: #ccc;
  margin-left: 8px;
  margin-right: 8px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--blue);
}

/* Başlıklar ve açıklamalar */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
}
.section-desc {
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* Hakkımızda - Pasaport Kartları ve Ortadaki Kart */
.about-hero {
  background: var(--bg);
  padding: 64px 0 0 0;
  position: relative;
}
.about-hero-flex {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  overflow-x: hidden;
  min-width: 0;
}
.about-passport {
  width: 260px;
  height: 340px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  font-family: 'Inter', Arial, sans-serif;
  position: relative;
  background: linear-gradient(135deg, #1abc60 0%, #0e7c3a 100%);
  color: #fff;
  transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s cubic-bezier(.4,2,.6,1);
}
.about-passport:hover {
  transform: translateY(-16px) scale(1.04) rotate(-2deg);
  box-shadow: 0 12px 36px 0 rgba(24,119,242,0.18);
  z-index: 2;
}
.about-passport-tr {
  background: linear-gradient(135deg, #1a3cf2 0%, #0e1c7c 100%);
  color: #fff;
  transform: rotate(10deg);
}
.about-passport-us {
  background: linear-gradient(135deg, #1abc60 0%, #0e7c3a 100%);
  color: #fff;
  transform: rotate(-8deg);
}
.passport-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 16px;
  opacity: 0.8;
}
.passport-country {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.2;
}
.passport-icon {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 2rem;
  opacity: 0.7;
}

.about-center-card {
  width: 340px;
  height: 340px;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(24,119,242,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.about-ceo-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 32px;
  margin-bottom: 16px;
  border: 4px solid #fff;
  box-shadow: 0 2px 12px rgba(24,119,242,0.10);
}
.about-center-gradient {
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, #fff 0%, #2563eb 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0.8;
}
.about-center-stats {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  position: absolute;
  bottom: 24px;
  left: 0;
  z-index: 2;
}
.about-center-stat {
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 8px;
}
.about-center-stat b {
  font-size: 1.3rem;
  color: #fff;
}
.about-center-stat span {
  display: block;
  font-size: 0.95rem;
  font-weight: 400;
  color: #e0e7ef;
}

/* Hakkımızda - Başarılı Sayılarımız */
.about-hero-stats {
  background: var(--blue);
  color: #fff;
  padding: 32px 0 24px 0;
  text-align: center;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}
.about-hero-stats-flex {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.about-hero-stat {
  background: rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 18px 32px;
  min-width: 180px;
  font-size: 1.1rem;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(24,119,242,0.10);
}
.stat-big {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

/* Vizyonumuz */
.about-vision {
  background: var(--bg);
  padding: 64px 0 0 0;
}
.about-vision-flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.about-vision-card {
  background: #eaf2ff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(24,119,242,0.06);
  padding: 32px 24px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 0;
  text-align: left;
}
.vision-icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.about-vision-center {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 340px;
  min-width: 260px;
  flex: 1 1 0;
}
.vision-center-card {
  width: 100%;
  max-width: 340px;
  min-width: 260px;
  flex: 1 1 0;
}
.vision-center-star {
  font-size: 2rem;
  margin-bottom: 12px;
}
.vision-center-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.vision-center-address {
  font-size: 1rem;
  margin-bottom: 8px;
  opacity: 0.8;
}
.vision-center-rsvp {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.7;
}
.about-vision-bottom {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* Farkımız */
.about-difference {
  background: var(--bg);
  padding: 64px 0 0 0;
}
.about-diff-flex {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.about-diff-card {
  background: #eaf2ff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(24,119,242,0.06);
  padding: 32px 24px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 0;
  text-align: left;
}
.diff-icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.about-diff-steps {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  background: var(--blue);
  border-radius: 24px;
  padding: 32px 0;
  color: #fff;
}
.about-diff-step {
  text-align: center;
  min-width: 220px;
  max-width: 320px;
}
.step-title {
  font-size: 1.2rem;
  font-weight: 700;
}
.step-bold {
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 1rem;
  opacity: 0.9;
}

/* Katkılar */
.about-contrib {
  background: var(--bg);
  padding: 64px 0 0 0;
}
.about-contrib-flex {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  align-items: flex-start;
}
.about-contrib-center {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.contrib-center-card {
  background: #eaf2ff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(24,119,242,0.06);
  padding: 32px 24px;
  min-width: 320px;
  max-width: 420px;
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.about-contrib-card {
  background: #eaf2ff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(24,119,242,0.06);
  padding: 32px 24px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 0;
  text-align: left;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.contrib-icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.about-contrib-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-contrib-card ul li {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1rem;
  position: relative;
  padding-left: 18px;
}
.about-contrib-card ul li:before {
  content: '\2713';
  color: var(--blue);
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}

/* Bize Ulaşın - İletişim Sayfası */
.contact-section {
  background: var(--bg);
  padding: 64px 0 64px 0;
}
.contact-flex {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-info {
  flex: 1 1 340px;
  min-width: 320px;
  max-width: 420px;
}
.contact-underline {
  width: 60px;
  height: 4px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 18px;
}
.contact-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.08rem;
}
.contact-icon {
  width: 36px;
  height: 36px;
  background: #eaf2ff;
  color: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-top: 2px;
}
.contact-list-item b {
  color: #222;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.contact-sub {
  color: #888;
  font-size: 0.98rem;
}
.contact-social {
  margin-top: 8px;
  display: flex;
  gap: 10px;
}
.social-btn {
  background: var(--blue);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.social-btn:hover {
  background: #1456b8;
  color: #fff;
}

/* Sağdaki Form Kutusu */
.contact-form-box {
  flex: 1 1 420px;
  min-width: 340px;
  max-width: 520px;
  background: linear-gradient(135deg, #4f8cff 0%, #2563eb 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(37,99,235,0.10);
  padding: 36px 32px 32px 32px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form h3 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-form-desc {
  color: #e0e7ef;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 0;
  background: rgba(255,255,255,0.13);
  color: #fff;
  outline: none;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(37,99,235,0.04);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #e0e7ef;
  opacity: 1;
}
.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(255,255,255,0.22);
  box-shadow: 0 2px 8px rgba(37,99,235,0.10);
}
.contact-form textarea {
  min-height: 90px;
  resize: vertical;
}
.contact-form button {
  margin-top: 8px;
  background: #fff;
  color: var(--blue);
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 8px;
  padding: 12px 0;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.contact-form button:hover {
  background: #eaf2ff;
  color: #1456b8;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-flex, .footer-flex, .why-flex, .packages-flex, .stats-flex, .testimonials-flex, .steps-flex {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .hero-img {
    margin-top: 32px;
  }
}
@media (max-width: 700px) {
  html, body {
    overflow-x: hidden !important;
  }
  .container {
    padding: 0 6px;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .navbar, .footer {
    padding-left: 0;
    padding-right: 0;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.3rem;
  }
  .package-card, .why-card, .testimonial-card {
    min-width: unset !important;
    max-width: unset !important;
    width: 100% !important;
  }
}
@media (max-width: 500px) {
  .nav-flex {
    flex-direction: column;
    gap: 8px;
    height: auto;
  }
  .nav-links {
    gap: 16px;
  }
  .footer-flex {
    gap: 16px;
  }
}
@media (max-width: 1100px) {
  .contact-flex {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }
  .contact-form-box, .contact-info {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 700px) {
  .contact-section {
    padding: 32px 0 32px 0;
  }
  .contact-form-box {
    padding: 24px 8px 20px 8px;
    border-radius: 16px;
  }
  .contact-info {
    padding: 0 2px;
  }
}

/* Order (Sipariş) Sayfası */
.order-page-bg {
  background: #f7f9fb;
  min-height: 100vh;
}

.order-container {
  margin: 48px auto 0 auto;
  max-width: 1200px;
  padding: 0 16px;
}

.order-columns {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.order-form-card, .order-summary-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
  padding: 32px 28px;
  min-width: 340px;
  max-width: 420px;
  flex: 1 1 340px;
}

.order-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.order-desc {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.form-section {
  margin-bottom: 24px;
}

.form-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 0.98rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #e0e7ef;
  font-size: 1rem;
  font-family: inherit;
  background: #f7f9fb;
  margin-bottom: 0;
  transition: border 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border: 1.5px solid #1877f2;
  outline: none;
}

.radio-group {
  display: flex;
  gap: 24px;
  margin-bottom: 10px;
}

.radio-group label {
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

textarea {
  min-height: 60px;
  resize: vertical;
}

.summary-box {
  background: #f7f9fb;
  border-radius: 12px;
  padding: 18px 18px 10px 18px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(24,119,242,0.04);
}

.summary-package {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}

.summary-price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1877f2;
  text-align: center;
}

.summary-price-desc {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
  display: block;
  text-align: center;
}

.summary-features ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.summary-features li {
  margin-bottom: 6px;
  color: #222;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.checkmark {
  color: #2ecc40;
  font-size: 1.1rem;
}

.summary-total {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 10px;
  text-align: right;
}

.summary-total-price {
  color: #1877f2;
  font-size: 1.1rem;
  font-weight: 700;
}

.order-btn {
  width: 100%;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.btn-success {
  background: #22a745;
  color: #fff;
}

.btn-success:hover {
  background: #1e7e34;
}

.back-link {
  display: block;
  text-align: center;
  color: #1877f2;
  margin: 10px 0 0 0;
  text-decoration: none;
  font-size: 0.98rem;
}

.secure-payment-box {
  background: #eafbe7;
  border: 1px solid #b6e6c9;
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 18px;
  color: #1e7e34;
  font-size: 1rem;
}

.order-steps {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
  padding: 32px 28px;
  margin: 0 auto 48px auto;
  max-width: 900px;
}

.order-steps h2 {
  text-align: center;
  margin-bottom: 24px;
}

.steps-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.step {
  flex: 1 1 0;
  min-width: 160px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-circle {
  width: 48px;
  height: 48px;
  background: #1877f2;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 2px 8px rgba(24,119,242,0.10);
  margin-bottom: 8px;
  margin-top: 8px;
  border: 4px solid #fff;
}

.step-done {
  background: #22a745 !important;
}

.step-title {
  font-weight: 700;
  margin-bottom: 4px;
  text-align: center;
}

.step-desc {
  color: #666;
  font-size: 0.98rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 1100px) {
  .order-columns {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .order-form-card, .order-summary-card {
    max-width: 100%;
    min-width: 0;
  }
  .order-steps {
    padding: 24px 8px;
  }
}
@media (max-width: 700px) {
  .order-container {
    padding: 0 4px;
  }
  .order-form-card, .order-summary-card {
    padding: 18px 6px;
  }
  .order-steps {
    padding: 12px 2px;
  }
  .steps-row {
    gap: 12px;
  }
}

/* Hizmetler Sayfası Kartları */
.services-cards-flex {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
  padding: 32px 28px 40px 28px;
  min-width: 280px;
  max-width: 360px;
  flex: 1 1 0;
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, border 0.2s;
  justify-content: space-between;
  min-height: 600px;
}
.service-card.popular {
  border: 2px solid var(--blue);
  z-index: 2;
}
.service-card.vip {
  border: 2px solid #f7b500;
}
.service-card-popular {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(24,119,242,0.10);
}
.service-card-icon {
  font-size: 2.2rem;
  color: var(--blue);
  margin-bottom: 12px;
}
.service-card.vip .service-card-icon {
  color: #f7b500;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.service-card-desc {
  color: #666;
  font-size: 1rem;
  margin-bottom: 10px;
  text-align: center;
}
.service-card-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  margin: 10px 0 4px 0;
  text-align: center;
}
.service-card.vip .service-card-price {
  color: #f7b500;
}
.service-card-sub {
  font-size: 0.98rem;
  color: #666;
  margin-bottom: 10px;
  text-align: center;
}
.service-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  width: 100%;
  flex-grow: 1;
}
.service-card-list li {
  margin-bottom: 7px;
  color: #222;
  font-size: 1rem;
  position: relative;
  padding-left: 22px;
  opacity: 0.85;
}
.service-card-list li.active:before {
  content: '\2713';
  color: #22a745;
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}
.service-card-list li:not(.active) {
  color: #bbb;
  text-decoration: line-through;
  opacity: 0.6;
}
.service-card .btn {
  width: 100%;
  font-size: 1.08rem;
  margin-top: auto;
}

@media (max-width: 1100px) {
  .services-cards-flex {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .service-card {
    max-width: 100%;
    min-width: 0;
  }
}

/* Hangi Paketi Seçmeliyim ve SSS Kartları */
.choose-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
  padding: 32px 24px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 0;
  text-align: center;
  margin: 0 8px;
  border: 2px solid transparent;
  transition: box-shadow 0.2s, border 0.2s;
}
.choose-card-active {
  border: 2px solid #1877f2;
  box-shadow: 0 6px 32px 0 rgba(24,119,242,0.10);
}
.choose-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
.choose-desc {
  color: #666;
  font-size: 1rem;
  margin-top: 8px;
}

.services-choose-flex {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.faq-flex {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}
.faq-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
  padding: 32px 24px;
  min-width: 260px;
  max-width: 420px;
  flex: 1 1 0;
  margin: 0 8px;
}
.faq-card b {
  font-size: 1.08rem;
  color: #222;
  margin-bottom: 6px;
  display: block;
}
.faq-card div {
  color: #444;
  font-size: 1rem;
}

@media (max-width: 1100px) {
  .services-choose-flex, .faq-flex {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .choose-card, .faq-card {
    max-width: 100%;
    min-width: 0;
  }
}

/* Header Hesabım Dropdown */
.account-menu {
  position: relative;
  display: inline-block;
}
.account-btn {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s;
}
.account-btn:hover, .account-menu.open .account-btn {
  background: #eaf2ff;
}
.account-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 110%;
  min-width: 160px;
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
  border-radius: 10px;
  z-index: 1000;
  padding: 8px 0;
}
.account-menu.open .account-dropdown {
  display: block;
}
.account-dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s;
}
.account-dropdown a:hover {
  background: #f7f9fb;
  color: var(--blue);
}
.account-icon-btn {
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  margin-right: 12px;
}
.account-icon-btn:hover {
  background: #eaf2ff;
  color: var(--blue);
}

/* Account Page */
.account-panel {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.07);
  padding: 32px;
  margin: 48px auto;
  max-width: 900px;
}
.account-tabs {
  display: flex;
  border-bottom: 1px solid #e0e7ef;
  margin-bottom: 24px;
  gap: 16px;
}
.account-tab-button {
  background: none;
  border: none;
  padding: 12px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 3px solid transparent;
}
.account-tab-button.active {
  color: var(--blue);
  border-bottom: 3px solid var(--blue);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Status Bar */
.status-bar-container {
  background: #f7f9fb;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}
.status-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.status-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.status-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 100px;
  text-align: center;
}
.status-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e7ef;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.status-step.completed .status-circle { background: #2ecc40; color: #fff; }
.status-step.active .status-circle { background: var(--blue); color: #fff; }
.status-label { font-size: 0.95rem; color: #666; }

/* Dosya Yükleme */
.file-upload-area {
  border: 2px dashed #e0e7ef;
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  background: #f7f9fb;
  color: #666;
  cursor: pointer;
  margin-bottom: 24px;
}
.file-upload-area:hover { border-color: var(--blue); color: var(--blue); }
.file-upload-icon { font-size: 2.5rem; margin-bottom: 10px; }
.uploaded-files-list div { margin-bottom: 8px; font-size: 0.95rem; color: #444; }

/* Destek Mesajlaşma */
.chat-box {
  border: 1px solid #e0e7ef;
  border-radius: 10px;
  height: 300px;
  overflow-y: auto;
  padding: 16px;
  margin-bottom: 16px;
  background: #f7f9fb;
}
.chat-message {
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  max-width: 80%;
}
.message-user { background: #eaf2ff; align-self: flex-end; margin-left: auto; }
.message-admin { background: #e0e7ef; align-self: flex-start; }
.chat-input-area {
  display: flex;
  gap: 10px;
}
.chat-input-area input { flex: 1; padding: 10px; border-radius: 8px; border: 1px solid #e0e7ef; }
.chat-input-area button { padding: 10px 15px; border-radius: 8px; border: none; background: var(--blue); color: #fff; cursor: pointer; }

/* Profil Bilgileri */
.profile-info .form-group { margin-bottom: 16px; }

/* Başvurularım */
.my-orders table { width: 100%; border-collapse: collapse; }
.my-orders th, .my-orders td { border: 1px solid #e0e7ef; padding: 10px; text-align: left; }
.my-orders th { background: #f7f9fb; }

@media (max-width: 768px) {
  .account-panel { padding: 24px; margin: 24px auto; }
  .account-tabs { flex-wrap: wrap; gap: 8px; border-bottom: none; }
  .account-tab-button { flex: 1 1 auto; text-align: center; border-bottom: 1px solid #e0e7ef; margin-bottom: 8px; }
  .status-steps { flex-direction: column; align-items: stretch; }
  .status-step { min-width: unset; flex: none; width: 100%; margin-bottom: 16px; }
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

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

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.save-settings-button {
  background-color: #1877f2;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.save-settings-button:hover {
  background-color: #145cb3;
}

.account-page-main {
    padding: 60px 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 160px); /* Adjust based on header/footer height */
}

.account-panel {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.account-sidebar {
    width: 280px;
    background-color: #f2f7ff;
    padding: 30px 20px;
    border-right: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-info {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.profile-info h3 {
    margin-bottom: 5px;
    color: #333;
    font-size: 1.3rem;
}

.profile-info p {
    color: #666;
    font-size: 0.95rem;
}

.account-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-nav ul li {
    margin-bottom: 10px;
}

.account-nav ul li a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
}

.account-nav ul li a i {
    margin-right: 12px;
    font-size: 1.1rem;
}

.account-nav ul li a:hover,
.account-nav ul li a.active {
    background-color: #1877f2;
    color: #fff;
}

.account-content {
    flex-grow: 1;
    padding: 30px;
}

.account-section {
    display: none;
}

.account-section.active {
    display: block;
}

.account-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    border-bottom: 2px solid #1877f2;
    padding-bottom: 15px;
}

/* Status Bar */
.status-bar {
    margin-bottom: 40px;
    background-color: #f0f8ff;
    border: 1px solid #cce0ff;
    border-radius: 10px;
    padding: 20px;
}

.status-bar h3 {
    color: #1877f2;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.status-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.status-steps::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #e0e0e0;
    z-index: 0;
}

.status-steps .step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    min-width: 120px; /* Ensure steps don't get too narrow */
}

.status-steps .step::before {
    content: '';
    width: 30px;
    height: 30px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    margin: 0 auto 10px auto;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.status-steps .step.active::before {
    background-color: #1877f2;
}

.status-steps .step:nth-child(1)::before { content: '1'; }
.status-steps .step:nth-child(2)::before { content: '2'; }
.status-steps .step:nth-child(3)::before { content: '3'; }
.status-steps .step:nth-child(4)::before { content: '4'; }
.status-steps .step:nth-child(5)::before { content: '5'; }

.status-steps .step.active ~ .step::before {
    background-color: #e0e0e0; /* Reset color for inactive steps after active */
}

.status-steps .step span {
    display: block;
    color: #666;
    font-size: 0.9rem;
}

.status-steps .step.active span {
    color: #1877f2;
    font-weight: 600;
}

/* File Upload Area */
.file-upload-area {
    border: 2px dashed #b0d0ff;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    background-color: #f9fcff;
    margin-bottom: 30px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.file-upload-area.drag-over {
    background-color: #e6f2ff;
    border-color: #1877f2;
}

.file-upload-area h3 {
    color: #1877f2;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.file-upload-area p {
    color: #666;
    margin-bottom: 20px;
}

.upload-button {
    display: inline-block;
    background-color: #1877f2;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.upload-button:hover {
    background-color: #145cb3;
}

#documentUpload {
    display: none;
}

.uploaded-files {
    margin-top: 30px;
    text-align: left;
}

.uploaded-files h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.uploaded-files ul {
    list-style: none;
    padding: 0;
}

.uploaded-files ul li {
    background-color: #eaf2ff;
    border: 1px solid #cce0ff;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 5px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Support Area */
.support-area {
    background-color: #f9fcff;
    border: 1px solid #cce0ff;
    border-radius: 10px;
    padding: 30px;
}

.support-area h3 {
    color: #1877f2;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.support-area textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.send-message-button {
    background-color: #28a745;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-bottom: 30px;
}

.send-message-button:hover {
    background-color: #218838;
}

.support-area h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.support-area ul {
    list-style: none;
    padding: 0;
}

.support-area ul li {
    background-color: #eaf2ff;
    border: 1px solid #cce0ff;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 5px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-area ul li strong {
    color: #1877f2;
}

.support-area ul li span {
    font-size: 0.85rem;
    color: #777;
}

/* Settings Form */
.account-settings-form .form-group {
    margin-bottom: 20px;
}

.account-settings-form input[type="text"],
.account-settings-form input[type="email"],
.account-settings-form input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

.account-settings-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .account-panel {
        flex-direction: column;
        margin: 20px;
    }

    .account-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 20px;
    }

    .account-nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .account-nav ul li {
        margin-bottom: 0;
    }

    .account-nav ul li a {
        padding: 10px 15px;
    }

    .account-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .status-steps {
        flex-direction: column;
        align-items: flex-start;
    }

    .status-steps::before {
        width: 4px;
        height: calc(100% - 30px);
        top: 15px;
        left: 20px;
        right: auto;
    }

    .status-steps .step {
        text-align: left;
        padding-left: 40px;
        margin-bottom: 20px;
    }

    .status-steps .step::before {
        position: absolute;
        left: 0;
        top: 0;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 576px) {
    .account-section h2 {
        font-size: 1.8rem;
    }

    .file-upload-area {
        padding: 20px;
    }

    .support-area {
        padding: 20px;
    }
}

/* Fixed Header */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
}

body.menu-open .fixed-header {
  display: none; /* Hide header when mobile menu is open */
}

/* Admin Panel Styles */
.admin-header {
    background: #1e40af;
    color: white;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.admin-header h1 {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-container {
    display: flex;
    min-height: calc(100vh - 60px);
}

.admin-sidebar {
    width: 250px;
    background: #f8fafc;
    border-right: 1px solid #e2e8f0;
    padding: 1rem;
}

.admin-content {
    flex: 1;
    padding: 2rem;
    background: #f1f5f9;
}

.admin-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-nav li {
    margin-bottom: 0.5rem;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.admin-nav a:hover,
.admin-nav a.active {
    background-color: #dbeafe;
    color: #1e40af;
}

.admin-section {
    display: none;
}

.admin-section.active {
    display: block;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-size: 0.875rem;
}

.table-container {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.admin-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
}

.admin-table tr:hover {
    background: #f9fafb;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
}

.status-pending { background: #fef3c7; color: #92400e; }
.status-documents_uploaded { background: #dbeafe; color: #1e40af; }
.status-approval_pending { background: #fce7f3; color: #be185d; }
.status-processing { background: #dcfce7; color: #166534; }
.status-completed { background: #d1fae5; color: #065f46; }

.btn-small {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin: 0.125rem;
    transition: all 0.2s;
}

.btn-primary { background: #1e40af; color: white; }
.btn-primary:hover { background: #1e3a8a; }

.btn-secondary { background: #6b7280; color: white; }
.btn-secondary:hover { background: #4b5563; }

.btn-success { background: #059669; color: white; }
.btn-success:hover { background: #047857; }

.btn-warning { background: #d97706; color: white; }
.btn-warning:hover { background: #b45309; }

.order-info {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-top: 1rem;
}

.order-info h4 {
    margin: 0 0 1rem 0;
    color: #374151;
}

.order-info p {
    margin: 0.5rem 0;
    color: #6b7280;
}

.order-info strong {
    color: #374151;
}

.no-order {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-top: 1rem;
}

.no-order a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 500;
}

.no-order a:hover {
    text-decoration: underline;
}

.order-details {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.order-details h3 {
    margin: 0 0 1rem 0;
    color: #374151;
}

.order-status {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 0.375rem;
}

.order-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.order-details-grid div {
    padding: 0.5rem 0;
}

.order-details-grid strong {
    color: #374151;
}

/* Responsive Admin */
@media (max-width: 768px) {
    .admin-container {
        flex-direction: column;
    }
    
    .admin-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .admin-content {
        padding: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .admin-table {
        font-size: 0.875rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.5rem;
    }
    
    .btn-small {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .order-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Ticket sistemi stilleri */
.ticket-form {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.ticket-form .form-group {
    margin-bottom: 1rem;
}

.ticket-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #374151;
}

.ticket-form input,
.ticket-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.875rem;
    transition: border-color 0.2s;
}

.ticket-form input:focus,
.ticket-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.tickets-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ticket-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.ticket-header h5 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.ticket-status {
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-open { background: #fef3c7; color: #92400e; }
.status-answered { background: #d1fae5; color: #065f46; }
.status-closed { background: #f3f4f6; color: #374151; }

.ticket-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.ticket-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-small {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: background-color 0.2s;
}

.btn-primary { background: #3b82f6; color: white; }
.btn-primary:hover { background: #2563eb; }

.btn-secondary { background: #6b7280; color: white; }
.btn-secondary:hover { background: #4b5563; }

.btn-success { background: #10b981; color: white; }
.btn-success:hover { background: #059669; }

.btn-warning { background: #f59e0b; color: white; }
.btn-warning:hover { background: #d97706; }

.btn-danger { background: #ef4444; color: white; }
.btn-danger:hover { background: #dc2626; }

.ticket-details {
    margin-top: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.reply-form {
    margin-top: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.reply-form h6 {
    margin: 0 0 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
}

.reply-form textarea {
    width: 100%;
    min-height: 80px;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    resize: vertical;
}

.reply-form textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Admin panel stilleri */
.admin-header {
    background: #2563eb;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.ticket-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.ticket-message {
    margin: 0.75rem 0;
    padding: 0.75rem;
    background: #f9fafb;
    border-radius: 4px;
    border-left: 3px solid #3b82f6;
}

.replies-section {
    margin-top: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 6px;
}

.replies-section h4 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

/* Responsive */
@media (max-width: 768px) {
    .ticket-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .ticket-meta {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .ticket-actions {
        justify-content: flex-start;
    }
    
    .admin-container {
        padding: 1rem;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
} 

/* Şifre değiştirme butonu - Ayarları kaydet butonu ile aynı stil */
.change-password-button {
  background-color: #1877f2;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.change-password-button:hover {
  background-color: #145cb3;
}

/* Modal Stilleri */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: none;
}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
  background-color: #f9fafb;
}

.modal-header h3 {
  margin: 0;
  color: #333;
  font-size: 1.25rem;
}

.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

.close:hover,
.close:focus {
  color: #000;
}

.modal-body {
  padding: 20px;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
}

/* Ticket Modal Özel Stilleri */
#ticketModal .modal-content {
  max-width: 700px;
}

#ticketModal .modal-body {
  max-height: 70vh;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 10% auto;
    max-height: 85vh;
  }
  
  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 15px;
  }
  
  .modal-header h3 {
    font-size: 1.1rem;
  }
}

.hero-visual {
  position: relative;
  width: 380px;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 380px;
  height: 290px;
  background: radial-gradient(circle at 70% 40%, #4f8cff 0%, #2563eb 100%);
  border-radius: 48% 52% 60% 40% / 50% 60% 40% 50%;
  z-index: 1;
  opacity: 0.95;
}
.hero-card-custom {
  position: absolute;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 20px;
}
.hero-card1-custom {
  width: 200px;
  height: 180px;
  left: 30px;
  top: -10px;
  z-index: 2;
}
.hero-card2-custom {
  width: 150px;
  height: 150px;
  left: 170px;
  top: 110px;
  z-index: 3;
  border: 4px solid #fff;
}
.card-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.card-desc {
  font-size: 1rem;
  color: #444;
}

/* Modern Progress Steps */
.steps-progressbar {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 48px auto 0 auto;
  padding: 40px 0 24px 0;
}
.steps-bar-bg {
  position: absolute;
  top: 50%;
  left: 8%;
  right: 8%;
  height: 8px;
  background: #e0e7ef;
  border-radius: 4px;
  z-index: 1;
  transform: translateY(-50%);
}
.steps-bar-fill {
  position: absolute;
  top: 50%;
  left: 8%;
  height: 8px;
  width: 58%; /* 3/4 adım aktif için */
  background: var(--blue-gradient);
  border-radius: 4px;
  z-index: 2;
  transform: translateY(-50%);
  transition: width 0.4s cubic-bezier(.4,1.3,.6,1);
}
.steps-circles {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
  width: 84%;
  margin: 0 auto;
}
.steps-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 3;
}
.steps-circle span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #e0e7ef;
  color: #888;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(24,119,242,0.10);
  border: 4px solid #fff;
  transition: background 0.3s, color 0.3s;
}
.steps-circle.active span {
  background: var(--blue-gradient);
  color: #fff;
  box-shadow: 0 6px 24px rgba(24,119,242,0.18);
}
.steps-label {
  margin-top: 14px;
  font-size: 1.08rem;
  font-weight: 600;
  color: #222;
  letter-spacing: 0.01em;
  text-align: center;
}
@media (max-width: 700px) {
  .steps-progressbar {
    max-width: 98vw;
    padding: 24px 0 12px 0;
  }
  .steps-circles {
    width: 96%;
  }
  .steps-label {
    font-size: 0.98rem;
  }
  .steps-circle span {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* --- Modern Progress Steps --- */
.modern-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 56px auto 32px auto;
  max-width: 900px;
  position: relative;
}
.modern-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  flex: 1 1 0;
  position: relative;
  z-index: 2;
}
.modern-step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 32px 0 rgba(24,119,242,0.13), 0 1.5px 8px 0 rgba(24,119,242,0.08);
  border: 4px solid #e0e7ef;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  transition: border 0.3s, box-shadow 0.3s, transform 0.25s cubic-bezier(.4,1.3,.6,1);
  overflow: hidden;
}
.modern-step-circle i {
  font-size: 1.45rem;
  margin-bottom: 2px;
  color: #2563eb;
  transition: color 0.3s, transform 0.3s;
  display: block;
}
.modern-step-circle span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2563eb;
  transition: color 0.3s;
  display: block;
}
.modern-step-item.active .modern-step-circle {
  border: 4px solid #2563eb;
  background: linear-gradient(135deg, #2563eb 60%, #4f8cff 100%);
  color: #fff;
  box-shadow: 0 12px 36px 0 rgba(24,119,242,0.22), 0 2px 12px 0 rgba(24,119,242,0.13);
  transform: scale(1.12);
}
.modern-step-item.active .modern-step-circle i,
.modern-step-item.active .modern-step-circle span {
  color: #fff;
}
.modern-step-item .modern-step-circle:hover {
  box-shadow: 0 18px 48px 0 rgba(24,119,242,0.22), 0 4px 16px 0 rgba(24,119,242,0.16);
  transform: scale(1.18) rotate(-2deg);
  cursor: pointer;
}
.modern-step-item.active .modern-step-circle i {
  animation: icon-bounce 0.5s cubic-bezier(.4,1.3,.6,1);
}
@keyframes icon-bounce {
  0% { transform: scale(1) translateY(0); }
  40% { transform: scale(1.25) translateY(-6px); }
  60% { transform: scale(0.95) translateY(2px); }
  100% { transform: scale(1) translateY(0); }
}

.modern-step-title {
  font-size: 1.13rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 4px;
  text-align: center;
  letter-spacing: 0.01em;
}
.modern-step-desc {
  font-size: 0.98rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 0;
  min-height: 18px;
}
.modern-step-connector {
  flex: none;
  width: 60px;
  height: 8px;
  align-self: center;
  background: linear-gradient(90deg, #2563eb 0%, #4f8cff 100%);
  opacity: 0.18;
  border-radius: 4px;
  margin: 0 0px;
  position: relative;
  z-index: 1;
  transition: opacity 0.3s;
}
.modern-step-item.active + .modern-step-connector {
  opacity: 1;
  background: linear-gradient(90deg, #2563eb 0%, #4f8cff 100%);
}
.modern-step-item:not(.active) .modern-step-circle {
  background: #f3f4f6;
  border: 4px solid #e0e7ef;
  color: #bdbdbd;
}
.modern-step-item:not(.active) .modern-step-title {
  color: #bdbdbd;
}
.modern-step-item:not(.active) .modern-step-desc {
  color: #c7c7c7;
}
.modern-step-item .modern-step-circle:hover {
  box-shadow: 0 12px 36px 0 rgba(24,119,242,0.18), 0 2px 12px 0 rgba(24,119,242,0.13);
  transform: scale(1.12);
  cursor: pointer;
}
@media (max-width: 900px) {
  .modern-steps { max-width: 99vw; }
  .modern-step-connector { width: 32px; }
}
@media (max-width: 600px) {
  .modern-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .modern-step-item {
    flex-direction: row;
    align-items: center;
    min-width: 0;
    margin-bottom: 0;
    padding: 12px 0;
  }
  .modern-step-circle {
    width: 44px;
    height: 44px;
    margin-bottom: 0;
    margin-right: 16px;
  }
  .modern-step-title, .modern-step-desc {
    text-align: left;
  }
  .modern-step-title {
    font-size: 1.01rem;
    margin-bottom: 2px;
  }
  .modern-step-desc {
    font-size: 0.93rem;
  }
  .modern-step-connector {
    width: 8px;
    height: 32px;
    margin: 0 auto;
    background: linear-gradient(180deg, #2563eb 0%, #4f8cff 100%);
    opacity: 0.18;
  }
}

.about-hero-flex,
.about-vision-flex,
.about-diff-flex,
.about-contrib-flex,
.contact-flex,
.about-hero-stats-flex,
.about-vision-bottom,
.about-diff-steps {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

@media (max-width: 700px) {
  .about-hero-flex,
  .about-vision-flex,
  .about-diff-flex,
  .about-contrib-flex,
  .contact-flex,
  .about-hero-stats-flex,
  .about-vision-bottom,
  .about-diff-steps {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    padding: 0 2px;
  }
}

.about-passport,
.about-vision-card,
.about-diff-card,
.about-contrib-card,
.contact-info,
.contact-form-box {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* --- Türkiye Ekibi ve Yorum Bölümü --- */
.about-turkey-team {
  background: #f7f9fb;
  padding: 48px 0 32px 0;
}
.about-turkey-team-flex {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.about-turkey-photo-placeholder {
  width: 220px;
  height: 220px;
  background: #e0e0e0;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #aaa;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.about-turkey-team-content {
  flex: 1;
  min-width: 260px;
}
.about-turkey-main-text {
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: #232a5c;
  font-weight: 500;
}
.about-turkey-quote {
  background: #fff;
  border-left: 5px solid #2563eb;
  padding: 18px 22px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.about-turkey-quote-icon {
  font-size: 1.3rem;
  margin-right: 7px;
  vertical-align: middle;
}
.about-turkey-quote blockquote {
  margin: 10px 0 0 0;
  font-style: italic;
  color: #444;
  font-size: 1rem;
  border: none;
  padding: 0;
  background: none;
}
@media (max-width: 900px) {
  .about-turkey-team-flex {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .about-turkey-photo-placeholder {
    width: 160px;
    height: 160px;
  }
}

.hero-card-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

@media (max-width: 700px) {
  .about-hero-stats {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  .about-hero-stats-flex {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
    gap: 10px !important;
  }
  .about-hero-stat {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    font-size: 0.95rem !important;
    padding: 8px 4px !important;
    margin-bottom: 10px !important;
    text-align: center !important;
    overflow-wrap: break-word !important;
  }
  .about-hero-stat .stat-big {
    font-size: 1.1em !important;
  }
}
@media (max-width: 480px) {
  .about-hero-stat {
    font-size: 0.9rem !important;
    padding: 6px 2px !important;
  }
  .about-hero-stats-flex {
    gap: 6px !important;
  }
}

@media (max-width: 700px) {
  .about-hero-flex {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 700px) {
  .why-card {
    max-width: 360px !important;
    width: 98vw !important;
    padding: 12px 6px !important;
    margin: 0 auto 12px auto !important;
  }
}
@media (max-width: 480px) {
  .why-card {
    max-width: 98vw !important;
    width: 98vw !important;
    padding: 8px 2px !important;
    margin: 0 auto 8px auto !important;
  }
}

@media (max-width: 768px) {
  .about-vision-card,
  .about-contrib-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 18px !important;
  }
}