/* 
 * Gürkan Giray Web Sitesi Ana CSS Dosyası
 * Modern ve Profesyonel Tasarım
 */

/* Font tanımları */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Reset ve Genel Stiller */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Ana Renkler */
  --primary-color: #0066ff;
  --primary-dark: #004dc4;
  --primary-light: #e6f0ff;
  --secondary-color: #0e1c36;
  --accent-color: #00e2ac;
  
  /* RGB Değerleri (primary renk) */
  --primary-rgb: 0, 102, 255;
  --primary-dark-rgb: 0, 77, 196;
  --primary-light-rgb: 230, 240, 255;
  --secondary-rgb: 14, 28, 54;
  --accent-rgb: 0, 226, 172;
  
  /* Nötr Renkler */
  --text-color: #2d3748;
  --text-light: #718096;
  --text-dark: #1a202c;
  --light-text: #ffffff;
  
  /* Arkaplan Renkleri */
  --background-color: #ffffff;
  --background-light: #f8fafc;
  --background-dark: #f0f4f8;
  --background-alt: #edf2f7;
  
  /* Çeşitli */
  --border-color: #e2e8f0;
  --success-color: #38b2ac;
  --warning-color: #ed8936;
  --danger-color: #e53e3e;
  
  /* Gölgeler */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.05), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.05), 0 10px 10px rgba(0, 0, 0, 0.02);
  
  /* Geçişler ve Animasyonlar */
  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  
  /* Şekil ve Boyutlar */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-full: 9999px;

  /* Grid ve Spacing */
  --container-max-width: 1200px;
  --container-padding: 24px;
  --section-spacing: 100px;
  --card-spacing: 24px;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 10px */
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition-normal);
}

a:hover {
  color: var(--primary-dark);
}

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

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8em;
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.4rem;
}

p {
  margin-bottom: 1.6rem;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.content {
  min-height: 60vh;
}

/* Section Styling */
section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.8rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 2.8rem;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--border-radius-full);
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  box-shadow: var(--shadow-md);
  gap: 1rem;
  position: relative;
  z-index: 10;
  pointer-events: all;
}

/* Büyük servis ikonları için stil */
.service-icon-large {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(110, 23, 255, 0.15) 100%);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
}

.service-icon-large i {
  font-size: 15rem;
  color: var(--primary-color);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.service-icon-large:hover i {
  transform: scale(1.05);
  opacity: 1;
}

.btn:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
  position: relative;
  z-index: 10;
  pointer-events: all;
}

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

.btn-large {
  padding: 1.6rem 3.2rem;
  font-size: 1.8rem;
}

.btn-small {
  padding: 0.8rem 2rem;
  font-size: 1.4rem;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition-normal);
}

header.scrolled {
  padding: 0.8rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo h1 {
  font-size: 2.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary-color), #6e17ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  letter-spacing: -0.5px;
}

.main-menu ul {
  display: flex;
  gap: 3rem;
}

.main-menu li {
  position: relative;
}

.main-menu a {
  color: var(--text-dark);
  font-weight: 600;
  padding: 1rem 0;
  font-size: 1.6rem;
  position: relative;
  transition: color 0.3s ease;
}

.main-menu a:hover {
  color: var(--primary-color);
}

.main-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.main-menu a:hover::after {
  width: 100%;
}

.main-menu li.has-dropdown {
  position: relative;
}

.main-menu .dropdown-arrow {
  font-size: 1.2rem;
  margin-left: 0.5rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.main-menu li.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.main-menu a i {
  margin-right: 0.5rem;
  font-size: 1.4rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.main-menu a:hover i, .sub-menu a:hover i {
  opacity: 1;
  transform: scale(1.1);
  color: var(--primary-color);
}

.sub-menu a i {
  margin-right: 0.8rem;
  font-size: 1.3rem;
  color: var(--primary-color);
  opacity: 0.8;
  width: 20px;
  text-align: center;
}

.sub-menu a::before {
  display: none;
}

.sub-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  background: white;
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.main-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sub-menu li {
  margin: 0;
  width: 100%;
}

.sub-menu a {
  display: flex;
  align-items: center;
  padding: 1.2rem 1.8rem;
  font-size: 1.5rem;
  border-radius: var(--border-radius-md);
  width: 100%;
  transition: all 0.2s ease;
}

.sub-menu a::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 50%;
  margin-right: 10px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.2s ease;
}

.sub-menu a::after {
  display: none;
}

.sub-menu a:hover {
  background-color: var(--primary-light);
  color: var(--primary-color);
  transform: translateX(5px);
}

.sub-menu a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.4rem;
  cursor: pointer;
  color: var(--primary-color);
}

