:root {
  --main-yellow: #ffd600;
  --main-dark: #181818;
  --main-green: #27c96e;
  --main-white: #fff;
  --main-gray: #f6f7fb;
  --main-shadow: 0 4px 32px rgba(0,0,0,0.08);
  --main-radius: 22px;
  --main-radius-sm: 14px;
  --main-radius-lg: 32px;
}
body {
  font-family: 'Poppins', 'Montserrat', Arial, sans-serif;
  background: linear-gradient(135deg, #fffde4 0%, #f6f7fb 100%);
}
header.hero {
  padding: 1.2rem 1rem 0.7rem 1rem;
  min-height: 110px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
header.hero h1 {
  font-size: 2.1rem;
  margin-bottom: 0.2rem;
}
header.hero p {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
  width: 100%;
}
.cta-buttons a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(90deg, #27c96e 60%, #1ebe57 100%);
  color: #fff;
  padding: 1.1rem 2.5rem;
  border-radius: 40px;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 24px #25d36644;
  transition: background 0.25s, transform 0.18s, box-shadow 0.18s;
  border: none;
  outline: none;
  cursor: pointer;
  min-width: 220px;
  justify-content: center;
  background: linear-gradient(90deg, #27c96e 60%, #1ebe57 100%);
  border-radius: 50px;
  font-size: 1.18rem;
  font-weight: 700;
  box-shadow: 0 6px 24px #27c96e33;
  min-width: 210px;
  padding: 1rem 2.2rem;
  transition: background 0.22s, transform 0.16s, box-shadow 0.16s;
}
.cta-buttons a.whatsapp {
  background: linear-gradient(90deg, #25d366 60%, #27c96e 100%);
  box-shadow: 0 6px 24px #25d36655;
}
.cta-buttons a:hover {
  background: linear-gradient(90deg, #1ebe57 60%, #27c96e 100%);
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 12px 32px #27c96e44;
}
.cta-buttons a.whatsapp:hover {
  background: linear-gradient(90deg, #27c96e 60%, #25d366 100%);
}
.cta-buttons i {
  font-size: 1.5em;
  filter: drop-shadow(0 2px 6px #fff8);
}

/* Navigation */
nav {
  background: var(--main-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  position: relative; /* For absolute positioning of hamburger menu */
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0.8rem 0;
}

nav li { margin: 0.5rem 1.5rem; }

nav a {
  color: var(--main-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

nav a:hover { color: var(--main-yellow); }

/* Hamburger Menu Styles */
.hamburger-menu {
  display: none; /* Hidden by default on larger screens */
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--main-dark);
  cursor: pointer;
  padding: 0.5rem 1rem;
  position: absolute;
  right: 1.5rem;
  top: 1.5rem; /* Position at the top right of the header */
  transform: translateY(0);
  z-index: 101; /* Ensure it's above everything else */
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.35);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.menu-overlay.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

/* Hamburger icon animation */
.hamburger-menu {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 101;
  cursor: pointer;
}
.hamburger-menu i {
  display: none;
}
.hamburger-menu .bar {
  width: 28px;
  height: 3.5px;
  background: #fff;
  margin: 3.5px 0;
  border-radius: 2px;
  transition: all 0.32s cubic-bezier(.68,-0.55,.27,1.55);
}
.hamburger-menu.active .bar1 {
  transform: rotate(45deg) translate(7px, 7px);
}
.hamburger-menu.active .bar2 {
  opacity: 0;
}
.hamburger-menu.active .bar3 {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hamburger icon default state */
.hamburger-menu .bar1, .hamburger-menu .bar2, .hamburger-menu .bar3 {
  background: var(--main-dark);
}
.hamburger-menu.active .bar1,
.hamburger-menu.active .bar3 {
  background: #fff;
}

/* Main Content */
main {
  max-width: 1000px;
  margin: 2.5rem auto;
  background: var(--main-white);
  border-radius: 18px;
  box-shadow: var(--main-shadow);
  padding: 2.5rem 2.5rem;
}

section {
  margin-bottom: 3rem;
}

h2 {
  color: var(--main-yellow);
  font-size: 2.2rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-align: center;
}

/* Hizmetler Section */
.hizmetler {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
}

.hizmet {
  background: #fffbe7;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 1.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.hizmet:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.hizmet img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.2rem;
  border: 4px solid var(--main-yellow);
  background: var(--main-white);
}

.hizmet h3 {
  margin: 0 0 0.6rem 0;
  color: var(--main-dark);
  font-size: 1.3rem;
  font-weight: 700;
}

.hizmet p {
  margin: 0;
  font-size: 1.05rem;
  color: #555;
}

/* Bölgeler Section */
.bolgeler {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.bolge {
  background: var(--main-gray);
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  padding: 1.2rem 0.8rem;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  color: #444;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.bolge:hover {
  background: #fffbe7;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

/* İletisim Section */
.iletisim {
  background: #fffbe7;
  border-radius: 18px;
  padding: 2.5rem;
  box-shadow: var(--main-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.iletisim strong {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: var(--main-dark);
}

.iletisim a {
  color: var(--main-green);
  text-decoration: none;
  font-weight: 700;
  transition: text-decoration 0.2s ease;
}

.iletisim a:hover { text-decoration: underline; }

.iletisim .map {
  margin-top: 1.5rem;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
  text-align: center;
  color: #888;
  font-size: 0.95rem;
  margin: 2.5rem 0 1.5rem 0;
  padding: 0 1rem;
}
.footer-main {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: #888;
}
.footer-seo {
  font-size: 0.93rem;
  color: #444;
  background: #fffde4;
  border-radius: 12px;
  padding: 1.1rem 1.2rem 1.2rem 1.2rem;
  margin: 0 auto 0 auto;
  max-width: 900px;
  line-height: 1.7;
  box-shadow: 0 2px 12px #ffd60011;
}
.footer-seo strong {
  color: #181818;
  font-size: 1.05rem;
  font-weight: 700;
}
@media (max-width: 600px) {
  .footer-seo {
    font-size: 0.89rem;
    padding: 0.7rem 0.5rem 0.9rem 0.5rem;
    border-radius: 8px;
  }
  .footer-main { font-size: 0.93rem; }
}

.hero-banner {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 0 auto;
  background: #222;
}
.hero-img-banner {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
}
.hero-banner-content {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: #fff;
  text-align: center;
  pointer-events: none;
}
.hero-banner-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 2px 8px #000a;
}
.hero-phone {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  color: #fff;
  text-shadow: 0 2px 8px #000a;
}
.hero-banner-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  pointer-events: auto;
}
.hero-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  border: none;
  background: #ffc107;
  color: #222;
  box-shadow: 0 2px 8px #0002;
  transition: background 0.2s, color 0.2s;
}
.hero-btn-call { background: #e53935; color: #fff; }
.hero-btn-whatsapp { background: #25d366; color: #fff; }
.hero-btn-call:hover { background: #b71c1c; }
.hero-btn-whatsapp:hover { background: #1ebe57; }
.taxi-stripe {
  width: 100%;
  height: 18px;
  background: repeating-linear-gradient(90deg, #222 0 18px, #ffc107 18px 36px);
  margin-top: -4px;
  margin-bottom: 2.2rem;
}

/* Sticky/Parallax Phone Number */
.sticky-phone {
  background: rgba(255,255,255,0.92);
  color: #181818;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.6rem 1.5rem 0.6rem 1.1rem;
  border-radius: 32px;
  box-shadow: 0 4px 18px 0 rgba(24,24,24,0.13), 0 1.5px 8px 0 #ffd60033;
  backdrop-filter: blur(2px);
  border: 1.5px solid #ffd600;
  gap: 0.7rem;
  animation: phone-fancy-in 1.2s cubic-bezier(.68,-0.55,.27,1.55) 0.2s forwards;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sticky-phone .fa-phone {
  font-size: 1.4em;
  color: #27c96e;
  filter: drop-shadow(0 2px 6px #fff8);
}
.sticky-phone:hover {
  background: #fffde4;
  box-shadow: 0 8px 24px 0 #ffd60033, 0 2px 12px 0 #18181822;
  transform: translate(-50%, -50%) scale(1.04);
}
@keyframes phone-fancy-in {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.92);
    filter: blur(4px);
  }
  60% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }
}
/* phone-pulse animasyonu kaldırıldı */
@media (max-width: 700px) {
  .sticky-phone { font-size: 1.05rem; padding: 0.5rem 1rem 0.5rem 0.8rem; }
}

.avantajlar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin: 2.5rem auto 2.5rem auto;
  max-width: 1100px;
}
.avantaj {
  background: #fff;
  border-radius: var(--main-radius);
  box-shadow: 0 2px 16px #ffd60022;
  padding: 2.2rem 1.2rem 1.7rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 320px;
  min-width: 220px;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.18s;
}
.avantaj:hover {
  box-shadow: 0 8px 32px #ffd60044;
  transform: translateY(-6px) scale(1.04);
}
.avantaj img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 5px solid #ffd600;
  margin-bottom: 1.1rem;
  background: #fff;
  box-shadow: 0 2px 8px #ffd60022;
}
.avantaj h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #181818;
  margin: 0 0 0.5rem 0;
}
.avantaj p {
  color: #444;
  font-size: 1.01rem;
  margin: 0;
}
@media (max-width: 900px) {
  .avantajlar { gap: 1.2rem; }
  .avantaj { width: 90%; min-width: 0; }
}
@media (max-width: 700px) {
  .hero-img-banner { max-height: 180px; }
  .hero-banner-content h2 { font-size: 1.3rem; }
  .hero-phone { font-size: 1.1rem; }
  .avantajlar { flex-direction: column; gap: 1.2rem; }
  .avantaj { width: 100%; padding: 1.2rem 0.5rem; }
  .avantaj img { width: 80px; height: 80px; }
}

/* Responsive Adjustments */
@media (max-width: 900px) {
  main {
    padding: 2rem;
    margin: 2rem auto;
  }
  header.hero h1 { font-size: 2.4rem; }
  header.hero p { font-size: 1.1rem; }
}

/* Mobil zoom sorununu çözmek için eklenen kural */

/* Avantajlar Kart Slider'ı için mobil uyumluluk düzeltmeleri */
.avantaj-slider {
  display: flex;
  gap: 16px; /* Kartlar arası boşluk */
  padding: 16px;
}

.avantaj-slider-card {
  flex: 0 0 80%; /* Her kartın genişliği, dar ekranlar için ayarlandı */
  min-width: 0; /* Esnekliği artırmak için */
}

/* Özellikle çok dar ekranlar için ek ayar (örn: iPhone SE) */
@media (max-width: 380px) {
  .avantaj-slider-card {
    flex-basis: 85%; /* Kartların biraz daha geniş olmasını sağla */
  }
  .avantaj-slider {
    padding: 12px;
    gap: 12px;
  }
}

/* Mobile-specific styles for navigation */
@media (max-width: 768px) {
  header.hero {
    padding: 2.5rem 1rem 1.5rem 1rem;
  }
  .hamburger-menu {
    display: flex; /* Show hamburger on small screens */
  }
  nav {
    /* Remove margin-bottom from nav on mobile to prevent extra space */
    margin-bottom: 0;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    position: fixed; /* Overlay content */
    top: 0;
    right: 0; /* Initially positioned at 0, but transformed off-screen */
    width: 280px; /* Width of the mobile menu */
    height: 100vh; /* Full viewport height */
    background: #181818;
    box-shadow: -8px 0 16px rgba(0, 0, 0, 0.2); /* Shadow on the left */
    border-left: 1px solid #222;
    display: flex; /* Always flex */
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.25s;
    z-index: 100;
    pointer-events: none;
  }

  nav ul.active {
    transform: translateX(0);
    opacity: 1;
    background: #181818;
    pointer-events: auto;
  }

  nav li {
    margin: 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #222;
  }

  nav li:last-child {
    border-bottom: none;
  }

  nav a {
    display: block;
    padding: 1.2rem 0;
    font-size: 1.18rem;
    color: #fff;
    font-weight: 700;
    border-bottom: 1px solid #222;
    transition: color 0.18s, background 0.18s;
  }
  nav a:hover, nav a:active, nav a:focus {
    color: #e9ca2e;
    background: #222;
  }
}

@media (max-width: 500px) {
  header.hero {
    padding: 2rem 1rem 1.5rem 1rem;
  }
  nav ul {
    width: 250px; /* Adjust width for smaller mobiles */
  }
  .hamburger-menu {
    font-size: 1.6rem;
    padding: 0.4rem 0.8rem;
  }
} 

.phone-gap {
  height: 70px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
} 

.taksi-gorsel-gap {
  height: 220px;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}
.taksi-parallax-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.taksi-parallax {
  position: absolute;
  top: 50%;
  left: 0;
  width: 420px;
  max-width: 98vw;
  height: auto;
  transform: translateY(-50%) translateX(-110%);
  animation: taxi-slide-transform 5s linear infinite;
  z-index: 10;
  pointer-events: none;
  user-select: none;
}
@keyframes taxi-slide-transform {
  0% {
    transform: translateY(-50%) translateX(-110%);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-50%) translateX(120vw);
    opacity: 0;
  }
}
@media (max-width: 600px) {
  .taksi-gorsel-gap { height: 120px; }
  .taksi-parallax { width: 240px; }
} 

.animated-taxi-stripe {
  width: 100%;
  height: 28px;
  background: repeating-linear-gradient(90deg, #222 0 22px, #ffc107 22px 44px);
  position: relative;
  overflow: hidden;
  margin: 2.5rem 0 2.5rem 0;
}
.animated-taxi-stripe::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: inherit;
  width: 200%;
  height: 100%;
  animation: taxi-stripe-move 2.5s linear infinite;
  z-index: 1;
}
@keyframes taxi-stripe-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-44px); }
}
.moving-taxi {
  position: absolute;
  top: 50%;
  left: -40px;
  font-size: 2.1rem;
  color: #ffc107;
  text-shadow: 0 2px 8px #222a, 0 0 0 #fff;
  z-index: 2;
  animation: taxi-move-icon 3.5s linear infinite;
  transform: translateY(-50%);
}
@keyframes taxi-move-icon {
  0% { left: -40px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% + 40px); opacity: 0; }
} 

.avantaj-slider-container {
  width: 100%;
  overflow-x: auto;
  margin: 2.5rem 0 0 0;
  padding-bottom: 1rem;
}
.avantaj-slider {
  display: flex;
  gap: 1.5rem;
  min-width: 600px;
  padding: 0 1rem;
}
.avantaj-slider-card {
  background: linear-gradient(135deg, #fffbe7 0%, #ffe066 100%);
  border: 2px solid #ffd600;
  border-radius: 18px;
  box-shadow: 0 2px 12px #ffc10722;
  padding: 1.2rem 1.5rem;
  min-width: 220px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  color: #222;
  font-size: 1.1rem;
  transition: box-shadow 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.avantaj-slider-card i {
  font-size: 2.1rem;
  color: #ffc107;
  margin-bottom: 0.5rem;
}
.avantaj-slider-card:hover {
  box-shadow: 0 8px 28px #ffc10744;
  transform: translateY(-5px) scale(1.05);
} 

.hero-araba-img {
  width: 440px;
  max-width: 98vw;
  margin: 2rem auto 0 auto;
  display: block;
  filter: drop-shadow(0 8px 32px #2222);
  transition: transform 0.3s;
}
.hero-araba-img:hover {
  transform: scale(1.04) translateY(-4px);
}
@media (max-width: 600px) {
  .hero-araba-img { width: 260px; }
} 

.fixed-action-buttons {
  position: fixed;
  right: 18px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}
.fixed-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.7rem;
  border-radius: 40px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #27c96e 60%, #1ebe57 100%);
  box-shadow: 0 4px 18px #27c96e33;
  text-decoration: none;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.22s, transform 0.16s, box-shadow 0.16s;
  min-width: 120px;
  justify-content: center;
}
.fixed-btn.call-btn {
  background: linear-gradient(90deg, #27c96e 60%, #1ebe57 100%);
}
.fixed-btn.whatsapp-btn {
  background: linear-gradient(90deg, #25d366 60%, #27c96e 100%);
}
.fixed-btn:hover {
  background: linear-gradient(90deg, #1ebe57 60%, #27c96e 100%);
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 24px #27c96e44;
}
.fixed-btn.whatsapp-btn:hover {
  background: linear-gradient(90deg, #27c96e 60%, #25d366 100%);
}
.fixed-btn i {
  font-size: 1.3em;
}
@media (min-width: 700px) {
  .fixed-action-buttons {
    flex-direction: row;
    gap: 1.2rem;
    bottom: 44px;
    right: 32px;
    align-items: center;
  }
} 

@media (max-width: 699px) {
  .fixed-action-buttons {
    bottom: 18px;
    right: 12px;
  }
}

.fixed-action-buttons.move-up {
  bottom: 100px !important;
}

.hero-slider {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 1.2rem auto;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 4px 24px #ffd60022;
  background: #fff;
}
.hero-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(.68,-0.55,.27,1.55);
  will-change: transform;
}
.hero-slide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
  background: #fff;
  position: relative;
}
.hero-slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
}
.hero-slide-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  border-radius: 18px;
  color: #fff;
  text-align: center;
  padding: 2rem;
  z-index: 1;
}
.hero-slide-overlay h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  letter-spacing: 0.5px;
}
.hero-slide-overlay p {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
  opacity: 0.95;
}
.hero-slider-dots {
  position: absolute;
  left: 0; right: 0; bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero-slider-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: #ffd600;
  opacity: 0.5;
  margin: 0 2px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.hero-slider-dots button.active {
  opacity: 1;
  transform: scale(1.2);
  background: #27c96e;
}
@media (max-width: 600px) {
  .hero-slider, .hero-slide img, .hero-slide { height: 180px; }
  .hero-slider { max-width: 98vw; border-radius: 12px; }
  .hero-slide img { border-radius: 12px; }
  .hero-slide-overlay { border-radius: 12px; padding: 1rem; }
  .hero-slide-overlay h3 { font-size: 1.4rem; }
  .hero-slide-overlay p { font-size: 0.9rem; }
} 

.footer-dark {
  background: #181818;
  color: #eee;
  padding: 2.2rem 0 1.2rem 0;
  font-size: 1rem;
  margin-top: 2.5rem;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.footer-col {
  flex: 1 1 260px;
  min-width: 220px;
}
.footer-col h3 {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.1rem;
  letter-spacing: 0.2px;
}
.footer-areas-list {
  display: flex;
  gap: 2.5rem;
}
.footer-areas-list > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-areas-list span {
  color: #eee;
  font-size: 1rem;
  border-bottom: 1px dashed #333;
  padding-bottom: 0.2rem;
  margin-bottom: 0.2rem;
  display: block;
}
.footer-col-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #eee;
}
.footer-col-contact li {
  margin-bottom: 0.7rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer-col-contact i {
  color: #ffd600;
  font-size: 1.1em;
  min-width: 1.2em;
}
@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  .footer-areas-list {
    flex-direction: column;
    gap: 1.2rem;
  }
} 

.footer-areas-list-compact span {
  font-size: 0.97rem;
  line-height: 1.3;
  border-bottom: none;
  margin-bottom: 0.1rem;
  padding-bottom: 0;
  color: #eee;
  display: block;
}
.footer-areas-list-compact > div {
  gap: 0.1rem;
}
@media (max-width: 700px) {
  .footer-areas-list-compact span {
    font-size: 0.93rem;
  }
} 

.footer-powered {
  text-align: center;
  color: #000000;
  font-size: 0.98rem;
  margin: 0.7rem 0 0.2rem 0;
}
.footer-powered a {
  color: #e9ca2e;
  text-decoration: underline;
  font-weight: 600;
} 

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.68,-0.55,.27,1.55), transform 0.7s cubic-bezier(.68,-0.55,.27,1.55);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 701px) {
  .fade-up, .fade-up.visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
} 

@media (min-width: 1000px) {
  .main-nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1202;
    background: #fff;
    box-shadow: 0 2px 16px #0001;
    border-bottom: 2px solid #f6f7fb;
    padding: 0 0;
    margin: 0 0 0 0;
  }
  .main-nav .nav-links {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    padding: 1.1rem 0 1.1rem 0;
    background: none;
    border: none;
    box-shadow: none;
  }
  .main-nav .nav-links li {
    margin: 0;
    border: none;
  }
  .main-nav .nav-links a {
    font-size: 1.18rem;
    color: #181818;
    font-weight: 700;
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    transition: background 0.18s, color 0.18s;
  }
  .main-nav .nav-links a:hover {
    background: #f6f7fb;
    color: #e9ca2e;
  }
  nav:not(.main-nav) {
    display: none !important;
  }
} 

.blog-sidebar {
  background: #181818;
  color: #fff;
  padding: 1.5rem 1.2rem 1.5rem 1.2rem;
  border-radius: 14px;
  margin-bottom: 2rem;
  max-width: 340px;
  min-width: 220px;
  box-shadow: 0 2px 12px #0002;
}
.blog-sidebar-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #e9ca2e;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  border-left: 4px solid #e9ca2e;
  padding-left: 0.7rem;
}
.blog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.blog-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.blog-list li::before {
  content: '\2014'; /* em dash */
  color: #e9ca2e;
  font-size: 1.1em;
  margin-right: 0.2em;
}
.blog-list a {
  color: #e9ca2e;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.08rem;
  transition: color 0.18s;
}
.blog-list a:hover, .blog-list a:active, .blog-list a:focus {
  color: #e9ca2e;
  text-decoration: underline;
}
@media (max-width: 700px) {
  .blog-sidebar {
    max-width: 100%;
    min-width: 0;
    padding: 1.1rem 0.5rem;
  }
  .blog-sidebar-title { font-size: 1.1rem; }
  .blog-list a { font-size: 1rem; }
} 

/* Fixed Action Buttons */
/* .fixed-action-buttons { display: none; }  KALDIRILDI */

@media (max-width: 768px) {
  .fixed-action-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
  }
  .modern-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    background: #4cc94c; /* Ara için yeşil, WhatsApp için override edilecek */
    color: #fff;
    font-size: 2rem;
    border: none;
    outline: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
    cursor: pointer;
    text-decoration: none;
  }
  .modern-btn.whatsapp-btn {
    background: #25D366;
}

@keyframes neon-glow-green {
  0%, 100% {
    box-shadow: 0 0 16px #4cc94c, 0 0 32px #4cc94c66, 0 0 64px #4cc94c33;
  }
  50% {
    box-shadow: 0 0 32px #4cc94c, 0 0 64px #4cc94c99, 0 0 128px #4cc94c44;
  }
}
@keyframes neon-glow-whatsapp {
  0%, 100% {
    box-shadow: 0 0 16px #25D366, 0 0 32px #25D36666, 0 0 64px #25D36633;
  }
  50% {
    box-shadow: 0 0 32px #25D366, 0 0 64px #25D36699, 0 0 128px #25D36644;
  }
}
.modern-btn.call-btn {
  animation: neon-glow-green 1.8s infinite alternate;
}
.modern-btn.whatsapp-btn {
  animation: neon-glow-whatsapp 1.8s infinite alternate;
  }
  .modern-btn:active {
    transform: scale(0.96);
    box-shadow: 0 2px 6px rgba(0,0,0,0.22);
  }
  .modern-btn:focus {
    outline-offset: 2px;
  }
  /* Eski butonları gizle */
  .fixed-btn, .fixed-action-buttons .fixed-btn span {
    display: none !important;
  }
}