/* Ana Sayfa Özel Stilleri */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

/* Base Variables */
:root {
  --brand-blue: #1e40af;
  --brand-orange: #ff6347;
  --brand-gray-light: #f8fafc;
  --shadow-brand: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-brand-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Modern Hero Section - Ana Sayfa */
.hero-section {
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #ff6347 100%);
  color: white;
  min-height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  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.08);
  animation: heroFloat 8s ease-in-out infinite;
}

.circle-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 8%;
  animation-delay: 0s;
}

.circle-2 {
  width: 100px;
  height: 100px;
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.circle-3 {
  width: 120px;
  height: 120px;
  bottom: 30%;
  left: 15%;
  animation-delay: 4s;
}

.circle-4 {
  width: 80px;
  height: 80px;
  bottom: 10%;
  right: 10%;
  animation-delay: 6s;
}

.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  animation: heroFadeIn 1.2s ease-out;
}

.hero-text {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 32px rgba(255, 99, 71, 0.2);
  position: relative;
  overflow: hidden;
}

.hero-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 2s ease;
}

.hero-badge:hover::before {
  left: 100%;
}

.hero-title {
  font-family: "Inter", "Segoe UI", "Arial", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  letter-spacing: -0.01em;
  animation: titleSlideIn 1.2s ease-out 0.3s both;
}

.title-line {
  display: block;
  position: relative;
  margin-bottom: 0.3rem;
}

.title-line:first-child {
  color: white;
  font-weight: 600;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 0.2rem;
}

.hero-title-gradient {
  color: #ff6347;
  font-weight: 700;
  position: relative;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  margin-bottom: 2rem;
  animation: subtitleFadeIn 1.5s ease-out 0.8s both;
}

.hero-subtitle p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.01em;
}

.highlight-text {
  color: #ffa500;
  font-weight: 500;
  position: relative;
  display: inline-block;
}

@keyframes subtitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Enhanced Stats Section */
.hero-stats-inline {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: statsSlideUp 1.8s ease-out 1.2s both;
}

.hero-stats-inline .stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-width: 120px;
}

.hero-stats-inline .stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6347, #ffa500, #ff6347);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.hero-stats-inline .stat-item:hover::before {
  transform: scaleX(1);
}

.hero-stats-inline .stat-item:hover {
  transform: translateY(-8px) scale(1.05);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0.15) 100%
  );
  box-shadow: 0 15px 40px rgba(255, 99, 71, 0.3);
}

.hero-stats-inline .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffd700 0%, #ff6347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.3rem;
  text-shadow: none;
  letter-spacing: -0.02em;
}

.hero-stats-inline .stat-item .stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes statsSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced Buttons */
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: buttonsSlideIn 2s ease-out 1.5s both;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #ff6347 0%, #ff4757 50%, #ffa500 100%);
  background-size: 200% 200%;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(255, 99, 71, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.btn-hero-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 99, 71, 0.6);
  background-position: 100% 50%;
  text-decoration: none;
  color: white;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.btn-hero-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  transition: width 0.4s ease;
}

.btn-hero-secondary:hover::before {
  width: 100%;
}

.btn-hero-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  text-decoration: none;
  color: white;
}

.btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-icon {
  transform: translateX(5px);
}

@keyframes buttonsSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Hero Showcase (Right Column) */
.hero-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.showcase-container {
  position: relative;
  animation: showcaseFloat 4s ease-in-out infinite;
}

.hero-mockup {
  width: 350px;
  height: 450px;
  background: #ffffff;
  border-radius: 25px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.mockup-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #f8fafc, #e2e8f0);
  border-radius: 25px;
  position: relative;
  padding: 40px 30px;
}

