/* Genel */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; background: #f8f9fc; color: #333; line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Navbar */
.navbar { background: #1a1a2e; padding: 1rem 0; position: sticky; top: 0; z-index: 100; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 700; color: #fff; }
.logo span { color: #00d4ff; }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a { color: #fff; text-decoration: none; font-weight: 500; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: #00d4ff; }
.menu-toggle { display: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); color: #fff; text-align: center; padding: 120px 20px; position: relative; overflow: hidden; }
.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.gradient-text { background: linear-gradient(45deg, #00d4ff, #00ff88); -webkit-background-clip: text; color: transparent; }
.hero p { max-width: 800px; margin: 0 auto 2rem; font-size: 1.1rem; opacity: 0.9; }
.btn-primary { background: #00d4ff; color: #fff; padding: 12px 30px; border: none; border-radius: 50px; font-weight: 600; text-decoration: none; display: inline-block; transition: 0.3s; }
.btn-primary:hover { background: #00b0d4; transform: translateY(-3px); }
.wave { position: absolute; bottom: 0; left: 0; width: 100%; height: 100px; background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V60C300,120,900,0,1200,60V0Z" fill="%23f8f9fc"/></svg>') no-repeat; background-size: cover; }

/* Grid & Cards */
.grid, .ref-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 2rem; }
.card, .ref-card, .service-item { background: #fff; padding: 2rem; border-radius: 12px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; transition: 0.3s; }
.card:hover, .ref-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.ref-card { font-weight: 600; font-size: 1.1rem; }

/* Sections */
section { padding: 80px 0; }
h1 { color: #ffffff; }

h2 {
  color: #00c6ff; /* örnek mavi tonu */
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.2rem;
}

h3 {
  color: #00c6ff; /* açık gri tonu */
}

h2 { text-align: center; margin-bottom: 3rem; font-size: 2.2rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; margin-bottom: 1rem; border: 1px solid #ddd; border-radius: 8px; font-family: inherit; }
.contact-form button { width: 100%; }

/* Footer */
footer { background: #1a1a2e; color: #aaa; text-align: center; padding: 2rem 0; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; width: 100%; background: #1a1a2e; padding: 1rem 0; }
  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }
  .hero h1 { font-size: 2.2rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
/* Hizmetler Grid - 6 Kutu */
/* Hizmetler Grid - 5 Kutu */
.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

/* Split Section */
.about-split {
  background: #fff;
  padding: 100px 0;
}
.split-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
}
.split-text p {
  margin-bottom: 1rem;
  color: #555;
}
.btn-outline {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid #00d4ff;
  color: #00d4ff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: 0.3s;
}
.btn-outline:hover {
  background: #00d4ff;
  color: #fff;
}
.split-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Referans Slider */
.references-slider {
  padding: 80px 0;
  background: #f8f9fc;
}
/* Referans Slider - Görsel Boyutu */
.swiper-slide img {
  width: 200px;
  height: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s;
  padding: 10px;
}
.swiper-slide img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.swiper-pagination-bullet-active {
  background: #00d4ff;
}

/* Süreç Adımları */
.process {
  background: #fff;
  padding: 100px 0;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}
.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #00d4ff, #00ff88);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 {
  margin-bottom: 0.5rem;
  color: #1a1a2e;
}

/* Blog */
.blog-preview {
  padding: 100px 0;
  background: #f8f9fc;
}
.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.blog-content {
  padding: 1.5rem;
}
.blog-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #1a1a2e;
}
.read-more {
  color: #00d4ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.read-more:hover {
  text-decoration: underline;
}
/* Footer */
.footer {
  background: #1a1a2e;
  color: #ccc;
  padding: 80px 0 20px;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  position: relative;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: #00d4ff;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.8rem;
}
.footer-col a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}
.footer-col a:hover {
  color: #00d4ff;
}
.logo-footer {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.logo-footer span {
  color: #00d4ff;
}
.social-links {
  margin-top: 1.5rem;
}
.social-links a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background: #2a2a3e;
  color: #aaa;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 0.9rem;
  transition: 0.3s;
}
.social-links a:hover {
  background: #00d4ff;
  color: #fff;
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  color: #777;
  font-size: 0.9rem;
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.page-hero p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Vision & Mission */
.vision-mission {
  padding: 80px 0;
  background: #f8f9fc;
}
.vm-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: center;
  transition: 0.3s;
}
.vm-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.vm-card .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #00d4ff, #00ff88);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* Story Section */
.story-section {
  padding: 100px 0;
  background: #fff;
}
.story-section .split-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #1a1a2e;
}
.stats-inline {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.stats-inline > div {
  text-align: center;
  min-width: 80px;
}
.stats-inline strong {
  display: block;
  font-size: 1.8rem;
  color: #00d4ff;
}

/* Team */
.team {
  padding: 100px 0;
  background: #f8f9fc;
  text-align: center;
}
.section-desc {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #555;
  font-size: 1.1rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.team-card:hover {
  transform: translateY(-10px);
}
.team-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.team-card h4 {
  margin: 1rem 0 0.3rem;
  color: #1a1a2e;
}
.team-card p {
  color: #00d4ff;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Values */
.values {
  padding: 100px 0;
  background: #fff;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.value-item {
  text-align: center;
  padding: 1.5rem;
}
.value-icon {
  width: 60px;
  height: 60px;
  background: #f0f8ff;
  color: #00d4ff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 2px solid #00d4ff;
}
.value-item h4 {
  margin-bottom: 0.8rem;
  color: #1a1a2e;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #00d4ff, #00ff88);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.cta-section p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}
/* Hizmet Detayları */
.services-detail {
  padding: 80px 0;
}
.service-item-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
  align-items: center;
}
.service-item-full.reverse {
  direction: rtl;
}
.service-item-full.reverse > * {
  direction: ltr;
}
.service-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.service-img img:hover {
  transform: scale(1.02);
}
.service-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
}
.service-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #444;
}
.service-content ul {
  list-style: none;
  margin-bottom: 2rem;
}
.service-content ul li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.8rem;
  color: #555;
}
.service-content ul li::before {
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: 700;
}
.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #00d4ff;
  color: #00d4ff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn-outline:hover {
  background: #00d4ff;
  color: #fff;
  transform: translateY(-3px);
}
/* Referanslar Grid - 4'lü Bloklar */
.references-grid {
  padding: 100px 0;
  background: #f8f9fc;
  text-align: center;
}
.references-grid h2 {
  margin-bottom: 3rem;
  font-size: 2.2rem;
  color: #1a1a2e;
}
.ref-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.ref-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
}
.ref-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.ref-card img {
  max-width: 180px;
  max-height: 90px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s;
}
.ref-card img:hover {
  filter: grayscale(0%);
}

/* Başarı Hikayeleri */
.success-stories {
  padding: 100px 0;
  background: #fff;
}
.success-stories h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #1a1a2e;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.story-card {
  background: #f8f9fc;
  padding: 2rem;
  border-radius: 16px;
  border-left: 5px solid #00d4ff;
  transition: 0.3s;
}
.story-card:hover {
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.story-card h3 {
  margin-bottom: 0.8rem;
  color: #1a1a2e;
}
.story-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.tag {
  display: inline-block;
  background: #00d4ff;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* İstatistikler */
.stats-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item h3 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #00d4ff, #00ff88);
  -webkit-background-clip: text;
  color: transparent;
}
.stat-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
  .ref-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .ref-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .ref-card {
    height: 140px;
  }
  .ref-card img {
    max-width: 150px;
    max-height: 70px;
  }
}





.services-preview {
  text-align: center;
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.services-grid .card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.services-grid .card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
}

.service-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.services-grid h3 {
  color: #00c853; /* marka yeşili */
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.services-grid p {
  color: #cccccc;
  font-size: 0.95rem;
}










/* Responsive */
@media (max-width: 992px) {
  .service-item-full, .service-item-full.reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .service-img {
    order: -1;
  }
  .service-content ul {
    text-align: left;
    display: inline-block;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .split-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .split-image {
    order: -1;
  }
}