.contact-btn {
  margin-left: 2rem;
}

.contact-btn .btn {
  background: linear-gradient(90deg, var(--primary-color), #4e8cff);
  box-shadow: 0 4px 15px rgba(0, 102, 255, 0.2);
  border-radius: 30px;
  transition: all 0.3s ease;
}

.contact-btn .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  background: linear-gradient(170deg, var(--primary-light) 0%, rgba(255, 255, 255, 0.5) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 226, 172, 0.1), transparent 60%);
  z-index: 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  gap: 6rem;
}

.hero-text {
  flex: 1;
  max-width: 560px;
}

.badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-light);
  color: var(--primary-color);
  padding: 0.8rem 1.6rem;
  border-radius: var(--border-radius-full);
  margin-bottom: 2.4rem;
  font-weight: 600;
  font-size: 1.4rem;
  gap: 0.5rem;
}

.hero h1 {
  font-size: 5.4rem;
  margin-bottom: 2rem;
  line-height: 1.1;
}

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

.hero p {
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 3.2rem;
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.social-icons-floating {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.social-icon {
  position: absolute;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  background-color: white;
  padding: 1rem;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 5s ease-in-out infinite;
}

.social-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-icon.instagram {
  top: 15%;
  right: 15%;
  animation-delay: 0.5s;
}

.social-icon.twitter {
  top: 45%;
  right: 5%;
  animation-delay: 1.2s;
}

.social-icon.tiktok {
  bottom: 20%;
  right: 20%;
  animation-delay: 0.8s;
}

.cta-buttons {
  display: flex;
  gap: 1.6rem;
  margin-top: 3.2rem;
}

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

/* Services Section */
.services {
  background-color: var(--background-color);
  padding: var(--section-spacing) 0;
  position: relative;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3.2rem;
  margin-top: 5rem;
}

.service-card {
  background-color: var(--background-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: 3.2rem 2.4rem;
  transition: var(--transition-normal);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 102, 255, 0.05) 100%);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 8rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-light) 0%, rgba(110, 23, 255, 0.15) 100%);
  color: var(--primary-color);
  font-size: 3.2rem;
  border-radius: 20px;
  margin-bottom: 2.5rem;
  transition: all 0.3s ease;
}

.service-card h3 {
  font-size: 2.2rem;
  margin-bottom: 1.6rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 2.4rem;
  font-size: 1.6rem;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition-normal);
  font-size: 1.6rem;
  gap: 0.8rem;
}

.btn-service::after {
  content: '→';
  transition: var(--transition-normal);
}

.btn-service:hover {
  color: var(--primary-dark);
}

.btn-service:hover::after {
  transform: translateX(5px);
}

/* About Section */
.about {
  background-color: var(--background-light);
  padding: var(--section-spacing) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  margin-bottom: 6.4rem;
}

.stat-card {
  background-color: var(--background-color);
  padding: 3.2rem 2.4rem;
  text-align: center;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.8rem;
}

.stat-text {
  font-size: 1.6rem;
  color: var(--text-light);
  font-weight: 500;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.expertise-card {
  background-color: var(--background-color);
  padding: 3.2rem 2.4rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.expertise-icon {
  width: 5.6rem;
  height: 5.6rem;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin-bottom: 2.4rem;
}

.expertise-card h3 {
  font-size: 2.2rem;
  margin-bottom: 1.6rem;
  color: var(--text-dark);
}

.expertise-card p {
  color: var(--text-light);
  font-size: 1.6rem;
}

/* Testimonials */
.testimonials {
  background-color: var(--background-color);
  padding: var(--section-spacing) 0;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.03), transparent);
  z-index: 0;
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-bottom: 4.8rem;
}

.rating-summary .stars {
  color: var(--warning-color);
  font-size: 2.4rem;
  letter-spacing: 2px;
}

.rating-summary .rating {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-dark);
}