.screen-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-logo {
  margin-bottom: 40px;
  animation: logoSpin 6s linear infinite;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.service-card {
  background: rgba(30, 64, 175, 0.1);
  border-radius: 12px;
  padding: 15px 10px;
  text-align: center;
  border-left: 3px solid;
  animation: cardSlideIn 3s ease-in-out infinite;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  background: rgba(30, 64, 175, 0.15);
}

.service-card.web {
  border-left-color: #1e40af;
  animation-delay: 0s;
}

.service-card.ecommerce {
  border-left-color: #fbbf24;
  animation-delay: -0.3s;
}

.service-card.mobile {
  border-left-color: #3b82f6;
  animation-delay: -0.6s;
}

.service-card.software {
  border-left-color: #10b981;
  animation-delay: -0.9s;
}

.service-card.seo {
  border-left-color: #3b82f6;
  animation-delay: -1.2s;
}

.service-card.ads {
  border-left-color: #ef4444;
  animation-delay: -1.5s;
}

.service-card.social {
  border-left-color: #ff6347;
  animation-delay: -1.8s;
}

.service-card.content {
  border-left-color: #8b5cf6;
  animation-delay: -2.1s;
}

.service-card.nfc {
  border-left-color: #06b6d4;
  animation-delay: -2.4s;
}

.service-card.branding {
  border-left-color: #f59e0b;
  animation-delay: -2.7s;
}

.service-card.drone {
  border-left-color: #84cc16;
  animation-delay: -3s;
}

.service-card.consulting {
  border-left-color: #6366f1;
  animation-delay: -3.3s;
}

.service-card i {
  font-size: 20px;
  margin-bottom: 6px;
  color: #1e40af;
  transition: all 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.1);
}

.service-name {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: #1a202c;
  line-height: 1.2;
}

.floating-hero-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-hero-icons i {
  position: absolute;
  color: rgba(255, 255, 255, 0.3);
  font-size: 20px;
  animation: iconFloat 8s ease-in-out infinite;
}

.floating-hero-icons i:nth-child(1) {
  top: 10%;
  left: -20%;
  animation-delay: 0s;
}

.floating-hero-icons i:nth-child(2) {
  top: 30%;
  right: -30%;
  animation-delay: -1s;
}

.floating-hero-icons i:nth-child(3) {
  bottom: 40%;
  left: -25%;
  animation-delay: -2s;
}

.floating-hero-icons i:nth-child(4) {
  bottom: 20%;
  right: -20%;
  animation-delay: -3s;
}

.floating-hero-icons i:nth-child(5) {
  top: 50%;
  left: -30%;
  animation-delay: -4s;
}

.floating-hero-icons i:nth-child(6) {
  top: 70%;
  right: -25%;
  animation-delay: -5s;
}

