/**
 * Devora Yazılım - Developer Theme CSS
 * Modern yazılımcı teması - Kod editörü tarzı tasarım
 * PERFORMANCE OPTIMIZED - Animations disabled for faster loading
 */

/* Genel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: #f7fafc;
  overflow-x: hidden;
}

/* Kod editörü tarzı scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #e2e8f0;
}

::-webkit-scrollbar-thumb {
  background: #a0aec0;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #718096;
}

/* Header ve Navigation - Light Theme */
.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  z-index: 1050;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar-brand {
  order: 1;
}

.navbar-toggler {
  order: 2;
}

.navbar-collapse {
  order: 3;
}

/* Hamburger Menu - Enhanced Visibility */
.navbar-toggler {
  border: 2px solid #3182ce;
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(49, 130, 206, 0.1);
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(49, 130, 206, 0.2);
  order: 2;
}

.navbar-toggler:hover {
  background: rgba(49, 130, 206, 0.2);
  border-color: #2c5aa0;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(49, 130, 206, 0.25);
  border-color: #2c5aa0;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%233182ce' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232c5aa0' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  transform: scale(1.1);
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.4rem;
  color: #3182ce !important;
  text-shadow: 0 0 10px rgba(49, 130, 206, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0.25rem 0;
  order: 1;
}

.navbar-logo {
  height: 40px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(49, 130, 206, 0.3));
}

.navbar-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(49, 130, 206, 0.5));
}

.brand-text {
  font-weight: 700;
  color: #3182ce;
  margin-left: 8px;
}

.navbar-nav .nav-link {
  color: #2d3748 !important;
  font-weight: 500;
  margin: 0 10px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 16px;
  border-radius: 6px;
}

.navbar-nav .nav-link:hover {
  color: #3182ce !important;
  background: rgba(49, 130, 206, 0.1);
  transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
  color: #3182ce !important;
  background: rgba(49, 130, 206, 0.15);
}

/* Hero Section - Modern Organic Background */
.hero {
  background: #ffffff;
  color: #2d3748;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: 80px;
}

/* Hero Logo Animation */
.hero-logo-container {
  text-align: right;
  margin: 30px 0;
  display: flex;
  justify-content: flex-end;
}

.hero-logo {
  height: 120px;
  width: auto;
  animation: logoBounce 2s ease-in-out infinite;
  transition: all 0.3s ease;
  filter: drop-shadow(0 10px 20px rgba(49, 130, 206, 0.3));
}

.hero-logo:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}

@keyframes logoBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Left side organic shape */ radial-gradient(
      ellipse 800px 600px at 20% 80%,
      rgba(255, 165, 0, 0.15) 0%,
      rgba(255, 140, 0, 0.1) 30%,
      rgba(255, 99, 71, 0.05) 60%,
      transparent 80%
    ),
    /* Right side organic shape */
      radial-gradient(
        ellipse 1000px 700px at 80% 70%,
        rgba(255, 69, 0, 0.2) 0%,
        rgba(255, 140, 0, 0.15) 40%,
        rgba(255, 165, 0, 0.08) 70%,
        transparent 90%
      ),
    /* Subtle texture overlay */
      url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23f0f0f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  background-size: 100% 100%, 100% 100%, 200px 200px;
  animation: backgroundFloat 20s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Additional flowing shapes */ radial-gradient(
      ellipse 600px 400px at 10% 20%,
      rgba(255, 165, 0, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 500px 300px at 90% 30%,
      rgba(255, 69, 0, 0.1) 0%,
      transparent 70%
    ),
    /* Subtle curved lines */
      linear-gradient(
        45deg,
        transparent 48%,
        rgba(255, 165, 0, 0.03) 49%,
        rgba(255, 165, 0, 0.03) 51%,
        transparent 52%
      ),
    linear-gradient(
      -45deg,
      transparent 48%,
      rgba(255, 69, 0, 0.03) 49%,
      rgba(255, 69, 0, 0.03) 51%,
      transparent 52%
    );
  background-size: 100% 100%, 100% 100%, 50px 50px, 50px 50px;
  animation: backgroundFloat 25s ease-in-out infinite reverse;
  z-index: 1;
  pointer-events: none;
}

@keyframes backgroundFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(0.5deg);
  }
  50% {
    transform: translateY(-5px) rotate(-0.3deg);
  }
  75% {
    transform: translateY(-15px) rotate(0.2deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2d3748;
  text-shadow: 0 0 30px rgba(49, 130, 206, 0.3);
  /* animation: gradient-shift 3s ease-in-out infinite alternate; */
}

@keyframes gradient-shift {
  0% {
    background: linear-gradient(45deg, #3182ce, #e53e3e, #2d3748, #38a169);
    -webkit-background-clip: text;
  }
  100% {
    background: linear-gradient(45deg, #2d3748, #38a169, #3182ce, #e53e3e);
    -webkit-background-clip: text;
  }
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #4a5568;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.btn-hero {
  background: #3182ce;
  border: 1px solid #e2e8f0;
  padding: 15px 25px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(49, 130, 206, 0.2);
  color: white;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
  margin: 5px;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-hero:hover::before {
  left: 100%;
}

.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(49, 130, 206, 0.4);
  background: #2c5aa0;
}

/* Yeni Buton Stili - Temiz ve Modern */
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid #2d3748;
  border-radius: 6px;
  background-color: transparent;
  color: #2d3748;
  transition: all 0.15s ease-in-out;
  min-width: 200px;
  max-width: 100%;
  box-sizing: border-box;
}

.btn-outline-light:hover {
  background-color: #2d3748;
  color: #ffffff;
  text-decoration: none;
}

.btn-outline-light:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(45, 55, 72, 0.25);
}

.btn-outline-light:active {
  background-color: #2d3748;
  color: #ffffff;
}

/* Responsive Button Styles */
@media (max-width: 768px) {
  .btn-outline-light {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .navbar {
    padding: 0.25rem 0;
  }

  .navbar-logo {
    height: 28px;
  }

  .navbar-brand {
    font-size: 1rem;
    gap: 8px;
    display: flex;
    align-items: center;
    order: 1;
  }

  .brand-text {
    font-size: 0.9rem;
    display: inline;
    margin-left: 8px;
  }

  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .navbar-toggler {
    padding: 6px 10px;
    border-width: 1px;
    order: 2;
  }

  .navbar-toggler-icon {
    width: 20px;
    height: 20px;
  }

  .btn-outline-light {
    padding: 10px 20px;
    font-size: 0.9rem;
    max-width: 250px;
  }
}

/* Section Stilleri - Modern Organic Background */
.section {
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    /* Organic shapes with different colors */ radial-gradient(
      ellipse 600px 500px at 15% 85%,
      rgba(49, 130, 206, 0.08) 0%,
      rgba(56, 178, 172, 0.05) 40%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 800px 600px at 85% 15%,
      rgba(229, 62, 62, 0.1) 0%,
      rgba(255, 140, 0, 0.06) 50%,
      transparent 80%
    );
  background-size: 100% 100%;
  animation: sectionBackgroundFloat 30s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.section:nth-child(even) {
  background: #f8fafc;
}

.section:nth-child(even)::before {
  background: radial-gradient(
      ellipse 700px 550px at 25% 75%,
      rgba(56, 178, 172, 0.1) 0%,
      rgba(49, 130, 206, 0.06) 50%,
      transparent 75%
    ),
    radial-gradient(
      ellipse 900px 650px at 75% 25%,
      rgba(255, 165, 0, 0.08) 0%,
      rgba(229, 62, 62, 0.05) 60%,
      transparent 85%
    );
  animation: sectionBackgroundFloat 35s ease-in-out infinite reverse;
}

@keyframes sectionBackgroundFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-8px) rotate(0.3deg) scale(1.02);
  }
  66% {
    transform: translateY(-12px) rotate(-0.2deg) scale(0.98);
  }
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 20px;
  position: relative;
}

