
html, body {
  min-height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

main {
  flex: 1; /* içerik alanı esnek, footer aşağıda kalır */
}

/* Navbar */
.custom-navbar {
  background-color: #0d1b2a !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  padding: 0 1rem;
  display: flex;
  align-items: center;
  height: 100px;  /* Navbar logo ile uyumlu */
}

/* Logo */
.navbar-brand img {
  height: 115px;           /* Logo biraz daha büyütüldü */
  width: auto;
  margin-top: 20px;           /* Navbar akışını bozmadan */
}

/* Menü linkleri */
.custom-navbar .nav-link {
  color: #fff !important;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  height: 100%;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover efekt */
.custom-navbar .nav-link:hover {
  color: #ffb703 !important;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  #navbarSupportedContent {
    display: none; /* Başlangıçta gizli */
    flex-direction: column; /* Alt alta sıralama */
    width: 100%; /* Tam genişlik */
    height: 100vh; /* Tam ekran yüksekliği */
    position: fixed; /* Sabit, ekran üstüne çıkacak */
    top: 0;
    left: 0;
    background-color: #0d1b2a; /* Arka plan rengi */
    overflow-y: auto; /* Çok uzun olursa scroll */
    z-index: 9999;
    padding-top: 60px; /* Navbar yüksekliği kadar boşluk */
  }

  #navbarSupportedContent.show {
    display: flex;
  }

  .custom-navbar .nav-link {
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #333;
  }
}




.custom-navbar .nav-link, 
.custom-navbar .navbar-brand {
  color: #fff !important;
  position: relative;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: #FF8C00 !important;
  transform: scale(1.05);
}

.custom-navbar .nav-link:not(.dropdown-toggle)::after {
  content: '';
  position: absolute;
  width: 0; height: 2px;
  bottom: -3px; left: 0;
  background: #FF8C00;
  transition: width 0.3s ease;
}

.custom-navbar .nav-link:not(.dropdown-toggle):hover::after {
  width: 100%;
}

/* Dropdown Menü - İki Sütun */
.custom-navbar .dropdown-menu {
  background-color: #0d1b2a !important;
  border-radius: 12px;
  padding: 15px;
  min-width: 400px; /* iki sütun için genişlik */
  display: grid;
  grid-template-columns: 1fr 1fr; /* iki sütun */
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.custom-navbar .dropdown:hover .dropdown-menu,
.custom-navbar .dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-navbar .dropdown-item {
  color: #fff !important;
  padding: 10px 20px;
  transition: all 0.3s ease;
  font-weight: 500;
  border-radius: 8px;
  border-bottom: 2px solid #FF8C00; /* normal durumda ince turuncu çizgi */
}

.custom-navbar .dropdown-item:hover {
  background-color: #FF8C00 !important;
  color: #0d1b2a !important;
  transform: translateX(8px) scale(1.05);
  box-shadow: 0 4px 15px rgba(255,140,0,0.4);
  border-bottom: none; /* hover’da alt çizgi kalkabilir */
}

/* Alt menüde küçük ikon veya ok eklemek istersen */
.custom-navbar .dropdown-toggle::after {
  content: '\25BC'; /* aşağı ok */
  font-size: 0.6rem;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.custom-navbar .dropdown.show .dropdown-toggle::after {
  transform: rotate(-180deg);
}

@media (max-width: 768px) {
  .custom-navbar .collapse.navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* ekranın tamamını kapla */
    background-color: #0d1b2a;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 20px; /* üstten boşluk bırak */
    display: none; /* başta kapalı */
    overflow-y: auto; /* içerik taşarsa kaydırılabilir olsun */
    z-index: 9999;
  }

  .custom-navbar .collapse.navbar-collapse.show {
    display: flex; /* hamburger tıklanınca açılacak */
  }

  .custom-navbar .nav-link {
    width: 100%;
    padding: 15px 10px;
    border-bottom: 1px solid #333;
  }

  .navbar-toggler {
    z-index: 10000; /* buton menünün üstünde kalsın */
  }
}



/* Hero Slider */
#hero { 
  height: 100vh; 
  position: relative; 
  overflow: hidden; 
  margin: 0; 
  padding: 0; 
}
.hero-slide {
  position: absolute;
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.overlay {
  width: 100%; height: 100%;
  background: rgba(13,27,42,0.5);
  display: flex; align-items: center; justify-content: center;
}
/* Hero Slider Başlığı */
.hero-text h1 {
    font-size: 6rem;       /* Başlığı büyüttük */
    font-weight: 800;      /* Daha kalın yazı */
    text-transform: uppercase; /* Büyük harf */
    letter-spacing: 2px;   /* Harf arası boşluk */
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 3px 3px 15px rgba(0,0,0,0.6); /* Gölge efekti */
}

/* Açıklama metni */
.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 400;
    color: #f0f0f0;
}

