/* ========================================
   SEKTÖRLER SAYFASI STİLLERİ
   ======================================== */

/* ── Sektörler Index Hero ── */
.sektorler-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a1a 0%, #101820 50%, #0d1f2d 100%);
  padding-top: 80px;
}

.sektorler-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(48, 213, 200, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 80% 30%, rgba(111, 66, 193, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.sektorler-hero .container {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  text-align: center;
}

.sektorler-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(48, 213, 200, 0.12);
  border: 1px solid rgba(48, 213, 200, 0.3);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark-primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.sektorler-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.sektorler-hero h1 span {
  background: linear-gradient(135deg, #30d5c8, #7de8e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sektorler-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.sektorler-hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.sektorler-hero-stats .stat-item {
  text-align: center;
}

.sektorler-hero-stats .stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-primary);
  display: block;
  line-height: 1;
}

.sektorler-hero-stats .stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  display: block;
}

/* ── Sektör Kartları Grid ── */
.sektorler-grid-section {
  padding: 80px 0;
  background: #0d1117;
}

.sektorler-grid-header {
  text-align: center;
  margin-bottom: 56px;
}

.sektorler-grid-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.sektorler-grid-header p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
}

.sektorler-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .sektorler-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .sektorler-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

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

/* ── Sektör Kartı ── */
.sektor-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: transform 0.35s cubic-bezier(.25, .8, .25, 1),
              box-shadow 0.35s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.sektor-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.sektor-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sektor-card:hover .sektor-card-img {
  transform: scale(1.08);
}

.sektor-card-gradient {
  position: absolute;
  inset: 0;
  transition: opacity 0.35s ease;
}

.sektor-card:hover .sektor-card-gradient {
  opacity: 0.9;
}

/* Fallback gradient when image is missing */
.sektor-card-bg-fallback {
  position: absolute;
  inset: 0;
}

.sektor-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 22px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%);
}

.sektor-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 5px;
  line-height: 1.2;
}

.sektor-card-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  display: block;
  line-height: 1.4;
  margin-bottom: 10px;
}

.sektor-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark-primary);
  transition: gap 0.25s ease;
}

.sektor-card:hover .sektor-card-arrow {
  gap: 10px;
}

/* ======================================
   SEKTÖR DETAY SAYFASI
   ====================================== */

/* ── Hero Section ── */
.sektor-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 80px;
}

.sektor-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s ease;
}

.sektor-hero:hover .sektor-hero-bg {
  transform: scale(1.03);
}

.sektor-hero-overlay {
  position: absolute;
  inset: 0;
}

.sektor-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 60px;
  width: 100%;
}

.sektor-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
  margin-bottom: 28px;
}

.sektor-back-link:hover {
  color: var(--dark-primary);
}

.sektor-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(48, 213, 200, 0.2);
  border: 1px solid rgba(48, 213, 200, 0.4);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sektor-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 720px;
}

.sektor-hero-content p.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ── Stats Bar ── */
.sektor-stats-bar {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
  max-width: 600px;
}

.sektor-stat {
  flex: 1;
  min-width: 140px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.sektor-stat:last-child {
  border-right: none;
}

.sektor-stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark-primary);
  display: block;
  line-height: 1;
}

.sektor-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-top: 5px;
}

/* ── Zorluklar Section ── */
.sektor-zorluklar {
  padding: 100px 0;
  background: #0d1117;
  position: relative;
}

.sektor-zorluklar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(48,213,200,0.3), transparent);
}

.sektor-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e74c3c;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sektor-section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #e74c3c;
  border-radius: 2px;
}

.sektor-section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.sektor-section-desc {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.zorluklar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 760px) {
  .zorluklar-grid {
    grid-template-columns: 1fr;
  }
}

.zorluk-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.zorluk-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(231, 76, 60, 0.25);
}

.zorluk-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #e74c3c, rgba(231,76,60,0.2));
  border-radius: 0 0 0 0;
}

.zorluk-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(231, 76, 60, 0.15);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Inter', sans-serif;
}

.zorluk-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  padding-right: 40px;
}

.zorluk-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ── Çözümler Section ── */
.sektor-cozumler {
  padding: 100px 0;
  background: linear-gradient(180deg, #0d1117 0%, #101820 100%);
  position: relative;
}

.sektor-cozumler::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111,66,193,0.3), transparent);
}

.sektor-cozumler .sektor-section-label {
  color: var(--dark-primary);
}

.sektor-cozumler .sektor-section-label::before {
  background: var(--dark-primary);
}

.cozumler-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 760px) {
  .cozumler-grid {
    grid-template-columns: 1fr;
  }
}

.cozum-card {
  background: rgba(48, 213, 200, 0.04);
  border: 1px solid rgba(48, 213, 200, 0.12);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cozum-card:hover {
  background: rgba(48, 213, 200, 0.08);
  border-color: rgba(48, 213, 200, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(48, 213, 200, 0.1);
}

.cozum-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--dark-primary), rgba(48,213,200,0.2));
}

.cozum-product-tag {
  display: inline-block;
  background: rgba(48,213,200,0.15);
  border: 1px solid rgba(48,213,200,0.25);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--dark-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
  width: fit-content;
}

.cozum-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cozum-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.cozum-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-primary);
  text-decoration: none;
  transition: gap 0.25s ease;
}

.cozum-link:hover {
  gap: 10px;
}

.cozum-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.cozum-link:hover svg {
  transform: translateX(3px);
}

/* ── Diğer Sektörler ── */
.sektor-diger {
  padding: 80px 0;
  background: #0a0a14;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.sektor-diger h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.sektor-diger p {
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
  font-size: 0.9rem;
}

.diger-sektorler-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 900px) {
  .diger-sektorler-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .diger-sektorler-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

.diger-sektor-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.25s ease;
}

.diger-sektor-card:hover {
  background: rgba(48,213,200,0.06);
  border-color: rgba(48,213,200,0.2);
  transform: translateY(-2px);
}

.diger-sektor-card-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.diger-sektor-card-bg {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.diger-sektor-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: color 0.25s ease;
}

.diger-sektor-card:hover span {
  color: var(--dark-primary);
}

/* ── CTA Section ── */
.sektor-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0c29 0%, #24243e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sektor-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(48,213,200,0.1) 0%, transparent 70%);
}

.sektor-cta-section .container {
  position: relative;
  z-index: 1;
}

.sektor-cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.sektor-cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.sektor-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Sektörler Dropdown Özel Stili ── */
.dropdown-more-item a {
  color: var(--dark-primary) !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center;
  gap: 6px;
}

.dropdown-more-item {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 4px !important;
  padding-top: 4px;
}

.dropdown-more-item a::after {
  content: '→';
  font-size: 0.9em;
}

.dropdown-more-item a:hover {
  background: rgba(48,213,200,0.12) !important;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .sektorler-hero .container {
    padding: 60px 0;
  }

  .sektorler-hero h1 {
    font-size: 2rem;
  }

  .sektorler-hero-stats {
    gap: 32px;
  }

  .sektor-hero {
    min-height: 480px;
  }

  .sektor-hero-content h1 {
    font-size: 2rem;
  }

  .sektor-stats-bar {
    flex-direction: row;
  }

  .sektor-stat {
    min-width: 100px;
    padding: 16px;
  }

  .sektor-stat-value {
    font-size: 1.3rem;
  }

  .sektor-zorluklar,
  .sektor-cozumler,
  .sektor-diger,
  .sektor-cta-section {
    padding: 60px 0;
  }
}
