* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

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

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

  .container {
  width: min(1280px, 96%);
  margin: auto;
    }   

    header {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(20, 20, 20, 0.92);
      color: white;
      backdrop-filter: blur(8px);
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0;
    }

    .logo {
      font-size: 24px;
      font-weight: 800;
      letter-spacing: 1px;
    }

    .logo span {
      color: #d6b36a;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 26px;
      font-size: 15px;
    }

    nav a:hover {
      color: #d6b36a;
    }

    .hero {
      min-height: 86vh;
      display: flex;
      align-items: center;
      color: white;
      background:
        linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.7)),
        url("https://images.unsplash.com/photo-1618220179428-22790b461013?auto=format&fit=crop&w=1600&q=80") center/cover;
    }

    .hero-content {
      max-width: 720px;
      padding: 70px 0;
    }

    .hero small {
      display: inline-block;
      margin-bottom: 16px;
      color: #d6b36a;
      font-weight: bold;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .hero h1 {
      font-size: clamp(38px, 6vw, 72px);
      line-height: 1.05;
      margin-bottom: 22px;
    }

    .hero p {
      font-size: 19px;
      max-width: 620px;
      color: #e8e8e8;
      margin-bottom: 34px;
    }

    .buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      padding: 14px 22px;
      border-radius: 999px;
      font-weight: 700;
      transition: 0.2s;
    }

    .btn-primary {
      background: #d6b36a;
      color: #111;
    }

    .btn-primary:hover {
      background: #f0c978;
      transform: translateY(-2px);
    }

    .btn-outline {
      border: 1px solid #fff;
      color: #fff;
    }

    .btn-outline:hover {
      background: white;
      color: #111;
    }

    section {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 44px;
    }

    .section-title small {
      color: #a67c28;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
    }

    .section-title h2 {
      font-size: clamp(28px, 4vw, 44px);
      margin-top: 8px;
    }

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

    .card {
      background: white;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
      transition: 0.25s;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
    }

    .card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .card-content {
      padding: 24px;
    }

    .card h3 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .about {
      background: #171717;
      color: white;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }

    .about img {
      width: 100%;
      border-radius: 28px;
      box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
    }

    .about h2 {
      font-size: clamp(30px, 4vw, 48px);
      margin-bottom: 20px;
    }

    .about p {
      color: #ddd;
      margin-bottom: 16px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 26px;
    }

    .stat {
      padding: 18px;
      border-radius: 16px;
      background: #242424;
    }

    .stat strong {
      display: block;
      color: #d6b36a;
      font-size: 28px;
    }

    .gallery-filters {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 30px;
    }

    .filter-btn {
      padding: 11px 18px;
      border-radius: 999px;
      border: 1px solid #d6b36a;
      background: white;
      color: #111;
      font-weight: 700;
      cursor: pointer;
      transition: 0.2s;
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: #d6b36a;
      color: #111;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 18px;
      background: #111;
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
      cursor: pointer;
    }

    .gallery-item img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
      transition: 0.25s;
    }

    .gallery-item:hover img {
      transform: scale(1.06);
      opacity: 0.85;
    }

    .gallery-label {
      position: absolute;
      left: 12px;
      bottom: 12px;
      background: rgba(0, 0, 0, 0.72);
      color: white;
      padding: 7px 12px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
    }

    .image-modal {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.86);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 24px;
      z-index: 999;
    }

    .image-modal.active {
      display: flex;
    }

    .image-modal img {
      max-width: 94vw;
      max-height: 86vh;
      border-radius: 18px;
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
    }

    .modal-close {
      position: absolute;
      top: 22px;
      right: 28px;
      color: white;
      font-size: 42px;
      cursor: pointer;
      line-height: 1;
    }

    .contact {
      background: linear-gradient(135deg, #d6b36a, #94702a);
      color: #111;
    }

    .contact-box {
      background: white;
      border-radius: 28px;
      padding: 38px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 34px;
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
    }

    .contact-info h2 {
      font-size: 36px;
      margin-bottom: 14px;
    }

    .contact-line {
      margin: 18px 0;
      font-size: 18px;
    }

    form {
      display: grid;
      gap: 14px;
    }

    input,
    textarea {
      width: 100%;
      padding: 15px;
      border: 1px solid #ddd;
      border-radius: 14px;
      font-size: 15px;
      font-family: inherit;
    }

    textarea {
      min-height: 130px;
      resize: vertical;
    }

    button {
      border: none;
      cursor: pointer;
      font-size: 16px;
    }

    footer {
      background: #111;
      color: #bbb;
      text-align: center;
      padding: 24px;
    }

    .whatsapp {
      position: fixed;
      right: 22px;
      bottom: 22px;
      background: #25d366;
      color: white;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-size: 28px;
      font-weight: bold;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
      z-index: 20;
    }

    @media (max-width: 900px) {
      .navbar {
        position: relative;
        display: flex;
        justify-content: space-between;
        min-height: 90px;
      }

      .menu-toggle {
        display: block;
      }

      nav {
        display: none;
        position: absolute;
        left: 0;
        top: 90px;
        width: 100%;
        background: rgba(17, 17, 17, 0.98);
        border-top: 1px solid rgba(214, 179, 106, 0.25);
        border-radius: 0 0 16px 16px;
        padding: 14px 0;
        z-index: 999;
      }

      nav.active {
        display: block;
      }

      nav ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
      }

      nav li {
        width: 100%;
      }

      nav a {
        display: block;
        padding: 13px 22px;
        color: white;
        font-size: 16px;
      }

      nav a:hover {
        background: rgba(214, 179, 106, 0.12);
      }

      .services,
      .about-grid,
      .contact-box {
        grid-template-columns: 1fr;
      }

      .gallery {
        grid-template-columns: repeat(2, 1fr);
      }

      body .hero {
        padding-top: 40px;
      }
    }

    @media (max-width: 560px) {
      .stats,
      .gallery {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
      }

      .contact-box {
        padding: 24px;
      }
    }

    .modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(214, 179, 106, 0.9);
  color: #111;
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 30px;
  cursor: pointer;
  z-index: 1001;
}

