/* ================= RESET ================= */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f4f6f8;
  color: #111;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ================= NAVBAR ================= */
.navbar{
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.navbar-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.navbar-brand{
  font-weight: 900;
  font-size: 20px;
  color: #C9A24D; /* YNR tabeladaki altın renk */
  letter-spacing: .3px;
}
.navbar-nav{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.navbar-nav a{
  font-weight: 700;
  color: #111;
  padding: 8px 10px;
  border-radius: 10px;
}
.navbar-nav a:hover{
  background: rgba(0,0,0,.06);
}

/* ================= BUTTONS ================= */
.btn{
  display: inline-block;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 15px;
  transition: .15s;
}
.btn:hover{ transform: translateY(-1px); }
.btn-call{
  background: #e53935;
  color: #fff;
}
.btn-whatsapp{
  background: #25D366;
  color: #fff;
}
.btn.big{
  font-size: 18px;
  padding: 16px 30px;
}

/* ================= HERO ================= */
.hero{
  background: #f8fafc;
  padding: 70px 8%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
}
.hero-left{ max-width: 560px; }
.hero-left h1{
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 14px 0;
  color: #0f172a;
}
.hero-brands{
  font-weight: 800;
  font-size: 15px;
  color: #475569;
  margin-bottom: 10px;
}
.hero-desc{
  font-size: 16px;
  color: #475569;
  margin-bottom: 22px;
}
.hero-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.hero-mini{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: #334155;
  font-weight: 700;
  font-size: 13px;
}
.hero-mini span{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.06);
  padding: 7px 10px;
  border-radius: 999px;
}
.hero-right img{
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
}

/* ================= SECTIONS ================= */
.services, .why-us, .steps, .reviews, .bottom-cta{
  max-width: 1200px;
  margin: 0 auto;
  padding: 55px 18px;
  text-align: center;
}

.services h2, .why-us h2, .steps h2, .reviews h2, .bottom-cta h2{
  margin: 0 0 26px 0;
  color: #0f172a;
}

/* ================= SERVICES ================= */
.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.service-card{
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  transition: .2s;
  text-align: left;
}
.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,.10);
}
.service-card img{
  border-radius: 12px;
  height: 140px;
  object-fit: cover;
}
.service-card h3{
  margin: 14px 0 6px;
  font-size: 18px;
  color: #0f172a;
}
.service-card span{
  font-size: 13px;
  color: #64748b;
}

/* ================= WHY US ================= */
.why-us{
  background: #ffffff;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  margin-top: 10px;
}
.why-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  max-width: 1000px;
  margin: 0 auto;
}
.why-item{
  background: #f8fafc;
  border: 1px solid rgba(0,0,0,.06);
  padding: 16px;
  border-radius: 14px;
  font-weight: 800;
  color: #0f172a;
}
.why-icon{
  font-size: 26px;
  margin-bottom: 8px;
}

/* ================= STEPS ================= */
.steps-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}
.step{
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  padding: 18px;
  border-radius: 14px;
  font-weight: 800;
  color: #0f172a;
}

/* ================= BOTTOM CTA ================= */
.bottom-cta p{
  color: #475569;
  margin-top: -10px;
  margin-bottom: 18px;
}
.bottom-cta-buttons{
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ================= MAP (iletisim) ================= */
.map-wrap{
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  border: 1px solid rgba(0,0,0,.06);
}

/* ================= FOOTER ================= */
.footer{
  background: #0f2a44;
  color: #cbd5e1;
  padding: 28px 18px;
  margin-top: 30px;
}
.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer a{ color: #4fc3f7; font-weight: 700; }
.footer-col{ line-height: 1.6; }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px){
  .hero{
    grid-template-columns: 1fr;
    text-align: center;
    padding: 52px 6%;
  }
  .hero-left{ max-width: 100%; }
  .hero-cta{ justify-content: center; }
  .hero-mini{ justify-content: center; }
  .hero-right img{ margin: 0 auto; }
  .service-card{ text-align: left; }
}
/* ===== Hizmetler Sayfası: Detaylı Bloklar ===== */
.services-hero{
  background:#ffffff;
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 48px 18px;
}
.services-hero-inner{
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.services-hero-inner h1{
  margin: 0 0 10px 0;
  font-size: 34px;
  color: #0f172a;
}
.services-hero-inner p{
  margin: 0 auto 18px auto;
  max-width: 820px;
  color:#475569;
  line-height: 1.7;
}
.services-hero-cta{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap: wrap;
}

.info-block{
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 18px;
}
.info-block.alt{
  background:#ffffff;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.info-block-head{
  text-align:center;
  margin-bottom: 22px;
}
.info-block-head h2{
  margin:0 0 10px 0;
  color:#0f172a;
}
.info-block-head p{
  margin:0 auto;
  max-width: 900px;
  color:#475569;
  line-height:1.7;
}
.info-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.info-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 18px;
  text-align:left;
}
.info-card h3{
  margin:0 0 10px 0;
  color:#0f172a;
}
.info-card ul{
  margin:0;
  padding-left: 18px;
  color:#475569;
  line-height:1.7;
}
.info-actions{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap: wrap;
}

.services-final{
  padding: 55px 18px;
  text-align:center;
}
.services-final-inner{
  max-width: 900px;
  margin: 0 auto;
}
.services-final-inner p{
  color:#475569;
}
/* ===== SADE ARAMA BUTONU ===== */
.btn-call-outline{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;

  background: #ffffff;
  color: #0f172a;
  border: 2px solid #e5e7eb;

  transition: .15s ease;
}

.btn-call-outline:hover{
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

/* Büyük versiyon (alt CTA için) */
.btn-call-outline.big{
  font-size: 18px;
  padding: 16px 30px;
}
/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: #f7f8fa;
  padding: 70px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.contact-info-card h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.contact-desc {
  color: #555;
  margin-bottom: 25px;
}

.contact-item {
  margin-bottom: 18px;
}

.contact-item span {
  display: block;
  font-size: 14px;
  color: #777;
}

.contact-item a {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.contact-cta {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.contact-map-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.map-header {
  margin-bottom: 10px;
}

.map-wrap iframe {
  border-radius: 12px;
}

/* ALT BİLGİLER */
.contact-extra {
  max-width: 1200px;
  margin: 60px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 0 20px;
}

.extra-box {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.extra-box.highlight {
  background: #000;
  color: #fff;
}

/* MOBİL */
@media (max-width: 768px) {
  .contact-container,
  .contact-extra {
    grid-template-columns: 1fr;
  }

  .contact-info-card h1 {
    font-size: 30px;
  }
}
.page-hero {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 40px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-overlay {
  background: rgba(0,0,0,0.55);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}

.page-hero-overlay h1 {
  color: #fff;
  margin: 0 0 10px 0;
}

.page-hero-overlay p {
  color: #e5e7eb;
  margin: 0;
}
