/* ===== SIVEREK TAKSİ DURAĞ - ANA STİL DOSYASI ===== */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ===== CSS DEĞIŞKENLERI ===== */
:root {
  --yellow: #FFD600;
  --yellow-dark: #F5C800;
  --black: #1a1a1a;
  --black-soft: #2d2d2d;
  --white: #ffffff;
  --gray-bg: #F8F9FA;
  --gray-text: #6c757d;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;
  --phone-red: #E53935;
  --phone-red-dark: #c62828;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ===== YARDIMCI SINIFLAR ===== */
.section-padding { padding: 70px 0; }
.section-padding-sm { padding: 50px 0; }
.text-yellow { color: var(--yellow); }
.bg-dark-custom { background-color: var(--black); }
.bg-yellow { background-color: var(--yellow); }
.fw-800 { font-weight: 800; }

/* ===== BUTONLAR ===== */
.btn-phone {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--phone-red); color: var(--white);
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; border: none;
  box-shadow: 0 4px 15px rgba(229,57,53,0.35);
  transition: var(--transition);
}
.btn-phone:hover { background: var(--phone-red-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(229,57,53,0.45); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--whatsapp); color: var(--white);
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 1rem; border: none;
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.45); }

.btn-yellow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--black);
  padding: 13px 26px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.95rem; border: none;
  transition: var(--transition);
}
.btn-yellow:hover { background: var(--yellow-dark); color: var(--black); transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 13px 26px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.7);
  transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: var(--white); }

/* ===== HEADER ===== */
#site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 0; height: 70px;
}

/* Logo */
.site-logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 48px; height: 48px; background: var(--yellow);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.logo-text { line-height: 1.1; }
.logo-text span:first-child { display: block; color: var(--yellow); font-weight: 800; font-size: 1.05rem; }
.logo-text span:last-child { display: block; color: rgba(255,255,255,0.7); font-size: 0.72rem; letter-spacing: 0.5px; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: rgba(255,255,255,0.85); padding: 8px 14px;
  border-radius: 6px; font-size: 0.88rem; font-weight: 500;
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--yellow); background: rgba(255,214,0,0.1); }

/* Header phone */
.header-phone a {
  display: flex; align-items: center; gap: 8px;
  background: var(--phone-red); color: var(--white);
  padding: 9px 18px; border-radius: 8px;
  font-weight: 700; font-size: 0.9rem;
  transition: var(--transition);
}
.header-phone a:hover { background: var(--phone-red-dark); }

/* Mobile menu toggle */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; color: var(--white); font-size: 1.5rem;
}

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--black-soft); padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-nav a {
  color: rgba(255,255,255,0.85); padding: 12px 20px;
  display: block; font-weight: 500; font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--yellow); background: rgba(255,214,0,0.08); }
.mobile-nav.open { display: flex; }

/* ===== HERO SLİDER ===== */
.hero-slider {
  position: relative; overflow: hidden;
  height: 560px; background: var(--black);
}
@media (max-width: 768px) { .hero-slider { height: 480px; } }
@media (max-width: 480px) { .hero-slider { height: 420px; } }

.slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.8s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }

.slide img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.45);
}

.hero-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 20px;
}

.hero-content { max-width: 800px; }
.hero-badge {
  display: inline-block; background: var(--yellow);
  color: var(--black); padding: 5px 18px;
  border-radius: 20px; font-weight: 700; font-size: 0.78rem;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px;
}
.hero-title {
  color: var(--white); font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title span { color: var(--yellow); }
.hero-subtitle {
  color: rgba(255,255,255,0.88); font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  margin-bottom: 32px; font-weight: 400;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Slider controls */
.slider-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.4); cursor: pointer; border: none;
  transition: var(--transition);
}
.dot.active { background: var(--yellow); transform: scale(1.3); }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.4); color: var(--white); border: none;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--transition); z-index: 10;
}
.slider-arrow:hover { background: var(--yellow); color: var(--black); }
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }

/* ===== BÖLÜM BAŞLIKLARI ===== */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); font-weight: 800; margin-bottom: 10px; }
.section-header p { color: var(--gray-text); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.section-divider {
  width: 60px; height: 4px; background: var(--yellow);
  border-radius: 2px; margin: 14px auto 0;
}

/* ===== HİZMET KARTLARI ===== */
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; text-align: center;
  box-shadow: var(--shadow); transition: var(--transition);
  height: 100%; border-bottom: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
  border-bottom-color: var(--yellow);
}
.service-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: #FFF8E1; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.8rem; color: var(--yellow);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--yellow); color: var(--black); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--gray-text); font-size: 0.88rem; line-height: 1.6; }

/* ===== NEDEN BİZ KARTLARI ===== */
.why-card {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 24px; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: var(--transition); height: 100%;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 54px; height: 54px; border-radius: 12px;
  background: var(--yellow); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--black); flex-shrink: 0;
}
.why-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.why-text p { color: var(--gray-text); font-size: 0.85rem; }

/* ===== CTA BANT ===== */
.cta-band {
  background: linear-gradient(135deg, var(--black) 0%, #2d2d2d 100%);
  padding: 60px 0; text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 800; margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 30px; font-size: 1rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== HARİTA BÖLÜMÜ ===== */
.map-wrapper {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.map-wrapper iframe { display: block; }

/* ===== FOOTER ===== */
.site-footer { background: var(--black); color: rgba(255,255,255,0.8); padding: 60px 0 0; }
.footer-logo .logo-text span:first-child { font-size: 1.2rem; }
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: 12px; line-height: 1.7; }
.footer-title { color: var(--yellow); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--yellow); padding-left: 4px; }
.footer-contact li {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-bottom: 12px;
}
.footer-contact .fc-icon {
  width: 32px; height: 32px; background: rgba(255,214,0,0.12);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--yellow); flex-shrink: 0; font-size: 0.9rem;
}
.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0; margin-top: 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: rgba(255,255,255,0.45); font-size: 0.8rem; transition: var(--transition); }
.footer-legal a:hover { color: var(--yellow); }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(37,211,102,0.1); color: var(--whatsapp);
  padding: 5px 12px; border-radius: 20px; font-size: 0.78rem; font-weight: 600;
  margin-top: 14px;
}

/* ===== STİCKY MOBİL CTA BAR ===== */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.sticky-cta .cta-wa {
  flex: 1; background: var(--whatsapp); color: var(--white);
  padding: 15px 10px; display: flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 700; font-size: 0.9rem;
}
.sticky-cta .cta-call {
  flex: 1; background: var(--phone-red); color: var(--white);
  padding: 15px 10px; display: flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 700; font-size: 0.9rem;
}
.sticky-cta .cta-wa:hover { background: var(--whatsapp-dark); }
.sticky-cta .cta-call:hover { background: var(--phone-red-dark); }
@media (max-width: 768px) { .sticky-cta { display: flex; } body { padding-bottom: 58px; } }

/* ===== FLOATING WHATSAPP ===== */
.float-wa {
  position: fixed; bottom: 80px; right: 20px; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  animation: pulse-wa 2.5s infinite;
  transition: var(--transition);
}
.float-wa:hover { background: var(--whatsapp-dark); color: var(--white); transform: scale(1.1); }
@media (min-width: 769px) { .float-wa { bottom: 30px; } }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ===== HİZMETLER SAYFASI ===== */
.service-detail-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); height: 100%;
}
.service-detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-detail-card .card-img-wrap { height: 200px; overflow: hidden; background: var(--gray-bg); }
.service-detail-card .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-detail-card:hover .card-img-wrap img { transform: scale(1.05); }
.service-detail-card .card-body { padding: 24px; }
.service-detail-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-detail-card p { color: var(--gray-text); font-size: 0.88rem; }
.service-detail-card .card-tag {
  display: inline-block; background: #FFF8E1; color: #b8860b;
  padding: 3px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
  margin-bottom: 12px;
}