.section-title h2::before {
  content: "";
  color: #3182ce;
  font-weight: normal;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: #3182ce;
  border-radius: 2px;
}

.section-title p {
  font-size: 1.2rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
}

/* Card Stilleri - Light Theme */
.card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #3182ce, #38a169, #e53e3e);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(49, 130, 206, 0.2);
  border-color: #3182ce;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
  filter: grayscale(0.3);
  width: 100%;
  max-width: 100%;
}

.card:hover .card-img-top {
  transform: scale(1.05);
  filter: grayscale(0);
}

.card-body {
  background: #ffffff;
  color: #2d3748;
}

.card-title {
  color: #2d3748;
  font-weight: 600;
}

.card-text {
  color: #4a5568;
}

/* Hakkımızda Bölümü - Enhanced Light Theme */
.about {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 50%, #e2e8f0 100%);
  border-top: 2px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(49, 130, 206, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(128, 90, 213, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(229, 62, 62, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.about-text {
  flex: 1;
  color: #2d3748;
  padding: 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.about-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3182ce, #38a169, #e53e3e, #2d3748);
  border-radius: 15px 15px 0 0;
}

.about-text h3 {
  color: #3182ce;
  margin-bottom: 20px;
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(49, 130, 206, 0.3);
  /* animation: glow 2s ease-in-out infinite alternate; */
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px rgba(49, 130, 206, 0.3);
  }
  to {
    text-shadow: 0 0 20px rgba(49, 130, 206, 0.6),
      0 0 30px rgba(49, 130, 206, 0.4);
  }
}

.about-text h3::before {
  content: "/* ";
  color: #38a169;
  font-weight: normal;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(128, 90, 213, 0.5);
}

.about-text h3::after {
  content: " */";
  color: #38a169;
  font-weight: normal;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(128, 90, 213, 0.5);
}

.about-text p {
  color: #4a5568;
  margin-bottom: 25px;
  line-height: 1.9;
  font-size: 1.1rem;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid transparent;
  border-image: linear-gradient(45deg, #3182ce, #38a169) 1;
  transition: all 0.3s ease;
}

.about-text p:hover {
  color: #2d3748;
  transform: translateX(5px);
  border-left-color: #3182ce;
}

.about-text ul {
  color: #4a5568;
  padding-left: 0;
  list-style: none;
  margin-top: 30px;
}

.about-text ul li {
  margin-bottom: 15px;
  position: relative;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  font-size: 1.05rem;
  line-height: 1.6;
}

.about-text ul li:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: #3182ce;
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(49, 130, 206, 0.2);
}

.about-text ul li::before {
  content: "→";
  color: #3182ce;
  font-weight: bold;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(49, 130, 206, 0.5);
  /* animation: pulse 2s ease-in-out infinite; */
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.2);
  }
}

.about-image {
  flex: 1;
  text-align: center;
  position: relative;
}

.about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: #3182ce;
  border-radius: 20px;
  opacity: 0.1;
  z-index: -1;
  /* animation: rotate 10s linear infinite; */
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.about-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px #30363d,
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  filter: grayscale(0.1) contrast(1.1);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  object-fit: cover;
}

.about-image img:hover {
  filter: grayscale(0) contrast(1.2) brightness(1.1);
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 30px 80px rgba(88, 166, 255, 0.3), 0 0 0 2px #58a6ff,
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Devora Yazılım Ekibi - Enhanced Görsel Alanı */
.team-visual-section {
  background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
  border: 2px solid #30363d;
  border-radius: 20px;
  padding: 25px;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(88, 166, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
}

.team-visual-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3182ce, #38a169, #e53e3e, #2d3748);
  border-radius: 12px 12px 0 0;
}

.team-visual-section::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(88, 166, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(124, 58, 237, 0.1) 0%,
      transparent 50%
    );
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

.team-visual-content {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.team-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #38a169 0%, #3182ce 50%, #2d3748 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 8px 30px rgba(63, 185, 80, 0.4),
    0 0 0 2px rgba(88, 166, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.team-icon:hover::before {
  transform: rotate(45deg) translate(100%, 100%);
}

.team-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 30px rgba(63, 185, 80, 0.5);
}

.team-text {
  flex: 1;
  color: #ffffff;
  font-family: "Roboto", "Fira Code", "JetBrains Mono", "Consolas", monospace;
  font-size: 1.3rem;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
    0 0 40px rgba(88, 166, 255, 0.3);
  position: relative;
  letter-spacing: 0.5px;
}

.team-text::before {
  content: "";
  color: #58a6ff;
  font-weight: normal;
}

.team-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #58a6ff, #7c3aed);
  border-radius: 2px;
  animation: underline-glow 2s ease-in-out infinite alternate;
}

@keyframes underline-glow {
  from {
    box-shadow: 0 0 5px rgba(88, 166, 255, 0.3);
  }
  to {
    box-shadow: 0 0 15px rgba(88, 166, 255, 0.6),
      0 0 25px rgba(88, 166, 255, 0.4);
  }
}

/* Enhanced Hover Effects */
.team-visual-section:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6), 0 0 0 3px rgba(88, 166, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(88, 166, 255, 0.3);
}

/* Scrollbar benzeri efekt */
.team-scrollbar {
  position: absolute;
  right: 8px;
  top: 10px;
  bottom: 10px;
  width: 4px;
  background: linear-gradient(180deg, #30363d, #58a6ff, #30363d);
  border-radius: 2px;
  opacity: 0.7;
  animation: scrollbar-pulse 3s ease-in-out infinite;
}

@keyframes scrollbar-pulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Team Decorations */
.team-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.decoration-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3182ce;
  box-shadow: 0 0 15px rgba(88, 166, 255, 0.6);
  animation: float-dot 4s ease-in-out infinite;
}

.decoration-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.decoration-2 {
  top: 60%;
  right: 20%;
  animation-delay: 1.5s;
  background: #2c5aa0;
  box-shadow: 0 0 15px rgba(63, 185, 80, 0.6);
}

.decoration-3 {
  bottom: 25%;
  left: 25%;
  animation-delay: 3s;
  background: linear-gradient(45deg, #e53e3e, #38a169);
  box-shadow: 0 0 15px rgba(248, 81, 73, 0.6);
}

@keyframes float-dot {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-10px) scale(1.2);
    opacity: 1;
  }
}

/* Responsive adjustments for about section */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 40px;
  }

  .about-text {
    padding: 30px 20px;
  }

  .about-text h3 {
    font-size: 1.3rem;
  }

  .about-text p {
    font-size: 1rem;
  }

  .about-text ul li {
    font-size: 1rem;
    padding: 10px 15px;
  }

  .team-visual-section {
    margin: 20px 0;
    padding: 15px;
  }

  .team-visual-content {
    gap: 15px;
  }

  .team-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .team-text {
    font-size: 1rem;
  }
}

