@import url("https://fonts.googleapis.com/css2?family=Bungee+Tint&family=Lilita+One&family=Oswald:wght@200..700&family=Playwrite+CU:wght@100..400&family=Sevillana&family=Teko:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Protest+Guerrilla&family=Teko:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Agdasima:wght@400;700&display=swap");
/* Modern Referanslar Sayfası CSS */

:root {
  --primary: #ff8c00;
  --primary-light: rgba(255, 140, 0, 0.1);
  --primary-dark: #e67a00;
  --secondary: #304878;
  --gray-dark: #333;
  --gray: #777;
  --gray-light: #eee;
  --white: #fff;
  --gradient-primary: linear-gradient(135deg, #ff8c00, #ffa726);
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --border-radius: 16px;
  --border-radius-sm: 8px;
}

/* Genel Stiller */
body {
  background-color: #f9f9f9;
  color: var(--gray-dark);
  font-family: "Lato", sans-serif;
  line-height: 1.6;
}
.scrolling-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000; /* Header'dan daha yüksek z-index */
  background: var(--gradient-primary);
  color: white;
  padding: 10px 0;
  overflow: hidden;
}
.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Referanslar Bölümü */
.referances-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* Animasyonlu Arka Plan */
.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 140, 0, 0.3) 1px, transparent 1px),
    radial-gradient(rgba(255, 140, 0, 0.2) 1px, transparent 1px);
  background-size: 30px 30px, 80px 80px;
  background-position: 0 0, 15px 15px;
  animation: particleFloat 60s linear infinite;
  opacity: 0.4;
}

@keyframes particleFloat {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(255, 140, 0, 0.1) 0%,
    transparent 70%
  );
  opacity: 0.7;
  z-index: 1;
  animation: glow 10s ease-in-out infinite alternate;
}

@keyframes glow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Bölüm Başlığı */
.section-intro {
  text-align: center;
  margin-bottom: 70px;
}

.section-badge {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 10px rgba(255, 140, 0, 0.15);
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--gray-dark);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.section-title span {
  color: var(--primary);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
}

/* Referans Logolar Grid */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

/* Partner Kart Tasarımı */
.partner-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  transform: translateY(0);
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--box-shadow-hover);
}

.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.partner-logo {
  height: 180px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.partner-logo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 140, 0, 0.05),
    transparent,
    rgba(255, 140, 0, 0.05)
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.partner-card:hover .partner-logo::after {
  transform: translateX(100%);
}

.partner-logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.05));
  transition: transform 0.3s ease;
}

.partner-card:hover .partner-logo img {
  transform: scale(1.05);
}

.partner-info {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.partner-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.partner-card:hover .partner-name {
  color: var(--primary);
}

.partner-desc {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

.partner-facts {
  display: flex;
  margin-bottom: 25px;
  gap: 20px;
}

.fact {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--primary-light);
  padding: 10px 15px;
  border-radius: var(--border-radius-sm);
  flex: 1;
}

.fact-number {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.fact-label {
  font-size: 12px;
  color: var(--gray);
  margin-top: 5px;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  padding: 10px 0;
  border-top: 1px solid var(--gray-light);
  align-self: stretch;
}

.partner-link i {
  transition: transform 0.3s ease;
}

.partner-link:hover {
  color: var(--primary-dark);
}

.partner-link:hover i {
  transform: translateX(5px);
}

/* CTA Bölümü */
.cta-section {
  background: linear-gradient(
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0.9)
    ),
    url("../images/cta-bg.jpg");
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius);
  padding: 70px 40px;
  text-align: center;
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.1), transparent 70%);
  animation: rotate 20s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 30px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: white;
  font-weight: 600;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 140, 0, 0.2);
  transition: var(--transition);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255, 140, 0, 0.3);
}

.cta-button i {
  transition: transform 0.3s ease;
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* QR Konteyner Güncellemesi */
.qr-container {
  position: fixed;
  z-index: 1000;
  top: 30vh;
  left: -13%;
  width: 15vw;
  height: 25vh;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: grid;
  grid-template-columns: 85% 15%;
  border-bottom-right-radius: 15px;
  border-top-right-radius: 15px;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.qr-container:hover {
  left: 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.qr-photo-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.qr-photo {
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.qr-container:hover .qr-photo {
  transform: scale(1.05);
}

.qr-text {
  writing-mode: vertical-lr;
  transform: rotate(-180deg);
  font-size: 1.5vw;
  color: white;
  text-align: center;
  justify-self: center;
  font-family: "Agdasima", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Responsive Stiller */
@media (max-width: 1100px) {
  .logos-grid {
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  }

  .section-title {
    font-size: 36px;
  }

  .cta-section {
    padding: 60px 30px;
  }

  .cta-section h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .referances-section {
    padding: 80px 0;
  }

  .logos-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  .section-title {
    font-size: 32px;
  }

  .section-description {
    font-size: 16px;
  }

  .partner-logo {
    height: 160px;
    padding: 20px;
  }

  .partner-info {
    padding: 20px;
  }

  .partner-name {
    font-size: 22px;
  }

  .cta-section h3 {
    font-size: 24px;
  }

  .cta-section p {
    font-size: 16px;
  }

  .qr-container {
    width: 25vw;
  }
}

@media (max-width: 576px) {
  .referances-section {
    padding: 60px 0;
  }

  .section-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

  .section-title {
    font-size: 28px;
  }

  .logos-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-section {
    padding: 40px 20px;
  }

  .cta-button {
    padding: 12px 25px;
    font-size: 15px;
  }

  .qr-container {
    width: 40vw;
  }

  .qr-text {
    font-size: 4vw;
  }
}
