/* Dijital Kartvizit Sayfası Özel Stilleri */

/* Hero Section - Modern ve Stabil Tasarım */
.ads-hero {
  background: linear-gradient(
    135deg,
    #0f172a 0%,
    #1e293b 25%,
    #334155 50%,
    #475569 75%,
    #64748b 100%
  );
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.ads-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(59, 130, 246, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(168, 85, 247, 0.15) 0%,
      transparent 50%
    );
  z-index: 1;
}

.floating-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: subtleFloat 8s ease-in-out infinite;
  backdrop-filter: blur(1px);
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

.circle-2 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 10%;
  animation-delay: 3s;
}

.circle-3 {
  width: 180px;
  height: 180px;
  bottom: 15%;
  left: 15%;
  animation-delay: 6s;
}

@keyframes subtleFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-15px) scale(1.05);
    opacity: 0.5;
  }
}

.ads-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text {
  text-align: left;
  padding-right: 20px;
}

.ads-badge {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.ads-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

.ads-title-gradient {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.ads-description {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  font-weight: 400;
}

.ads-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.btn-ads-primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 20px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  border: none;
}

.btn-ads-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.btn-ads-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-ads-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
  text-decoration: none;
  color: white;
  transform: translateY(-2px);
}

/* Dijital Kartvizit Kartları - Stabil ve Modern */
.digital-cards-container {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.digital-card-stack {
  position: relative;
  width: 380px;
  height: 240px;
  transform-style: preserve-3d;
}

.digital-card {
  position: absolute;
  width: 380px;
  height: 240px;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  overflow: hidden;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.digital-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Kart Renkleri - Modern Gradients */
.black-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: white;
  z-index: 3;
  transform: translateZ(60px) rotateY(-3deg) translateX(-10px);
}

.orange-card {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
  color: white;
  z-index: 2;
  transform: translateZ(30px) translateX(25px) rotateY(2deg);
}

.white-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
  color: #334155;
  z-index: 1;
  transform: translateZ(0px) translateX(50px) rotateY(1deg);
}

/* Hover Efektleri - Daha Stabil */
.digital-card:hover {
  transform: translateZ(80px) rotateY(0deg) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25), 0 4px 16px rgba(0, 0, 0, 0.1);
}

.black-card:hover {
  transform: translateZ(90px) rotateY(0deg) scale(1.02) translateX(-5px);
}

.orange-card:hover {
  transform: translateZ(80px) translateX(20px) rotateY(0deg) scale(1.02);
}

.white-card:hover {
  transform: translateZ(70px) translateX(45px) rotateY(0deg) scale(1.02);
}

/* Kart İçeriği */
.card-content {
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card-brand {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  color: white;
}

.card-brand-dark {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #2c3e50;
}

.nfc-icon,
.nfc-icon-dark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  animation: nfcPulse 2s ease-in-out infinite;
}

.nfc-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.nfc-icon-dark {
  background: rgba(44, 62, 80, 0.2);
  color: #2c3e50;
}

/* Kişi Bilgileri */
.card-person {
  display: flex;
  align-items: center;
  gap: 15px;
}

.person-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.orange-avatar {
  background: rgba(0, 0, 0, 0.2);
}

.person-info {
  flex: 1;
}

.person-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.person-title {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 2px;
}

.person-company {
  font-size: 11px;
  opacity: 0.7;
}

/* Kart Alt Bilgiler */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  opacity: 0.9;
}

.contact-item i {
  width: 12px;
  font-size: 10px;
}

/* QR Kod */
.qr-code {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 8px;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-pattern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: 100%;
  height: 100%;
}

.qr-square {
  background: #2c3e50;
  border-radius: 1px;
}

.qr-square:nth-child(2n) {
  background: transparent;
}

/* Sosyal Linkler */
.social-links {
  display: flex;
  gap: 8px;
}

.social-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: white;
}

/* Beyaz Kart Özellikleri */
.card-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #2c3e50;
}

.feature-item i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* Yüzen Teknoloji İkonları */
.floating-tech-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.tech-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  animation: techFloat 6s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.tech-2 {
  top: 20%;
  right: 10%;
  animation-delay: 1s;
}

.tech-3 {
  top: 45%;
  left: 2%;
  animation-delay: 2s;
}

.tech-4 {
  top: 70%;
  right: 5%;
  animation-delay: 3s;
}

.tech-5 {
  bottom: 15%;
  left: 8%;
  animation-delay: 4s;
}

.tech-6 {
  bottom: 10%;
  right: 15%;
  animation-delay: 5s;
}

@keyframes techFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.9;
  }
}

@keyframes nfcPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* Kart Animasyon Gelişmiş Efektler */
.digital-card-stack:hover .digital-card:not(:hover) {
  transform: translateZ(0px) scale(0.95);
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .digital-cards-container {
    height: 400px;
  }

  .digital-card-stack {
    width: 280px;
    height: 180px;
  }

  .digital-card {
    width: 280px;
    height: 180px;
  }

  .card-content {
    padding: 20px;
  }

  .person-name {
    font-size: 16px;
  }

  .person-title {
    font-size: 11px;
  }

  .person-company {
    font-size: 10px;
  }

  .contact-item {
    font-size: 9px;
  }

  .tech-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .floating-tech-icons {
    display: none;
  }
}

