/* Reset ve temel ayarlar */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Tam ekran carousel */
#carouselExampleControls {
  position: relative;
  top: 56px; /* Navbar yüksekliği */
  left: 0;
  width: 100vw;
  height: calc(100vh - 56px);
  z-index: 1;
}

#carouselExampleControls .carousel-inner,
#carouselExampleControls .carousel-item {
  height: 100%;
}

#carouselExampleControls .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Görseli kırpmadan kapsar */
}

/* Başlık ve diğer içerikler */
h2 {
  margin-bottom: 20px;
}

p {
  font-size: 1.1rem;
  line-height: 1.5;
}
#gerekli-telefonlar h3 {
  margin-bottom: 2.5rem;
}

.tel-box {
  background-color: #f9f9f9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.tel-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.tel-box h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.tel-box p {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.tel-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.tel-link:hover {
  text-decoration: underline;
}

.icon img {
  filter: invert(23%) sepia(84%) saturate(2493%) hue-rotate(186deg) brightness(92%) contrast(85%);
}
.icon {
  margin-bottom: 1.5rem;
  text-align: center;
}

.icon img {
  display: block;
  margin: 0 auto 1.5rem auto;
  filter: invert(23%) sepia(84%) saturate(2493%) hue-rotate(186deg) brightness(92%) contrast(85%);
}
#gerekli-telefonlar {
  padding-top: 3rem;
}

#gerekli-telefonlar h3 {
  margin-top: 0; /* section üst padding ile ayarlandıysa burayı 0 yapabilirsin */
  margin-bottom: 2.5rem;
}
.footer {
  background-color: #454545; /* Bunu istediğin renge değiştir */
  color: #ffffff;
  font-size: 0.95rem;
}

.footer h5 {
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer a {
  color: #007bff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .work-hours li {
  margin-bottom: 0.5rem;
}

.footer form input,
.footer form textarea {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.footer form input:focus,
.footer form textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.footer form button {
  padding: 10px;
  font-size: 1rem;
}

@media (max-width: 767px) {
  .footer .row > div {
    margin-bottom: 2rem;
  }
}
.map-container iframe {
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  max-width: 100%;
  width: 100%;       /* Tam genişlik */
  height: 600px;     /* Yükseklik artırıldı */
}
h1 {
  font-family: sans-serif ;
}
.harita-reklam-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.map-container iframe {
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  max-width: 100%;
  width: 600px;
  height: 600px;
}
/* Responsive küçük ekranlar için (mobilde alt alta) */
@media (max-width: 991px) {
  .harita-reklam-container {
    flex-direction: column;
    align-items: center;
  }

  .map-container iframe {
    width: 100%;
    height: 400px;
  }
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
  text-align: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  margin-top: 40px;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
/* DUYURULAR KART STİLİ */
.duyuru-card {
  display: flex;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.duyuru-card:hover {
  transform: translateY(-5px);
}

.duyuru-card .icon {
  font-size: 30px;
  color: #007bff;
  margin-right: 20px;
  margin-top: 10px;
}

.duyuru-content h5 {
  margin: 5px 0;
  font-weight: 600;
}

.duyuru-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

.duyuru-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.badge {
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 20px;
}
/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);  /* Yumuşak arka plan */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.popup-overlay.show {
  opacity: 1;
}

/* Popup İçeriği */
.popup-content {
  background: linear-gradient(145deg, #ff8a00, #e52e71); /* Modern renk geçişi */
  color: white;
  border-radius: 15px;
  padding: 40px;
  max-width: 450px;
  width: 80%;
  text-align: center;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  animation: slideUp 0.6s ease-out;
}

/* Popup Başlık */
.popup-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Kapatma Butonu */
.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.popup-close:hover {
  color: #ff0055; /* Buton hover rengi */
}

/* Popup Resim */
.popup-image {
  max-width: 100%;
  border-radius: 10px;
  margin: 20px 0;
  border: 3px solid #fff; /* Görsel etrafına beyaz sınır */
}

/* Popup Açıklaması */
.popup-description {
  font-size: 1rem;
  color: #f1f1f1;
  margin-bottom: 30px;
}

/* Detaylar Butonu */
.popup-btn {
  background-color: #ff0055; /* Buton rengi */
  color: white;
  padding: 12px 20px;
  font-size: 1rem;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
}

.popup-btn:hover {
  background-color: #e52e71; /* Buton hover rengi */
}

/* Popup Animasyonu */
@keyframes slideUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Formun Modern Görünümü */
#contactForm {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contactForm .form-label {
  font-weight: 600;
  color: #333;
}

#contactForm .form-control {
  border-radius: 4px;
  border: 1px solid #ccc;
}

#contactForm .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

#contactForm button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  border-radius: 6px;
}

#contactForm button:hover {
  background-color: #0056b3;
}

/* Başarı ve Hata Mesajları */
#formMessage {
  font-size: 1rem;
  font-weight: 600;
  padding: 10px;
  border-radius: 5px;
  display: none;
}

.success {
  background-color: #28a745;
  color: white;
}

.error {
  background-color: #dc3545;
  color: white;
}

.footer-link {
  color: #cfd8dc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.hover-opacity {
  transition: opacity 0.3s ease;
}

.hover-opacity:hover {
  opacity: 0.7;
}

.footer-modern input::placeholder,
.footer-modern textarea::placeholder {
  color: #aaa;
  opacity: 0.8;
}
/* === Yol Tarifi (Canlı Harita + Luxury Tasarım) === */
#yol-tarifi {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}