/* ===== KURUMSAL SAYFA ===== */
.about-text p { color: var(--gray-text); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }
.about-highlight {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFFDE7 100%);
  border-left: 4px solid var(--yellow); border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin: 24px 0;
}
.about-highlight p { color: var(--black-soft) !important; font-weight: 500; margin: 0 !important; }
.vm-card {
  padding: 30px; border-radius: var(--radius-lg);
  text-align: center; height: 100%;
}
.vm-card.vision { background: var(--black); color: var(--white); }
.vm-card.mission { background: var(--yellow); color: var(--black); }
.vm-card .vm-icon { font-size: 2.5rem; margin-bottom: 16px; }
.vm-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.vm-card p { font-size: 0.9rem; line-height: 1.7; opacity: 0.85; }

/* ===== STATS ===== */
.stat-item { text-align: center; padding: 20px; }
.stat-num { font-size: 2.5rem; font-weight: 800; color: var(--yellow); line-height: 1; }
.stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); margin-top: 6px; }

/* ===== İLETİŞİM SAYFASI ===== */
.contact-info-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow);
}
.contact-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 18px 0; border-bottom: 1px solid #f0f0f0;
}
.contact-item:last-child { border-bottom: none; }
.contact-item-icon {
  width: 50px; height: 50px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-item-icon.yellow { background: #FFF8E1; color: var(--yellow); }
.contact-item-icon.green { background: #E8F5E9; color: var(--whatsapp); }
.contact-item-icon.red { background: #FFEBEE; color: var(--phone-red); }
.contact-item-icon.blue { background: #E3F2FD; color: #1976d2; }
.contact-item-text h4 { font-weight: 700; font-size: 0.9rem; margin-bottom: 4px; }
.contact-item-text p, .contact-item-text a { color: var(--gray-text); font-size: 0.9rem; line-height: 1.5; }
.contact-item-text a:hover { color: var(--phone-red); }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #2d2d2d 100%);
  padding: 60px 0; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../resimler/4.jpg') center/cover;
  opacity: 0.08;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.breadcrumb-custom { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.breadcrumb-custom a { color: var(--yellow); font-size: 0.85rem; }
.breadcrumb-custom span { color: rgba(255,255,255,0.4); font-size: 0.85rem; }

/* ===== NEDEN BİZ SAYFASI ===== */
.feature-big {
  display: flex; align-items: center; gap: 30px;
  padding: 30px; background: var(--white);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  margin-bottom: 20px; transition: var(--transition);
}
.feature-big:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); }
.feature-big-icon {
  width: 70px; height: 70px; border-radius: var(--radius);
  background: var(--yellow); display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--black); flex-shrink: 0;
}
.feature-big-text h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.feature-big-text p { color: var(--gray-text); font-size: 0.88rem; }

/* ===== YASAL SAYFALAR ===== */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; font-weight: 700; margin: 30px 0 12px; color: var(--black); }
.legal-content p { color: var(--gray-text); font-size: 0.9rem; line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; }
.legal-content ul li { color: var(--gray-text); font-size: 0.9rem; line-height: 1.8; list-style: disc; }
.legal-content .last-update { background: var(--gray-bg); border-radius: 8px; padding: 12px 18px; font-size: 0.82rem; color: var(--gray-text); margin-bottom: 30px; }

/* ===== ANİMASYONLAR ===== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .main-nav, .header-phone { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
}

@media (max-width: 768px) {
  .section-padding { padding: 50px 0; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn-phone, .hero-cta .btn-whatsapp { width: 100%; max-width: 280px; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .feature-big { flex-direction: column; text-align: center; }
  .why-card { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 480px) {
  .logo-text span:first-child { font-size: 0.9rem; }
  .header-inner { height: 62px; }
}