/* Butonlar */
.hero-text .btn-dark-orange {
    background-color: #FF8C00;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    padding: 12px 30px;
    margin: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.hero-text .btn-dark-orange:hover {
    background-color: #e67300;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 15px rgba(255,140,0,0.6);
}

/* Mobil uyumlu */
@media(max-width:768px){
    .hero-text h1 { font-size: 3rem; }
    .hero-text p { font-size: 1rem; }
}


/* Ürünler Bölümü */
#products { 
  padding: 40px 0; 
  text-align: center; 
  margin: 0; 
  background-color: #fff; /* arka plan beyaz */
}

#products h2 { 
  font-weight: 700; 
  margin-bottom: 40px; 
  color: #0d1b2a; /* başlık rengi */
}

/* Kartlar */
.product-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Ürün görselleri */
.product-card img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

/* Açıklama */
.product-card p {
  font-size: 0.9rem;
  margin-top: 10px;
  color: #333;
}

/* Badge */
.product-card .badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #FF8C00;
  color: #fff;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 12px;
  text-transform: uppercase;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Turuncu Buton */
.btn-dark-orange {
  background: linear-gradient(135deg, #ff8c00, #ff6600);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 140, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-dark-orange:hover {
  background: linear-gradient(135deg, #ff6600, #ff8c00);
  box-shadow: 0 6px 15px rgba(255, 140, 0, 0.6);
  transform: translateY(-2px) scale(1.05);
  color: #fff;
}

/* Responsive */
@media(max-width: 768px){
  .product-card { padding: 15px; }
  .product-card p { font-size: 0.85rem; }
}

@media(max-width: 480px){
  .product-card { padding: 12px; }
  .product-card p { font-size: 0.8rem; }
  .product-card .badge { font-size: 0.7rem; padding: 4px 8px; }
}



/* Turuncu Buton (mevcut) */
.btn-dark-orange {
  background: linear-gradient(135deg, #ff8c00, #ff6600);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 140, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-dark-orange:hover {
  background: linear-gradient(135deg, #ff6600, #ff8c00);
  box-shadow: 0 6px 15px rgba(255, 140, 0, 0.6);
  transform: translateY(-2px) scale(1.05);
  color: #fff;
}

/* Responsive */
@media(max-width: 768px){
  .product-card { margin-bottom: 20px; }
}

@media(max-width: 480px){
  .product-card { margin-bottom: 15px; }
}



/* Turuncu Buton (şık tasarım) */
.btn-dark-orange {
  background: linear-gradient(135deg, #ff8c00, #ff6600);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 8px 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 140, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none; /* Alt çizgi kaldırıldı */
  display: inline-block; /* Daha düzgün görünüm */
}

.btn-dark-orange:hover {
  background: linear-gradient(135deg, #ff6600, #ff8c00);
  box-shadow: 0 6px 15px rgba(255, 140, 0, 0.6);
  transform: translateY(-2px) scale(1.05);
  color: #fff;
}

.product-card:hover { transform: translateY(-5px); }

/* Footer */
.footer-section {
  background-color: #0d1b2a;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
}

/* Footer Başlıkları */
.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  text-align: center; /* başlığı ortala */
}

/* Başlık altındaki turuncu çizgi */
.footer-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #FF8C00;
  margin: 5px auto 0; /* çizgiyi ortala */
  border-radius: 2px;
}

/* Footer linkleri */
.footer-section a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover efekti */
.footer-section a:hover {
  color: #FF8C00;
}

/* Footer p etiketleri */
.footer-section p {
  margin-bottom: 6px;
  color: #d1d1d1;
  text-align: center; /* metni ortala */
}

/* Sosyal ikonlar */
.social-icon {
  display: inline-block;
  font-size: 1.5rem;
  margin: 0 8px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  color: #FF8C00;
  transform: scale(1.2);
}

/* Mobil uyumlu düzenlemeler */
@media(max-width:768px){
  .footer-title::after {
    width: 40px;
  }
  .social-icon {
    font-size: 1.3rem;
    margin: 0 6px;
  }
}

/* Galeri */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 30px;
}
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border: 4px solid #0d1b2a;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  animation: fadeIn 0.8s forwards;
}
.gallery-img:hover {
  transform: scale(1.05);
  border-color: #FF8C00;
  box-shadow: 0 12px 30px rgba(255,140,0,0.6);
}

/* Modal */
.modal-backdrop.show {
  background-color: rgba(0, 0, 0, 0.6) !important;
}
.modal-content {
  background: transparent;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Modal görsel boyutunu sınırla */
.modal-img {
  max-width: 65vw;   /* daha küçük ekranlar için uyumlu */
  max-height: 65vh;  /* yüksekliği sınırla */
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

/* Modal açıldığında body scroll engelle */
body.modal-open {
  overflow: hidden !important;
  padding-right: 0 !important;
}

/* Fade-in animasyonu */
@keyframes fadeIn {
  to { opacity: 1; }
}

/* --- Hakkımızda Bölümü --- */
#about {
  background-color: #0d1b2a; /* Lacivert arka plan */
  color: #fff;
  padding: 30px 0; /* üst-alt boşluk */
  text-align: center;
  position: relative;
}

#about h2 {
  font-size: 2.2rem; /* Daha büyük */
  color: #fff; /* Beyaz yazı */
  margin-bottom: 40px;
  font-weight: 700;
}

/* Kart konteyneri */
#about .cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  position: relative;
}

/* Kartlar */
#about .card-box {
  background: linear-gradient(135deg, #1b2a3d, #0d1b2a);
  padding: 20px;
  border-radius: 12px;
  width: 220px; /* Orta boyut */
  transition: transform 0.8s ease, opacity 0.8s ease, box-shadow 0.4s ease;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;

  /* Başlangıç animasyonu (sağdan gelme) */
  opacity: 0;
  will-change: transform, opacity;
  transform: translateX(100px) rotate(calc(var(--i) * 2deg - 6deg));
}

/* Hover efekti */
#about .card-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, #FF8C00, #ffae42, #ff6600);
  transform: rotate(45deg);
  transition: opacity 0.5s ease;
  opacity: 0;
  z-index: 0;
}

