/* Reset and Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg-primary: #0d0e11;
  --bg-secondary: #0a0b0e;
  --bg-card: #151821;
  --bg-footer: #111318;
  --primary: #ea580c;
  --primary-hover: #f97316;
  --primary-dark: #c2410c;
  --text-white: #ffffff;
  --text-gray: #9ca3af;
  --text-muted: #6b7280;
  --border-color: #2d2d2d;
  --border-orange: rgba(234, 88, 12, 0.5);
  --teal: #27aba6;
  --max-width: 1400px;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-primary);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.logo img {
  height: 35px;
  width: auto;
}

.nav {
  display: none;
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .nav {
    display: flex;
  }
}

.nav a {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-white);
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
  color: var(--primary);
}

.lang-selector {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  cursor: pointer;
}

@media (min-width: 992px) {
  .lang-selector {
    display: flex;
  }
}

.lang-selector img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}

.mobile-btn {
  display: flex;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

@media (min-width: 992px) {
  .mobile-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  padding: 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
}


.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 1.25rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu a.active {
  color:  var(--primary);
  font-weight: bold;
  background: rgba(0,0,0,0.05); /* isteğe bağlı */
  border-left: 3px solid  var(--primary);
}




/* Başlangıçta çizgi görünmez */
.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary, #f97316);
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.5);
  opacity: 0;
  transform: scaleX(0);
  transition: all 0.3s ease;
}

/* Sayfa kaydığında çizgi görünür */
.header.scrolled::after {
  opacity: 1;
  transform: scaleX(1);
}

:root {
  --logo-height: 100px;
  --logo-height-mobile: 80px; /* 100px'ın %20'si */
}

.logo img {
  height: var(--logo-height);
  width: auto;
  transition: height 0.3s ease;
}

@media (max-width: 991px) {
  .logo img {
    height: var(--logo-height-mobile);
  }
}
/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  background: linear-gradient(135deg,
    rgba(15, 16, 26, 0.9) 0%,
    rgba(42, 47, 73, 0.8) 30%,
    rgba(15, 16, 26, 1) 70%
  );
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(15, 16, 26, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: rgba(245, 240, 240, 0.15);
  border: 1px solid rgba(240, 232, 232, 0.25);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-title .highlight {
  color: var(--primary);
  display: block;
}

.hero-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 500px;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.1rem;
  }
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 5rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-family: inherit;
}


.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(234, 88, 12, 0.25);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
}

.btn-outline:hover {
  border-color: var(--primary);
  background: rgba(234, 88, 12, 0.1);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: 0.5rem;
}

.hero-visual {
  display: none;
  justify-content: center;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-visual {
    display: flex;
  }
}

.hero-img-container {
  position: relative;
  width: 100%;
  max-width: 550px;
}

.hero-img-container img,
.hero-img-container video {
  width: 100%;
  height: auto;
  border-radius: 1rem;
}


/* text efeck */

.text-primary-600 {
  color: var(--primary);
}

.txt-type {
  border-right: 2px solid currentColor;
  padding-right: 2px;
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {
  from, to { border-color: transparent; }
  50% { border-color: currentColor; }
}



/* ==================== SECTIONS ==================== */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  justify-content: center;  /* Yatayda ortala */
  align-items: center;      /* Dikeyde ortala */
  max-width: 400px;
  margin: 3rem auto 0;
  grid-template-columns: repeat(4, 1fr);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(234, 88, 12, 0.1);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.875rem;
  margin-bottom: 0; /* Margin'i sıfırla, hero-stats halledecek */
}

.section-badge::before {
  display: none;
}

.section-title {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--primary);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

.section-title span {
  color: var(--primary);
}

.section-title-white {
  color: var(--text-white);
}

.section-title-white span {
  color: var(--primary);
}

.section-desc {
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
}

/* ==================== SERVICE CARDS (Orange Border Style) ==================== */
:root {
  --primary: #ea580c;
  --primary-hover: #c2410c;
  --text-gray: #ffffff;
  --bg-light: #000;
}

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

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

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

.service-card {
  display: block;
  padding: 2rem 1.5rem;
  background: var(--bg-light);
  border: 1px solid var(--primary);
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

/* Mouse üzerine gelince turuncu gölge efekti */
.service-card:hover {
  background: black;
  box-shadow: 0 8px 25px rgb(255, 107, 28), 0 0 0 2px rgba(234, 88, 12, 0);
  transform: translateY(-3px);
  border-color: var(--primary-hover);
}

/* Icon kutusu - normalde %10 şeffaf turuncu zemin */
.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(234, 88, 12, 0.1); /* %10 şeffaf turuncu */
  border-radius: 1rem;
  transition: all 0.3s ease;
}