.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background-color: var(--background-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  padding: 3.2rem;
  flex: 1;
  min-width: 320px;
  max-width: 380px;
  margin: 0 auto;
  position: relative;
  transition: var(--transition-normal);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.testimonial:hover {
  box-shadow: var(--shadow-lg);
}

.testimonial-text {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 2.4rem;
  position: relative;
  color: var(--text-color);
}

.testimonial-text::before {
  content: '"';
  font-size: 6.4rem;
  line-height: 0;
  position: absolute;
  top: -1.6rem;
  left: -0.8rem;
  color: var(--primary-light);
  opacity: 0.6;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}

.testimonial-author h4 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
  font-weight: 700;
}

.testimonial-author span {
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 500;
}

.testimonial:nth-child(2) {
  animation-delay: 0.2s;
}

.testimonial:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  margin: 0 var(--container-padding);
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 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='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.cta-banner h2 {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  color: white;
}

.cta-banner p {
  font-size: 1.8rem;
  max-width: 600px;
  margin: 0 auto 3.2rem;
  color: rgba(255, 255, 255, 0.9);
}

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

.cta-banner .btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  z-index: 99;
  transition: var(--transition-normal);
}

.whatsapp-float:hover {
  transform: translateY(-5px);
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 1.2rem 2.4rem;
  border-radius: var(--border-radius-full);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  font-weight: 500;
  text-decoration: none;
  gap: 1rem;
}

.whatsapp-float img {
  width: 2.4rem;
  height: 2.4rem;
}

.whatsapp-float span {
  font-size: 1.4rem;
  white-space: nowrap;
}

/* Footer */
footer {
  background-color: var(--secondary-color);
  color: white;
  padding-top: 8rem;
  margin-top: 4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6.4rem;
  padding-bottom: 4.8rem;
}

.footer-info h2 {
  font-size: 2.8rem;
  margin-bottom: 2.4rem;
  color: white;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3.2rem;
  font-size: 1.6rem;
  max-width: 400px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  color: white;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.8rem;
}

.footer-column h3 {
  font-size: 1.8rem;
  margin-bottom: 2.4rem;
  color: white;
}

.footer-column li {
  margin-bottom: 1.2rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  transition: var(--transition-normal);
}

.footer-column a:hover {
  color: var(--primary-color);
}

.footer-btn {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 0;
  margin: 0;
  text-align: left;
  transition: var(--transition-normal);
  position: relative;
  z-index: 10;
  pointer-events: all;
}

.footer-btn:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
  display: flex;
  gap: 1.6rem;
}

.social-icon-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: var(--transition-normal);
  font-size: 1.8rem;
}

.social-icon-footer:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
}

.copyright a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  transition: var(--transition-normal);
}

.copyright a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  html {
    font-size: 58%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 56%;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 4rem;
  }

  .hero-text {
    max-width: 100%;
  }

  .cta-buttons {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 150px 0 80px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 54%;
  }

  .main-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100vh;
    background-color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    z-index: 1001;
    padding: 8rem 2.4rem 2.4rem;
    overflow-y: auto;
  }

  .main-menu.active {
    left: 0;
  }

  .main-menu ul {
    flex-direction: column;
    gap: 0;
  }

  .main-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .main-menu a {
    display: flex;
    align-items: center;
    padding: 1.6rem 0;
  }

  .main-menu a i {
    width: 25px;
    margin-right: 1.2rem;
    font-size: 1.8rem;
  }

  .mobile-menu-toggle {
    display: block;
    z-index: 1002;
  }

  .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    box-shadow: none;
    background-color: var(--background-light);
    border-radius: 0;
    padding: 0 0 0 3rem;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border: none;
    margin: 0;
  }

  .main-menu li:hover .sub-menu, .main-menu li.active .sub-menu {
    max-height: 1000px;
  }

  .sub-menu a {
    padding: 1.4rem 1.5rem;
    font-size: 1.5rem;
    border-radius: var(--border-radius-md);
    margin: 0.5rem 0;
  }

  .sub-menu a:hover {
    transform: none;
    background-color: var(--primary-light);
  }

  .dropdown-arrow {
    margin-left: auto !important;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 2.4rem;
  }
}

@media (max-width: 576px) {
  section {
    padding: 60px 0;
  }

  .hero {
    padding: 140px 0 60px;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

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

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 6rem 2rem;
  }

  .whatsapp-float {
    bottom: 2rem;
    right: 2rem;
  }

  .whatsapp-float a {
    padding: 1rem;
  }

  .whatsapp-float span {
    display: none;
  }
}