/* Hizmetler Bölümü - Modern Organic Background */
.services {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.services .row {
  display: flex;
  flex-wrap: wrap;
}

.services .col-lg-3 {
  display: flex;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse 600px 500px at 20% 20%,
      rgba(49, 130, 206, 0.06) 0%,
      rgba(56, 178, 172, 0.04) 50%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 800px 600px at 80% 80%,
      rgba(255, 165, 0, 0.08) 0%,
      rgba(229, 62, 62, 0.05) 60%,
      transparent 85%
    );
  background-size: 100% 100%;
  /* animation: servicesBackgroundFloat 25s ease-in-out infinite; */
  z-index: 1;
  pointer-events: none;
}

@keyframes servicesBackgroundFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(0.2deg);
  }
}

.service-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3182ce, #38a169, #e53e3e);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(49, 130, 206, 0.2);
  border-color: #3182ce;
}

.service-icon {
  font-size: 3rem;
  color: #3182ce;
  margin-bottom: 20px;
  text-shadow: 0 0 20px rgba(49, 130, 206, 0.3);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  color: #38a169;
  transform: scale(1.1);
}

.service-card h4 {
  color: #2d3748;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: #4a5568;
  line-height: 1.6;
}

.service-card .btn {
  border: 1px solid #3182ce;
  color: #3182ce;
  background: transparent;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  padding: 8px 16px;
  margin-top: auto;
}

.service-card .btn:hover {
  background: #3182ce;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
}

/* Projeler Bölümü - Modern Organic Background */
.projects {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.projects::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse 700px 550px at 15% 75%,
      rgba(56, 178, 172, 0.08) 0%,
      rgba(49, 130, 206, 0.05) 50%,
      transparent 75%
    ),
    radial-gradient(
      ellipse 900px 650px at 85% 25%,
      rgba(255, 165, 0, 0.06) 0%,
      rgba(229, 62, 62, 0.04) 60%,
      transparent 85%
    );
  background-size: 100% 100%;
  /* animation: projectsBackgroundFloat 28s ease-in-out infinite; */
  z-index: 1;
  pointer-events: none;
}

@keyframes projectsBackgroundFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  33% {
    transform: translateY(-4px) rotate(0.1deg) scale(1.01);
  }
  66% {
    transform: translateY(-8px) rotate(-0.1deg) scale(0.99);
  }
}

.project-card {
  margin-bottom: 30px;
  position: relative;
}

.project-card .card-body {
  padding: 25px;
  background: #161b22;
}

.project-card .card-title {
  color: #e6e6e6;
  font-weight: 600;
  margin-bottom: 15px;
}

.project-card .card-text {
  color: #8b949e;
  line-height: 1.6;
}

.project-card .badge {
  background: #3182ce;
  color: white;
  border: none;
  font-weight: 500;
}

/* Referanslar Bölümü - Modern Organic Background */
.references {
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.references::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse 600px 500px at 25% 25%,
      rgba(49, 130, 206, 0.07) 0%,
      rgba(56, 178, 172, 0.05) 50%,
      transparent 80%
    ),
    radial-gradient(
      ellipse 800px 600px at 75% 75%,
      rgba(255, 140, 0, 0.06) 0%,
      rgba(229, 62, 62, 0.04) 60%,
      transparent 85%
    );
  background-size: 100% 100%;
  /* animation: referencesBackgroundFloat 32s ease-in-out infinite; */
  z-index: 1;
  pointer-events: none;
}

@keyframes referencesBackgroundFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-3px) rotate(0.1deg);
  }
  50% {
    transform: translateY(-6px) rotate(-0.1deg);
  }
  75% {
    transform: translateY(-4px) rotate(0.05deg);
  }
}

.reference-item {
  text-align: center;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.reference-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3182ce, #38a169, #e53e3e);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.reference-item:hover::before {
  transform: scaleX(1);
}

.reference-item:hover {
  background: #f7fafc;
  border-color: #3182ce;
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(49, 130, 206, 0.2);
}

.reference-item h5 {
  color: #2d3748;
  margin-bottom: 10px;
  font-weight: 600;
}

.reference-item p {
  color: #4a5568;
  margin: 0;
}

.reference-logo img {
  max-height: 80px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.reference-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
}

.reference-link:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-5px);
}

.reference-link:hover .reference-item {
  box-shadow: 0 8px 30px rgba(49, 130, 206, 0.2);
  border-color: #3182ce;
}

.reference-link:hover .reference-item {
  background: #f7fafc;
  border-color: #3182ce;
  box-shadow: 0 8px 30px rgba(49, 130, 206, 0.2);
}

/* Reference İncele Butonu */
.reference-inspect-btn {
  background: #3182ce;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(49, 130, 206, 0.2);
  cursor: pointer;
  /* Buton artık tıklanabilir */
}

.reference-inspect-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.reference-inspect-btn:hover::before {
  left: 100%;
}

.reference-inspect-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
  background: #2c5aa0;
  color: white;
  text-decoration: none;
}

.reference-inspect-btn i {
  font-size: 0.8rem;
}

/* Tüm Referansları Görüntüle Butonu */
.btn-outline-primary {
  background: transparent;
  border: 2px solid #3182ce;
  color: #3182ce;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
}

.btn-outline-primary:hover {
  background: #3182ce;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(49, 130, 206, 0.4);
}

/* İletişim Bölümü - Modern Organic Background */
.contact {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse 700px 550px at 20% 80%,
      rgba(56, 178, 172, 0.08) 0%,
      rgba(49, 130, 206, 0.06) 50%,
      transparent 75%
    ),
    radial-gradient(
      ellipse 600px 400px at 80% 20%,
      rgba(255, 165, 0, 0.07) 0%,
      rgba(229, 62, 62, 0.05) 60%,
      transparent 85%
    );
  background-size: 100% 100%;
  /* animation: contactBackgroundFloat 30s ease-in-out infinite; */
  z-index: 1;
  pointer-events: none;
}

@keyframes contactBackgroundFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  50% {
    transform: translateY(-5px) rotate(0.15deg) scale(1.005);
  }
}

/* İletişim Sayfası - Açık Renk Uyumu */
.contact-page {
  background: #ffffff;
}

.contact-page .section {
  background: #ffffff;
}

.contact-page .section:nth-child(even) {
  background: #f8fafc;
}

.contact-page .contact-form {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-page .contact-info {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-page .contact-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-page .contact-item:hover {
  background: #ffffff;
  border-color: #3182ce;
  box-shadow: 0 4px 15px rgba(49, 130, 206, 0.1);
  transform: translateY(-2px);
}

.contact-page .contact-icon {
  background: #3182ce;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(49, 130, 206, 0.2);
}

.contact-page .social-link {
  background: #3182ce;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(49, 130, 206, 0.2);
}

.contact-page .social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(49, 130, 206, 0.3);
  color: white;
}

.contact-page .accordion-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-page .accordion-button {
  background: #f8fafc;
  border: none;
  color: #2d3748;
  font-weight: 500;
}

.contact-page .accordion-button:not(.collapsed) {
  background: #3182ce;
  color: white;
  box-shadow: none;
}

.contact-page .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(49, 130, 206, 0.25);
}