/* Hover'da icon arka planı tam turuncu, icon beyaz olacak */
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  transform: scale(1.05);
}

/* Icon normalde turuncu renk */
.service-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--primary); /* turuncu icon */
  transition: fill 0.3s ease;
}

/* Hover'da icon tam beyaz olacak */
.service-card:hover .service-icon svg {
  fill: rgb(255, 255, 255); /* beyaz icon */
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary-hover);
}

.service-card p {
  color: var(--text-gray);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

/* Ekstra: aktif ve focus durumları */
.service-card:active {
  transform: translateY(0);
}

.service-card .service-icon {
  color: #ff8c00; /* turuncu */
  transition: color 0.3s ease;
}

.service-card:hover .service-icon {
  color: #ffffff; /* beyaz */
}

/* ==================== SOLUTIONS SECTION ==================== */
.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.solution-card {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 2rem;
  border-left: 4px solid var(--primary);
  position: relative;
}

.solution-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.solution-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(234, 88, 12, 0.15);
  border-radius: 0.75rem;
}

.solution-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.solution-info h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.solution-info span {
  font-size: 0.875rem;
  color: var(--primary);
}

.solution-card > p {
  color: var(--text-gray);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.solution-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.solution-stat {
  background: rgba(0,0,0,0.3);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.solution-stat-value {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
}

.solution-stat-label {
  font-size: 0.75rem;
  color: var(--text-gray);
  margin-top: 0.25rem;
}

.solution-card .btn {
  width: 100%;
}

/* ==================== CLIENTS SECTION ==================== */
.clients-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.clients-title {
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .clients-title {
    font-size: 2.5rem;
  }
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .clients-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.client-logo {
  background: #f5f5f5; /* Daha soluk bir arka plan rengi */
  border-radius: 0.5rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0.7; /* Kutucuğun genel opaklığı - soluk görünüm */
}

.client-logo:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  background: white; /* Hover'da beyaz arka plan */
  opacity: 1; /* Hover'da tam opaklık */
}

.client-logo-img {
  flex-shrink: 0;
  margin-bottom: 0.75rem;
}

/* Logo resimleri için soluk filtre */
.client-logo img {
  max-height: 90px;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7);
  transition: all 0.3s ease;
}

/* Hover durumunda logo orijinal renklerine dönsün */
.client-logo:hover img {
  filter: grayscale(0%) brightness(1);
}

.reference-info {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.reference-name {
  font-weight: 600;
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
  color: #999; /* Daha soluk gri */
}

.reference-city {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: #aaa; /* Daha soluk gri */
}

.reference-city::before {
  content: "📍";
  font-size: 0.7rem;
  opacity: 0.6; /* Emoji de soluk */
}

/* Hover durumunda yazılar normale dönsün */
.client-logo:hover .reference-name {
  color: #666;
}

.client-logo:hover .reference-city {
  color: #888;
}

.client-logo:hover .reference-city::before {
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .client-logo {
    padding: 1rem;
    min-height: 110px;
  }
  
  .client-logo img {
    max-height: 70px;
    max-width: 140px;
  }
  
  .reference-name {
    font-size: 0.8rem;
  }
  
  .reference-city {
    font-size: 0.7rem;
  }
}

.client-more {
  background: #f5f5f5; /* Soluk arka plan */
  border: 2px dashed #ccc; /* Soluk border */
  color: #999; /* Soluk yazı */
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  max-width: 100%;
  word-break: keep-all;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-more span {
  display: block;
  text-align: center;
}

.client-more:hover {
  background: white;
  border: 2px dashed var(--primary);
  color: var(--primary);
  opacity: 1;
}

/* ==================== MISSION/VISION SECTION ==================== */
.mission-section {
  padding: 100px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .mission-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.mission-content h2 {
  font-size: 2.25rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.mission-content h2 span {
  color: var(--primary);
}

.mission-content > p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.mission-item {
  margin-bottom: 2rem;
}

.mission-item-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mission-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(234, 88, 12, 0.15);
  border-radius: 0.625rem;
}

.mission-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.mission-item h3 {
  font-size: 1.125rem;
  font-weight: 500;
}

.mission-item p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-left: 3.5rem;
  margin-bottom: 0.75rem;
}

/* Values Grid */
.values-wrapper h3 {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: var(--primary);
}

.value-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(234, 88, 12, 0.15);
  border-radius: 0.75rem;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.value-card h4 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.8125rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ==================== EXPERTISE SECTION ==================== */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.expertise-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.expertise-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.expertise-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  border-radius: 1rem;
}

.expertise-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.expertise-card h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.expertise-card .subtitle {
  color: var(--primary);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.expertise-card p {
  color: var(--text-gray);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  text-align: center;
}

@media (min-width: 1024px) {
  .contact-info {
    text-align: left;
  }
}

.contact-info h2 {
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 450px;
}

@media (min-width: 1024px) {
  .contact-info p {
    margin: 0;
  }
}

.contact-form {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  color: var(--text-white);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--bg-footer);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h3 {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a,
.footer-col span {
  font-size: 0.875rem;
  color: var(--text-gray);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--text-white);
}

.footer-col svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* ==================== PAGE HERO ==================== */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg,
    rgba(30, 15, 10, 0.9) 0%,
    rgba(45, 25, 15, 0.8) 30%,
    rgba(13, 14, 17, 1) 70%
  );
  text-align: center;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(234, 88, 12, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3.25rem;
  }
}

.page-hero h1 span {
  color: var(--primary);
}

.page-hero > .container > p,
.page-hero-content > p {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}

.page-stat {
  text-align: center;
}

.page-stat-value {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--primary);
}