/* İletişim Sayfası Stilleri */
.contact {
  padding: 6rem 0;
  background-color: var(--background-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info h2 {
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.contact-info h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 6rem;
  height: 0.3rem;
  background-color: var(--primary-color);
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.4rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  transition: var(--transition-normal);
  border-left: 3px solid var(--primary-color);
}

.info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50%;
  margin-right: 1.6rem;
  font-size: 2rem;
  flex-shrink: 0;
}

.info-item div {
  flex: 1;
}

.info-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  color: var(--text-dark);
}

.info-item p {
  margin-bottom: 0;
  font-size: 1.6rem;
  color: var(--text-color);
  word-break: break-word;
}

.social-contact {
  margin-top: 1rem;
}

.social-contact h3 {
  font-size: 1.8rem;
  margin-bottom: 1.6rem;
}

.contact-form-container {
  background-color: var(--background-color);
  padding: 4rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-container h2 {
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.contact-form-container h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 6rem;
  height: 0.3rem;
  background-color: var(--primary-color);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-group label {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 1.2rem 1.6rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  font-size: 1.6rem;
  color: var(--text-color);
  background-color: var(--background-light);
  transition: var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.1);
}

.form-privacy {
  flex-direction: row;
  align-items: center;
}

.form-privacy input {
  width: 1.8rem;
  height: 1.8rem;
}

.form-privacy label {
  font-size: 1.4rem;
  color: var(--text-light);
}

.form-submit {
  margin-top: 1rem;
}

/* Medya sorguları */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 3rem;
  }
}

@media (max-width: 576px) {
  .contact-form-container {
    padding: 2rem;
  }
  
  .info-item {
    gap: 1.5rem;
  }
  
  .info-item i {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.8rem;
  }
}

/* Hakkımızda Sayfası Stilleri */
.about-us {
  padding: 8rem 0;
  background-color: var(--background-color);
  position: relative;
  overflow: hidden;
}

.about-us::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 102, 255, 0.05), transparent 60%);
  z-index: 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-text h2 {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 8rem;
  height: 0.4rem;
  background: linear-gradient(90deg, var(--primary-color), #6e17ff);
  border-radius: 5px;
}

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

.values {
  padding: 8rem 0;
  background-color: var(--background-light);
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 5rem;
}

.values .expertise-card {
  background-color: var(--background-color);
  padding: 3.5rem 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
}

.values .expertise-card:hover {
  transform: translateY(-10px);
  border-bottom: 4px solid var(--primary-color);
}

.values .expertise-icon {
  width: 7rem;
  height: 7rem;
  background: linear-gradient(135deg, var(--primary-light), rgba(110, 23, 255, 0.15));
  color: var(--primary-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  margin-bottom: 2.5rem;
  transition: all 0.3s ease;
}

.values .expertise-card:hover .expertise-icon {
  background: linear-gradient(135deg, var(--primary-color), #6e17ff);
  color: white;
  transform: rotateY(180deg);
}

.values .expertise-card h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

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

.team {
  padding: 8rem 0;
  background-color: var(--background-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 4rem;
  margin-top: 5rem;
}

.team-member {
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.member-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.member-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.7));
  z-index: 1;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.1);
}

.team-member h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 2.5rem 2.5rem 0.5rem;
  color: var(--text-dark);
}

.member-position {
  font-size: 1.6rem;
  color: var(--primary-color);
  font-weight: 600;
  margin: 0 2.5rem 1.5rem;
}

.member-description {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0 2.5rem 2.5rem;
}

.member-social {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem 2.5rem 2.5rem;
}

.member-social a {
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--background-color);
  color: var(--primary-color);
  font-size: 1.6rem;
  transition: all 0.3s ease;
}

.member-social a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.milestones {
  padding: 8rem 0;
  background-color: var(--background-light);
  position: relative;
}

.milestone-timeline {
  max-width: 800px;
  margin: 6rem auto 0;
  position: relative;
  padding: 3rem 0;
}

.milestone-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), #6e17ff);
  border-radius: 4px;
}

.milestone {
  display: flex;
  margin-bottom: 6rem;
  position: relative;
}

