/* =========================
   GENEL AYARLAR
   ========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body{
  background:#f5f5f5;
  color:#222;
}

.site-wrapper{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

/* Header sabit olduğu için */
main{
  flex:1;
  padding-top:110px;
}

/* =========================
   HEADER
   ========================= */
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:110px;
  padding:0 60px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(0,0,0,0.55);
  backdrop-filter:blur(6px);
  z-index:1000;
}

.logo img{
  height:90px;
  width:auto;
  display:block;
}

/* Menü */
.navbar ul{
  list-style:none;
  display:flex;
  gap:28px;
}

.navbar a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  font-weight:500;
  position:relative;
  padding-bottom:4px;
}

.navbar a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:#e53935;
  transition:width .25s ease;
}

.navbar a:hover::after{
  width:100%;
}

/* =========================
   DİL SEÇİCİ
   ========================= */
.lang-switcher{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  margin-left:20px;
}

.lang-switcher a{
  color:#fff;
  text-decoration:none;
  opacity:.7;
}

.lang-switcher a.active{
  opacity:1;
  color:#e53935;
  font-weight:700;
}

.lang-switcher span{
  color:rgba(255,255,255,.4);
}

/* =========================
   HERO
   ========================= */
.hero{
  min-height:calc(100vh - 110px);
  padding:0 60px;
  display:flex;
  align-items:center;
  color:#fff;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.65)),
    url("../assets/images/fethiye-gunbatimi.jpg") center/cover no-repeat;
}

.hero-content{
  max-width:900px;
}

.hero h1{
  font-size:42px;
  line-height:1.2;
  margin-bottom:16px;
}

.hero p{
  font-size:18px;
  line-height:1.6;
  max-width:700px;
  opacity:.95;
}

/* =========================
   SERVİS KARTLARI
   ========================= */
.hero-services{
  margin-top:34px;
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.service-card{
  background:rgba(255,255,255,.92);
  color:#222;
  border-radius:12px;
  padding:18px 22px;
  min-width:200px;
  text-align:center;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
  transition:.2s;
}

.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 40px rgba(0,0,0,.45);
}

.service-icon{
  width:56px;
  height:56px;
  margin:0 auto 10px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:rgba(0,0,0,.06);
}

.service-icon svg{
  width:34px;
  height:34px;
  fill:none;
  stroke:#111;
  stroke-width:2.2;
}

/* =========================
   WHY AY YAPI
   ========================= */
.why-ay-yapi{
  background:#fff;
  padding:90px 20px;
}

.why-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

.why-ay-yapi h2{
  font-size:36px;
  margin-bottom:14px;
}

.why-desc{
  max-width:720px;
  margin:0 auto 50px;
  color:#555;
  font-size:17px;
}

.why-cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.why-card{
  background:#f7f7f7;
  border-radius:16px;
  padding:34px 24px;
  transition:.2s;
}

.why-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 36px rgba(0,0,0,.15);
}

/* =========================
   FOOTER
   ========================= */
.site-footer{
  margin-top:auto;
  background:rgba(0,0,0,.85);
  color:#fff;
  text-align:center;
  padding:14px 20px;
  font-size:13px;
}

/* =========================
   WHATSAPP BUTON
   ========================= */
.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:56px;
  height:56px;
  background:#25d366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  box-shadow:0 8px 20px rgba(0,0,0,.3);
  transition:.2s;
}

.whatsapp-float:hover{
  transform:scale(1.08);
}

.whatsapp-float svg{
  width:28px;
  height:28px;
  fill:#fff;
}

/* =========================
   MOBİL
   ========================= */
@media(max-width:768px){
  .site-header{height:90px;padding:0 18px;}
  .logo img{height:70px;}
  main{padding-top:90px;}
  .hero{padding:0 20px;}
  .hero h1{font-size:28px;}
  .hero-services{flex-direction:column;}
  .lang-switcher{display:none;}
}

/* =========================
   İÇ SAYFALAR (Hakkımızda, Hizmetler vb.)
   ========================= */
.page-content{
  padding: 40px 60px 80px;
}

.content-box{
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  padding: 36px 36px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

.content-box h1{
  font-size: 34px;
  margin-bottom: 16px;
  color: #111;
}

.content-box p{
  font-size: 16.5px;
  line-height: 1.85;
  color: #333;
  margin-bottom: 14px;
}

.mini-cards{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.mini-card{
  background: #f7f7f7;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.06);
}

.mini-card h3{
  font-size: 16px;
  margin-bottom: 6px;
  color: #111;
}

.mini-card p{
  font-size: 14px;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

@media (max-width:768px){
  .page-content{
    padding: 20px 15px 60px;
  }

  .content-box{
    padding: 24px;
  }

  .content-box h1{
    font-size: 26px;
  }
}

/* =========================
   GOOGLE MAPS
   ========================= */
.map-box{
  margin-top:50px;
  border-radius:16px;
  overflow:hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* HERO CTA BUTTON */
.cta-calc{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin: 14px 0 0;
  padding: 12px 16px;
  border-radius: 12px;
  background:#e53935;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  letter-spacing:0.2px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.cta-calc:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}

/* MOBİL MENÜ DÜZELTMESİ */
@media (max-width: 768px) {

  .site-header {
    flex-wrap: wrap;
    height: auto;
    padding-bottom: 10px;
  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .navbar ul li a {
    font-size: 14px;
    padding: 6px 8px;
  }

}

/* Mobilde header hero üstüne binmesin */
@media (max-width: 768px) {

  .site-header {
    position: relative;
    height: auto;
    padding-bottom: 12px;
    z-index: 1000;
  }

  .hero {
    margin-top: -90px;
  }

}
