/* Temel */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
  overflow-x: hidden;
}

/* Header */
.site-header {
  background: #522B85;
  color: white;
  padding: 16px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.header-left { flex-shrink: 0; }
.logo { height: 40px; display: block; }

/* Menü */
.menu {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  flex-grow: 1;
}
.menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}
.menu a:hover {
  color: #e0e0ff;
  transform: translateY(-1px);
  text-decoration: underline;
}
/* CTA Buton */
.cta-button, .cta-mobile {
  background: white;
  color: #522B85;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #eee;
  text-decoration: none;
  transition: all 0.3s;
}
.cta-button:hover, .cta-mobile:hover {
  color: #200d3a;
  background-color: #f3edff;
  transform: translateY(-1px);
}
.cta-desktop { display: block; }
.cta-mobile {
  display: none;
  width: 100%;
  max-width: 250px;
  text-align: center;
}
/* Burger Menü */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

/* Slider */
.slider {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 0;
  overflow: hidden;
}
.slider img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.slider-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  font-size: 2rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}
.slider-text h1 {
  font-size: clamp(1.5rem, 6vw, 3rem);
  line-height: 1.2;
}

/* WhatsApp Butonu */
.whatsapp-float {
  position: fixed;
  bottom: 0px; right: 0px;
  background-color: #25D366;
  color: white;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  height: 20px;
  line-height: 1;
}
.whatsapp-float img {
  width: 20px; height: 20px; flex-shrink: 0;
}


.phone-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #0a66c2;
  color: white;
  padding: 6px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 13px;
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: opacity 0.3s ease;
}
.phone-float img {
  width: 20px;
  height: 20px;
}

/* Sadece 768px altındaki cihazlar için gösterilsin */
@media screen and (max-width: 768px) {
  #phoneButton {
    display: none; /* default'u yine gizli */
  }
}

.pulse-circle { display: none; }

/* Responsive Header */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: center;
  }
  .logo { margin: 0 auto; }
  .menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    background-color: #522B85;
    padding: 10px 20px;
    display: none;
    z-index: 999;
  }
  .menu.show { display: flex; }
  .menu a {
    padding: 10px 0;
    width: 100%;
    background: transparent;
  }
  .menu a:hover {
    background: transparent;
    color: #e0e0ff;
    transform: translateY(-1px);
    text-decoration: underline;
  }
  .menu-toggle {
    display: block;
    position: absolute;
    top: 16px; right: 20px;
  }
  .cta-desktop { display: none; }
  .cta-mobile {
    display: inline-block;
    margin-top: 12px;
  }
}

/* Paketler */
.paketler { background: #f5f5f7; padding: 40px 20px; }
.paketler-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .paketler-container { grid-template-columns: repeat(2, 1fr); }
}
@media screen and (max-width: 576px) {
  .paketler-container { grid-template-columns: 1fr; }
}
.paket-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  padding: 20px;
  max-width: 320px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.paket-card li { color: #522B85 !important; }
.paket-card h3 {
  font-size: 18px;
  color: #522B85;
  margin-bottom: 10px;
  font-weight: 700;
}
.paket-card h3 small {
  display: block;
  font-size: 14px;
  color: #444;
  font-weight: normal;
}
.paket-card .fiyat {
  font-size: 16px;
  color: #522B85;
  margin: 10px 0 0;
}
.paket-card .fiyat strong {
  font-size: 32px;
  font-weight: bold;
}
.paket-card .alt-fiyat {
  font-size: 14px;
  color: #522B85;
  margin-bottom: 15px;
}
.paket-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 6px;
}
.paket-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
  width: 100%;
  text-align: left;
}
.paket-card ul li {
  font-size: 14px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}
.paket-card .detay-link {
  font-size: 14px;
  color: #522B85;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}
.paket-card .basvur-btn {
  background: #e50914;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}
.paket-card .basvur-btn:hover { background: #c1070f; }
@media screen and (max-width: 480px) {
  .paketler { padding: 20px 10px; }
  .paket-card { padding: 15px; max-width: 100%; }
  .paket-card h3 { font-size: 16px; }
  .paket-card .fiyat strong { font-size: 26px; }
  .paket-card .alt-fiyat { font-size: 13px; }
  .paket-card ul li { font-size: 13px; }
  .paket-card .basvur-btn { width: 100%; padding: 10px; }
}

/* Mini Paketler */
.mini-paketler-section { padding: 60px 20px; background: #f9f9f9; text-align: center; }
.mini-paketler-header { max-width: 800px; margin: 0 auto 40px auto; }
.mini-paketler-header h2 { font-size: 24px; font-weight: 700; color: #222; margin-bottom: 10px; }
.mini-paketler-header p { font-size: 16px; color: #555; margin: 0; line-height: 1.5; }
.mini-paketler-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.mini-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 285px;
  padding: 24px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  background-color: #fff;
}
.mini-card h3 { font-size: 18px; margin-bottom: 4px; color: #222; }
.mini-card img { height: 160px; object-fit: contain; margin-bottom: 12px; }
.mini-btn {
  margin-top: 8px;
  background-color: #750082;
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s;
  align-self: center;
}
.mini-btn:hover { background-color: #5a0063; }
@media (max-width: 768px) {
  .mini-paketler-header h2 { font-size: 20px; }
  .mini-paketler-header p { font-size: 14px; }
  .mini-btn { font-size: 13px; padding: 8px 16px; }
  .mini-card img { height: 120px; }
  .mini-paketler-grid { grid-template-columns: 1fr; gap: 30px; }
  .mini-card { min-height: auto; margin-bottom: 2px; }
  .mini-paketler-section { padding: 40px 16px; }
}

/* Footer */
.site-footer {
  background: #200d3a;
  color: #fff;
  padding: 36px 0 20px 0;
  font-size: 15px;
  margin-top: auto;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-logo img { height: 32px; margin-bottom: 14px; }
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  color: #fff;
  text-decoration: none;
  opacity: 0.88;
  transition: opacity 0.2s;
}
.footer-menu a:hover { opacity: 1; text-decoration: underline; }
.footer-contact p { margin: 0 0 7px 0; color: #f1eaff; }
.footer-contact a {
  color: #f1eaff;
  text-decoration: underline;
  font-weight: 500;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
  .footer-logo img { margin: 0 auto 12px auto; }
}

/* Sayfa içeriği ve footer hizalama */
.site-root {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