/* Hero Animasyonları */
@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-30px) rotate(120deg) scale(1.1);
  }
  66% {
    transform: translateY(15px) rotate(240deg) scale(0.9);
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes descriptionFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes statsSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonsSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes showcaseFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes logoSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes cardSlideIn {
  0%,
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
  50% {
    transform: translateX(5px);
    opacity: 0.8;
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Responsive Design - Hero */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-showcase {
    order: -1;
  }

  .hero-mockup {
    width: 300px;
    height: 400px;
  }

  .hero-title {
    font-size: 4rem;
  }
}

/* Services Section */
.services-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.services-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23cbd5e0' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  opacity: 0.5;
}

.services-title {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1a202c;
  position: relative;
  z-index: 2;
}

.services-title-accent {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-subtitle {
  font-size: 1.25rem;
  color: #4a5568;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-card-modern {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #ff6347);
  transition: left 0.6s ease;
}

.service-card-modern:hover::before {
  left: 0;
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.service-card-modern:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #ff6347 0%, #ff4757 100%);
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.service-description {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: #2d3748;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.service-features li i {
  color: #48bb78;
  margin-right: 0.75rem;
  font-size: 0.875rem;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.service-btn:hover {
  transform: translateX(5px);
  background: linear-gradient(135deg, #ff6347 0%, #ff4757 100%);
  box-shadow: 0 5px 15px rgba(255, 99, 71, 0.3);
}

.service-btn i {
  transition: transform 0.3s ease;
}

.service-btn:hover i {
  transform: translateX(3px);
}

/* Responsive Design for Services */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-modern {
    padding: 60px 0;
  }

  .services-title {
    font-size: 2.5rem;
  }

  .services-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card-modern {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-title {
    font-size: 2rem;
  }

  .service-card-modern {
    padding: 1.25rem;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-icon i {
    font-size: 1.75rem;
  }

  .service-title {
    font-size: 1.25rem;
  }
}

/* Why Choose Us Section */
.why-choose-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: relative;
  overflow: hidden;
}

.why-choose-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20c0 2.21-1.79 4-4 4s-4-1.79-4-4 1.79-4 4-4 4 1.79 4 4zm10-10c0 2.21-1.79 4-4 4s-4-1.79-4-4 1.79-4 4-4 4 1.79 4 4z'/%3E%3C/g%3E%3C/svg%3E")
    repeat;
  opacity: 0.3;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.why-choose-content {
  color: white;
}

.why-choose-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.why-choose-accent {
  background: linear-gradient(135deg, #ff6347 0%, #ff4757 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(255, 99, 71, 0.3);
}

.why-choose-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.advantage-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.advantage-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.advantage-icon.success {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
}

.advantage-icon.speed {
  background: linear-gradient(135deg, #ff6347 0%, #ff4757 100%);
}

.advantage-icon.support {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.advantage-icon i {
  font-size: 1.5rem;
  color: white;
  transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
  transform: scale(1.1) rotate(5deg);
}

.advantage-content {
  flex: 1;
}

.advantage-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.advantage-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  color: white;
}

.why-choose-showcase {
  position: relative;
}

.quality-card {
  background: white;
  border-radius: 25px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.quality-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff6347, #ffd700, #4facfe);
}

.quality-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.quality-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quality-icon i {
  font-size: 1.5rem;
  color: white;
}

.quality-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.quality-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 2rem;
}

.quality-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.quality-stat {
  text-align: center;
  padding: 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 15px;
  border: 1px solid rgba(102, 126, 234, 0.1);
  transition: all 0.3s ease;
}

.quality-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.quality-stat-number {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.quality-stat-label {
  font-size: 0.9rem;
  color: #4a5568;
  font-weight: 600;
}

.floating-badges {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-badge {
  position: absolute;
  background: white;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1a202c;
  animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge i {
  color: #667eea;
}

.badge-1 {
  top: -10px;
  left: -20px;
  animation-delay: 0s;
}

.badge-2 {
  top: 50%;
  right: -30px;
  animation-delay: 1.5s;
}

.badge-3 {
  bottom: -10px;
  left: 50%;
  animation-delay: 3s;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(2deg);
  }
  50% {
    transform: translateY(-5px) rotate(-1deg);
  }
  75% {
    transform: translateY(-15px) rotate(1deg);
  }
}

/* Responsive Design for Why Choose Us */
@media (max-width: 1024px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .floating-badges {
    display: none;
  }
}

@media (max-width: 768px) {
  .why-choose-modern {
    padding: 60px 0;
  }

  .why-choose-title {
    font-size: 2.5rem;
  }

  .why-choose-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .advantages-list {
    gap: 1.5rem;
  }

  .advantage-item {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .quality-card {
    padding: 2rem;
  }

  .quality-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .why-choose-title {
    font-size: 2rem;
  }

  .advantage-icon {
    width: 50px;
    height: 50px;
  }

  .advantage-icon i {
    font-size: 1.25rem;
  }

  .advantage-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0 20px;
    gap: 40px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-stats-inline {
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats-inline .stat-item .stat-number {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero-showcase {
    display: none; /* Mobilde mockup gizle */
  }

  .floating-circles {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-stats-inline .stat-item .stat-number {
    font-size: 1.5rem;
  }
}
