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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0a0a0a;
  color: #f1f1f1;
  font-weight: 500;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Animasyonlar */
@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animated-bg {
  background: linear-gradient(45deg, #ff6a00, #cc4400, #0a0a0a, #1a1a1a, #ff6a00);
  background-size: 600% 600%;
  animation: gradientAnimation 15s ease infinite;
}

/* HEADER */
header {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #ff6a00, #cc4400, #0a0a0a);
  border-bottom: 4px solid #ff6a00;
  padding: 15px 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(255, 106, 0, 0.4);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.logo {
  width: 60px;
  height: auto;
  filter: drop-shadow(0 0 5px rgba(255, 106, 0, 0.8));
}

.main-title {
  font-size: 2.5rem;
  font-weight: bold;
  font-style: italic;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 2px 2px #ff6a00;
  text-align: center;
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.main-nav ul li a {
  color: #ecf0f1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  background-color: rgba(255, 106, 0, 0.3);
  color: #ff6a00;
  transform: translateY(-2px);
}

/* Galeri Nav */
.gallery-nav {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.gallery-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
  transition: all 0.3s;
}

.gallery-nav a:hover,
.gallery-nav a.active {
  background: rgba(255, 106, 0, 0.3);
  color: #ff6a00;
}

/* Mobil Menü */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}

/* HERO BÖLÜMÜ */
.hero {
  background: url('img/slider1.jpg') center/cover no-repeat;
  color: #fff;
  padding: 100px 5%;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* BUTONLAR */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: #ff6a00;
  color: white;
  box-shadow: 0 4px 10px rgba(255, 106, 0, 0.4);
}

.btn-primary:hover {
  background-color: #cc4400;
  transform: translateY(-3px);
}

.btn-secondary {
  background-color: #1a1a1a;
  color: #ff6a00;
  border: 1px solid #ff6a00;
  box-shadow: 0 4px 10px rgba(255, 106, 0, 0.2);
}

.btn-secondary:hover {
  background-color: #ff6a00;
  color: white;
  transform: translateY(-3px);
}

/* BÖLÜMLER */
section {
  padding: 60px 5%;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-title h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 10px;
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #ff6a00;
}

/* HİZMETLER */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: calc(33.333% - 20px);
  transition: all 0.3s ease;
  color: #f1f1f1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #ff6a00;
  box-shadow: 0 15px 30px rgba(255, 106, 0, 0.2);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #ff6a00;
}

/* GALERİ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #1a1a1a;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  border-color: #ff6a00;
  box-shadow: 0 0 15px rgba(255, 106, 0, 0.4);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* İLETİŞİM FORMU */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 30px;
  border-radius: 10px;
  color: #f1f1f1;
}

.contact-info h3 {
  color: #ff6a00;
  margin-bottom: 15px;
}

.contact-form {
  flex: 2;
  min-width: 300px;
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 30px;
  border-radius: 10px;
}

.contact-form h3 {
  color: #ff6a00;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #ccc;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #444;
  border-radius: 5px;
  font-size: 1rem;
  background-color: #0a0a0a;
  color: #f1f1f1;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: #ff6a00;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* FOOTER */
footer {
  background: linear-gradient(to top, #ff6a00, #1a1a1a, #0a0a0a);
  padding: 40px 5% 20px;
  color: #fff;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: #fff;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #ff6a00;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a:hover {
  color: #ff6a00;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #ff6a00;
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
}

/* WHATSAPP BUTONU */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Sahibinden Butonu */
.sahibinden-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #f9c842;
  color: #333;
  padding: 12px 18px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: background-color 0.3s;
}

.sahibinden-btn:hover {
  background-color: #ffd700;
}

/* Telefon Butonu */
.call-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background-color: #ff6a00;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(255, 106, 0, 0.4);
  z-index: 1000;
  transition: background-color 0.3s, transform 0.3s;
}

.call-btn:hover {
  background-color: #cc4400;
  transform: translateX(-50%) scale(1.1);
}

/* Arama Butonu */
.search-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff6a00;
  color: white;
  padding: 14px 20px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3);
  z-index: 999;
  transition: background-color 0.3s;
}

.search-btn:hover {
  background-color: #cc4400;
}

/* Harita */
.harita-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.harita-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
  border: 2px solid #ff6a00;
}

/* RESPONSİVE TASARIM */
@media screen and (max-width: 1024px) {
  .main-title {
    font-size: 2.2rem;
  }

  .service-card {
    width: calc(50% - 15px);
  }

  .hero h2 {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .main-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    width: 100%;
  }

  .main-nav.active {
    max-height: 300px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }

  .hero {
    padding: 80px 5%;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .service-card {
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}

@media screen and (max-width: 480px) {
  .main-title {
    font-size: 1.8rem;
  }

  .logo {
    width: 50px;
  }

  .header-content {
    gap: 10px;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
    bottom: 20px;
    right: 20px;
  }
}