#about .card-box:hover::before {
  opacity: 1;
}

#about .card-box * {
  position: relative;
  z-index: 1;
}

/* Hover + active animasyonu birleştirme */
#about .card-box.active:hover {
  transform: translateX(0) translateY(-5px) scale(1.05) rotate(0deg);
  box-shadow: 0 10px 25px rgba(255,140,0,0.4);
  color: #0d1b2a;
}

/* Kart aktif animasyonu (sayfa görünürken) */
#about .card-box.active {
  opacity: 1;
  transform: translateX(0) rotate(calc(var(--i) * 2deg - 6deg));
}

/* Kart içeriği */
#about .card-box i {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

#about .card-box h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

#about .card-box p {
  font-size: 0.9rem;
  line-height: 1.3;
}

#about .card-box small {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: #0d1b2a;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#about .card-box:hover small {
  opacity: 1;
  transform: translateY(0);
}

/*Hakımızda ist */
#about .stats-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 120px; /* daha altta */
  flex-wrap: wrap;
}

#about .stat-box {
  text-align: center;
  transition: transform 0.3s ease, color 0.3s ease;
}

#about .stat-box i {
  font-size: 2rem; /* biraz daha küçük ikon */
  margin-bottom: 10px;
  color: #FF8C00;
  display: block;
}