.contact-page .accordion-body {
  background: #ffffff;
  color: #4a5568;
  line-height: 1.6;
}

.contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3182ce, #38a169, #e53e3e);
  border-radius: 8px 8px 0 0;
}

.form-control {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 12px 15px;
  color: #2d3748;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #3182ce;
  box-shadow: 0 0 0 0.2rem rgba(49, 130, 206, 0.25);
  background: #ffffff;
}

.form-control::placeholder {
  color: #a0aec0;
}

.form-label {
  color: #2d3748;
  font-weight: 500;
  margin-bottom: 8px;
}

.btn-submit {
  background: #3182ce;
  border: 1px solid #e2e8f0;
  padding: 12px 30px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(88, 166, 255, 0.4);
  background: #2c5aa0;
}

/* Footer - Developer Theme */
.footer {
  background: #2d3748;
  color: #ffffff;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #e2e8f0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #3182ce, #38a169, #e53e3e);
}

.footer p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.9rem;
  color: #ffffff;
}

.footer a {
  color: #63b3ed;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #90cdf4;
  text-decoration: underline;
}

.footer .text-muted {
  color: #a0aec0 !important;
}

.footer .text-muted:hover {
  color: #63b3ed !important;
}

/* Genel text-muted sınıfı için */
.text-muted {
  color: #a0aec0 !important;
}

.text-muted:hover {
  color: #3182ce !important;
}

/* Bootstrap butonları için özel stiller */
.btn-primary {
  background: #3182ce;
  border-color: #3182ce;
  color: #ffffff;
}

.btn-primary:hover {
  background: #2c5aa0;
  border-color: #2c5aa0;
  color: #ffffff;
}

.btn-secondary {
  background: #4a5568;
  border-color: #4a5568;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #2d3748;
  border-color: #2d3748;
  color: #ffffff;
}

.btn-success {
  background: #38a169;
  border-color: #38a169;
  color: #ffffff;
}

.btn-success:hover {
  background: #2f855a;
  border-color: #2f855a;
  color: #ffffff;
}

.btn-warning {
  background: #d69e2e;
  border-color: #d69e2e;
  color: #ffffff;
}

.btn-warning:hover {
  background: #b7791f;
  border-color: #b7791f;
  color: #ffffff;
}

.btn-danger {
  background: #e53e3e;
  border-color: #e53e3e;
  color: #ffffff;
}

.btn-danger:hover {
  background: #c53030;
  border-color: #c53030;
  color: #ffffff;
}

.footer p::before {
  content: "";
  color: #63b3ed;
}

/* Büyük Hero Animasyonlu Yazı Stilleri */
.hero-animated-text {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.hero-text-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-main-text {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -2px;
  position: relative;
  animation: heroTextSlide 1.2s ease-out;
}

.text-line-1 {
  display: block;
  color: #3182ce;
  text-shadow: 0 0 30px rgba(49, 130, 206, 0.5);
  animation: gradientShift 3s ease-in-out infinite alternate;
}

.text-line-2 {
  display: block;
  color: #3182ce;
  text-shadow: 0 0 30px rgba(229, 62, 62, 0.5);
  animation: gradientShift 3s ease-in-out infinite alternate-reverse;
}

.hero-sub-text {
  margin-bottom: 30px;
  position: relative;
}

.hero-sub-text .typing-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2d3748;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  animation: heroSubTextSlide 1.5s ease-out 0.5s both;
}

.hero-sub-text .typing-text::after {
  content: "|";
  color: #3182ce;
  animation: blink 1s infinite;
  margin-left: 5px;
  font-size: 1.8rem;
}

.hero-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 40px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(49, 130, 206, 0.1);
  padding: 15px 25px;
  border-radius: 50px;
  border: 2px solid rgba(49, 130, 206, 0.3);
  transition: all 0.4s ease;
  animation: featureSlideUp 0.8s ease-out;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature-badge:nth-child(1) {
  animation-delay: 0.3s;
}
.feature-badge:nth-child(2) {
  animation-delay: 0.5s;
}
.feature-badge:nth-child(3) {
  animation-delay: 0.7s;
}