.page-stat-label {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: 0.5rem;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg,
    rgba(30, 15, 10, 1) 0%,
    rgba(180, 80, 30, 0.3) 50%,
    rgba(30, 15, 10, 1) 100%
  );
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 2.5rem;
  }
}

.cta-section p {
  color: var(--text-gray);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

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

/* ==================== OFFICES ==================== */
.offices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .offices-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.office-card {
  background: var(--bg-card);
  border-radius: 1rem;
  padding: 1.75rem;
}

.office-card h3 {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 1rem;
}

.office-card p {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.office-card .phone {
  margin-top: 1rem;
  color: var(--text-white);
  font-weight: 500;
}

/* ==================== JOB CARDS ==================== */
.job-card {
  border: 2px solid var(--primary);
  border-radius: 1rem;
  padding: 2rem;
  margin-top: 2rem;
}

.job-card h2 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.job-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .job-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.job-section h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1rem;
}

.job-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.job-section li {
  font-size: 0.9375rem;
  color: var(--text-gray);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}

.job-section li::before {
  content: '•';
  color: var(--primary);
  font-weight: bold;
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }



/* Hero Slider */
.hero-slider {
  position: relative;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
}

.slider-wrapper {
  position: relative;
  width: 100%;
}

.hero-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.hero-slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Navigation Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev {
  left: 20px;
}

.slider-arrow.next {
  right: 20px;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 32px;
  background: #3b82f6;
  border-radius: 20px;
}

.dot:hover {
  background: #3b82f6;
}

/* Responsive */
@media (max-width: 768px) {
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  
  .slider-arrow.prev {
    left: 10px;
  }
  
  .slider-arrow.next {
    right: 10px;
  }
  
  .slider-dots {
    bottom: 20px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .dot.active {
    width: 24px;
  }
}

/* Cookie Consent Styles */
    .cookie-consent {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: var(--bg-card);
        border-top: 1px solid var(--border-orange);
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
    }

    .cookie-consent.show {
        transform: translateY(0);
    }

    .cookie-container {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 1.5rem 2rem;
    }

    .cookie-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
    }

    .cookie-text {
        flex: 1;
        min-width: 250px;
    }

    .cookie-text h3 {
        font-size: 1.125rem;
        font-weight: 500;
        color: var(--primary);
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .cookie-text p {
        font-size: 0.875rem;
        color: var(--text-gray);
        line-height: 1.6;
        margin: 0;
    }

    .cookie-links {
        margin-top: 0.5rem;
    }

    .cookie-links a {
        font-size: 0.75rem;
        color: var(--primary);
        text-decoration: none;
        margin-right: 1rem;
        transition: color 0.3s;
    }

    .cookie-links a:hover {
        color: var(--primary-hover);
        text-decoration: underline;
    }

    .cookie-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: center;
    }

    .cookie-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.875rem;
        font-weight: 500;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: inherit;
        border: none;
    }

    .cookie-btn-primary {
        background: var(--primary);
        color: white;
    }

    .cookie-btn-primary:hover {
        background: var(--primary-hover);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
    }

    .cookie-btn-secondary {
        background: transparent;
        border: 1px solid var(--border-color);
        color: var(--text-white);
    }

    .cookie-btn-secondary:hover {
        border-color: var(--primary);
        background: rgba(234, 88, 12, 0.1);
    }

    .cookie-btn-outline {
        background: transparent;
        border: 1px solid var(--primary);
        color: var(--primary);
    }

    .cookie-btn-outline:hover {
        background: var(--primary);
        color: white;
    }

    /* Cookie Settings Modal */
    .cookie-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        z-index: 10000;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(4px);
    }

    .cookie-modal.active {
        display: flex;
    }

    .cookie-modal-content {
        background: var(--bg-card);
        border: 1px solid var(--border-orange);
        border-radius: 1rem;
        max-width: 500px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
        animation: modalSlideIn 0.3s ease;
    }

    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .cookie-modal-header {
        padding: 1.25rem 1.5rem;
        border-bottom: 1px solid var(--border-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cookie-modal-header h3 {
        font-size: 1.125rem;
        font-weight: 500;
        color: var(--primary);
        margin: 0;
    }

    .cookie-modal-close {
        background: none;
        border: none;
        color: var(--text-gray);
        font-size: 1.5rem;
        cursor: pointer;
        transition: color 0.3s;
        line-height: 1;
    }

    .cookie-modal-close:hover {
        color: var(--primary);
    }

    .cookie-modal-body {
        padding: 1.5rem;
    }

    .cookie-preference {
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
        border-bottom: 1px solid var(--border-color);
    }

    .cookie-preference:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

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

    .cookie-preference-header label {
        font-weight: 500;
        color: var(--text-white);
    }

    /* Toggle Switch */
    .toggle-switch {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 24px;
    }

    .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .toggle-slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--border-color);
        transition: 0.3s;
        border-radius: 34px;
    }

    .toggle-slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: 0.3s;
        border-radius: 50%;
    }

    input:checked + .toggle-slider {
        background-color: var(--primary);
    }

    input:checked + .toggle-slider:before {
        transform: translateX(26px);
    }

    input:disabled + .toggle-slider {
        opacity: 0.5;
        cursor: not-allowed;
    }

    .cookie-preference-desc {
        font-size: 0.75rem;
        color: var(--text-muted);
        line-height: 1.5;
    }

    .cookie-modal-footer {
        padding: 1rem 1.5rem;
        border-top: 1px solid var(--border-color);
        display: flex;
        gap: 0.75rem;
        justify-content: flex-end;
    }

    /* Cookie Toast */
    .cookie-toast {
        position: fixed;
        bottom: 120px;
        right: 20px;
        background: var(--bg-card);
        border-left: 3px solid var(--primary);
        padding: 12px 20px;
        border-radius: 8px;
        color: var(--text-white);
        font-size: 0.875rem;
        z-index: 10001;
        transform: translateX(400px);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    /* Scrollbar */
    .cookie-modal-content::-webkit-scrollbar {
        width: 6px;
    }

    .cookie-modal-content::-webkit-scrollbar-track {
        background: var(--border-color);
        border-radius: 3px;
    }

    .cookie-modal-content::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 3px;
    }

    @keyframes slideIn {
        from {
            transform: translateX(400px);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .cookie-toast {
        animation: slideIn 0.3s ease;
    }

    @media (max-width: 768px) {
        .cookie-container {
            padding: 1rem;
        }
        
        .cookie-content {
            flex-direction: column;
            text-align: center;
        }
        
        .cookie-buttons {
            justify-content: center;
        }
        
        .cookie-links {
            text-align: center;
        }
    }
      .sectors-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
      }

      .sector-card {
        background: var(--bg-card);
        border: 1px solid var(--border-color);
        border-radius: 1rem;
        padding: 1rem;
        text-align: center;
        font-weight: 500;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        cursor: pointer;
      }

      .sector-card:hover {
        border-color: var(--primary);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(234, 88, 12, 0.15);
        color: var(--primary);
      }

.section-title span {
  color: var(--text-white); /* veya direkt #ffffff */
}








/* ==================== DUAL COLUMN SECTION (9 BİRİM - 3 BİRİM) ==================== */

.dual-column-section {
    padding: 4rem 0;
}

.dual-column-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    align-items: stretch;
}

