/* Region Hero Section */
.region-hero {
  position: relative;
  height: 70vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(125deg, rgba(234, 88, 12, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(234, 88, 12, 0.3) 100%);
  z-index: 2;
}

.container-baslik {
  max-width: var(--container-max-width);
  margin: 0 left;
  padding: 0 1rem;
  position: relative;
  z-index: 3;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin-left: 2rem;
  padding-left: 3rem;
}

/* Breadcrumb Styles */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--background);
}

.breadcrumb span {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.region-hero h1 {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 1rem;
  font-family: var(--font-geist);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.region-hero p {
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 0;
  font-family: var(--font-manrope);
  max-width: 650px;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hero Stats Styles */
.hero-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  transition: all 0.4s ease;
  min-width: 160px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-item .w-8 {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.3) 0%, rgba(234, 88, 12, 0.1) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(234, 88, 12, 0.2);
}

.stat-item .w-8 svg {
  color: var(--primary);
  width: 1.25rem;
  height: 1.25rem;
}

.stat-item span {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  font-family: var(--font-geist);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Region Info Section */
.region-info {
  padding: 4rem 0;
  background: var(--background);
}

.info-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.info-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
  font-family: var(--font-geist);
}

.info-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  font-family: var(--font-manrope);
}

.info-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
  font-family: var(--font-geist);
}

.highlights-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.highlights-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.highlights-list li:hover {
  transform: translateY(-2px);
}

.highlights-list li svg {
  color: var(--primary);
}

.highlights-list li span {
  font-weight: 500;
  color: var(--foreground);
  font-family: var(--font-manrope);
}

/* Info Sidebar */
.info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.price-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.price-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
  font-family: var(--font-geist);
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.price-amount .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  font-family: var(--font-geist);
}

.price-amount .amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-geist);
}

.price-amount .per {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-family: var(--font-manrope);
}

.price-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  font-family: var(--font-manrope);
}

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
  font-family: var(--font-geist);
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li svg {
  color: var(--primary);
}

.service-list li span {
  color: var(--foreground);
  font-family: var(--font-manrope);
}

/* Region CTA Section */
.region-cta {
  padding: 4rem 0;
  background: var(--primary);
  color: white;
}

.cta-card {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-card h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-geist);
}

.cta-card p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-family: var(--font-manrope);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .info-sidebar {
    order: -1;
  }
}

@media (max-width: 768px) {
  .region-hero {
    height: 50vh;
    min-height: 400px;
  }

  .hero-content {
    padding-left: 1.5rem;
    margin-left: 1rem;
    max-width: 100%;
  }
  
  .region-hero h1 {
    font-size: 3rem;
  }
  
  .region-hero p {
    font-size: 1.125rem;
  }

  .breadcrumb {
    font-size: 0.8rem;
    gap: 0.375rem;
  }
  
  .hero-stats {
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .stat-item {
    min-width: 120px;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }

  .stat-item .w-8 {
    width: 1.75rem;
    height: 1.75rem;
  }

  .stat-item span {
    font-size: 0.875rem;
  }
  
  .info-content h2 {
    font-size: 1.75rem;
  }
  
  .highlights-list {
    grid-template-columns: 1fr;
  }
  
  .cta-card h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .region-hero h1 {
    font-size: 2.5rem;
  }

  .region-hero p {
    font-size: 1rem;
  }

  .breadcrumb {
    font-size: 0.75rem;
    flex-wrap: wrap;
  }

  /* Hero Stats Small Mobile */
  .hero-stats {
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .stat-item {
    min-width: auto;
    width: 100%;
    justify-content: center;
    padding: 0.75rem;
  }
}