.feature-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(88, 166, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.feature-badge:hover::before {
  left: 100%;
}

.feature-badge:hover {
  background: rgba(49, 130, 206, 0.2);
  border-color: #3182ce;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(49, 130, 206, 0.3);
}

.feature-badge i {
  color: #3182ce;
  font-size: 1.5rem;
  text-shadow: 0 0 10px rgba(49, 130, 206, 0.5);
}

.feature-badge span {
  color: #2d3748;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Animasyonlar */
@keyframes heroTextSlide {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes gradientShift {
  0% {
    background: #3182ce;
    -webkit-background-clip: text;
  }
  100% {
    background: #3182ce;
    -webkit-background-clip: text;
  }
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

/* Responsive Hero Text */
@media (max-width: 1200px) {
  .hero-main-text {
    font-size: 3.8rem;
  }
}

@media (max-width: 768px) {
  .hero-main-text {
    font-size: 2.8rem;
    letter-spacing: -1px;
  }

  .hero-sub-text .typing-text {
    font-size: 1.4rem;
  }

  .hero-logo {
    height: 80px;
  }

  .hero-features {
    gap: 15px;
  }

  .feature-badge {
    padding: 12px 20px;
  }

  .feature-badge span {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-main-text {
    font-size: 2.2rem;
  }

  .hero-logo {
    height: 60px;
  }

  .hero-sub-text .typing-text {
    font-size: 1.2rem;
  }

  .feature-badge {
    padding: 10px 15px;
  }

  .feature-badge span {
    font-size: 0.9rem;
  }
}

/* Terminal ve Kod Editörü Stilleri */
.code-terminal {
  background: #0d1117;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.terminal-header {
  background: #21262d;
  padding: 12px 16px;
  border-bottom: 1px solid #30363d;
  display: flex;
  align-items: center;
  gap: 12px;
}

.terminal-buttons {
  display: flex;
  gap: 8px;
}

.terminal-buttons span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.btn-close {
  background: #f85149;
}

.btn-minimize {
  background: #f9c513;
}

.btn-maximize {
  background: #3fb950;
}

.terminal-title {
  color: #8b949e;
  font-size: 0.9rem;
  font-weight: 500;
}

.terminal-body {
  padding: 20px;
  font-family: "Roboto", "Fira Code", "JetBrains Mono", "Consolas", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

.code-line {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prompt {
  color: #3fb950;
  font-weight: bold;
}

.command {
  color: #58a6ff;
}

.output {
  color: #8b949e;
}

.typing {
  color: #58a6ff;
  animation: typing 2s infinite;
}

@keyframes typing {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

/* Syntax Highlighting */
.syntax-keyword {
  color: #ff7b72;
}

.syntax-string {
  color: #a5d6ff;
}

.syntax-comment {
  color: #8b949e;
}

.syntax-function {
  color: #d2a8ff;
}

.syntax-variable {
  color: #ffa657;
}

/* Kod Blokları */
.code-block {
  background: #0d1117;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  overflow-x: auto;
  font-family: "Roboto", "Fira Code", "JetBrains Mono", "Consolas", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

.code-block pre {
  margin: 0;
  color: #e6e6e6;
}

.code-block .line-number {
  color: #8b949e;
  margin-right: 16px;
  user-select: none;
}

/* Developer Icons */
.dev-icon {
  width: 40px;
  height: 40px;
  background: #161b22;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #58a6ff;
  transition: all 0.3s ease;
}

.dev-icon:hover {
  background: #21262d;
  border-color: #58a6ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(49, 130, 206, 0.2);
}

/* Tech Stack */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.tech-item {
  background: #161b22;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 8px 16px;
  color: #e6e6e6;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: #21262d;
  border-color: #58a6ff;
  color: #58a6ff;
}

/* Code Animation */
.code-animation {
  position: relative;
  overflow: hidden;
}

.code-animation::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(88, 166, 255, 0.1),
    transparent
  );
  animation: code-scan 3s infinite;
}

@keyframes code-scan {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Desktop için özel düzenlemeler */
@media (min-width: 769px) {
  .hero-buttons {
    gap: 25px;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
  }

  .btn-hero {
    flex: 0 0 auto;
    min-width: 200px;
    margin: 0;
  }

  .btn-outline-light {
    flex: 0 0 auto;
    min-width: 200px;
    margin: 0;
  }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .navbar {
    padding: 0.4rem 0;
  }

  .navbar-logo {
    height: 32px;
  }

  .navbar-brand {
    font-size: 1.2rem;
    gap: 8px;
    flex: 1;
    justify-content: flex-start;
  }

  .brand-text {
    display: inline;
    font-size: 0.8rem;
    margin-left: 8px;
  }

  .navbar-toggler {
    order: 2;
  }

  .navbar-brand {
    order: 1;
    display: flex;
    align-items: center;
  }

  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .hero {
    padding: 80px 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.5rem;
    padding: 0 15px;
  }

  .hero p {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .btn-hero {
    padding: 12px 20px;
    font-size: 1rem;
    margin: 5px auto;
    display: block;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .btn-outline-light {
    padding: 12px 20px;
    font-size: 1rem;
    margin: 5px auto;
    display: block;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin: 30px auto 0;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  /* Mobile Background Optimizations */
  .hero::before {
    background: radial-gradient(
        ellipse 400px 300px at 20% 80%,
        rgba(255, 165, 0, 0.12) 0%,
        rgba(255, 140, 0, 0.08) 30%,
        transparent 70%
      ),
      radial-gradient(
        ellipse 500px 350px at 80% 70%,
        rgba(255, 69, 0, 0.15) 0%,
        rgba(255, 140, 0, 0.1) 40%,
        transparent 80%
      );
    animation: backgroundFloat 15s ease-in-out infinite;
  }

  .hero::after {
    background: radial-gradient(
        ellipse 300px 200px at 10% 20%,
        rgba(255, 165, 0, 0.06) 0%,
        transparent 60%
      ),
      radial-gradient(
        ellipse 250px 150px at 90% 30%,
        rgba(255, 69, 0, 0.08) 0%,
        transparent 70%
      );
    animation: backgroundFloat 18s ease-in-out infinite reverse;
  }

  .section::before {
    background: radial-gradient(
        ellipse 300px 250px at 15% 85%,
        rgba(49, 130, 206, 0.06) 0%,
        rgba(56, 178, 172, 0.04) 40%,
        transparent 70%
      ),
      radial-gradient(
        ellipse 400px 300px at 85% 15%,
        rgba(229, 62, 62, 0.08) 0%,
        rgba(255, 140, 0, 0.05) 50%,
        transparent 80%
      );
    animation: sectionBackgroundFloat 20s ease-in-out infinite;
  }

  .section:nth-child(even)::before {
    background: radial-gradient(
        ellipse 350px 275px at 25% 75%,
        rgba(56, 178, 172, 0.08) 0%,
        rgba(49, 130, 206, 0.05) 50%,
        transparent 75%
      ),
      radial-gradient(
        ellipse 450px 325px at 75% 25%,
        rgba(255, 165, 0, 0.06) 0%,
        rgba(229, 62, 62, 0.04) 60%,
        transparent 85%
      );
    animation: sectionBackgroundFloat 22s ease-in-out infinite reverse;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2rem;
    padding: 0 10px;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 15px;
  }

  .btn-hero {
    padding: 10px 15px;
    font-size: 0.9rem;
    max-width: 280px;
  }

  .section {
    padding: 50px 0;
  }

  .contact-form {
    padding: 20px;
  }
}

/* Modern Blog Design - Enhanced */
.blog-hero-section {
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 50%, #e2e8f0 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}

.blog-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(88, 166, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(124, 58, 237, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.blog-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.blog-breadcrumb {
  margin-bottom: 30px;
}

.blog-breadcrumb .breadcrumb {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 25px;
  padding: 12px 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-breadcrumb .breadcrumb-item a {
  color: #3182ce;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-breadcrumb .breadcrumb-item a:hover {
  color: #2c5aa0;
}

.blog-breadcrumb .breadcrumb-item.active {
  color: #4a5568;
}

.blog-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 30px;
  line-height: 1.2;
  color: #3182ce;
  text-shadow: 0 0 30px rgba(49, 130, 206, 0.2);
  /* animation: gradient-shift 3s ease-in-out infinite alternate; */
}

.blog-meta-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
  background: rgba(22, 27, 34, 0.8);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(48, 54, 61, 0.3);
  backdrop-filter: blur(10px);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8b949e;
  font-size: 0.95rem;
  padding: 8px 15px;
  background: rgba(13, 17, 23, 0.6);
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.meta-item:hover {
  background: rgba(22, 27, 34, 0.8);
  border-color: #58a6ff;
  color: #e6e6e6;
  transform: translateY(-2px);
}

.meta-item i {
  color: #58a6ff;
  width: 16px;
  text-shadow: 0 0 10px rgba(88, 166, 255, 0.5);
}

/* Blog Content Section */
.blog-content-section {
  padding: 80px 0;
  background: #ffffff;
}

.blog-article {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-featured-image {
  position: relative;
  overflow: hidden;
}

.blog-featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-featured-image:hover img {
  transform: scale(1.05);
}

.blog-content {
  padding: 50px;
  color: #2d3748;
  line-height: 1.8;
  font-size: 1.1rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.blog-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3182ce, #38a169, #e53e3e, #2d3748);
  border-radius: 15px 15px 0 0;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
  color: #2d3748;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
}

.blog-content h2 {
  color: #3182ce;
  font-size: 1.8rem;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 10px;
  text-shadow: 0 0 20px rgba(49, 130, 206, 0.2);
  position: relative;
}

.blog-content h2::before {
  content: "## ";
  color: #38a169;
  font-weight: normal;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(56, 178, 172, 0.3);
}

.blog-content h3 {
  color: #38a169;
  font-size: 1.5rem;
  text-shadow: 0 0 15px rgba(56, 178, 172, 0.2);
  position: relative;
}

.blog-content h3::before {
  content: "### ";
  color: #3182ce;
  font-weight: normal;
  font-size: 1rem;
  text-shadow: 0 0 10px rgba(49, 130, 206, 0.3);
}

.blog-content p {
  margin-bottom: 25px;
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid transparent;
  border-image: linear-gradient(45deg, #3182ce, #38a169) 1;
  transition: all 0.3s ease;
}

.blog-content p:hover {
  color: #2d3748;
  transform: translateX(5px);
  border-left-color: #3182ce;
}

.blog-content ul,
.blog-content ol {
  margin-bottom: 25px;
  padding-left: 30px;
  background: rgba(247, 250, 252, 0.8);
  border-radius: 10px;
  padding: 20px 30px;
  border: 1px solid #e2e8f0;
}

.blog-content li {
  margin-bottom: 12px;
  color: #4a5568;
  position: relative;
  padding-left: 20px;
  transition: all 0.3s ease;
}

.blog-content li::before {
  content: "→";
  color: #3182ce;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  text-shadow: 0 0 10px rgba(49, 130, 206, 0.3);
  /* animation: pulse 2s ease-in-out infinite; */
}

.blog-content li:hover {
  color: #2d3748;
  transform: translateX(5px);
}

.blog-content blockquote {
  border-left: 4px solid #3182ce;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #4a5568;
  background: rgba(49, 130, 206, 0.05);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(49, 130, 206, 0.2);
  position: relative;
  box-shadow: 0 5px 20px rgba(49, 130, 206, 0.1);
}

.blog-content blockquote::before {
  content: "\201C";
  color: #3182ce;
  font-size: 3rem;
  position: absolute;
  top: -10px;
  left: 15px;
  text-shadow: 0 0 20px rgba(49, 130, 206, 0.3);
}

.blog-article-footer {
  padding: 40px 50px;
  border-top: 1px solid #e2e8f0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(247, 250, 252, 0.6) 100%
  );
  border-radius: 0 0 15px 15px;
  position: relative;
  overflow: hidden;
}

.blog-article-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #3182ce, #38a169, #e53e3e);
}

.blog-tags {
  margin-bottom: 30px;
}

.blog-tags h6 {
  color: #2d3748;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(49, 130, 206, 0.3);
  position: relative;
}

.blog-tags h6::before {
  content: "🏷️ ";
  margin-right: 8px;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  background: rgba(13, 17, 23, 0.6);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.tag {
  background: #3182ce;
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(88, 166, 255, 0.3);
  box-shadow: 0 2px 10px rgba(88, 166, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.tag:hover::before {
  left: 100%;
}

.tag:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 20px rgba(88, 166, 255, 0.4);
  border-color: #58a6ff;
}

.blog-share h6 {
  color: #2d3748;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(49, 130, 206, 0.2);
  position: relative;
}

.blog-share h6::before {
  content: "📤 ";
  margin-right: 8px;
}

.share-buttons {
  display: flex;
  gap: 15px;
  background: rgba(13, 17, 23, 0.6);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  justify-content: center;
}

.share-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.share-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.share-btn.facebook {
  background: #1877f2;
  color: white;
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn.linkedin {
  background: #0077b5;
  color: white;
}

.share-btn.whatsapp {
  background: #25d366;
  color: white;
}

.share-btn:hover::before {
  left: 100%;
}

.share-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Blog Sidebar - Enhanced */
.blog-sidebar {
  padding-left: 30px;
}

.sidebar-widget {
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  margin-bottom: 30px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.sidebar-widget::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #3182ce, #38a169, #e53e3e);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sidebar-widget:hover::before {
  opacity: 1;
}

.sidebar-widget:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(88, 166, 255, 0.2);
  border-color: #58a6ff;
}

.widget-title {
  background: #3182ce;
  color: white;
  padding: 25px;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 0 20px rgba(88, 166, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.widget-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.widget-content {
  padding: 25px;
  background: rgba(13, 17, 23, 0.3);
}

.related-post {
  padding: 20px 0;
  border-bottom: 1px solid #30363d;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin-bottom: 10px;
  position: relative;
}

.related-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.related-post:hover {
  background: rgba(22, 27, 34, 0.6);
  transform: translateX(5px);
  border-radius: 8px;
}

.related-post h6 {
  margin-bottom: 12px;
  position: relative;
}

.related-post h6::before {
  content: "📄 ";
  margin-right: 8px;
  font-size: 0.9rem;
}

.related-post h6 a {
  color: #2d3748;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  transition: all 0.3s ease;
  font-weight: 600;
  display: block;
}

.related-post h6 a:hover {
  color: #58a6ff;
  text-shadow: 0 0 10px rgba(49, 130, 206, 0.3);
}

.post-meta {
  color: #4a5568;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 250, 252, 0.8);
  padding: 8px 12px;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.post-meta:hover {
  background: rgba(49, 130, 206, 0.1);
  color: #2d3748;
  border-color: #3182ce;
}

.cta-widget {
  background: linear-gradient(135deg, #58a6ff, #7c3aed);
  border: none;
  position: relative;
  overflow: hidden;
}

.cta-widget::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  /* animation: rotate 10s linear infinite; */
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-content {
  padding: 40px 30px;
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
}

.cta-icon {
  font-size: 4rem;
  margin-bottom: 25px;
  opacity: 0.9;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  /* animation: float 3s ease-in-out infinite; */
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.cta-content h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  line-height: 1.7;
  font-size: 1.1rem;
}

.cta-button {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  font-size: 1.1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button::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.5s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design - Enhanced */
@media (max-width: 768px) {
  .blog-hero-section {
    padding: 100px 0 60px;
  }

  .blog-title {
    font-size: 2.5rem;
    line-height: 1.3;
  }

  .blog-meta-info {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .meta-item {
    justify-content: center;
    padding: 10px 20px;
  }

  .blog-content {
    padding: 30px 20px;
    font-size: 1rem;
  }

  .blog-content h2 {
    font-size: 1.5rem;
  }

  .blog-content h3 {
    font-size: 1.3rem;
  }

  .blog-article-footer {
    padding: 25px 20px;
  }

  .blog-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }

  .blog-featured-image img {
    height: 250px;
  }

  .share-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .share-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .cta-content {
    padding: 30px 20px;
  }

  .cta-icon {
    font-size: 3rem;
  }

  .cta-content h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .blog-title {
    font-size: 2rem;
  }

  .blog-content {
    padding: 20px 15px;
  }

  .blog-article-footer {
    padding: 20px 15px;
  }

  .tags-list {
    padding: 15px;
  }

  .tag {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

  .share-buttons {
    gap: 10px;
    padding: 15px;
  }

  .share-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.blog-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.blog-hero h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.blog-hero p {
  font-size: 1.2rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.blog-content {
  background: #f7fafc;
  padding: 80px 0;
}

.blog-card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #3182ce;
}

.blog-card .card-img-top {
  border-radius: 8px 8px 0 0;
  height: 200px;
  object-fit: cover;
}

.blog-card .card-title {
  color: #2d3748;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card .card-text {
  color: #4a5568;
  font-size: 0.9rem;
  line-height: 1.6;
}

.blog-meta {
  font-size: 0.8rem;
  color: #a0aec0;
}

.blog-meta i {
  color: #3182ce;
}

.blog-tags .badge {
  background: linear-gradient(45deg, #3182ce, #38a169) !important;
  border: none;
  font-size: 0.75rem;
  padding: 4px 8px;
}

.blog-sidebar .card {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  border-radius: 8px;
}

.blog-sidebar .card-header {
  background: #f7fafc;
  border-bottom: 1px solid #e2e8f0;
  color: #2d3748;
}

.blog-sidebar .card-body a {
  color: #4a5568;
  transition: color 0.3s ease;
}

.blog-sidebar .card-body a:hover {
  color: #3182ce;
}

.blog-post-content {
  background: #f7fafc;
  padding: 80px 0;
}

.blog-post {
  background: #ffffff;
  border-radius: 8px;
  padding: 40px;
  border: 1px solid #e2e8f0;
}

.blog-post-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2d3748;
  margin-bottom: 20px;
  line-height: 1.2;
}

.blog-post-meta {
  margin-bottom: 30px;
}

.blog-post-meta .text-muted {
  color: #6e7681 !important;
}

.blog-post-meta i {
  color: #58a6ff;
}

.blog-post-image img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-post-body {
  color: #2d3748;
  line-height: 1.8;
  font-size: 1.1rem;
}

.blog-post-body h1,
.blog-post-body h2,
.blog-post-body h3,
.blog-post-body h4,
.blog-post-body h5,
.blog-post-body h6 {
  color: #2d3748;
  margin-top: 30px;
  margin-bottom: 15px;
}

.blog-post-body h3 {
  color: #58a6ff;
  font-size: 1.5rem;
}

.blog-post-body p {
  margin-bottom: 20px;
}

.blog-post-body ul,
.blog-post-body ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.blog-post-body li {
  margin-bottom: 8px;
  color: #4a5568;
}

.blog-post-tags {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #30363d;
}

.blog-post-tags h6 {
  color: #2d3748;
  margin-bottom: 15px;
}

.blog-post-share {
  border-top: 1px solid #30363d;
  padding-top: 20px;
}

.blog-post-share h6 {
  color: #2d3748;
  margin-bottom: 15px;
}

.blog-post-share .btn {
  border-radius: 6px;
  font-size: 0.9rem;
  padding: 8px 16px;
}

.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item a {
  color: #58a6ff;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #4a5568;
}

.pagination .page-link {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #2d3748;
}

.pagination .page-link:hover {
  background: #f8fafc;
  border-color: #3182ce;
  color: #3182ce;
}

.pagination .page-item.active .page-link {
  background: #3182ce;
  border-color: #58a6ff;
}

/* Animasyonlar */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  align-items: center;
}

/* Özel Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #5a6fd8;
}

/* Admin Panel Ek Stilleri */
.sidebar {
  background: #3182ce;
  min-height: 100vh;
  color: white;
}

.sidebar .nav-link {
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  margin: 5px 0;
  transition: all 0.3s ease;
}

.sidebar .nav-link:hover,
.sidebar .nav-link.active {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.stat-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
}

/* Proje ve Referans Kartları */
.project-card,
.reference-card,
.message-card {
  transition: transform 0.3s ease;
}

.project-card:hover,
.reference-card:hover,
.message-card:hover {
  transform: translateY(-5px);
}

/* Süreç Adımları */
.process-step {
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #3182ce;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  margin: 0 auto;
}

/* Testimonial Kartları */
.testimonial-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.rating {
  color: #ffc107;
}

/* İletişim Bilgileri */
.contact-item {
  margin-bottom: 30px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: #3182ce;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #3182ce;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
  color: white;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Harita */
.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Accordion */
.accordion-button:not(.collapsed) {
  background: #3182ce;
  color: white;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(49, 130, 206, 0.25);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #3182ce;
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(49, 130, 206, 0.4);
  background: #2c5aa0;
}

/* Loading Animasyonu */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #667eea;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Alert Stilleri */
.alert {
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.alert-success {
  background: linear-gradient(45deg, #d4edda, #c3e6cb);
  color: #155724;
}

.alert-danger {
  background: linear-gradient(45deg, #f8d7da, #f5c6cb);
  color: #721c24;
}

.alert-info {
  background: linear-gradient(45deg, #d1ecf1, #bee5eb);
  color: #0c5460;
}

/* Form Stilleri */
.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn:focus {
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Modal Stilleri */
.modal-content {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modal-header {
  background: #3182ce;
  color: white;
  border-radius: 15px 15px 0 0;
}

.modal-header .btn-close {
  filter: invert(1);
}

/* Tablo Stilleri */
.table {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.table thead th {
  background: #3182ce;
  color: white;
  border: none;
  font-weight: 600;
}

/* Badge Stilleri */
.badge {
  border-radius: 20px;
  padding: 8px 12px;
  font-weight: 500;
}

/* Progress Bar */
.progress {
  height: 8px;
  border-radius: 10px;
  background: #e9ecef;
}

.progress-bar {
  background: #3182ce;
  border-radius: 10px;
}

/* Pagination */
.page-link {
  border: none;
  color: #667eea;
  border-radius: 8px;
  margin: 0 2px;
  transition: all 0.3s ease;
}

.page-link:hover {
  background: #3182ce;
  color: white;
}

.page-item.active .page-link {
  background: #3182ce;
  border: none;
}

/* WhatsApp Destek Butonu */
.whatsapp-support-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  animation: whatsappPulse 2s infinite;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  border: 2px solid #25d366;
  position: relative;
  overflow: hidden;
}

.whatsapp-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.whatsapp-btn:hover::before {
  left: 100%;
}

.whatsapp-btn:hover {
  background: #128c7e;
  border-color: #128c7e;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  color: white;
  text-decoration: none;
}

.whatsapp-btn i {
  font-size: 1.2rem;
  animation: whatsappBounce 1.5s infinite;
}

.btn-text {
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes whatsappBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-1px);
  }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
  .whatsapp-support-btn {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-btn {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .btn-text {
    display: none;
  }

  .whatsapp-btn i {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .whatsapp-support-btn {
    bottom: 10px;
    right: 10px;
  }

  .whatsapp-btn {
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Utility Classes */
.text-gradient {
  color: #3182ce;
}

.bg-gradient {
  background: #3182ce;
}

.shadow-custom {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.border-gradient {
  border: 2px solid #3182ce;
}

/* Mobile Apps Page Styles */
.mobile-apps-page .mobile-app-card {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.mobile-apps-page .mobile-app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mobile-apps-page .app-screenshots {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #f8f9fa;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-apps-page .app-screenshots .carousel-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.mobile-apps-page .no-screenshot {
  text-align: center;
  color: #6c757d;
  padding: 2rem;
}

.mobile-apps-page .no-screenshot i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.mobile-apps-page .app-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: #f8f9fa;
  padding: 10px;
}

.mobile-apps-page .app-info h3 {
  color: #2d3748;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mobile-apps-page .app-short-desc {
  color: #718096;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.mobile-apps-page .app-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-apps-page .detail-item {
  display: flex;
  align-items: center;
  color: #4a5568;
  font-size: 0.9rem;
}

.mobile-apps-page .detail-item i {
  margin-right: 0.5rem;
  color: #667eea;
  width: 16px;
}

.mobile-apps-page .app-features h5 {
  color: #2d3748;
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.mobile-apps-page .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-apps-page .feature-list li {
  padding: 0.3rem 0;
  color: #4a5568;
  font-size: 0.9rem;
}

.mobile-apps-page .app-description {
  color: #4a5568;
  line-height: 1.6;
}

.mobile-apps-page .download-buttons {
  margin-top: 1.5rem;
}

.mobile-apps-page .btn-app-store {
  background: linear-gradient(135deg, #007aff, #0056cc);
  border: none;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-apps-page .btn-app-store:hover {
  background: linear-gradient(135deg, #0056cc, #003d99);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 122, 255, 0.3);
}

.mobile-apps-page .btn-android {
  background: linear-gradient(135deg, #3ddc84, #2bb673);
  border: none;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-apps-page .btn-android:hover {
  background: linear-gradient(135deg, #2bb673, #1e8b5a);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(61, 220, 132, 0.3);
}

.mobile-apps-page .btn-secondary {
  background: #6c757d;
  border: none;
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Mobile Apps Page Responsive */
@media (max-width: 768px) {
  .mobile-apps-page .mobile-app-card {
    padding: 1.5rem;
  }

  .mobile-apps-page .app-screenshots {
    min-height: 250px;
    margin-bottom: 1.5rem;
  }

  .mobile-apps-page .app-screenshots .carousel-item img {
    height: 250px;
  }

  .mobile-apps-page .app-info h3 {
    font-size: 1.5rem;
  }

  .mobile-apps-page .download-buttons .row {
    gap: 0.5rem;
  }
}

/* Mobile Apps Preview Cards */
.mobile-apps-page .app-preview {
  text-align: center;
  padding: 2rem;
}

.mobile-apps-page .app-logo-container {
  margin-bottom: 1.5rem;
}

.mobile-apps-page .app-logo-preview {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: #f8f9fa;
  padding: 15px;
}

.mobile-apps-page .app-logo-placeholder {
  width: 100px;
  height: 100px;
  background: #f8f9fa;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #6c757d;
  font-size: 2rem;
}

.mobile-apps-page .app-info-preview h4 {
  color: #2d3748;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mobile-apps-page .app-details-preview {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.mobile-apps-page .app-details-preview .detail-item {
  display: flex;
  align-items: center;
  color: #4a5568;
  font-size: 0.9rem;
  background: #f7fafc;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

.mobile-apps-page .app-details-preview .detail-item i {
  margin-right: 0.5rem;
  color: #667eea;
  width: 16px;
}

.mobile-apps-page .app-actions {
  margin-top: 1.5rem;
}

/* Mobile App Detail Page */
.mobile-app-detail-page .app-detail-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  background: #f8f9fa;
  padding: 20px;
}

.mobile-app-detail-page .app-detail-logo-placeholder {
  width: 120px;
  height: 120px;
  background: #f8f9fa;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #6c757d;
  font-size: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mobile-app-detail-page .app-detail-title {
  color: #2d3748;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.mobile-app-detail-page .app-detail-short-desc {
  color: #718096;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.mobile-app-detail-page .app-meta {
  margin-top: 1rem;
}

.mobile-app-detail-page .app-meta .badge {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

.mobile-app-detail-page .app-screenshots-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.mobile-app-detail-page .app-screenshots-section .section-title {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.mobile-app-detail-page .app-screenshots-section .section-title i {
  color: rgba(255, 255, 255, 0.9);
}

.mobile-app-detail-page .screenshot-img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-height: 500px;
  object-fit: contain;
  background: #ffffff;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.mobile-app-detail-page .carousel-control-prev,
.mobile-app-detail-page .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.mobile-app-detail-page .carousel-control-prev:hover,
.mobile-app-detail-page .carousel-control-next:hover {
  opacity: 1;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mobile-app-detail-page .carousel-control-prev {
  left: -25px;
}

.mobile-app-detail-page .carousel-control-next {
  right: -25px;
}

.mobile-app-detail-page .carousel-control-prev-icon,
.mobile-app-detail-page .carousel-control-next-icon {
  filter: invert(1);
  width: 24px;
  height: 24px;
}

.mobile-app-detail-page .no-screenshot-detail {
  text-align: center;
  padding: 4rem 2rem;
  color: #6c757d;
  background: #f8f9fa;
  border-radius: 15px;
}

.mobile-app-detail-page .section-title {
  color: #2d3748;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #667eea;
  padding-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.mobile-app-detail-page .section-title i {
  color: #667eea;
  font-size: 1.5rem;
}

.mobile-app-detail-page .app-detail-info h3 {
  color: #2d3748;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 2px solid #667eea;
  padding-bottom: 0.5rem;
}

.mobile-app-detail-page .app-detail-info p {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.8;
}

.mobile-app-detail-page .feature-list-detail {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.mobile-app-detail-page .feature-list-detail li {
  padding: 1rem;
  color: #4a5568;
  font-size: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #48bb78;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-app-detail-page .feature-list-detail li:hover {
  background: #edf2f7;
  transform: translateX(5px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-app-detail-page .feature-list-detail li i {
  font-size: 1.1rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.mobile-app-detail-page .download-section {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mobile-app-detail-page .download-section h4 {
  color: #2d3748;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.mobile-app-detail-page .download-buttons {
  margin-bottom: 2rem;
}

.mobile-app-detail-page .btn-app-store {
  background: linear-gradient(135deg, #007aff, #0056cc);
  border: none;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
  font-size: 1rem;
}

.mobile-app-detail-page .btn-app-store:hover {
  background: linear-gradient(135deg, #0056cc, #003d99);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}

.mobile-app-detail-page .btn-android {
  background: linear-gradient(135deg, #3ddc84, #2bb673);
  border: none;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(61, 220, 132, 0.3);
  font-size: 1rem;
}

.mobile-app-detail-page .btn-android:hover {
  background: linear-gradient(135deg, #2bb673, #1e8b5a);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(61, 220, 132, 0.4);
}

.mobile-app-detail-page .btn-secondary {
  background: #e2e8f0;
  border: 2px dashed #cbd5e0;
  color: #a0aec0;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: not-allowed;
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.mobile-app-detail-page .app-detail-grid {
  margin-top: 1.5rem;
}

.mobile-app-detail-page .app-detail-grid h5 {
  color: #2d3748;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.mobile-app-detail-page .app-detail-grid h5 i {
  color: #667eea;
}

.mobile-app-detail-page .detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.mobile-app-detail-page .detail-grid .detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #4a5568;
  font-size: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 3px solid #667eea;
}

.mobile-app-detail-page .detail-grid .detail-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.mobile-app-detail-page .detail-grid .detail-item i {
  color: #667eea;
  font-size: 1.5rem;
  width: 30px;
  text-align: center;
  flex-shrink: 0;
}

.mobile-app-detail-page .detail-grid .detail-item div {
  flex: 1;
}

.mobile-app-detail-page .detail-grid .detail-item small {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-app-detail-page .detail-grid .detail-item strong {
  color: #2d3748;
  font-size: 1rem;
}

/* Mobile App Detail Responsive */
@media (max-width: 768px) {
  .mobile-app-detail-page .app-detail-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }

  .mobile-app-detail-page .app-detail-title {
    font-size: 1.75rem;
  }

  .mobile-app-detail-page .section-title {
    font-size: 1.5rem;
  }

  .mobile-app-detail-page .detail-grid {
    grid-template-columns: 1fr;
  }

  .mobile-app-detail-page .screenshot-img {
    max-height: 300px;
  }

  .mobile-app-detail-page .carousel-control-prev,
  .mobile-app-detail-page .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .mobile-app-detail-page .carousel-control-prev {
    left: 10px;
  }

  .mobile-app-detail-page .carousel-control-next {
    right: 10px;
  }

  .mobile-app-detail-page .download-section {
    margin-top: 2rem;
  }

  .mobile-app-detail-page .app-screenshots-section {
    padding: 1.5rem;
  }

  .mobile-app-detail-page .feature-list-detail li {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
}