/* SOL TARAF - 9 BİRİM */
.column-left {
    flex: 9;
    min-width: 280px;
}

/* SAĞ TARAF - 3 BİRİM */
.column-right {
    flex: 3;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

/* ========== SOL TARAF İÇERİK STİLLERİ ========== */
.left-content-card {
    background: linear-gradient(145deg, #0f1117, #0a0b0e);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(234, 88, 12, 0.3);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.left-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--primary-hover));
}

.left-content-card h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.left-content-card .section-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 2rem;
    text-align: left;
    margin-left: 0;
    max-width: 100%;
}

/* Sol taraftaki yazı bloğu */
.content-text {
    margin-bottom: 2rem;
}

.content-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.content-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item svg {
    width: 22px;
    height: 22px;
    fill: var(--primary);
}

.feature-item span {
    color: var(--text-white);
    font-size: 0.9rem;
}

/* Sol taraftaki resim alanı */
.content-image {
    margin-top: auto;
    border-radius: 1rem;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.content-image img:hover {
    transform: scale(1.02);
}

/* ========== SAĞ TARAF KUTUCUK STİLLERİ ========== */

/* 1. KUTUCUK - Telefon / İletişim */
.contact-card {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.15), rgba(234, 88, 12, 0.05));
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(234, 88, 12, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px -12px rgba(234, 88, 12, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(234, 88, 12, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--primary);
    transform: scale(1.05);
}

.contact-icon svg {
    width: 34px;
    height: 34px;
    fill: var(--primary);
    transition: fill 0.3s ease;
}

.contact-card:hover .contact-icon svg {
    fill: white;
}

.contact-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    cursor: pointer;
}

.contact-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -8px rgba(234, 88, 12, 0.4);
    gap: 0.75rem;
}

