/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.6;
}

/* =========================
   LANGUAGE SWITCH
========================= */
.lang-switch {
  text-align: right;
  padding: 10px 16px;
  font-size: 14px;
}

.lang-switch a {
  text-decoration: none;
  color: #0073e6;
  font-weight: 600;
}

.lang-switch strong {
  color: #000;
}

/* =========================
   HEADER / HERO
========================= */
header {
  padding: 60px 20px;
  text-align: center;
  background: #f5f5f5;
}

header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

header p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

/* =========================
   WHATSAPP BUTTON
========================= */
.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* =========================
   SERVICES
========================= */
.services {
  padding: 50px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.services h2 {
  font-size: 26px;
  margin-bottom: 20px;
  text-align: center;
}

.services ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.services li {
  background: #fafafa;
  border: 1px solid #e0e0e0;
  padding: 18px;
  text-align: center;
  font-weight: 600;
}

/* =========================
   CONTACT FORM
========================= */
.contact {
  padding: 50px 20px;
  background: #f9f9f9;
}

.contact h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
}

#contactForm {
  max-width: 500px;
  margin: 0 auto;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  font-size: 15px;
  border-radius: 4px;
}

#contactForm textarea {
  resize: vertical;
  min-height: 100px;
}

#contactForm button {
  width: 100%;
  padding: 14px;
  background: #0073e6;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#contactForm button:hover {
  background: #005bb5;
}

/* =========================
   SERVICE AREAS
========================= */
.service-areas {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.service-areas h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

/* Bölge etiketleri */
.areas {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.areas li {
  background: #f5f5f5;
  padding: 12px 20px;
  border-radius: 20px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s ease;
}

.areas li.show {
  opacity: 1;
  transform: translateX(0);
}

/* Başlık animasyonu */
.fade-down {
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.6s ease;
}

.fade-down.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   DRAGGABLE GALLERY
========================= */
.carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  cursor: grab;
  scrollbar-width: none;
}

.carousel:active {
  cursor: grabbing;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel img {
  height: 200px;
  border-radius: 8px;
  flex-shrink: 0;
  user-select: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.carousel img:hover {
  transform: scale(1.05);
}

/* =========================
   LIGHTBOX
========================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 6px;
}

/* Lightbox okları */
.lb-prev,
.lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
}

.lb-prev { left: 40px; }
.lb-next { right: 40px; }

.lb-prev:hover,
.lb-next:hover {
  background: #fff;
}

/* =========================
   FOOTER (STATIC)
========================= */
.site-footer {
  background: #111;
  color: #fff;
  padding: 20px 16px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.85;
}

.footer-inner strong {
  color: #fff;
}

/* Mobilde alt alta */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}


