body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
}



.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5em 2em;
  background: linear-gradient(to right, #e0f7fa, #f0fdf4);
  flex-wrap: wrap;
  gap: 2em;
}

.hero-left {
  flex: 1 1 50%;
  min-width: 320px;
}

.hero-left h1 {
  font-size: 2.4em;
  color: #1e293b;
  font-weight: 700;
  margin-bottom: 0.6em;
}

.hero-left h1 .highlight {
  color: #0ea5e9;
  background: #e0f2fe;
  padding: 0.2em 0.4em;
  border-radius: 4px;
}

.hero-left p {
  font-size: 1.05em;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 1.5em;
}

.hero-actions {
  display: flex;
  gap: 1.2em;
  flex-wrap: wrap;
  align-items: center;
}

.whatsapp-btn {
  background: #10b981;
  color: white;
  padding: 0.75em 1.5em;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}

.whatsapp-btn:hover {
  background: #059669;
  transform: scale(1.05);
}

.phone-number {
  font-size: 1.1em;
  color: #1f2937;
  font-weight: 600;
}

.hero-right {
  flex: 1 1 45%;
  min-width: 280px;
  text-align: center;
}

.hero-right img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomFade {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* ✅ Mobil görünüm */
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    padding: 3em 1.5em;
    text-align: center;
  }

  .hero-left {
    flex: 1 1 100%;
  }

  .hero-left h1 {
    font-size: 1.9em;
  }

  .hero-left p {
    font-size: 1em;
    margin-bottom: 1.2em;
  }

  .hero-actions {
    justify-content: center;
  }

  .phone-number {
    font-size: 1em;
  }

  .hero-right {
    flex: 1 1 100%;
    margin-top: 2em;
  }
}







/* Info Cards */
.info-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2em;
  padding: 4em 2em;
  background: #ffffff; /* Beyaz arka plan */
}

/* Kartlar */
.info-card {
  background: #ffffff;
  padding: 2em;
  border-radius: 16px;
  width: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover animasyonu */
.info-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* Başlık */
.info-card h3 {
  color: #1e40af;
  margin-bottom: 0.6em;
  font-size: 1.2em;
}

/* Açıklama */
.info-card p {
  color: #4b5563;
  font-size: 0.95em;
  line-height: 1.5em;
}

/* Fotoğraflı kart */
.info-card.with-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Hover olduğunda resim de büyüsün */
.info-card.with-image:hover img {
  transform: scale(1.1);
}

/* Giriş animasyonu */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gecikmeler */
.animated.delay-1 {
  animation-delay: 0.1s;
}
.animated.delay-2 {
  animation-delay: 0.3s;
}
.animated.delay-3 {
  animation-delay: 0.5s;
}






.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 5em 2em;
  background: linear-gradient(to right, #f0f9ff, #fefce8);
  flex-wrap: wrap;
}

/* Animasyonlu giriş */
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.about-left {
  flex: 1 1 40%;
  position: relative;
  text-align: center;
}

.about-left img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  top: -25px;
  left: -25px;
  background: #f97316;
  color: white;
  padding: 1.2em;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  animation: popIn 1s ease forwards;
}

.experience-badge span {
  font-size: 2em;
  font-weight: bold;
}

.experience-badge p {
  font-size: 0.85em;
  margin: 0;
}

.about-right {
  flex: 1 1 55%;
}

.about-right h2 {
  color: #0ea5e9;
  font-size: 1rem;
  margin-bottom: 0.6em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-right h3 {
  font-size: 2em;
  margin-bottom: 1em;
  color: #1f2937;
}

.about-right p {
  font-size: 1.05em;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2em;
}

.rating-area {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.rating-area .stars {
  font-size: 1.6em;
  color: #fbbf24;
}

.rating-area .score strong {
  font-size: 2em;
  color: #0f172a;
}

.rating-area .score span {
  font-size: 0.9em;
  color: #6b7280;
}

/* Badge animasyonu */
@keyframes popIn {
  0% {
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobil uyum */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding: 3em 1em;
    text-align: center;
  }

  .about-left,
  .about-right {
    max-width: 100%;
  }

  .about-right h3 {
    font-size: 1.6em;
  }

  .about-right p {
    font-size: 1em;
  }

  .rating-area {
    flex-direction: column;
    gap: 0.5rem;
  }

  .experience-badge {
    position: static;
    margin-bottom: 1.2rem;
  }
}








/* Hizmet kalitemiz */
.stats-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2.5em;
  padding: 4em 1.5em;
  background: linear-gradient(to right, #333c49, #0f172a);
  animation: fadeInStats 1s ease-in-out;
}

.stats-left,
.stats-right {
  flex: 1 1 400px;
  max-width: 500px;
}

/* Animasyonla giriş (sağ & sol) */
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 1s ease forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.stat-box {
  background: white;
  padding: 1.8em;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-6px);
}

.stat-box h2 {
  font-size: 2.2em;
  color: #1e293b;
  margin-bottom: 0.3em;
}

.stat-box p {
  font-size: 0.95em;
  color: #475569;
}

.section-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 0.4em;
}

.section-desc {
  color: #ffffff;
  font-size: 1em;
  margin-bottom: 2em;
  line-height: 1.6;
}

.progress-group {
  margin-bottom: 1.6em;
}