/* 2. KUTUCUK - Hizmetlerimiz */
.services-card {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.12), rgba(234, 88, 12, 0.03));
    border-radius: 1.5rem;
    padding: 1.8rem 1.5rem;
    border: 1px solid rgba(234, 88, 12, 0.3);
    transition: all 0.3s ease;
}

.services-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.services-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(234, 88, 12, 0.3);
}

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

.services-list li {
    margin-bottom: 0.9rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.services-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.services-list a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.services-list a svg {
    width: 18px;
    height: 18px;
    fill: var(--primary);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.services-list a:hover svg {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 860px) {
    .dual-column-container {
        flex-direction: column;
    }
    
    .column-left, .column-right {
        flex: auto;
        width: 100%;
    }
    
    .left-content-card {
        padding: 1.8rem;
    }
    
    .left-content-card h2 {
        font-size: 1.6rem;
    }
    
    .content-features {
        flex-direction: column;
        gap: 0.8rem;
    }
}


/* ==================== CLIENTS SECTION ==================== */
.clients-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  overflow-x: hidden; /* Yatay scroll'u engelle */
}

.clients-title {
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .clients-title {
    font-size: 2.5rem;
  }
}

/* ==================== SLIDING CLIENTS SECTION ==================== */
.clients-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 3rem;
}

.clients-slider-track {
  display: flex;
  gap: 1rem;
  animation: slideClients 30s linear infinite;
  width: fit-content;
}

/* Hover'da animasyonu durdur */
.clients-slider-container:hover .clients-slider-track {
  animation-play-state: paused;
}

/* Kayma animasyonu */
@keyframes slideClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  background: #f5f5f5;
  border-radius: 0.5rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 130px;
  transition: all 0.3s ease;
  text-align: center;
  opacity: 0.7;
  flex-shrink: 0;
}

.client-logo:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  background: white;
  opacity: 1;
}

/* Logo resimleri için soluk filtre */
.client-logo img {
  max-height: 90px;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7);
  transition: all 0.3s ease;
}

/* Hover durumunda logo orijinal renklerine dönsün */
.client-logo:hover img {
  filter: grayscale(0%) brightness(1);
}

/* "Daha fazla" butonu için özel stil */
.client-more {
  background: #f5f5f5;
  border: 2px dashed #ccc;
  color: #999;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
  word-break: keep-all;
  opacity: 0.7;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 180px;
}

.client-more span {
  display: block;
  text-align: center;
}

.client-more:hover {
  background: white;
  border: 2px dashed var(--primary);
  color: var(--primary);
  opacity: 1;
  transform: scale(1.03);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .client-logo {
    padding: 1rem;
    min-width: 140px;
    min-height: 110px;
  }
  
  .client-logo img {
    max-height: 70px;
    max-width: 140px;
  }
  
  .client-more {
    min-width: 140px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .clients-slider-track {
    gap: 0.75rem;
  }
  
  .client-logo {
    min-width: 120px;
    min-height: 100px;
    padding: 0.75rem;
  }
  
  .client-logo img {
    max-height: 60px;
    max-width: 120px;
  }
  
  .client-more {
    min-width: 120px;
    font-size: 0.7rem;
  }
}