#about .stat-number {
  font-size: 1.8rem; /* sayı biraz küçüldü */
  font-weight: 700;
  margin-bottom: 3px;
  color: #ffae42;
}

#about .stat-box p {
  font-size: 0.9rem; /* metin küçüldü */
  color: #fff;
  font-weight: 500;
}

#about .stat-box:hover {
  transform: scale(1.1); /* hover biraz daha hafif */
  color: #ffb84d;
}

/* Responsive */
@media(max-width: 768px){
  #about .stats-container {
    gap: 25px;
    margin-top: 80px;
  }
  #about .stat-box i {
    font-size: 1.8rem;
  }
  #about .stat-number {
    font-size: 1.5rem;
  }
  #about .stat-box p {
    font-size: 0.8rem;
  }
}




/* Responsive */
@media(max-width: 992px) {
  #about h2 { font-size: 2rem; }
  #about .card-box { width: 45%; transform: rotate(0deg); }
}

@media(max-width: 768px) {
  #about h2 { font-size: 1.8rem; }
  #about .card-box { width: 90%; transform: rotate(0deg); margin-bottom: 15px; }
}

@media(max-width: 480px) {
  #about h2 { font-size: 1.6rem; }
  #about .card-box { width: 90%; transform: rotate(0deg); }
}



/* --- 3 Bölümde Fazla Boşlukları Kapatma --- */
section#hero,
section#products,
section#about {
  min-height: 95vh; /* Her biri ekran yüksekliği kadar */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

/* Responsive */
@media(max-width: 1200px){
  .hero-text h1 { font-size: 2.5rem; }
  .hero-text p { font-size: 1rem; }
}

@media(max-width: 992px){
  .hero-text h1 { font-size: 2rem; }
  .hero-text p { font-size: 0.9rem; }
  section#products .row { row-gap: 20px; }
}

@media(max-width: 768px){
  section#hero,
  section#products,
  section#about {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .hero-text h1 { font-size: 1.6rem; }
  .hero-text p { font-size: 0.85rem; }
  .product-card h5 { font-size: 0.9rem; }
  .btn-dark-orange { padding: 6px 15px; font-size: 0.8rem; }
  #about .card-box { width: 45%; margin-bottom: 15px; }
}

@media(max-width: 480px){
  #about .card-box { width: 90%; }
  .btn-dark-orange { padding: 5px 12px; font-size: 0.75rem; }
  .hero-text h1 { font-size: 1.4rem; }
  .hero-text p { font-size: 0.8rem; }
}

section#hero,
section#products,
section#about {
  display: flex;
  flex-direction: column; /* içerik dikey */
  align-items: center;
  justify-content: center;
  padding: 40px 20px; /* üst-alt boşluk */
  margin: 0;
}

/* REFERANS*/

#references {
  background: #fff;
  padding: 50px 0;
}

#references h2 {
  margin-bottom: 30px;
  color: #0d1b2a;
}

.logo-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: calc(250px * 10); /* toplam logo sayısına göre */
  animation: scroll 25s linear infinite;
}

.logo-item {
  flex: 0 0 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.logo-item img {
  height: 150px; 
  width: auto;
  filter: grayscale(0.2);
  transition: transform 0.3s, filter 0.3s;
}

.logo-item img:hover {
  transform: scale(1.1);
  filter: grayscale(0);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* yarısını kaydırıyoruz çünkü logolar iki kez var */
}

@media(max-width: 768px){
  .logo-item img {
    height: 50px;     /* Mobilde daha küçük */
  }
}


.contact-section h2 {
    color: #0d1b2a;
    font-weight: 700;
}

.btn-dark-orange {
    background-color: #FF8C00;
    color: #fff;
    border: none;
}

.btn-dark-orange:hover {
    background-color: #ffae42;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%; /* 16:9 oranı */
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 8px;
}


/* Mesaj Gönder Kartı */
.message-card {
    background: #0d1b2a;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px #fff;
}

.form-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: 3px solid #FF8C00;
    display: inline-block;
    padding-bottom: 5px;
}