@media (max-width: 480px) {
  .digital-card-stack {
    width: 250px;
    height: 160px;
  }

  .digital-card {
    width: 250px;
    height: 160px;
  }

  .card-content {
    padding: 15px;
  }

  .person-avatar {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .qr-code {
    width: 30px;
    height: 30px;
  }

  .digital-card:hover {
    transform: translateZ(20px) rotateY(0deg) scale(1.02);
  }
}

.ads-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@keyframes dashboard-float {
  0%,
  100% {
    transform: translateY(0px) rotate(1deg);
  }
  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

/* Dijital Kartvizit Kartları */

/* Responsive Design */
@media (max-width: 768px) {
  .ads-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .ads-title {
    font-size: 2.5rem;
  }

  .ads-description {
    font-size: 1.1rem;
  }

  .ads-dashboard {
    width: 250px;
    height: 350px;
  }

  .ads-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ads-title {
    font-size: 2rem;
  }

  .ads-description {
    font-size: 1rem;
  }

  .ads-dashboard {
    width: 200px;
    height: 300px;
  }

  .performance-card {
    padding: 15px;
  }

  .performance-value {
    font-size: 20px;
  }

  .btn-ads-primary,
  .btn-ads-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* Hero Content */
.ads-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Badge */
.ads-badge {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Title */
.ads-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ads-title-gradient {
  background: linear-gradient(45deg, #f093fb, #f5576c, #4facfe, #00f2fe);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
  font-weight: 900;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Description */
.ads-description {
  font-size: 1.3rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.ads-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.btn-ads-primary {
  background: linear-gradient(135deg, #f093fb, #f5576c);
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(240, 147, 251, 0.4);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-ads-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(240, 147, 251, 0.6);
  background: linear-gradient(135deg, #f5576c, #f093fb);
  color: white;
  text-decoration: none;
}

.btn-ads-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ads-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  color: white;
  text-decoration: none;
}

/* Performance Cards */
.performance-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.performance-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.performance-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.performance-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: #f093fb;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.performance-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Dijital Kartvizit Specific Icons */
.digital-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Feature Type Cards */
.feature-type-card {
  background: white;
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-type-card:hover::before {
  transform: scaleX(1);
}

.feature-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* Statistics Section */
.stats-showcase {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 0;
}

.stats-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stats-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stats-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: #f093fb;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.stats-label {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ads-title {
    font-size: 2.5rem;
  }

  .ads-description {
    font-size: 1.1rem;
  }

  .ads-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-ads-primary,
  .btn-ads-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .performance-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .floating-ads-icon {
    width: 40px;
    height: 40px;
  }

  .floating-ads-icon i {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .ads-hero {
    min-height: 90vh;
  }

  .ads-title {
    font-size: 2rem;
  }

  .ads-content {
    padding: 0 15px;
  }
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ads-content > * {
  animation: fadeInUp 0.8s ease-out forwards;
}

.ads-content > *:nth-child(1) {
  animation-delay: 0.1s;
}
.ads-content > *:nth-child(2) {
  animation-delay: 0.2s;
}
.ads-content > *:nth-child(3) {
  animation-delay: 0.3s;
}
.ads-content > *:nth-child(4) {
  animation-delay: 0.4s;
}
.ads-content > *:nth-child(5) {
  animation-delay: 0.5s;
}

.ads-title-gradient {
  background: linear-gradient(135deg, #f093fb, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ads-description {
  font-size: 1.3rem;
  color: #f3f4f6;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ads-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-ads-primary {
  background: linear-gradient(135deg, #667eea, #f093fb);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  font-size: 16px;
}

.btn-ads-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  text-decoration: none;
  color: white;
}

.btn-ads-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-ads-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  text-decoration: none;
  color: white;
}

/* Performans Kartları - Kompakt */
.performance-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.performance-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

.performance-value {
  font-size: 2rem;
  font-weight: bold;
  color: #f093fb;
  display: block;
  margin-bottom: 5px;
}

.performance-label {
  color: #f3f4f6;
  font-size: 0.9rem;
}

/* Yüzen Animasyonlar */
.floating-ads-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-icon {
  position: absolute;
  font-size: 2rem;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-icon:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-icon:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Hizmet Kartları */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 60px 0;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 15px;
}

.service-description {
  color: #6b7280;
  line-height: 1.6;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #1f2937;
}

.section-title-gradient {
  background: linear-gradient(135deg, #667eea, #764ba2);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .ads-title {
    font-size: 2.5rem;
  }

  .ads-description {
    font-size: 1.1rem;
  }

  .ads-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn-ads-primary,
  .btn-ads-secondary {
    width: 250px;
    justify-content: center;
  }

  .floating-icon {
    display: none;
  }

  .performance-card {
    padding: 15px 10px;
  }

  .performance-value {
    font-size: 1.8rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ads-title {
    font-size: 2rem;
  }

  .performance-value {
    font-size: 1.5rem;
  }

  .btn-ads-primary,
  .btn-ads-secondary {
    width: 100%;
    max-width: 280px;
  }
}

/* Filter Section Styles */
.filter-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.filter-title-accent {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.filter-subtitle {
  font-size: 1.3rem;
  color: #64748b;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Dijital Kartvizit Theme Button */
.btn-google-primary {
  background: linear-gradient(135deg, #667eea, #764ba2) !important;
  color: white !important;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-right: 20px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-google-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
  background: linear-gradient(135deg, #5a67d8, #553c9a) !important;
  color: white !important;
  text-decoration: none;
}

/* Stats Section Styling */
.stats-section {
  padding: 80px 0;
  background: #f8fafc;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.stat-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
}

.stat-icon svg {
  width: 40px;
  height: 40px;
}

.stat-label {
  font-size: 1.3rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 15px;
}

/* Story Section */
.story-section {
  padding: 100px 0;
  background: white;
}

/* QR & NFC Card hover effects */
.qr-nfc-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.qr-nfc-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s;
  opacity: 0;
}

.qr-nfc-card:hover::before {
  animation: shine 1.5s ease-in-out;
  opacity: 1;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(50%) translateY(50%) rotate(45deg);
  }
  100% {
    transform: translateX(200%) translateY(200%) rotate(45deg);
  }
}

.qr-nfc-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
  .floating-ads-icons {
    display: none;
  }

  .ads-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-text {
    text-align: center;
  }
}

/* Performance enhancements */
.ads-dashboard {
  will-change: transform;
}

.floating-circle {
  will-change: transform;
}

.floating-ads-icons i {
  will-change: transform, opacity;
}

/* Additional QR code and NFC specific styling */
.qr-code-display {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 200px;
  margin: 0 auto;
}

.nfc-pulse {
  animation: nfcPulse 2s ease-in-out infinite;
}

@keyframes nfcPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Digital card preview animation */
.digital-card-preview {
  background: linear-gradient(135deg, #fff, #f8fafc);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.digital-card-preview::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.digital-card-preview:hover {
  transform: translateY(-5px) rotateX(5deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Responsive Design - Modern ve Stabil */
@media (max-width: 1200px) {
  .ads-content {
    max-width: 1100px;
    gap: 60px;
    padding: 0 30px;
  }

  .digital-card-stack {
    width: 340px;
    height: 220px;
  }

  .digital-card {
    width: 340px;
    height: 220px;
  }
}

@media (max-width: 768px) {
  .ads-hero {
    padding: 80px 0;
    min-height: auto;
  }

  .ads-content {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 20px;
    text-align: center;
  }

  .hero-text {
    text-align: center;
    padding-right: 0;
    order: 2;
  }

  .ads-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .ads-description {
    font-size: 1.1rem;
  }

  .ads-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-ads-primary,
  .btn-ads-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Digital Cards Mobile */
  .ads-animation {
    order: 1;
  }

  .digital-cards-container {
    height: 400px;
    perspective: 800px;
  }

  .digital-card-stack {
    width: 280px;
    height: 180px;
  }

  .digital-card {
    width: 280px;
    height: 180px;
    border-radius: 12px;
  }

  .black-card {
    transform: translateZ(40px) rotateY(-2deg) translateX(-5px);
  }

  .orange-card {
    transform: translateZ(20px) translateX(15px) rotateY(1deg);
  }

  .white-card {
    transform: translateZ(0px) translateX(30px) rotateY(0.5deg);
  }

  .card-content {
    padding: 18px;
    font-size: 0.85rem;
  }

  .card-brand {
    font-size: 12px;
  }

  .person-name {
    font-size: 14px;
  }

  .person-title {
    font-size: 11px;
  }

  .contact-info {
    font-size: 10px;
  }

  /* Floating Tech Icons Mobile */
  .floating-tech-icons .tech-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  /* Grid Adjustments */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .ads-hero {
    padding: 60px 0;
  }

  .ads-title {
    font-size: 2rem;
  }

  .ads-description {
    font-size: 1rem;
  }

  .ads-badge {
    font-size: 14px;
    padding: 12px 20px;
  }

  .digital-card-stack {
    width: 240px;
    height: 150px;
  }

  .digital-card {
    width: 240px;
    height: 150px;
  }

  .card-content {
    padding: 15px;
    font-size: 0.75rem;
  }

  .floating-tech-icons .tech-icon {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .container {
    padding: 0 15px;
  }
}

/* Hover States for Mobile */
@media (max-width: 768px) {
  .digital-card:hover {
    transform: translateZ(50px) scale(1.01);
  }

  .black-card:hover {
    transform: translateZ(60px) scale(1.01) translateX(-3px);
  }

  .orange-card:hover {
    transform: translateZ(50px) translateX(12px) scale(1.01);
  }

  .white-card:hover {
    transform: translateZ(40px) translateX(25px) scale(1.01);
  }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  .floating-circle,
  .tech-icon,
  .digital-card,
  .nfc-icon {
    animation: none;
    transition: none;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .digital-card::before {
    background-size: 100% 100%;
  }
}