.milestone:last-child {
  margin-bottom: 0;
}

.milestone:nth-child(odd) {
  justify-content: flex-start;
  padding-right: 50%;
}

.milestone:nth-child(even) {
  justify-content: flex-end;
  padding-left: 50%;
}

.milestone-year {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), #6e17ff);
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.milestone-content {
  background-color: var(--background-color);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  width: calc(100% - 6rem);
  position: relative;
  transition: all 0.3s ease;
}

.milestone-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.milestone-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.milestone-content p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 0;
}

.milestone:nth-child(odd) .milestone-content::after {
  content: '';
  position: absolute;
  top: 20px;
  right: -10px;
  width: 20px;
  height: 20px;
  background-color: var(--background-color);
  transform: rotate(45deg);
  box-shadow: 5px -5px 10px rgba(0, 0, 0, 0.05);
}

.milestone:nth-child(even) .milestone-content::after {
  content: '';
  position: absolute;
  top: 20px;
  left: -10px;
  width: 20px;
  height: 20px;
  background-color: var(--background-color);
  transform: rotate(45deg);
  box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive Styles for About Page */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-image {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .milestone-timeline::before {
    left: 40px;
  }
  
  .milestone {
    flex-direction: column;
    padding: 0 0 0 80px !important;
    justify-content: flex-start !important;
  }
  
  .milestone-year {
    left: 40px;
    transform: translateX(-50%);
    width: 6rem;
    height: 6rem;
    font-size: 1.6rem;
  }
  
  .milestone-content {
    width: 100%;
  }
  
  .milestone:nth-child(odd) .milestone-content::after,
  .milestone:nth-child(even) .milestone-content::after {
    left: -10px;
    top: 20px;
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.05);
  }
}

@media (max-width: 576px) {
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .values .expertise-card {
    padding: 2.5rem 2rem;
  }
  
  .milestone-content {
    padding: 2rem;
  }
  
  .milestone-year {
    width: 5rem;
    height: 5rem;
    font-size: 1.4rem;
  }
}

/* About Features Section */
.about-features {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--background-light);
  border-radius: var(--border-radius-md);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.feature-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-item i {
  font-size: 2.8rem;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.feature-item h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature-item p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 0;
}

/* Stats Counter Section */
.stats-counter {
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--primary-color), #6e17ff);
  position: relative;
  overflow: hidden;
}

.stats-counter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.1;
}

.stats-counter .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.stats-counter .stat-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  color: white;
}

.stats-counter .stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.15);
}

.stats-counter .stat-icon {
  font-size: 3.6rem;
  margin-bottom: 1.5rem;
  color: white;
  opacity: 0.9;
}

.stats-counter .stat-number {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, white, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats-counter .stat-text {
  font-size: 1.6rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

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

@media (max-width: 576px) {
  .stats-counter .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-item {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  
  .feature-item i {
    font-size: 2.4rem;
  }
}

/* Hizmetler Sayfası Stilleri */
.services-overview {
  padding: 6rem 0;
}

.service-category {
  margin-bottom: 6rem;
}

.service-category h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.service-category h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 0;
  width: 6rem;
  height: 0.3rem;
  background: linear-gradient(90deg, var(--primary-color), #6e17ff);
  border-radius: 5px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3rem;
}

.service-card {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 3.5rem 3rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(110, 23, 255, 0.05) 100%);
  z-index: -1;
  transition: all 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid var(--primary-color);
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--primary-color) 0%, #6e17ff 100%);
  color: white;
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.service-card h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

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

.service-card p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1.6rem;
  gap: 0.8rem;
  position: relative;
}

.btn-service::after {
  content: '→';
  transition: all 0.3s ease;
}

.btn-service:hover {
  color: #6e17ff;
}

.btn-service:hover::after {
  transform: translateX(5px);
}

.process {
  padding: 8rem 0;
  background-color: var(--background-light);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(0, 102, 255, 0.05), transparent 70%);
  z-index: 0;
}

.process-steps {
  margin-top: 6rem;
  position: relative;
  z-index: 1;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  height: 100%;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-color), #6e17ff);
  z-index: -1;
}

.process-step {
  display: flex;
  margin-bottom: 5rem;
  align-items: flex-start;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 6rem;
  height: 6rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--primary-color), #6e17ff);
  border-radius: 50%;
  margin-right: 3rem;
  box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
  position: relative;
  z-index: 2;
}