.progress-group span {
  display: block;
  margin-bottom: 0.4em;
  font-weight: 600;
  color: #ffffff;
}

.progress-bar {
  background: #e2e8f0;
  border-radius: 30px;
  overflow: hidden;
  height: 20px;
}

.progress-bar div {
  background: linear-gradient(to right, #3b82f6, #06b6d4);
  height: 100%;
  text-align: right;
  padding-right: 0.6em;
  color: white;
  font-weight: 700;
  font-size: 0.85em;
  line-height: 20px;
  border-radius: 30px;
  animation: growBar 1.2s ease-in-out;
}

/* Genel Animasyonlar */
@keyframes fadeInStats {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes growBar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.animated-fade-up {
  opacity: 0;
  animation: fadeUpText 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUpText {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobil uyum */
@media (max-width: 768px) {
  .stats-values {
    flex-direction: column;
    align-items: center;
    padding: 3em 1em;
  }

  .stats-left,
  .stats-right {
    max-width: 100%;
  }

  .stat-box h2 {
    font-size: 1.8em;
  }

  .stat-box p {
    font-size: 0.9em;
  }

  .section-title {
    font-size: 1.5em;
    text-align: center;
  }

  .section-desc {
    font-size: 0.95em;
    text-align: center;
  }

  .progress-bar div {
    font-size: 0.8em;
  }
}









/* Hizmet bölgeleri ve araçlar */
.service-areas {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5em 3em;
  background: linear-gradient(to right, #e9f6fe, #f3f4ff);
  gap: 3em;
  flex-wrap: wrap;
  overflow: hidden;
}

.service-content {
  flex: 1 1 50%;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.service-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
}

.service-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.service-image img:hover {
  transform: scale(1.03);
}

.section-title {
  font-size: 1.9em;
  color: #111827; /* SİYAH */
  margin-bottom: 0.4em;
  font-weight: 700;
}

.section-desc {
  color: #1f2937; /* KOYU */
  font-size: 1.05em;
  margin-bottom: 2em;
  line-height: 1.7;
}

.service-lists {
  display: flex;
  gap: 2em;
  margin-bottom: 2em;
  flex-wrap: wrap;
}

.list-column {
  flex: 1;
  background: #ffffff;
  padding: 1.5em;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.list-column:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.list-column h4 {
  margin-bottom: 0.8em;
  color: #1e3a8a;
  font-weight: 600;
  font-size: 1.2em;
}

.list-column ul {
  list-style: none;
  padding-left: 0;
}

.list-column li {
  margin-bottom: 0.6em;
  font-size: 0.95em;
  color: #334155;
  display: flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.list-column li:hover {
  transform: scale(1.02);
}

/* Animasyonlar */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

.zoom-in {
  animation: zoomIn 0.8s ease forwards;
  opacity: 0;
}

@keyframes zoomIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}






/*  Müşteri yorumları  */
.testimonial-section {
  padding: 3em 1em;
  background-color: #f9fafb;
  text-align: center;
}

.testimonial-heading {
  font-size: 1.8em;
  color: #111827;
  margin-bottom: 0.3em;
}

.testimonial-subtext {
  font-size: 0.95em;
  color: #6b7280;
  margin-bottom: 2em;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  flex-wrap: wrap;
}

.testimonial-card {
  flex: 0 0 30%;
  background: #ffffff;
  padding: 1.2em;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
  font-size: 0.9em;
  line-height: 1.5em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.testimonial-card.delay-1 {
  animation-delay: 0.2s;
}

.testimonial-card.delay-2 {
  animation-delay: 0.4s;
}

.author {
  display: flex;
  align-items: center;
  margin-top: 1em;
  gap: 0.8em;
  justify-content: center;
}

.author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.author strong {
  font-size: 0.85em;
  color: #111827;
}

.author span {
  font-size: 0.75em;
  color: #6b7280;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ✅ Mobil görünüm için */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
    font-size: 1em;
    padding: 1.5em;
  }

  .testimonial-container {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-heading {
    font-size: 1.5em;
  }

  .testimonial-subtext {
    font-size: 0.9em;
  }

  .author {
    flex-direction: column;
    gap: 0.4em;
  }
}





/* Soru cevap kısmı */
.faq-section {
  background: linear-gradient(to right, #f8fafc, #f1f5f9);
  padding: 4em 2em;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.faq-title {
  font-size: 2em;
  color: #1e293b;
  margin-bottom: 0.5em;
}

.faq-subtext {
  color: #64748b;
  font-size: 1em;
  margin-bottom: 2.5em;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5em;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-card {
  padding: 1.6em;
  border-radius: 12px;
  color: white;
  background: #4f46e5;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease;
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
}

.faq-card:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Kart renkleri */
.color1 {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
}

.color2 {
  background: linear-gradient(135deg, #0ea5e9, #38bdf8);
}

.color3 {
  background: linear-gradient(135deg, #16a34a, #4ade80);
}

.color4 {
  background: linear-gradient(135deg, #db2777, #ec4899);
}

.color5 {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.color6 {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.color7 {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.color8 {
  background: linear-gradient(135deg, #f43f5e, #fb7185);
}

.faq-question {
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.faq-answer {
  font-size: 0.95em;
}

/* Fade-in animasyon */
@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}




