/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* =========================
   HEADER
========================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: #000;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* LOGO + TITLE WRAP */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

/* LOGO */
.logo {
  height: 55px;
  width: auto;
  object-fit: contain;
}

/* BRAND TEXT */
.brand-title {
  font-weight: 900;
  color: #ffcc00;
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1;
}

/* CALL BUTTON (HEADER) */
.call-only {
  background: #ffcc00;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.call-only img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* =========================
   HERO
========================= */
.hero {
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* DARK OVERLAY (OKUNURLUK) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero * {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 16px;
  margin-bottom: 20px;
}

/* =========================
   BUTTONS
========================= */
.buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.btn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.call {
  background: #ffcc00;
  color: #000;
}

.whatsapp {
  background: #25D366;
  color: #fff;
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 40px 20px;
  text-align: center;
}

.section h2 {
  margin-bottom: 20px;
}

/* =========================
   GRID
========================= */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 800px;
  margin: 20px auto 0;
}

.card {
  background: #f4f4f4;
  padding: 16px;
  border-radius: 10px;
  font-weight: bold;
}

.card a {
  text-decoration: none;
  color: #000;
}

/* =========================
   MAP
========================= */
.map {
  padding: 30px 20px;
}

.map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 10px;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #ffcc00;
  color: #000;
  text-align: center;
  padding: 25px 15px;
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.footer p {
  margin-top: 10px;
  font-size: 14px;
}

.footer-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 10px;
}

/* =========================
   FLOAT BUTTONS
========================= */
.fixed {
  position: fixed;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fixed img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.fixed.call {
  right: 20px;
  background: #ffcc00;
}

.fixed.whatsapp {
  right: 90px;
  background: #25D366;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 26px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  header {
    padding: 10px 12px;
  }

  .logo {
    height: 45px;
  }

  .brand-title {
    font-size: 14px;
  }
}