.site-info {
    padding: 0.1em 10%;
}

.footer-widgets-wrapper {
    padding: 0.1em 0.1%;
}

.site-content {
    padding: 0.2em 0.1%;
}

	.front-testimonials,
	.footer-widgets-wrapper,
	.recent-posts-wrapper,
	.site-branding-wrapper,
	.top-bar-wrapper,
	.site-content,
	.page-template-front-page .site-main > .hentry:first-of-type,
	.page-template-full-width-page-php .site-content,
	.site-content .full-width-widget-area,
	.header-widget-area .header-widget-area-wrapper {
		margin-left: auto;
		margin-right: auto;
		max-width: 95%;
	}


.site-branding {
		float: left;
		display: inline-block;
		margin-right: 1.6em;
		min-width: 33%;
		padding: 0.3em 0;
	}






/* SMD */

/* GENEL KUTU */
.smd-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 10px 40px;
  font-family: inherit;
  line-height: 1.7;
}

/* ÜST BAŞLIK BÖLÜMÜ */
.smd-top {
  margin-bottom: 40px;
}

.smd-top h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 10px;
}

.smd-top .smd-subtitle {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 18px;
}

/* Açıklama: sola hizalı, ama ortadaki kutu içinde */
.smd-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  font-size: 17px;
  color: #444;
}

/* BÖLÜM BAŞLIKLARI (Neden Arastatek, Kapasite, vb.) */
.smd-section {
  margin-bottom: 40px;
}

.smd-section h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
  position: relative;
}

.smd-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0073e6;
  border-radius: 2px;
  margin-top: 6px;
}

/* LİSTELER */
.smd-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.smd-list li {
  font-size: 16px;
  margin-bottom: 6px;
  color: #444;
}

/* ÜRETİM SÜRECİ ADIMLARI */
.smd-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.smd-step-number {
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0073e6;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.smd-step-body p {
  margin: 0 0 4px 0;
  font-size: 16px;
  color: #555;
}

.smd-step-body p strong {
  font-size: 17px;
  color: #222;
}

/* SSS KARTLARI */
.faq-item {
  margin-bottom: 18px;
  padding: 15px;
  background: #f8f9fb;
  border-left: 4px solid #0073e6;
  border-radius: 6px;
}

.faq-item h3 {
  font-size: 18px;
  margin: 0 0 6px 0;
  color: #222;
}

.faq-item p {
  margin: 0;
  font-size: 15px;
  color: #555;
}

/* CTA BÖLÜMÜ */
.smd-cta {
  text-align: center;
  margin-top: 30px;
}

.smd-cta p {
  font-size: 17px;
  color: #444;
}

/* MOBİL İÇİN KÜÇÜK DOKUNUŞLAR */
@media (max-width: 600px) {
  .smd-wrapper {
    padding: 15px 10px 30px;
  }

  .smd-top h1 {
    font-size: 30px;
  }

  .smd-section h2 {
    font-size: 22px;
  }

  .smd-step-number {
    min-width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

/* Üst bannerdaki görselin yüksekliğini küçültmek için */
.page-header img {
  height: 280px !important;   /* 280 en ideal yükseklik */
  object-fit: cover !important;
}





/* Ana sayfa */



/* GENEL BÖLÜM AYARLARI */
.home-section {
  margin-bottom: 45px;
}

.home-section h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
  position: relative;
}

.home-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0073e6;
  border-radius: 2px;
  margin-top: 6px;
}

.section-intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}



/* Ana sayfa */



.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.service-box {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  padding: 22px 20px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.25s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 22px rgba(0,0,0,0.08);
  border-color: #d4d4d4;
}

.service-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

.service-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #222;
}

.service-box p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Mobil uyum */
@media(max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}




/* UZMANLIK ALANLARI KARTLARI */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 15px;
}

.expertise-card {
  background: #f6f8fc;
  border: 1px solid #e1e5eb;
  border-radius: 10px;
  padding: 14px 14px 16px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.expertise-card:hover {
  border-color: #ccd6e5;
  box-shadow: 0 10px 18px rgba(0,0,0,0.05);
  transform: translateY(-2px);
}

.expertise-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.expertise-card h3 {
  font-size: 15px;
  margin: 0;
  color: #222;
}

/* Mobil uyum */
@media (max-width: 900px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .expertise-grid {
    grid-template-columns: 1fr;
  }
}



/= CTA =/

/* TAM ORTALAMA BLOĞU */
.hero-center {
  text-align: center;
  position: relative;
  z-index: 10;
}

/* Başlık */
.hero-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

/* Alt başlık */
.hero-subtitle {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 20px;
}

/* CTA alanı */
.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;               /* Butonlar arasındaki boşluk */
}

/* Ortak buton ayarları */
.hero-cta a {
  width: 180px;
  text-decoration: none !important;
  display: inline-block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-align: center;
  transition: 0.25s;
}

/* YEŞİL BUTON */
.cta-btn-primary {
  background: #00c853 !important;
  color: #fff !important;
  border: none !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cta-btn-primary:hover {
  background: #00b449 !important;
  transform: translateY(-3px);
}

/* WhatsApp butonu (beyaz çizgili) */
.cta-btn-secondary {
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.85);
  color: #ffffff !important;
}

.cta-btn-secondary:hover {
  background: rgba(255,255,255,0.45);
}

/* Mobilde alt alta gelsin */
@media(max-width:600px){
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta a {
    width: 70%;
    margin: 6px auto;
  }
}


/= CTA =/


/* HERO BLOĞUNUN TAM ORTALANMASI  */
.so-widget-sow-hero .sow-hero-content .hero-center {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}


/* ANA BAŞLIK */
.hero-title {
  font-size: 36px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;   /* Temanın büyük harf zorlamasını kapat */
  text-shadow: 0 2px 4px rgba(0,0,0,0.45);
}

/* ALT SATIR (küçük başlık) */
.hero-title-small {
  display: block;
  font-size: 0.8em;
  font-weight: 400;
}

/* ALT METİN */
.hero-subtitle {
  font-size: 18px !important;
  color: #e8e8e8 !important;
  margin-bottom: 18px !important;
  line-height: 1.5 !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}

/* Mobil buton genişlik */
/* Mobilde butonlar arasındaki boşluğu azalt */
@media (max-width: 600px) {
  .hero-cta {
    gap: 4px !important; /* butonlar arası boşluk */
  }

  .hero-cta a {
    margin: 3px auto !important; /* dikey boşluğu kısalt */
  }
}

/* MOBIL LOGO */


/*
.main-navigation {
    padding: 0.8em 0 0em;
}
*/
/* MOBIL LOGO */
