/* ===== Temel Renkler (Kurumsal + Oto) ===== */
:root{
  --primary-color: #0D47A1;   /* Koyu mavi: güven, profesyonellik */
  --secondary-color: #FF6F00; /* Metalik turuncu: enerji, oto uyumu */
  --text-on-primary: #ffffff;
  --maxw: 1200px;
}

/* Reset/Genel */
*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{ font-family: Arial, Helvetica, sans-serif; color:#111; }

/* ===== Header ===== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary-color);
  color: var(--text-on-primary);
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
}

.header-container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
}

.logo img{
  height: 98px;
  width: auto;
  display: block;
}

/* Nav (desktop) */
.main-nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
  justify-content: center;
}

.main-nav a{
  color: var(--text-on-primary);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 4px;
  transition: color .25s ease, opacity .25s ease;
}

.main-nav a:hover{
  color: var(--secondary-color);
}

/* CTA */
.cta-button a{
  background: var(--secondary-color);
  color: var(--text-on-primary);
  text-decoration: none;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 8px;
  display: inline-block;
  transition: transform .15s ease, filter .2s ease;
  white-space: nowrap;
}
.cta-button a:hover{ filter: brightness(0.95); transform: translateY(-1px); }

/* Hamburger (mobile) */
.hamburger{
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}
.hamburger span{
  display: block;
  height: 3px;
  width: 100%;
  background: var(--text-on-primary);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform .25s ease, opacity .25s ease;
}

/* ===== Responsive ===== */
@media (max-width: 992px){
  .header-container{
    grid-template-columns: auto 1fr auto;
  }
  /* CTA'yı menü satırına uyacak şekilde daralt */
  .cta-button a{
    padding: 8px 12px;
    font-weight: 600;
  }
}

@media (max-width: 768px){
  .header-container{
    grid-template-columns: auto auto auto;
  }

  /* Hamburger göster, nav gizle */
  .hamburger{ display: inline-block; }
  .main-nav{
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 64px; /* header yüksekliği ~ */
    background: var(--primary-color);
    padding: 14px 20px;
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .main-nav.active{ display: block; }

  .main-nav ul{
    flex-direction: column;
    gap: 10px;
  }
  .main-nav a{
    display: block;
    padding: 10px 6px;
  }

  /* CTA mobilde daha kompakt */
  .cta-button a{
    padding: 8px 10px;
    border-radius: 6px;
  }
}

/* Daha küçük cihaz iyileştirme */
@media (max-width: 420px){
  .logo img{ height: 62px; }
  .cta-button a{ font-size: 14px; padding: 8px 10px; }
}
/* ===== HERO ===== */
.hero{
  position: relative;
  min-height: clamp(60vh, 80vh, 92vh);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-bg{
  position: absolute;
  inset: 0;
  background-image: url("images/hero.jpg"); /* kendi görselin: /images/hero.jpg */
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,71,161,0.55) 0%, rgba(13,71,161,0.35) 40%, rgba(0,0,0,0.35) 100%);
}

.hero-inner{
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 1000px;
}

.hero h1{
  margin: 0 0 12px;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.1;
}

.hero p{
  margin: 0 auto 22px;
  font-size: clamp(16px, 2.4vw, 20px);
  opacity: .95;
  max-width: 760px;
}

/* CTA Buttons */
.btn{
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, filter .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  margin: 0 8px;
  border: 2px solid transparent;
}

.btn.primary{
  background: var(--secondary-color);
  color: #fff;
}
.btn.primary:hover{ filter: brightness(.96); transform: translateY(-1px); }

.btn.ghost{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.8);
}
.btn.ghost:hover{
  background: rgba(255,255,255,.1);
  transform: translateY(-1px);
}

/* küçük ekran iyileştirmeleri */
@media (max-width: 520px){
  .hero-ctas{ display: flex; flex-direction: column; gap: 12px; align-items: center; }
  .btn{ width: 100%; max-width: 320px; }
}
/* ===== GENEL CONTAINER ===== */
.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 20px;
}

/* ===== SECTION HEAD ===== */
.section-head{
  text-align: center;
  margin-bottom: 26px;
}
.section-head h2{
  margin: 0 0 6px;
  font-size: clamp(22px, 3.6vw, 32px);
  color: var(--primary-color);
}
.section-head p{
  margin: 0;
  opacity: .8;
}

/* ===== SERVICES ===== */
.services{
  background: #f6f8fc;
}

