
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
}


body {
  color: #222;
  background-color: #f5f5f7;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;  /* İstersen kaldır */
}

.logo-icon img {
  width: 150%;
  height: 150%;
  object-fit: contain;
  padding: 4px; /* Logo taşmasın diye ideal ayar */
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 16px;
}

.logo-text span:last-child {
  font-size: 13px;
  color: #666;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-weight: 500;
}

nav li a {
  padding: 6px 8px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}

nav li a:hover {
  background: #222;
  color: #fff;
  transform: translateY(-1px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.phone-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: #222;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.phone-pill span:first-child {
  font-size: 16px;
}

.wp-btn-nav {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #25d366;
  color: #25d366;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.wp-btn-nav:hover {
  background: #25d366;
  color: #fff;
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 860px) {
  nav ul {
    position: fixed;
    inset: 60px 12px auto 12px;
    background: #fff;
    flex-direction: column;
    padding: 14px 12px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s;
  }
  nav ul.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-right {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* HERO */
.hero {
  background-image: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.55)
    ),
    url("img/kurtdagi-billboard.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 70px 18px 70px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: 1px;
}

.hero h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 14px;
  opacity: 0.95;
}

.hero p {
  font-size: 14px;
  max-width: 520px;
  opacity: 0.9;
  margin-bottom: 18px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-badges span {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 4px 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.btn-primary {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: #ffcc00;
  color: #222;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: all 0.2s;
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.btn-secondary {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-secondary2 {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid black;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-secondary2:hover {
   background: #fff;
  color: #25d366;
}
 
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 320px;
}

.stat-card {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 12px 14px;
  text-align: left;
}

.stat-card strong {
  font-size: 18px;
  font-weight: 800;
  display: block;
  margin-bottom: 2px;
}

.stat-card span {
  font-size: 12px;
  opacity: 0.85;
}

.hero-services-preview {
  background: rgba(255, 255, 255, 0.95);
  color: #222;
  padding: 16px 16px 20px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.hero-services-preview h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}

.services-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.service-mini {
  border-radius: 12px;
  padding: 10px 6px;
  font-size: 11px;
  text-align: center;
  font-weight: 700;
  color: #222;
}

.bg-cyan {
  background: #81e6ff;
}

.bg-lilac {
  background: #c5a2ff;
}

.bg-orange {
  background: #ffbf69;
}

.bg-green {
  background: #b9ff73;
}

.bg-yellow {
  background: #ffe16b;
}

.bg-blue {
  background: #7ec7ff;
}

.bg-pink {
  background: #ff92b0;
}

.bg-peach {
  background: #ffcea8;
}

.bg-gray {
  background: #d3d3d9;
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero {
    padding-top: 40px;
  }
  .hero-services-preview {
    order: -1;
  }
}

/* GENERIC SECTIONS */
section {
  padding: 60px 18px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  font-size: 14px;
  color: #555;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  border-radius: 18px;
  padding: 18px 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 800;
}

.service-card p {
  font-size: 13px;
  color: #555;
}

.service-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-weight: 700;
  opacity: 0.7;
}

@media (max-width: 860px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ABOUT */
.about {
  background: #111316;
  color: #f5f5f7;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px;
  align-items: center;
}

.about .section-title {
  color: #fff;
}

.badge-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  margin-bottom: 10px;
}

.about p {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 12px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.about-card {
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
}

.about-card strong {
  display: block;
  margin-bottom: 4px;
}

.about-stats {
  border-radius: 18px;
  background: radial-gradient(circle at top left, #ffcc00, #111316);
  padding: 16px;
  display: grid;
  gap: 12px;
  color: #111;
}

.about-stat-row {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.about-stat-row strong {
  font-size: 18px;
}

@media (max-width: 860px) {
  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* CONTACT / FOOTER */
.contact {
  background: #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 26px;
  align-items: flex-start;
}

.contact-box {
  border-radius: 18px;
  padding: 18px 16px;
  background: #f8f9fb;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  font-size: 14px;
}

.contact-box h3 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 800;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 10px 0 0;
}

.contact-list li strong {
  display: block;
  font-size: 13px;
  color: #555;
}

.contact-list li span {
  font-size: 14px;
  font-weight: 600;
}

.contact-actions {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-embed {
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  background: #ddd;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #555;
  padding: 16px;
  text-align: center;
}

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

footer {
  background: #0c0d10;
  color: #aaa;
  font-size: 12px;
  padding: 14px 18px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-inner a {
  color: #ddd;
  font-weight: 500;
}
/* GALERİ POPUP - RESPONSIVE */
.gallery-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  padding: 20px;
}

.gallery-box {
  width: 100%;
  max-width: 650px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  position: relative;
  text-align: center;
}

.gallery-box img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.close-gallery {
  position: absolute;
  right: 14px;
  top: 8px;
  font-size: 34px;
  cursor: pointer;
  color: #333;
  font-weight: bold;
}

.gallery-text {
  font-size: 14px;
  color: #333;
  font-weight: 600;
  margin-top: 6px;
}

/* Navigation buttons */
.gallery-nav {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.gallery-nav button {
  flex: 1;
  padding: 12px 0;
  border-radius: 10px;
  border: none;
  background: #222;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

/* --- MOBİL GÖRÜNÜM --- */
@media (max-width: 600px) {
  .gallery-box {
    max-width: 95%;
    padding: 14px;
  }

  .gallery-box img {
    border-radius: 10px;
  }

  .gallery-text {
    font-size: 13px;
  }

  .gallery-nav button {
    font-size: 14px;
    padding: 11px 0;
  }

  .close-gallery {
    font-size: 32px;
    top: 5px;
  }
}
/* Sabit WhatsApp Butonu */
.wp-float {
   position: fixed;
    bottom: 25px;
    right: 20px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: transform .2s ease;
}

.wp-float img {
  width: 50px;
  height: 50px;
}

.wp-float:hover {
  transform: scale(1.08);
  box-shadow: 0px 6px 16px rgba(0,0,0,0.35);
}

/* MOBİL RESPONSIVE */
@media (max-width: 600px) {
  .wp-float {
    width: 62px;
    height: 62px;
    right: 14px;
    bottom: 16px;
  }

  .wp-float img {
    width: 40px;
    height: 40px;
  }
}
/* GALERİ FOTOĞRAFINI SABİT BOYUTA SOKMA */
#galleryImage {
    width: 100%;
    height: 350px;        /* SABİT YÜKSEKLİK — istersen 280 / 320 yapabiliriz */
    object-fit: cover;    /* Foto taşsa bile kutudan çıkmaz, bozulmaz */
    border-radius: 12px;
}
@media (max-width: 1024px) {
  .hero-services-preview {
    display: none !important;
  }
}
@media (max-width: 860px) {
  .nav-container {
    padding: 20px 18px;  /* BURAYI BÜYÜTÜYORUZ – İstersen 24px yapabilirsin */
  }
}

