* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: white;
  overflow-x: hidden;
}

/* HEADER */
header {
  width: 100%;
  height: 90px;
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 20px;
  border-bottom: 1px solid #3d2b12;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo i {
  color: #d4a041;
  font-size: 38px;
}

.logo h1 {
  color: #d4a041;
  font-size: 34px;
}

.logo span {
  font-size: 34px;
  letter-spacing: 2px;
  color: #d4a041;
}

nav {
  display: flex;
  gap: 35px;
}

nav a {
  color: white;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0%;
  height: 2px;
  background: #d4a041;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.phone-btn {
  border: 1px solid #d4a041;
  white-space: nowrap;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 8px;
  color: #d4a041;
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}

.phone-btn:hover {
  background: #d4a041;
  color: black;
}

/* HERO */
.hero {
  width: 100%;
  height: 100vh;

  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
    url("images/header.png");

  display: flex;
  align-items: center;

  padding: 0 80px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content p {
  font-size: 28px;
  margin-bottom: 15px;
}

.hero-content h2 {
  font-size: clamp(32px, 6vw, 90px);
  line-height: 1.1;
}

.hero-content span {
  color: #d4a041;
}

/* .hero-services {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 35px 0;
  font-size: 22px;
} */
.hero-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  gap: 12px;

  margin: 35px 0;
}

.hero-services div {
  border: 1px solid rgba(212, 160, 65, 0.4);

  padding: 10px 18px;

  border-radius: 30px;

  font-size: 18px;

  background: rgba(212, 160, 65, 0.08);

  color: #d4a041;

  backdrop-filter: blur(5px);
}

.hero-btn {
  display: inline-block;
  padding: 18px 38px;
  background: #d4a041;
  color: black;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: 0.3s;
}

.hero-btn:hover {
  transform: translateY(-5px);
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;

  background: #0d0d0d;
  padding: 40px 80px;

  border-top: 1px solid #3d2b12;
  border-bottom: 1px solid #3d2b12;
}

.feature-box {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-start;
}

.feature-box i {
  font-size: 34px;
  color: #d4a041;
}

.feature-box h4 {
  color: #d4a041;
}

/* SECTIONS */
.about,
.services,
.gallery,
.contact {
  padding: 100px 80px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  color: #d4a041;
  font-size: 18px;
}

.section-title h2 {
  font-size: 50px;
}

/* ABOUT */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
}

.about-text h3 {
  font-size: 42px;
  color: #d4a041;
}

/* SERVICES */
.service-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: #111;
  border: 1px solid #3d2b12;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.service-content {
  padding: 30px;
  text-align: center;
}

/* GALLERY */
.gallery-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* .gallery-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
} */
.gallery-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.4s;
}

/* HOVER EFEKTİ */
.gallery-container img:hover {
  transform: scale(1.05);
  filter: brightness(70%);
}

/* MODAL */
.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);

  display: none;
  justify-content: center;
  align-items: center;

  z-index: 99999;
  padding: 20px;
}

.image-modal img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 18px;
}

/* CONTACT */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}

.contact-info,
.work-hours,
.map {
  background: #111;
  border: 1px solid #3d2b12;
  padding: 35px;
  border-radius: 18px;
}

/* FOOTER */
footer {
  border-top: 1px solid #3d2b12;
  padding: 30px;
  text-align: center;
}

/* WHATSAPP */
/* .whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 70px;
  height: 70px;
  background: #25d366;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 38px;
  z-index: 999;
} */

.whatsapp {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 70px;
  height: 70px;
  background: #25d366;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 38px;
  z-index: 999;

  text-decoration: none;
  color: white;
}

.whatsapp i {
  color: white;
}

/* ===================== */
/* 🔥 MOBİL RESPONSIVE */
/* ===================== */

@media (max-width: 1100px) {
  /* nav {
    display: none;
  } */

  .service-container,
  .gallery-container,
  .features,
  .contact-container {
    grid-template-columns: 1fr 1fr;
  }

  .hero-content h2 {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  header {
    height: auto;
    padding: 12px 15px;

    display: flex;
    flex-wrap: wrap;

    justify-content: center;
    align-items: center;

    gap: 15px;
  }
  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  nav a {
    font-size: 12px;
  }
  .gallery-container img {
    height: 220px;
  }

  .service-card img {
    height: 200px;
  }

  .hero {
    min-height: 100vh;
    padding: 120px 20px 0;

    justify-content: center;
    text-align: center;
  }

  .hero-content h2 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .about,
  .services,
  .gallery,
  .contact {
    padding: 70px 20px;
  }

  .about-container,
  .service-container,
  .gallery-container,
  .features,
  .contact-container {
    grid-template-columns: 1fr;
  }

  /* .map-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #d4a041;
    color: black;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.3s;
  }

  .map-btn:hover {
    transform: translateY(-5px);
  } */

  .features {
    padding: 40px 20px;
  }

  .logo h1 {
    font-size: 22px;
  }

  .logo i {
    font-size: 28px;
  }
  .map iframe {
    border-radius: 15px;
    height: 300px;
  }

  .socials a {
    width: 55px;
    height: 55px;
    border: 1px solid #3d2b12;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    font-size: 24px;
    text-decoration: none;

    transition: 0.4s;
  }

  .socials {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .socials a:hover {
    background: #d4a041;
    color: black;

    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(212, 160, 65, 0.6);
  }
  .whatsapp {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
  .instagram {
    width: 60px;
    height: 60px;
    font-size: 24px;
    bottom: 95px;
  }
}

@media (hover: hover) {
  .gallery-container img:hover {
    transform: scale(1.05);
    filter: brightness(70%);
  }
}
.instagram {
  position: fixed;
  right: 25px;
  bottom: 110px;

  width: 70px;
  height: 70px;

  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);

  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 36px;
  color: white;

  text-decoration: none;

  z-index: 999;

  transition: 0.3s;
}

.instagram:hover {
  transform: scale(1.1);
}

.whatsapp:hover {
  transform: scale(1.1);
}

.seo-title {
  font-size: 0;
  opacity: 0;
  position: absolute;
}
