/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #222; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== TICKER / KAYAN YAZI ===== */
.ticker-wrap {
  background: #c0392b;
  color: #fff;
  padding: 9px 0;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 9999;
}
.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.ticker-content span { margin: 0 50px; }
.ticker-content .sep { color: #ffd700; }
@keyframes ticker {
  0%   { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

/* ===== HEADER ===== */
header {
  background: #1a1a1a;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { font-size: 30px; }
.logo-text { color: #fff; line-height: 1.1; }
.logo-text strong { font-size: 20px; color: #e74c3c; display: block; }
.logo-text small { font-size: 11px; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }
nav { display: flex; gap: 5px; align-items: center; }
nav a {
  color: #ddd;
  padding: 8px 14px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: background .2s, color .2s;
}
nav a:hover, nav a.active { background: #e74c3c; color: #fff; }
.nav-call {
  background: #e74c3c;
  color: #fff !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
}
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 5px; }
.hamburger span { display: block; width: 25px; height: 3px; background: #fff; border-radius: 2px; transition: .3s; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 60%, #3a0a0a 100%);
  color: #fff;
  padding: 70px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img1.jpg') center/cover no-repeat;
  opacity: 0.18;
}
.hero-inner { position: relative; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: #e74c3c;
  color: #fff;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero h1 span { color: #e74c3c; }
.hero p {
  font-size: 17px;
  color: #ccc;
  max-width: 580px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e74c3c;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  transition: background .2s, transform .1s;
}
.btn-call:hover { background: #c0392b; transform: translateY(-2px); }
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  transition: background .2s, transform .1s;
}
.btn-wa:hover { background: #128c48; transform: translateY(-2px); }

/* ===== SECTION COMMON ===== */
section { padding: 60px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: #1a1a1a; }
.section-title h2 span { color: #e74c3c; }
.section-title p { color: #666; margin-top: 8px; font-size: 15px; }
.divider { width: 60px; height: 4px; background: #e74c3c; margin: 12px auto 0; border-radius: 2px; }

/* ===== SERVICES ===== */
.services { background: #f8f8f8; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform .2s, box-shadow .2s;
  border-top: 4px solid transparent;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(0,0,0,0.13); border-top-color: #e74c3c; }
.service-icon { font-size: 40px; margin-bottom: 14px; }
.service-card h3 { font-size: 15px; font-weight: 700; color: #1a1a1a; margin-bottom: 6px; }
.service-card p { font-size: 13px; color: #666; line-height: 1.5; }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.why-card { text-align: center; padding: 20px 10px; }
.why-num { font-size: 40px; font-weight: 900; color: #e74c3c; line-height: 1; }
.why-card h4 { font-size: 15px; font-weight: 700; margin: 6px 0 4px; }
.why-card p { font-size: 13px; color: #666; }

/* ===== REVIEWS ===== */
.reviews { background: #f8f8f8; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.stars { color: #f1c40f; font-size: 18px; margin-bottom: 10px; }
.review-card p { font-size: 14px; color: #444; line-height: 1.6; margin-bottom: 14px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 42px; height: 42px;
  background: #e74c3c;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.reviewer-info strong { display: block; font-size: 14px; }
.reviewer-info small { color: #888; font-size: 12px; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #c0392b, #e74c3c);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}
.cta-banner h2 { font-size: clamp(20px, 3vw, 32px); font-weight: 800; margin-bottom: 8px; }
.cta-banner p { font-size: 16px; margin-bottom: 24px; opacity: .9; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #e74c3c;
  padding: 13px 26px; border-radius: 8px;
  font-size: 15px; font-weight: 700;
  transition: background .2s;
}
.btn-white:hover { background: #f5f5f5; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  border: 2px solid #fff;
  padding: 13px 26px; border-radius: 8px;
  font-size: 15px; font-weight: 700;
  transition: background .2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ===== MAP / CONTACT ===== */
.map-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.map-wrap iframe { width: 100%; height: 360px; border: none; display: block; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info h3 { font-size: 22px; font-weight: 800; margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-item-icon {
  width: 46px; height: 46px; min-width: 46px;
  background: #e74c3c; color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.contact-item-text strong { display: block; font-size: 14px; color: #888; font-weight: 600; margin-bottom: 2px; }
.contact-item-text a { font-size: 16px; font-weight: 700; color: #1a1a1a; }
.contact-item-text a:hover { color: #e74c3c; }
.contact-item-text span { font-size: 15px; }

/* ===== FOOTER ===== */
footer {
  background: #111;
  color: #aaa;
  padding: 40px 20px 20px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 30px; }
.footer-brand strong { color: #fff; font-size: 18px; display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; line-height: 1.6; }
.footer-links h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-links a { display: block; font-size: 13px; color: #888; padding: 3px 0; transition: color .2s; }
.footer-links a:hover { color: #e74c3c; }
.footer-bottom { border-top: 1px solid #222; padding-top: 16px; text-align: center; font-size: 12px; color: #555; }
.footer-bottom a { color: #e74c3c; }

/* ===== FLOATING BUTTONS ===== */
.float-btns {
  position: fixed;
  bottom: 24px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}
.float-wa {
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  transition: transform .2s, box-shadow .2s;
  animation: pulse-wa 2.5s infinite;
}
.float-wa:hover { transform: scale(1.1); }
.float-call {
  width: 56px; height: 56px;
  background: #e74c3c;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 16px rgba(231,76,60,0.5);
  transition: transform .2s;
  animation: pulse-call 2.5s 1.25s infinite;
}
.float-call:hover { transform: scale(1.1); }
@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 16px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.9); }
}
@keyframes pulse-call {
  0%,100% { box-shadow: 0 4px 16px rgba(231,76,60,0.5); }
  50% { box-shadow: 0 4px 28px rgba(231,76,60,0.9); }
}

/* ===== PAGE HERO (iç sayfalar) ===== */
.page-hero {
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(24px, 4vw, 40px); font-weight: 800; }
.page-hero p { color: #aaa; margin-top: 8px; font-size: 15px; }
.breadcrumb { font-size: 13px; color: #888; margin-bottom: 10px; }
.breadcrumb a { color: #e74c3c; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  nav { display: none; flex-direction: column; position: absolute; top: 65px; left: 0; right: 0; background: #1a1a1a; padding: 10px; }
  nav.open { display: flex; }
  nav a { padding: 12px 16px; border-radius: 6px; }
  .hamburger { display: flex; }
  header { position: sticky; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding: 50px 20px; }
}