/* Canlı Harita */
.harita-arka {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.harita-arka iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: auto; /* Harita ile etkileşim serbest */
}
/* === Yol Tarifi Bölümü (Full Screen + Sağ Üst Kart) === */
#yol-tarifi {
  position: relative;
  width: 100%;
  height: 75vh;
  overflow: hidden;
}

/* Canlı Harita */
.harita-arka {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.harita-arka iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: auto; /* harita ile etkileşim */
}

/* Sağ üst kart */
.yol-tarifi-kart {
  position: absolute;
  top: 25px;
  right: 30px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  padding: 20px 25px;
  max-width: 250px;
  color: rgb(0, 0, 0);
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Kart içi metin */
.kart-baslik {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.kart-adres {
  font-size: 0.95rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* Kart buton */
.kart-button {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: white;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.kart-button:hover {
  background: linear-gradient(135deg, #fff, #d4af37);
  color: #111;
  transform: scale(1.05);
}

/* Alt Luxury Çizgi */
.yol-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
  z-index: 2;
}

.yol-divider span {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 50px;
}

/* Mobil uyum */
@media (max-width: 768px) {
  #yol-tarifi {
    height: 55vh;
  }

  .yol-tarifi-kart {
    top: 15px;
    right: 15px;
    max-width: 90%;
    padding: 15px 18px;
  }

  .kart-baslik {
    font-size: 1rem;
  }

  .kart-adres {
    font-size: 0.85rem;
  }

  .kart-button {
    font-size: 0.75rem;
    padding: 6px 15px;
  }
}
/* Navbar Temel */
.navbar-modern {
  background-color: #ffffff; /* Açık ve sade */
  padding: 1rem 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Logolar */
.navbar-logo,
.navbar-logo-second {
  max-height: 55px;
  transition: transform 0.3s ease;
}

.navbar-logo:hover,
.navbar-logo-second:hover {
  transform: scale(1.08);
}

/* Ayırıcı | */
.logo-divider {
  font-size: 1.2rem;
  font-weight: 700;
  color: #555;
}

/* Menü Linkleri */
.navbar-modern .nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 12px;
  position: relative;
  font-size: 1rem;
}

.navbar-modern .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, #d4af37, #ffdd55);
  transition: 0.3s;
  border-radius: 2px;
}

.navbar-modern .nav-link:hover::after {
  width: 100%;
}

.navbar-modern .nav-link:hover {
  color: #d4af37;
}

/* Hamburger */
.navbar-modern .navbar-toggler {
  border: none!important;
  outline: none!important;
  background: transparent;
  cursor: pointer;
  padding: 0;
  width: 35px;
  height: 30px;
  position: relative;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: .8rem;
}

.navbar-modern .navbar-toggler span{
  height: 2px;
  width:100%;
  background-color: black;
  margin-bottom: 4px;
}
@media only screen and (min-width:992px){
  .navbar-toggler{
    display: none!important;
  }
}
/* .navbar-modern .navbar-toggler-icon {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.4s ease;
}

.navbar-modern .navbar-toggler-icon::before,
.navbar-modern .navbar-toggler-icon::after {
 content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px; 
  transition: all 0.4s ease;
}

.navbar-modern .navbar-toggler-icon::before {
  transform: translateY(-10px);
}

.navbar-modern .navbar-toggler-icon::after {
  transform: translateY(10px);
} */

/* Mobil Uyum */
@media (max-width: 768px) {
  .navbar-logo,
  .navbar-logo-second {
    max-height: 45px;
  }}
  
.footer-card {
  background-color: #2c3e50;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.footer-card h6 {
  color: #f7f7f7;
}

.footer-card a {
  color: #f7f7f7;
  text-decoration: none;
}

.footer-card a:hover {
  color: #d4af37;
}

.footer-card input.form-control {
  background-color: #1f2833;
  border: none;
  color: #fff;
}

.footer-card input::placeholder {
  color: #bbb;
}

.footer-card button {
  background-color: #f7b500;
  border: none;
}
.duyuru-card {
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  border: 1px solid #e0e0e0;
}

.duyuru-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  border-color: #0d6efd; /* Hoverda hafif canlı renk */
}

.duyuru-card h5 {
  font-weight: 600;
}

.duyuru-card p {
  font-size: 0.9rem;
}

.duyuru-card a {
  text-decoration: none;
}

.duyuru-card a:hover {
  color: #0d6efd;
}

/* Badge canlılık */
.duyuru-card .badge {
  font-size: 0.75rem;
  padding: 0.5em 0.7em;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.duyuru-card:hover .badge {
  transform: scale(1.1);
}
.custom-card {
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.custom-card img.card-img-top {
  width: 100%;
  height: 200px; /* biraz daha büyük resim */
  object-fit: cover;
}

.status-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0.5rem 0.8rem;
  font-size: 0.8rem;
  border-radius: 0.5rem;
  color: #fff;
  font-weight: 600;
}

.badge-new {
  background: #ffc107; /* sarı */
  color: #212529;
}

.badge-work {
  background: #dc3545; /* kırmızı */
}

.badge-completed {
  background: #28a745; /* yeşil */
}
.section-header {
  padding-top: 120px; /* navbar yüksekliğine göre ayarlayabilirsin */
  padding-bottom: 40px;
}