.modal-prev { left: 28px; }
.modal-next { right: 28px; }

.modal-close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: #d6b36a;
  color: #111;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 34px;
  cursor: pointer;
  z-index: 1002;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: white;
}

.logo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
}

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

.logo-text strong {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
}

.logo-text span {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d6b36a;
  margin-top: 4px;
}

.navbar {
  min-height: 90px;
}

.logo {
  flex-shrink: 0;
}

.logo-text {
  min-width: 260px;
}

nav ul {
  flex-wrap: nowrap;
}

@media (min-width: 901px) {
  .navbar {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
  }

  nav ul {
    justify-content: flex-end;
  }
}

body .hero {
  padding-top: 140px;
}

body .hero-content {
  margin-top: 40px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #d6b36a;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}

/* MOBIL MENU DUZELTME */
@media (max-width: 900px) {
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .container.navbar {
    width: 100%;
    min-height: 96px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .logo {
    gap: 10px;
    max-width: calc(100% - 60px);
  }

  .logo img {
    width: 54px;
    height: 54px;
  }

  .logo-text {
    min-width: 0;
  }

  .logo-text strong {
    font-size: 22px;
    white-space: nowrap;
  }

  .logo-text span {
    font-size: 10px;
    letter-spacing: 1.2px;
    white-space: nowrap;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 1002;
  }

  #siteNav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.98);
    border-top: 1px solid rgba(214, 179, 106, 0.25);
    padding: 14px 0;
    z-index: 1001;
  }

  #siteNav.active {
    display: block;
  }

  #siteNav ul {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  #siteNav li {
    width: 100%;
    text-align: center;
  }

  #siteNav a {
    display: block;
    padding: 13px 20px;
    color: white;
    font-size: 16px;
  }

  #siteNav a:hover {
    color: #d6b36a;
    background: rgba(255, 255, 255, 0.04);
  }

  body .hero {
    padding-top: 0;
  }

  body .hero-content {
    margin-top: 0;
  }
}

@media (max-width: 420px) {
  .logo-text strong {
    font-size: 19px;
  }

  .logo-text span {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .logo img {
    width: 48px;
    height: 48px;
  }
}


/* MOBİL MENÜ SON DÜZELTME */
.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  header {
    position: sticky;
    top: 0;
    z-index: 9999;
  }

  header .container.navbar {
    position: relative;
    min-height: 80px;
    padding: 10px 0;
  }

  header nav:not(.mobile-nav) ul {
    display: none !important;
  }

  .menu-toggle {
    display: block !important;
    position: absolute;
    top: 22px;
    right: 18px;
    z-index: 10001;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 0;
    color: #d6b36a;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-nav {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #111;
    border-top: 1px solid rgba(214, 179, 106, 0.35);
    z-index: 10000;
    padding: 10px 0;
  }

  .mobile-nav.active {
    display: flex !important;
    flex-direction: column;
  }

  .mobile-nav a {
    display: block;
    padding: 14px 24px;
    color: #fff;
    font-size: 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-nav a:hover {
    color: #d6b36a;
    background: #181818;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.pagination button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #eee;
}

.pagination button.active {
  background: #d6b36a;
  color: #111;
  font-weight: bold;
}

/* CMS EKLEMELERI */
.topbar {
  background: #0d0d0d;
  color: #eee;
  font-size: 14px;
  border-bottom: 1px solid rgba(214,179,106,0.25);
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: #eee; }
.topbar a:hover { color: #d6b36a; }
.topbar-left, .topbar-right { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

.trust {
  background: #f5f5f2;
  padding: 54px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-item {
  background: white;
  padding: 22px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.07);
}
.trust-item strong {
  display: block;
  color: #a67c28;
  font-size: 20px;
  margin-bottom: 6px;
}
.map-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.site-footer {
  background: #111;
  color: #bbb;
  padding: 36px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 26px;
}
.site-footer h3, .site-footer h4 { color: white; margin-bottom: 10px; }
.site-footer a { color: #bbb; display: block; margin: 6px 0; }
.site-footer a:hover { color: #d6b36a; }
.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #252525;
  text-align: center;
}
.form-note {
  font-size: 13px;
  color: #555;
}
@media (max-width: 900px) {
  .trust-grid, .footer-grid { grid-template-columns: 1fr; }
  .topbar-inner { justify-content: center; text-align: center; }
  .topbar-left, .topbar-right { justify-content: center; }
}