.step-content {
  background-color: white;
  padding: 2.5rem 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  flex: 1;
  transition: all 0.3s ease;
}

.process-step:hover .step-content {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.step-content p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 0;
}

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

@media (max-width: 768px) {
  .process-steps::before {
    left: 29px;
  }
  
  .step-number {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: 1.5rem;
    margin-right: 0;
  }
  
  .process-steps::before {
    display: none;
  }
}

/* Referencias Sayfası Stilleri */
.references {
  padding: 80px 0;
  background-color: var(--background-light);
}

.reference-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 4rem;
}

.category-btn {
  padding: 1rem 2rem;
  background-color: var(--background-color);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-full);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-color);
  cursor: pointer;
  transition: var(--transition-normal);
}

.category-btn:hover, .category-btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.reference-item {
  background-color: var(--background-color);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  transform: translateY(0);
}

.reference-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.reference-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.reference-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-normal);
}

.reference-item:hover .reference-image img {
  transform: scale(1.05);
}

.reference-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: var(--transition-normal);
}

.reference-item:hover .reference-overlay {
  opacity: 1;
}

.reference-platform {
  background-color: rgba(255,255,255,0.2);
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius-full);
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(5px);
}

.reference-platform i {
  margin-right: 0.6rem;
  font-size: 1.4rem;
}

.reference-overlay h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.reference-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.reference-link {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transform: translateX(0);
  transition: var(--transition-normal);
}

.reference-link:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.reference-link::after {
  content: '→';
  margin-left: 0.6rem;
  transition: var(--transition-normal);
}

.reference-link:hover::after {
  transform: translateX(3px);
}

/* Testimonial Cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.testimonial-card {
  background-color: var(--background-color);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.8rem;
}

.testimonial-avatar {
  width: 8rem;
  height: 8rem;
  overflow: hidden;
  border-radius: 50%;
  border: 3px solid var(--primary-light);
  margin-right: 1.5rem;
  box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.2);
  position: relative;
  z-index: 2;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.testimonial:hover .testimonial-avatar img {
  transform: scale(1.1);
}

.testimonial-info h3 {
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
}

.testimonial-platform {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.testimonial-platform i {
  margin-right: 0.6rem;
  color: var(--primary-color);
}

.testimonial-info .stars {
  color: #ffba08;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
}

.testimonial-text {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--text-color);
  font-style: italic;
  position: relative;
  padding-left: 2rem;
}

.testimonial-text::before {
  content: """;
  position: absolute;
  left: 0;
  top: -1rem;
  font-size: 4rem;
  color: var(--primary-light);
  font-family: Georgia, serif;
  line-height: 1;
}

/* Ana Sayfa Referanslar Bölümü */
.references-showcase {
  padding: 80px 0;
  background-color: var(--background-light);
  position: relative;
}

.references-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--primary-light) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  z-index: 0;
}

.reference-slider {
  margin: 5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 300px;
}

.reference-slide {
  position: absolute;
  width: 50%;
  max-width: 400px;
  opacity: 0;
  transition: var(--transition-slow);
  transform: translateX(50px);
  padding: 0 1.5rem;
}

.reference-slide:first-child {
  opacity: 1;
  transform: translateX(0);
}

.reference-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background-color: rgba(255,255,255,0.9);
  color: var(--text-dark);
  padding: 0.8rem 1.5rem;
  border-radius: var(--border-radius-full);
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(5px);
}

.reference-badge i {
  margin-right: 0.8rem;
  font-size: 1.6rem;
  color: var(--primary-color);
}

.reference-more {
  text-align: center;
  margin-top: 4rem;
}

@media (max-width: 992px) {
  .reference-slider {
    height: 250px;
  }
  
  .reference-slide {
    width: 70%;
  }
}

@media (max-width: 768px) {
  .reference-categories {
    flex-direction: column;
    gap: 1rem;
  }

  .reference-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .reference-slider {
    height: 200px;
  }
  
  .reference-slide {
    width: 80%;
  }
}

@media (max-width: 576px) {
  .reference-grid {
    grid-template-columns: 1fr;
  }
  
  .reference-slide {
    width: 100%;
  }
}

/* Yeni eklenen bilgi kartı stilleri */
.reference-info {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border-color);
}

