/* =======================
   GENEL
   ======================= */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f8f9fa;
  color: #222;
}

/* =======================
   NAVBAR
   ======================= */
.navbar {
  background: #ffffffd9;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #222;
  text-decoration: none;
}

.nav-a img {
  height: 34px;
  width: auto;
}

/* MENU */
.menu {
  display: flex;
  gap: 24px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #0077cc;
  transition: 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.menu a:hover {
  color: #0077cc;
}

/* =======================
   HERO
   ======================= */
.hero {
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("/static/img/hero.jpg") center center / cover no-repeat;

  padding: 140px 20px;
  text-align: center;
  color: #fff;
}

/* HERO METİNLER */
.hero-company {
  font-size: 3.2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.hero h1,
.hero h2,
.hero p {
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* =======================
   HERO BUTONLAR
   ======================= */
.hero-buttons {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ORTAK */
.hero-buttons .btn {
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* TELEFON – ARKASIZ, BÜYÜK */
.btn-call {
  background: transparent;
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 800;
  padding: 10px 0;
}

.btn-call:hover {
  color: #f1f1f1;
  transform: scale(1.03);
}

/* WHATSAPP – YEŞİL BUTON */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  font-size: 1.1rem;
  padding: 14px 34px;
  border-radius: 10px;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

/* =======================
   BÖLÜMLER
   ======================= */
.bolum {
  padding: 40px 20px;
}

.bolum h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* KARTLAR */
.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background: #fff;
  width: 250px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* =======================
   FOOTER
   ======================= */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}

/* =======================
   MOBİL
   ======================= */
@media (max-width: 768px) {

  .hero {
    padding: 110px 20px;
  }

  .hero-company {
    font-size: 2.4rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .btn-whatsapp {
    width: 100%;
    max-width: 320px;
  }
}
/* =======================
   HİZMETLER SAYFASI BUTON DÜZELTME
   ======================= */

/* Kart içindeki butonlar */
.card .btn {
  width: 100%;              /* kartı tamamen doldurur */
  min-width: unset;         /* HERO ayarını iptal eder */
  box-sizing: border-box;
  font-size: 1rem;
  padding: 12px 16px;
  margin-top: 16px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
