*{margin:0;padding:0;box-sizing:border-box}
body{
  font-family: Arial, Helvetica, sans-serif;
  background:#eeeeee;
  color:#222;
  padding-bottom:70px; /* sabit footer için boşluk */
}

/* ÜST AHŞAP */
.top-area{
  background:#8a5b2f;
  padding:40px 30px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
}

.brand-box{
  background:#ffffff;
  color:#6a4a2f;
  padding:12px 24px;
  font-weight:900;
  letter-spacing:2px;
  border-radius:10px;
  box-shadow:0 6px 18px rgba(0,0,0,.35);
}

.right-menu{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.menu-btn{
  background:#ffffff;
  color:#1d4ed8;
  padding:10px 14px;
  border-radius:10px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 6px 16px rgba(0,0,0,.25);
  border:2px solid #1d4ed8;
  transition:.18s;
}
.menu-btn:hover{transform:translateY(-4px)}

/* HAKKIMIZDA */
.about-section{
  padding:40px 30px 10px 30px;
  display:flex;
  justify-content:flex-start;
}
.about-card{
  max-width:520px;
  background:#ffffff;
  border-radius:16px;
  padding:20px 22px;
  box-shadow:0 8px 18px rgba(0,0,0,.18);
  border:2px solid #c7b199;
  transition:transform .2s ease, box-shadow .2s ease;
}
.about-card:hover{
  transform:translateY(-8px);
  box-shadow:0 16px 28px rgba(0,0,0,.28);
}

/* INSTAGRAM BÖLÜMÜ */
.info-section{
  padding:20px 30px;
}
.info-section h2{margin-bottom:8px}

.insta-btn{
  display:inline-block;
  margin-top:8px;
  padding:10px 18px;
  border-radius:12px;
  background:#1d4ed8;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 8px 18px rgba(0,0,0,.25);
  transition:.18s;
}
.insta-btn:hover{transform:translateY(-4px)}

.email-box{
  margin-top:12px;
  background:#fff;
  padding:10px 14px;
  border-radius:10px;
  border:2px dashed #6a4a2f;
}

/* İLETİŞİM – WHATSAPP KARTLARI */
.contact-section{
  padding:30px;
}
.contact-section h2{margin-bottom:12px}

.contact-card{
  background:#ffffff;
  border-radius:14px;
  padding:12px 14px;
  margin-bottom:12px;
  box-shadow:0 6px 16px rgba(0,0,0,.18);
  border:2px solid #c7b199;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.name{font-weight:700}

.wa-box{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  background:#e8f7ef;
  border-radius:40px;
  text-decoration:none;
  color:#0b7c2d;
  font-weight:700;
  border:2px solid #2ecc71;
  box-shadow:0 6px 14px rgba(0,0,0,.18);
  transition:.18s;
}
.wa-box:hover{transform:translateY(-4px)}

.wa-circle{
  display:flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  border-radius:50%;
  border:2px solid #2ecc71;
}

/* KONUM BLOKU */
.location-block{
  margin-top:16px;
  background:#fff;
  padding:14px 16px;
  border-radius:14px;
  border:2px dashed #6a4a2f;
  box-shadow:0 6px 16px rgba(0,0,0,.18);
  text-align:center;
}

/* SABİT ALT YAZI */
.footer{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:#111;
  color:#fff;
  text-align:center;
  padding:12px 0;
  font-size:.9rem;
}
/* HAKKIMIZDA – EKİP KUTULARI */
.about-team{
  padding:40px 30px 110px 30px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:18px;
}

.person-card{
  background:#ffffff;
  border-radius:18px;
  border:3px solid #8a5b2f;
  padding:18px;
  box-shadow:0 10px 20px rgba(0,0,0,.22);
  transition:.22s ease;
}

.person-card h3{
  color:#6a4324;
  margin-bottom:8px;
}

.person-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 32px rgba(0,0,0,.32);
}
.page-title {
  text-align: center;
  margin: 25px 0 5px;
}

.services-container {
  max-width: 1050px;
  margin: 0 auto 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 0 18px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  border: 2.5px solid #8b5a2b;
  padding: 18px 18px 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
  transition: .25s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 26px rgba(0,0,0,.25);
}