.form-subtitle {
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: #d1d1d1;
}

/* Form Input ve Textarea Yazıları Beyaz */
.message-card .input-field,
.message-card .textarea-field {
    color: #fff;
    background-color: #0d1b2a; /* Kartla uyumlu */
    border: 1px solid #444; /* İsteğe bağlı kenar çizgisi */
}

/* Placeholder Yazıları Gri */
.message-card .input-field::placeholder,
.message-card .textarea-field::placeholder {
    color: #d1d1d1;
}


/* Modern Input ve Textarea */
.input-field, .textarea-field {
    border-radius: 20px; /* Daha yuvarlak */
    padding: 14px 18px;  /* İç boşluk artırıldı */
    border: 1px solid #ccc; /* Hafif gri sınır */
    background: #1a2738; /* Hafif koyu zemin */
    color: #fff; /* Yazı rengi */
    transition: all 0.3s ease;
    font-size: 1rem;
}

.input-field::placeholder,
.textarea-field::placeholder {
    color: #ccc; /* Modern gri placeholder */
    opacity: 1;
}

.input-field:focus,
.textarea-field:focus {
    outline: none;
    border-color: #FF8C00; /* Turuncu vurgu */
    box-shadow: 0 0 8px rgba(255,140,0,0.5);
    background: #0f1c2c; /* Focus sırasında hafif açılıyor */
}


/* Mesaj Gönder Butonu (şık turuncu) */
.btn-submit {
  background: linear-gradient(135deg, #ff8c00, #ff6600);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 140, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  cursor: pointer;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #ff6600, #ff8c00);
  box-shadow: 0 6px 15px rgba(255, 140, 0, 0.6);
  transform: translateY(-2px) scale(1.05);
  color: #fff;
}




/* Bizi Ziyaret Edin Kartı */
.visit-card {
    background: #0d1b2a;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.visit-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 15px;
    position: relative; /* Çizgi konumlandırması için gerekli */
}

.visit-title::after {
    content: "";
    display: block;
    width: 100%; /* %100 ile kutuya sığdır */
    max-width: 525px; /* büyük ekran için maksimum genişlik */
    height: 3px;
    background-color: #FF8C00;
    margin: 5px 0 0 auto; /* soldan hizalama, margin-right auto */
    margin-left: 0;
    border-radius: 2px;
}

/* WhatsApp Butonu sadece ortalansın */
.visit-card .btn-whatsapp {
    display: block;       /* satır elemanı → blok yap */
    margin: 20px auto 0;  /* üstten boşluk + otomatik yatay ortalama */
}


.visit-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #d1d1d1;
}

.visit-info p {
    font-size: 1rem;
    margin-bottom: 12px;
}

.info-icon {
    color: #FF8C00;
    margin-right: 10px;
    font-size: 1.2rem;
    vertical-align: middle;
}

/* Mobilde uyumlu */
@media (max-width: 768px) {
    .visit-title::after {
        width: 90%; /* mobilde genişliği biraz daralt */
        margin: 5px auto 0; /* ortala */
    }
}

/* ÇALIŞMA SAATLERİ */
.work-hours-card {
  background: #0d1b2a;
  padding: 15px 0;
  margin-top: 15px;
  width: 100%;
}

.work-title {
  font-size: 1rem; /* visit-card ile aynı hizada */
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.work-title i {
  color: #FF8C00;
  font-size: 1rem;
}

.work-details {
  display: flex;
  gap: 12px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin-top: 5px;
}

.work-hours-card:hover .work-details {
  max-height: 60px; /* hover ile açılır */
}

.work-day {
  display: flex;
  align-items: center;
  gap: 4px;
  border-right: 1px solid #FF8C00;
  padding: 0 6px;
}

.work-day:last-child {
  border-right: none;
}

.work-day i {
  font-size: 0.85rem;
  color: #FF8C00;
}

.day-text {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 400;
}


/* MAP */
.map-section {
  width: 100%;
  padding: 50px 0;
  background: #f9f9f9; /* opsiyonel: arka plan harita altı */
  text-align: center;
}

.map-section .map-container h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 20px;
  position: relative;
  display: block; /* başlık tam satır kaplasın */
  margin: 0 auto 20px auto; /* üst ve alt boşluk */
}

