@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
}
/* Hero Slideshow */
#hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#hero-slideshow .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
    opacity: 0;
    transform: scale(1.05);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#hero-slideshow .slide.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* Hero Content */
.relative.z-10 h1 {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease;
}

.relative.z-10 p {
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    animation: fadeInUp 1s ease 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}

/* Form Inputs */
input {
    transition: all 0.3s ease;
}

input:focus {
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e6c200;
}
#hero-slideshow {
  position: absolute;
  inset: 0;
}

#hero-slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  filter: blur(6px);
}

#hero-slideshow .slide.active {
  opacity: 1;
}
@keyframes soft-pulse-green {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-pulse {
  animation: soft-pulse-green 2.5s infinite;
}
/* Floating Action Buttons */

.floating-buttons {
  position: fixed;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 9999;
  pointer-events: none;
  perspective: 1000px;
}

.fab {
  position: absolute;
  bottom: 0;
  width: 56px;
  height: 56px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);

  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) !important;

  pointer-events: auto;
  overflow: hidden;
  will-change: transform, width;
}

.fab-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.fab-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  width: 0;
  /* Yazının aniden kaybolmaması için transition ekle */
    transition: opacity 0.4s ease, width 0.4s ease, padding 0.4s ease !important;
  padding-left: 0;
  will-change: transform, opacity, width;
}

/* WhatsApp Button */
.fab-whatsapp {
  left: 24px;
  background: #25D366;
  color: white;
  transform-origin: left center;
}
.fab-whatsapp {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-whatsapp:hover {
  width: auto;
  padding: 0 20px;
  transform: translateX(0) scale(1.05);
}

.fab-whatsapp:hover .fab-icon {
  transform: rotate(10deg);
}

.fab-whatsapp:hover .fab-text {
  opacity: 1;
  width: auto;
  padding-left: 12px;
  transform: translateX(0);
}

.fab-whatsapp:not(:hover) {
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Call Button */
.fab-call {
  right: 24px;
  background: #FFD000;
  color: black;
  transform-origin: right center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab-call:hover {
  width: auto;
  padding: 0 20px;
  transform: translateX(0) scale(1.05);
}

.fab-call:hover .fab-icon {
  transform: rotate(-10deg);
}

.fab-call:hover .fab-text {
  opacity: 1;
  width: auto;
  padding-left: 12px;
  transform: translateX(0);
}

.fab-call:not(:hover) {
  transition: all 0.9s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
/* WhatsApp Pulse Animation */

@keyframes soft-pulse-yellow {
  0% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(211, 199, 37, 0.7); 
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(211, 208, 37, 0.2); 
  }
  100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); 
  }
}

/* Call butonu pulse */
.fab-call.pulse {
  animation: soft-pulse-yellow 1.8s infinite ease-in-out;
}


@keyframes pulse {
  0% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); 
  }
  50% { 
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0.2); 
  }
  100% { 
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); 
  }
  
}

.fab-whatsapp.pulse {
  animation: pulse 1.8s infinite ease-in-out;
}

/* Mobile Behavior */
@media (max-width: 768px) {
  .fab.auto-expand {
    width: auto;
    padding: 0 20px;
    transform: scale(1.05) !important;
  }
  
  .fab.auto-expand .fab-text {
    opacity: 1;
    width: auto;
    padding-left: 12px;
  }

  .fab.auto-expand .fab-icon {
    transform: rotate(10deg);
  }

  .fab-call.auto-expand .fab-icon {
    transform: rotate(-10deg);
  }







  /* Otomatik açılma durumu için gerekli CSS */
.fab.auto-expand {
    width: 140px !important; /* Yazının sığacağı genişlik */
    padding: 0 20px !important;
}

.fab.auto-expand .fab-text {
    opacity: 1 !important;
    width: auto !important;
    padding-left: 12px !important;
}
}

/* Hizmetler Bölümü Stilleri - Şeffaf Arkaplan */
.services-section {
    padding: 80px 20px;
    background: transparent !important;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1 {
    font-size: 2.8rem;
    color: #fcfcfc; /* Siyah başlık */
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ffffff; /* Koyu gri */
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Swiper Container */
.services-swiper {
    width: 100%;
    height: auto;
    padding: 20px 0 80px;
    background: transparent;
}

/* Swiper Slide */
.swiper-slide {
    width: 320px;
    height: auto;
}

/* Service Card - Siyah/Sarı Tema */
.service-card {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d); /* Siyah gradient */
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 204, 0, 0.959); /* Sarı border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFC000); /* Sarı gradient */
}



.service-icon {
    font-size: 3.8rem;
    margin-bottom: 25px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 6px rgba(255, 204, 0, 0.3));
}

