:root{
  --accent:#2e8b72;        /* Orta yeşil – butonlar ve vurgu için */
  --muted:#3a5f56;         /* Hafif koyu yeşil tonlu muted text */
  --bg:#d7f3e3;            /* Açık yeşil arka plan */
  --topbar:#1e6f5c;        /* Koyu yeşil – topbar */
  --btn-radius:10px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
  color:#1a3b32;
  background:var(--bg);
  scroll-behavior:smooth;
}

html, body {
  overflow-x: hidden !important;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 1rem;
}

/* Topbar */
.topbar{
  background: linear-gradient(to right, #d7f3e3, #1e6f5c);
  color:#fff;
  position:sticky;
  top:0;
  z-index:50;
  box-shadow:0 2px 8px rgba(0,0,0,0.06);
}


.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

.logo{
  font-weight:800;
  font-size:1.4rem;
  letter-spacing:-0.5px;
  color:#ffffff;
}

.mainnav{
  display:flex;
  gap:0.6rem;
}

.nav-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0.55rem 0.9rem;
  border-radius:var(--btn-radius);
  background:transparent;
  color:inherit;
  text-decoration:none;
  font-weight:700;
  transition:all 220ms cubic-bezier(.2,.9,.27,1);
  box-shadow:inset 0 0 0 0 rgba(255,255,255,0);
}

.nav-btn:hover{
  transform:translateY(-4px) scale(1.02);
  box-shadow:0 8px 20px rgba(0,0,0,0.12);
  background:rgba(255,255,255,0.15);
  color:#fff;
}

.nav-btn.big{
  padding:0.8rem 1.2rem;
  font-size:1rem;
  border-radius:14px;
}

.nav-btn.outline{
  background:transparent;
  border:2px solid rgba(255,255,255,0.25);
}

/* HERO Bölümü */
.hero {
  padding: 2.5rem 0;
  background: #f7fdfb;
}

.hero-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.hero-text h1 {
  font-size: 2.2rem;
  color: #1e6f5c;
}

.hero-text p {
  color: #3a5f56;
  margin: 0.5rem 0 1rem;
}

/* Sağdaki resimler */
.hero-images {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.hero-images img {
  max-width: 100%;
  width: 250px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.09);
  overflow: hidden;

   /* Başlangıçta hafif küçültülmüş görünüm */
  transform: scale(0.92);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  transform-origin: center;
}

/* Hover: resim gerçek boyuta yaklaşsın */
.hero-images img:hover {
  transform: scale(1.0);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.phone{
  font-size:1.5rem;
  color:#2e8b72;
  font-weight:800;
  margin:0.4rem 0;
}



.worker-img{
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:100%;
  object-fit:cover;
  transition:transform 360ms ease;
}

.worker-img.blur{
  filter:blur(8px) saturate(.95) brightness(.95);
  clip-path:polygon(0 0,55% 0,40% 100%,0% 100%);
  transform:scale(1.04);
  z-index:1;
}

.worker-img.clear{
  z-index:2;
  transform:translateX(20px);
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
  border-radius:6px;
  width:90%;
  left:5%;
}

/* Sections */
.section{
  padding:3rem 0;
  scroll-margin-top: 100px;
}

.gray{
  background:#cfeede;
}

h2{
  margin-top:0;
  font-size:1.6rem;
  color:#1e6f5c;
}

.services-grid{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
}

.service{
  flex:1 1 300px;
  background:#fff;
  padding:1rem;
  border-radius:10px;
  box-shadow:0 6px 18px rgba(0,0,0,0.05);
}

.service img{
  width:100%;
  height:300px;
  object-fit:cover;
  border-radius:8px;
  margin-bottom:0.6rem;
}

/* Footer */
.footer{
  padding:1rem 0;
  background:#ffffff;
  border-top:1px solid #d0e8db;
  margin-top:1rem;
  text-align:center;
  color:#3a5f56;
}

/* Responsive */
@media(max-width:900px){
  .hero-wrap {
    flex-direction: column;
    text-align: center;
  }

  .hero-images {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-images img {
    width: 80%;
    height: auto;
    transform: none;
  }
  .mainnav{gap:0.4rem}
}

/* Değerlendirmeler */
.review-title{
  display:flex;
  align-items:center;
  gap:0.6rem;
  margin-bottom:1.8rem;
}

.review-title h2{
  margin:0;
  font-size:1.8rem;
  color:#1e6f5c;
}

.quote-mark{
  font-size:2rem;
  color:var(--accent);
  font-weight:bold;
}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
  gap:1.2rem;
}

.review-box{
  background:#ffffff;
  padding:1.4rem;
  border-radius:12px;
  box-shadow:0 8px 18px rgba(0,0,0,0.06);
  color:#3a5f56;
  line-height:1.55;
}

.review-user{
  display:flex;
  align-items:center;
  gap:0.8rem;
  margin-top:1rem;
}

.review-avatar{
  background:#ffa64d;
  color:#fff;
  font-size:1.6rem;
  border-radius:50%;
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.review-stars{
  color:#ffa64d;
  margin-top:0.6rem;
  font-size:1.2rem;
  letter-spacing:2px;
}

/* Sabit WhatsApp Butonu (Görsel ile) */
.whatsapp-fixed {
  position: fixed;
  bottom: 22px;
  right: 18px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-fixed img {
  width: 60px;       /* Buton boyutu */
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}

.whatsapp-fixed img:hover {
  transform: scale(1.1);
}

/* Hizmet listesi – iki sütun düzeni */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1rem; /* satır ve sütun boşlukları */
}

/* Mobilde 1 sütuna düşsün */
@media (max-width: 600px) {
  .services-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .services-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }
}
.services-list li {
  margin: 0;
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #3a5f56;
}

.services-list li:before {
  content: '✓';
  color: #2e8b72;
  display: inline-block;
  width: 1.2rem;
  margin-right: 0.5rem;
  font-weight: 900;
}

.brand{
  display:flex;
  align-items:center;
  gap:0.4rem;
  flex-shrink:0;
}

@media (max-width: 768px){
  .nav-btn{
    padding:0.45rem 0.7rem;
    font-size:0.9rem;
  }
  .mainnav{
    width:100%;
    justify-content:center;
    margin-top:0.4rem;
    flex-wrap:wrap;
  }
}
/* İletişim ikonlu linkler */
.contact-links{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:0.8rem;
  margin-top:1rem;
}

.contact-item{
  display:flex;
  align-items:center;
  gap:0.6rem;
  font-weight:700;
  text-decoration:none;
  color:#1e6f5c;
  background:#ffffff;
  padding:0.55rem 0.9rem;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,0.06);
  transition:transform .2s ease, box-shadow .2s ease;
}

.contact-item img{
  width:22px;
  height:22px;
}

.contact-item:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

/* Instagram rengi */
.contact-item.instagram{
  color:#1e6f5c;
}

/* Mail rengi */
.contact-item.mail{
  color:#1e6f5c;
}

/* Telefon rengi */
.contact-item.phone{
  color:#1e6f5c;
}
.contact-item img {
  display: block;
  flex-shrink: 0;
}

/* SVG ikon HOSTING bug fix */
.contact-item img,
.contact-item svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  object-fit: contain;
  display: block;
}