.map-section .map-container h3 i {
  color: #ff8c00;
  margin-right: 8px;
}

.map-section .map-container h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff8c00;
  margin: 8px auto 0;
  border-radius: 2px;
}

.map-section .map-container iframe {
  width: 100%;
  max-width: 1200px;
  height: 450px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-section .map-container iframe:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 25px rgba(0,0,0,0.25);
}

@media(max-width:768px){
  .map-section .map-container h3 {
    font-size: 1.5rem;
  }
  .map-section .map-container iframe {
    height: 300px;
  }
}

/* about.css banner */
.about-hero {
    position: relative;
    width: 100%;
    height: 200px; /* Yüksekliği küçülttük */
    background-image: url('../images/about-banner.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4); 
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text h1 {
    font-size: 2rem; /* Metin boyutunu küçülttük */
    font-weight: 700;
    margin-bottom: 5px;
}

.hero-text p {
    font-size: 1rem; /* Metin boyutunu küçülttük */
}


/* about.css özelikler */
.about-features {
    background-color: #f8f8f8; /* Açık gri, modern zemin */
}

.feature-card {
    background: #0d1b2a; /* Kart arka planı sitenize uygun koyu */
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 25px 15px;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: #FF8C00; /* Turuncu vurgu */
    margin-bottom: 15px;
}

.feature-card h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    color: #d1d1d1;
}


/* WhatsApp Butonu */
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128C7E, #25D366);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.6);
  transform: translateY(-2px) scale(1.05);
  color: #fff;
}



/* TAMİR SAYFASI */

.tamir-features {
    background-color: #ffffff; /* Sayfa arka planı beyaz */
}

.feature-card {
    background: #0d1b2a; /* Kart arka planı koyu */
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px 10px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 180px;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 1.8rem;
    color: #FF8C00;
    margin-bottom: 10px;
}

.feature-card h5 {
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.85rem;
    color: #d1d1d1;
    margin-top: auto;
}

.tamir-image {
    width: 100%;
    max-width: 480px; /* Biraz daha büyük */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    object-fit: cover;
    margin: 0 auto;
    display: block;
}

/* Buton */
.btn-tamir {
    background-color: #FF8C00;
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-tamir:hover {
    background-color: #e57c00;
    color: #fff;
}



/* Sabit iletişim butonları */
.fixed-contact-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  z-index: 9999;

  /* Safari + Chrome için donma/sarsılma çözümü */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000;
}

/* Ortak stil */
.fixed-contact-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-tap-highlight-color: transparent;

  /* Chrome performans düzeltmesi */
  will-change: transform;
  transform: translateZ(0);
}

/* Telefon butonu */
.call-btn {
  background-color: #28a745;
  animation: bounceSafari 2s infinite;
  -webkit-animation: bounceSafari 2s infinite;
}

/* WhatsApp butonu */
.whatsapp-btn {
  background-color: #25D366;
  animation: bounceSafari 2s infinite 0.5s;
  -webkit-animation: bounceSafari 2s infinite 0.5s;
}

/* Hover efekti (desktop için) */
.fixed-contact-buttons a:hover {
  transform: scale(1.1) translateZ(0);
  color: #fff;
}

/* Safari + Chrome için zıplama animasyonu */
@-webkit-keyframes bounceSafari {
  0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
  50% { -webkit-transform: translateY(-6px); transform: translateY(-6px); }
}

@keyframes bounceSafari {
  0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
  50% { -webkit-transform: translateY(-6px); transform: translateY(-6px); }
}

/* Sadece mobilde göster */
@media (min-width: 769px) {
  .fixed-contact-buttons {
    display: none;
  }
}