.service-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card{
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(13,71,161,0.08);
  transition: transform .18s ease, box-shadow .18s ease;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  border: 1px solid rgba(13,71,161,.08);
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(13,71,161,0.12);
}

.service-card .icon{
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--secondary-color), #ff8f1a);
  color: #fff;
}
.service-card .icon svg{
  width: 26px; height: 26px;
}

.service-card h3{
  margin: 6px 0 0;
  font-size: 18px;
  color: #222;
}
.service-card p{
  margin: 6px 0 10px;
  color: #444;
  line-height: 1.4;
  font-size: 15px;
}

.service-card .link{
  justify-self: start;
  text-decoration: none;
  font-weight: 700;
  color: var(--primary-color);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.service-card .link:hover{
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px){
  .service-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px){
  .service-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .service-grid{ grid-template-columns: 1fr; }
}
/* ===== BEFORE/AFTER SLIDER ===== */
.before-after{ background:#fff; }

.ba-slider{
  position: relative;
  overflow: hidden;
}

.ba-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform .35s ease;
}

.ba-item{
  margin: 0;
  padding: 0 0 8px;
}

.ba-item figcaption{
  text-align: center;
  font-size: 14px;
  color:#444;
  margin-top: 10px;
}

/* compare area */
.ba-compare{
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(13,71,161,.12);
  background: #000;
  --pos: 50%;
}

.ba-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-img.after{
  /* üstteki görüntünün görünür alanını CSS değişkeniyle kes */
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

/* labels */
.ba-label{
  position: absolute;
  top: 10px;
  padding: 6px 10px;
  background: rgba(0,0,0,.55);
  color:#fff;
  font-weight: 700;
  border-radius: 8px;
  font-size: 12px;
  pointer-events: none;
}
.ba-label.left{ left: 10px; }
.ba-label.right{ right: 10px; }

/* range handle */
.ba-range{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  appearance: none;
  background: transparent;
  outline: none;
  cursor: ew-resize;
}
.ba-range::-webkit-slider-thumb{
  -webkit-appearance: none;
  appearance: none;
  width: 2px; height: 100%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0,0,0,.25);
}
.ba-range::-moz-range-thumb{
  width: 2px; height: 100%;
  background: #fff; border: 0;
}

/* nav arrows */
.ba-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,.4);
  color:#fff;
  font-size: 22px;
  line-height: 44px;
  cursor: pointer;
  transition: background .2s ease, transform .1s ease;
}
.ba-nav:hover{ background: rgba(0,0,0,.55); }
.ba-nav:active{ transform: translateY(-50%) scale(.98); }
.ba-nav.prev{ left: 10px; }
.ba-nav.next{ right: 10px; }

/* dots */
.ba-dots{
  display: flex; gap: 8px;
  justify-content: center;
  margin-top: 14px;
}
.ba-dot{
  width: 8px; height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(13,71,161,.3);
  cursor: pointer;
  transition: transform .15s, background .2s;
}
.ba-dot.is-active{
  background: var(--secondary-color);
  transform: scale(1.25);
}

/* responsive tweaks */
@media (max-width: 520px){
  .ba-compare{ aspect-ratio: 4/3; }
}
/* ===== NEDEN BİZ ===== */
.whyus{
  background: linear-gradient(180deg, #fff 0%, #f6f8fc 100%);
}

.why-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card{
  background:#fff;
  border:1px solid rgba(13,71,161,.08);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(13,71,161,.08);
  transition: transform .18s ease, box-shadow .18s ease;
  display:grid;
  grid-template-rows: auto auto 1fr;
  gap: 10px;
}
.feature-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(13,71,161,.12);
}

.feature-card .icon{
  width: 56px; height: 56px;
  border-radius: 14px;
  display:grid; place-items:center;
  color:#fff;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.2);
}
.feature-card .icon svg{ width: 28px; height: 28px; }

.feature-card h3{
  margin: 8px 0 0;
  font-size: 18px;
  color:#222;
}
.feature-card p{
  margin: 6px 0 0;
  color:#444;
  line-height: 1.45;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 1024px){
  .why-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px){
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .why-grid{ grid-template-columns: 1fr; }
}
/* ===== MÜŞTERİ YORUMLARI ===== */
.testimonials{
  background: #f6f8fc;
}