.info-card {
  background-color: var(--background-color);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary-color);
}

.info-card h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.info-card p {
  margin-bottom: 1.5rem;
}

.info-card ol {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.info-card li {
  margin-bottom: 1rem;
  list-style-type: decimal;
}

.no-references {
  background-color: var(--background-light);
  padding: 4rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  border: 2px dashed var(--border-color);
}

.no-references p {
  font-size: 1.8rem;
  color: var(--text-light);
}

/* Sık Sorulan Sorular (FAQ) Bölümü */
.faq {
  padding: 80px 0;
  background-color: var(--background-light);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(var(--primary-light) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.3;
  z-index: 0;
}

.faq .container {
  position: relative;
  z-index: 1;
}

.faq-list {
  margin-top: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  margin-bottom: 2rem;
  border-radius: var(--border-radius-md);
  background-color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.accordion-header {
  padding: 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  transition: all 0.3s ease;
  position: relative;
}

.accordion-header h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  padding-right: 3rem;
  transition: all 0.3s ease;
}

.accordion-header .icon {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--primary-color);
  background-color: rgba(var(--primary-rgb), 0.1);
  transition: all 0.3s ease;
}

.accordion-header:hover {
  background-color: rgba(var(--primary-rgb), 0.05);
}

.accordion-header:hover h3 {
  color: var(--primary-color);
}

.accordion-header.active {
  background-color: rgba(var(--primary-rgb), 0.1);
}

.accordion-header.active h3 {
  color: var(--primary-dark);
}

.accordion-header.active .icon {
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--primary-color);
  color: white;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.2s ease;
  padding: 0 2rem;
  background-color: #fff;
}

.accordion-content p {
  padding: 0;
  margin: 0;
  padding-bottom: 2rem;
  color: var(--text-color);
  line-height: 1.7;
  font-size: 1.6rem;
}

.accordion-header.active + .accordion-content {
  padding-top: 1rem;
}

@media (max-width: 768px) {
  .accordion-header h3 {
    font-size: 1.6rem;
  }
  
  .accordion-content p {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .accordion-header {
    padding: 1.5rem;
  }
  
  .accordion-header h3 {
    font-size: 1.5rem;
    padding-right: 2.5rem;
  }
  
  .accordion-header .icon {
    right: 1.5rem;
    width: 25px;
    height: 25px;
  }
  
  .accordion-content {
    padding: 0 1.5rem;
  }
  
  .accordion-content p {
    font-size: 1.4rem;
  }
} 

/* Ana sayfa testimonial stilleri */
.testimonials-slider .testimonial {
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: center;
}

.testimonials-slider .testimonial-avatar {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  border: 3px solid var(--primary-light);
  box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.15);
}

.testimonials-slider .testimonial-text {
  margin-top: 0;
  padding-top: 0;
  text-align: center;
}

.testimonials-slider .testimonial-author {
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

/* Responsiveness for testimonials */
@media (max-width: 768px) {
  .testimonial-avatar {
    width: 6rem;
    height: 6rem;
  }
  
  .testimonials-slider .testimonial-avatar {
    width: 7rem;
    height: 7rem;
  }
}

@media (max-width: 576px) {
  .testimonial-avatar {
    width: 5rem;
    height: 5rem;
  }
  
  .testimonials-slider .testimonial-avatar {
    width: 6rem;
    height: 6rem;
    margin-bottom: 1.5rem;
  }
} 

/* İletişim bölümü stilleri */
.contact-cta {
    background-color: #f8f9fa;
    padding: 60px 0;
    margin-top: 40px;
}

.contact-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 280px;
    justify-content: center;
}

.contact-option i {
    font-size: 24px;
    margin-right: 10px;
}

.contact-option.whatsapp {
    background-color: #25D366;
}

.contact-option.whatsapp:hover {
    background-color: #128C7E;
}

.contact-option.phone {
    background-color: #007bff;
}

.contact-option.phone:hover {
    background-color: #0056b3;
}

.contact-option.mail {
    background-color: #6c757d;
}

.contact-option.mail:hover {
    background-color: #495057;
}

/* CTA Banner Stilleri */
.cta-banner {
    background-color: #4e73df;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.cta-banner h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-banner .btn-large {
    background-color: white;
    color: #4e73df;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-banner .btn-large:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}