
:root{
 --primary:#0b5ed7;
 --secondary:#20c997;
 --dark:#0a2540;
 --light:#f4f8fc;
}
*{box-sizing:border-box}
body{margin:0;font-family:'Inter',sans-serif;background:var(--light);color:#222}
a{text-decoration:none;color:inherit}
header{
 position:sticky;top:0;z-index:100;
 background:rgba(255,255,255,.9);
 backdrop-filter:blur(10px);
 border-bottom:1px solid #e5ecf3
}
nav{display:flex;justify-content:space-between;align-items:center;padding:18px 8%}
 .logo img {
      height: 100px; /* logo boyutu */
      width: auto;
    }
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2px 10px;
    }
.menu a{margin-left:28px;font-weight:500;color:#333}
.hero{
 min-height:92vh;
 display:flex;align-items:center;
 padding:0 8%;
 background-image:
 url('../images/pg.png');
 color:#fff
}
.hero h1{font-size:62px;max-width:620px;line-height:1.1}
.hero p{font-size:18px;max-width:520px;margin:25px 0}
.btn{
 display:inline-block;padding:14px 32px;
 border-radius:10px;font-weight:600;
 transition:.3s
}
.btn-primary{background:#fff;color:var(--primary)}
.btn-primary:hover{transform:translateY(-3px)}
.section{padding:110px 8%}
.section h2{font-size:42px;color:var(--dark);margin-bottom:50px}
.cards{
 display:grid;
 grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
 gap:35px
}
.card{
 background:#fff;padding:35px;border-radius:18px;
 box-shadow:0 30px 60px rgba(0,0,0,.08);
 transition:.4s
}
.card:hover{transform:translateY(-14px)}
.products{
 display:grid;
 grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
 gap:40px
}
.product{
 background:#fff;border-radius:18px;
 overflow:hidden;
 box-shadow:0 20px 40px rgba(0,0,0,.08);
 transition:.4s
}
.product:hover{transform:translateY(-12px)}
.product img{width:100%;height:230px;object-fit:cover}
.product div{padding:25px}
footer{
 background:var(--dark);color:#fff;
 text-align:center;padding:70px 0
}
.fade{opacity:0;transform:translateY(40px);transition:1.1s}
.fade.show{opacity:1;transform:none}
 .contact-container {
      height: 100vh;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .contact-buttons {
      width: 90%;
      max-width: 420px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-buttons a {
      height: 75px;
      display: flex;
      align-items: center;
      gap: 16px;
      padding-left: 28px;
      text-decoration: none;
      color: #fff;
      font-size: 18px;
      font-weight: bold;
      border-radius: 16px;
      transition: transform 0.2s, opacity 0.2s;
    }

    .contact-buttons a i {
      font-size: 26px;
    }

    .contact-buttons a:hover {
      transform: scale(1.04);
      opacity: 0.9;
    }

    .whatsapp { background-color: #25D366; }
    .call { background-color: #2196F3; }
    .mail { background-color: #FF5722; }
    .map-link { background-color: #4CAF50; }

    /* HARİTA (masaüstü) */
    .map {
      width: 100%;
      height: 350px;
    }

    .map iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* MOBİL 
    @media (max-width: 768px) {
      .map {
        display: none;
      }
    }*/

.products {
  padding: 40px;
  text-align: center;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.product {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.product h3 {
  margin: 10px 0;
}

.price {
  color: #25D366;
  font-weight: bold;
  font-size: 18px;
}