.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.testimonial-card{
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(13,71,161,0.08);
  border: 1px solid rgba(13,71,161,.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.t-content h3{
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: var(--primary-color);
}

.t-stars{
  color: #FFD700;
  font-size: 14px;
}

.t-content p{
  margin: 0;
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 1024px){
  .testimonials-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px){
  .testimonials-grid{
    grid-template-columns: 1fr;
  }
}
/* ===== BLOG PREVIEW ===== */
.blog{ background:#fff; }

.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.post-card{
  background:#fff;
  border:1px solid rgba(13,71,161,.08);
  border-radius:16px;
  padding:20px;
  box-shadow:0 8px 20px rgba(13,71,161,.06);
  transition:transform .18s ease, box-shadow .18s ease, border-color .2s ease;
  display:grid;
  grid-template-rows: auto auto 1fr auto;
  gap:10px;
}
.post-card:hover{
  transform: translateY(-4px);
  box-shadow:0 12px 26px rgba(13,71,161,.12);
  border-color: rgba(255,111,0,.25);
}

.post-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-size:12px;
  color:#666;
}
.post-tag{
  display:inline-block;
  padding:4px 8px;
  border-radius:999px;
  background: rgba(13,71,161,.08);
  color: var(--primary-color);
  font-weight:700;
}

.post-title{
  margin:0;
  font-size:18px;
  color:#222;
  line-height:1.3;
}
.post-excerpt{
  margin:0;
  color:#444;
  font-size:14px;
  line-height:1.5;
}

.post-link{
  justify-self:start;
  text-decoration:none;
  font-weight:700;
  color:var(--primary-color);
  border-bottom:2px solid transparent;
  padding-bottom:2px;
  transition: color .2s, border-color .2s;
}
.post-link:hover{
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* blog actions */
.blog-actions{
  margin-top:18px;
  display:flex;
  gap:10px;
  justify-content:center;
}

/* responsive */
@media (max-width: 1024px){
  .blog-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .blog-grid{ grid-template-columns: 1fr; }
}
/* ===== TEKLİF FORMU ===== */
.quote{
  background: #f6f8fc;
}

.quote-form{
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(13,71,161,.08);
  border: 1px solid rgba(13,71,161,.08);
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.form-group{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label{
  font-weight: bold;
  font-size: 14px;
  color: #222;
}
.form-group input,
.form-group select,
.form-group textarea{
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(13,71,161,.2);
}

.form-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* responsive */
@media (max-width: 520px){
  .form-actions{
    flex-direction: column;
    align-items: stretch;
  }
  .form-actions .btn{
    width: 100%;
    text-align: center;
  }
}
/* ===== FOOTER ===== */
.site-footer{
  background: var(--primary-color);
  color: #fff;
  padding-top: 40px;
  margin-top: 40px;
}

.footer-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col h3.footer-logo{
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #fff;
}
.footer-col h4{
  font-size: 16px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-col p{
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.footer-col ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col ul li{
  font-size: 14px;
  margin-bottom: 6px;
  line-height: 1.4;
}
.footer-col ul li a{
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}
.footer-col ul li a:hover{
  opacity: 1;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 20px;
  padding: 10px 0;
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}

/* responsive */
@media (max-width: 768px){
  .footer-grid{
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.main-nav a.active{
  color: var(--secondary-color);
}
/* ====== SERVICES PAGE (scoped) ====== */
.services-page .page-hero{
  background: linear-gradient(180deg, rgba(13,71,161,0.85) 0%, rgba(13,71,161,0.7) 100%),
              url("images/services-hero.jpg") center/cover no-repeat;
  color:#fff;
  padding: 60px 20px;
  text-align:center;
}
.services-page .page-hero h1{
  margin:0 0 10px;
  font-size: clamp(28px, 5vw, 42px);
}
.services-page .page-hero p{
  font-size: clamp(14px, 2vw, 18px);
  max-width: 800px;
  margin: 0 auto;
  opacity:.95;
}

/* list */
.services-page .list{
  background:#f6f8fc;
  padding: 40px 20px;
}
.services-page .grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.services-page .card{
  background:#fff;
  border-radius:14px;
  padding:20px;
  box-shadow:0 6px 18px rgba(13,71,161,.08);
  border:1px solid rgba(13,71,161,.08);
  display:flex;
  flex-direction:column;
  gap:12px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.services-page .card:hover{
  transform: translateY(-4px);
  box-shadow:0 10px 24px rgba(13,71,161,.12);
}
.services-page .card .icon{
  width:48px; height:48px;
  border-radius:12px;
  display:grid; place-items:center;
  color:#fff;
  background: linear-gradient(135deg, var(--secondary-color), #ff8f1a);
}
.services-page .card .icon svg{ width:26px; height:26px; }
.services-page .card h3{ margin:0; font-size:18px; color:#222; }
.services-page .card p{ margin:0; color:#444; font-size:14px; line-height:1.45; }
.services-page .card .btn{ margin-top:auto; }

/* responsive */
@media (max-width: 1024px){
  .services-page .grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px){
  .services-page .grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .services-page .grid{ grid-template-columns: 1fr; }
}
/* ===== BEFORE AFTER PAGE ===== */
.before-after-page .page-hero{
  background: linear-gradient(180deg, rgba(13,71,161,0.85) 0%, rgba(13,71,161,0.7) 100%),
              url("images/before-after-hero.jpg") center/cover no-repeat;
  color:#fff;
  padding: 60px 20px;
  text-align:center;
}
.before-after-page .page-hero h1{
  margin:0 0 10px;
  font-size: clamp(28px, 5vw, 42px);
}
.before-after-page .page-hero p{
  font-size: clamp(14px, 2vw, 18px);
  max-width: 800px;
  margin: 0 auto;
  opacity:.95;
}

/* GALERİ */
.before-after-page .gallery{
  padding:40px 20px;
  background:#f6f8fc;
}
.before-after-page .grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
}
.before-after-page .gallery-item{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:4px;
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
}
.before-after-page .gallery-item img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
  transition: transform .2s ease;
}
.before-after-page .gallery-item img:hover{
  transform:scale(1.05);
}

/* responsive */
@media (max-width: 1024px){
  .before-after-page .grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .before-after-page .grid{ grid-template-columns: 1fr; }
  .before-after-page .gallery-item{ grid-template-columns: 1fr; }
}
/* ===== EXTRA GALLERY ===== */
.extra-gallery{
  padding: 40px 20px;
  background: #fff;
}
.extra-gallery .grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.extra-gallery-item{
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.extra-gallery-item img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform .2s ease;
}
.extra-gallery-item img:hover{
  transform: scale(1.05);
}

/* responsive */
@media (max-width: 1024px){
  .extra-gallery .grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .extra-gallery .grid{ grid-template-columns: 1fr; }
}
/* ===== WHY PAGE ===== */
.why-page .page-hero{
  background: linear-gradient(180deg, rgba(13,71,161,0.85) 0%, rgba(13,71,161,0.7) 100%),
              url("images/why-hero.jpg") center/cover no-repeat;
  color:#fff;
  padding: 60px 20px;
  text-align:center;
}
.why-page .page-hero h1{
  margin:0 0 10px;
  font-size: clamp(28px, 5vw, 42px);
}
.why-page .page-hero p{
  font-size: clamp(14px, 2vw, 18px);
  max-width: 800px;
  margin: 0 auto;
  opacity:.95;
}

/* reasons */
.why-page .reasons{
  background:#f6f8fc;
  padding:40px 20px;
}
.why-page .grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:20px;
}
.why-page .reason{
  background:#fff;
  border:1px solid rgba(13,71,161,.08);
  border-radius:16px;
  padding:22px;
  box-shadow:0 8px 20px rgba(13,71,161,.08);
  transition: transform .18s ease, box-shadow .18s ease;
  display:grid;
  grid-template-rows:auto auto 1fr;
  gap:10px;
}
.why-page .reason:hover{
  transform: translateY(-4px);
  box-shadow:0 12px 26px rgba(13,71,161,.12);
}
.why-page .reason .icon{
  width:56px; height:56px;
  border-radius:14px;
  display:grid; place-items:center;
  color:#fff;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.2);
}
.why-page .reason .icon svg{ width:28px; height:28px; }
.why-page .reason h3{ margin:8px 0 0; font-size:18px; color:#222; }
.why-page .reason p{ margin:6px 0 0; color:#444; line-height:1.45; font-size:15px; }

/* responsive */
@media (max-width: 1024px){
  .why-page .grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px){
  .why-page .grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .why-page .grid{ grid-template-columns: 1fr; }
}
/* ===== REVIEWS PAGE ===== */
.reviews-page .page-hero{
  background: linear-gradient(180deg, rgba(13,71,161,0.85) 0%, rgba(13,71,161,0.7) 100%),
              url("images/reviews-hero.jpg") center/cover no-repeat;
  color:#fff;
  padding: 60px 20px;
  text-align:center;
}
.reviews-page .page-hero h1{
  font-size: clamp(28px, 5vw, 42px);
  margin-bottom: 10px;
}
.reviews-page .page-hero p{
  font-size: clamp(14px, 2vw, 18px);
  max-width: 800px;
  margin: 0 auto;
}

.reviews{
  padding: 40px 20px;
  background:#f6f8fc;
}
.reviews .grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
}
.review{
  background:#fff;
  border-radius:12px;
  padding:20px;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.review-text{
  font-style:italic;
  color:#333;
  margin-bottom:12px;
}
.review-author{
  font-weight:600;
  color:var(--primary-color);
}

/* responsive */
@media (max-width: 992px){
  .reviews .grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px){
  .reviews .grid{
    grid-template-columns: 1fr;
  }
}
/* Uzun yorumlar ve üst bilgi satırı */
.reviews .review{
  display:flex;
  flex-direction:column;
  gap:10px;
  min-height: 180px;
}

.reviews .review-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-size: 13px;
  color:#666;
}

.reviews .stars{
  color:#FFD700;
  letter-spacing: 1px;
  font-weight: 700;
}

.reviews .meta{
  background: rgba(13,71,161,.08);
  color: var(--primary-color);
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.reviews .review-text{
  font-size: 14px;
  line-height: 1.6;
  color:#333;
  font-style: normal; /* istersen italic yapabilirsin */
}

.reviews .review-author{
  margin-top:auto;
  font-weight:700;
  color: var(--primary-color);
}

/* grid ayarı (12 kart) */
.reviews .grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
}

@media (max-width: 992px){
  .reviews .grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .reviews .grid{ grid-template-columns: 1fr; }
}
/* ===== CONTACT PAGE ===== */
.contact-page .page-hero{
  background: linear-gradient(180deg, rgba(13,71,161,0.85) 0%, rgba(13,71,161,0.7) 100%),
              url("images/contact-hero.jpg") center/cover no-repeat;
  color:#fff;
  padding:60px 20px;
  text-align:center;
}
.contact-page .page-hero h1{
  margin:0 0 10px;
  font-size: clamp(28px, 5vw, 42px);
}
.contact-page .page-hero p{
  font-size: clamp(14px, 2vw, 18px);
  max-width:800px; margin:0 auto; opacity:.95;
}

/* info */
.contact-page .info{
  padding: 40px 20px;
  background:#fff;
}
.contact-page .info-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:20px;
}
.contact-page .card{
  background:#fff;
  border:1px solid rgba(13,71,161,.08);
  border-radius:16px;
  padding:20px;
  box-shadow:0 8px 20px rgba(13,71,161,.06);
}
.contact-page .list{
  list-style:none; margin:0; padding:0;
}
.contact-page .list li{ margin:6px 0; }
.contact-page .list a{ color: var(--primary-color); text-decoration:none; }
.contact-page .list a:hover{ color: var(--secondary-color); }

.contact-page .hours{
  list-style:none; margin:10px 0 0; padding:0;
  color:#444; font-size:14px;
}
.contact-page .quick-actions{
  display:flex; gap:10px; margin-top:14px; flex-wrap:wrap;
}

/* map */
.contact-page .map iframe{
  width:100%; height: 320px; border:0; border-radius:12px;
}

/* form */
.contact-page .form-section{
  background:#f6f8fc; padding:40px 20px;
}
.contact-page .contact-form{
  display:flex; flex-direction:column; gap:14px;
}
.contact-page .contact-form .row{
  display:grid; gap:14px; grid-template-columns: 1fr 1fr;
}
.contact-page .form-group{ display:flex; flex-direction:column; gap:6px; }
.contact-page label{ font-weight:700; font-size:14px; color:#222; }
.contact-page input,
.contact-page select,
.contact-page textarea{
  border:1px solid rgba(0,0,0,.2);
  border-radius:8px;
  padding:10px 12px; font-size:14px; outline:none;
  transition: border-color .2s, box-shadow .2s;
}
.contact-page input:focus,
.contact-page select:focus,
.contact-page textarea:focus{
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(13,71,161,.2);
}
.contact-page .whatsapp-note{
  font-size:13px; color:#555; background:#fff3cd;
  padding:8px 12px; border-radius:6px; border:1px solid #ffeeba;
}
.contact-page .form-actions{
  display:flex; gap:12px; flex-wrap:wrap; justify-content:center;
}

/* responsive */
@media (max-width: 992px){
  .contact-page .info-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 600px){
  .contact-page .contact-form .row{ grid-template-columns: 1fr; }
}