.service-title {
    font-size: 1.6rem;
    color: #FFD700; /* Sarı başlık */
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-desc {
    color: #cccccc; /* Açık gri metin */
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 0.98rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.service-features span {
    color: #ffffff;
    padding: 8px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.feature-icon {
    color: #FFD700; /* Sarı tik */
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
}

.service-footer {
    margin-top: auto;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-price {
    color: #FFD700;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.service-btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500); /* Sarı gradient */
    color: #000000 !important; /* Siyah yazı */
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.service-btn:hover {
    background: linear-gradient(135deg, #FFC000, #FF8C00); /* Koyu sarı */
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
    color: #000000;
}

/* Swiper Navigation - Sarı Tema */
.swiper-button-next,
.swiper-button-prev {
    color: #FFD700 !important; /* Sarı ok */
    width: 55px;
    height: 55px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.3rem;
    font-weight: bold;
}


.swiper-pagination-bullet {
    background: rgba(255, 215, 0, 0.3); /* Açık sarı */
    opacity: 0.6;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #FFD700 !important; /* Sarı aktif nokta */
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .swiper-slide {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 15px;
    }
    
    .section-header h1 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .swiper-slide {
        width: 280px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none; /* Mobilde sadece kaydırma */
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 10px;
    }
    
    .section-header h1 {
        font-size: 1.8rem;
    }
    
    .swiper-slide {
        width: 260px;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .service-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

.taksi-seridi {
  /* Tam genişlik vererek mobil ve masaüstü uyumlu olmasını sağlıyoruz */
  width: 100%;
  height: 40px; /* Şeridin yüksekliğini buradan değiştirebilirsin */
  
  /* Klasik Taksi Daması Deseni */
  background: conic-gradient(
    from 90deg at 20px 20px, 
    #111111 90deg, 
    #ffcc00 0 180deg, 
    #111111 0 270deg, 
    #ffcc00 0
  );
  
  /* Karelerin boyutu (Yüksekliğe eşit olmalı ki tam kare dursunlar) */
  background-size: 40px 40px; 
  
  /* Kayma Animasyonu: 1.5s hızı belirler. linear akıcı olmasını, infinite sürekli olmasını sağlar */
  animation: kayanDama 1.5s linear infinite;
  
  /* İsteğe bağlı: Şeridi sayfadan ayırmak için üstüne ve altına ince siyah bir çizgi */
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

/* Animasyonun Tanımı */
@keyframes kayanDama {
  0% {
    background-position: 0 0;
  }
  100% {
    /* 40px kare boyutuna eşittir, böylece animasyon başa sardığında takılmaz */
    background-position: -40px 0; /* Sola doğru kayar. Sağa kayması için eksiyi kaldırıp 40px yapabilirsin */
  }
}

/* Ada Turu Genel Alanı */
/* Ada Turu Genel Alanı - Siyah Tema */
.ada-turu-bolumu {
  padding: 60px 20px;
  background-color: #0a0a0a; /* Tam siyah yerine çok koyu premium gri/siyah */
  font-family: 'Montserrat', sans-serif; /* Montserrat fontu */
  text-align: center;
  overflow: hidden;
  color: #fff; /* Genel yazı rengi beyaz */
}

.turu-baslik-alani {
  margin-bottom: 40px;
}

.turu-baslik {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.turu-baslik::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 4px;
  background-color: #ffcc00; 
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.turu-aciklama {
  font-size: 16px;
  color: #cccccc; /* Siyah üzerine açık gri okunabilirlik sağlar */
  max-width: 600px;
  margin: 20px auto 0;
  font-weight: 400;
}

/* Kaydırıcı (Carousel) Ayarları */
.kaydirici-kapsayici {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.kart-pisti {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 10px;
  scrollbar-width: none; 
  -ms-overflow-style: none;
  cursor: grab; /* Masaüstü için tutma imleci */
}

/* Fareyle tutulduğunda imleç değişsin ve kayma yumuşasın */
.kart-pisti:active {
  cursor: grabbing;
}
.kart-pisti.surukleniyor {
  scroll-snap-type: none; /* Sürüklerken takılmayı önler */
  scroll-behavior: auto; /* Anında tepki için smooth'u kapatırız */
}

.kart-pisti::-webkit-scrollbar {
  display: none;
}

/* Kart Tasarımı - Koyu Tema */
.turu-karti {
  flex: 0 0 calc(33.333% - 20px); 
  min-width: 300px;
  background: #1a1a1a; /* Siyahın üstünde kendini belli edecek koyu antrasit */
  border-radius: 12px;
  border-bottom: 4px solid #ffcc00; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Siyah temaya uygun gölge */
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  user-select: none; /* Metinlerin yanlışlıkla seçilmesini önler */
}

.turu-karti:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 204, 0, 0.1); /* Hoverda hafif sarımsı bir parlama (opsiyonel) */
}

.kart-resim-alani {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.kart-resim-alani img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  pointer-events: none; /* Resmin tarayıcı tarafından sürüklenmesini engeller! Önemli. */
}

.turu-karti:hover .kart-resim-alani img {
  transform: scale(1.1);
}

.kart-icerik {
  padding: 20px;
  text-align: left;
}

.kart-icerik h3 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

.kart-icerik p {
  font-size: 14px;
  color: #aaaaaa;
  line-height: 1.5;
}

/* Ok Butonları Aynı Kalabilir... */
.ok-butonu {
  background-color: #ffcc00;
  color: #111;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  cursor: pointer;
  position: absolute;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  transition: background 0.3s, transform 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ok-butonu:hover { background-color: #e6b800; transform: scale(1.1); }
.sol-ok { left: -20px; }
.sag-ok { right: -20px; }

@media (max-width: 992px) { .turu-karti { flex: 0 0 calc(50% - 20px); } }
/* Mobil Uyumluluk - Merkeze Hizalama Düzeltmesi */
@media (max-width: 768px) { 
  .kart-pisti {
    /* İlk ve son kartın da tam ekranın ortasına gelebilmesi için sağdan/soldan %7.5 boşluk bırakıyoruz */
    padding: 20px 7.5%; 
  }
  
  .turu-karti { 
    flex: 0 0 85%; /* Kart ekranın %85'ini kaplar */
    scroll-snap-align: center; /* Kartı sol tarafa değil, ekranın tam merkezine kilitler */
  } 
  
  .sol-ok { left: 5px; } 
  .sag-ok { right: 5px; } 
}