﻿/* GLOBAL / BASE STİLLERİ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
}

.main-content {
  flex: 1;
  background-color: #ffffff;
}

/* SABİT SOL ALT WHATSAPP BUTONU STİLİ */
.floating-wa-btn {
  position: fixed;
  bottom: 65px;
  left: 65px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(37, 211, 102, 0.2);
  border: 1px solid rgba(230, 230, 230, 0.8);
  z-index: 99999;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-wa-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.15);
  color: #25D366;
}

/* SABİT SAĞ ALT YUKARI ÇIK BUTONU STİLİ (WHATSAPP İLE BİREBİR AYNI KONUM VE BOYUT) */
.scroll-top-btn {
  position: fixed;
  bottom: 65px;
  right: 65px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ffffff;
  color: #1C1D21;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(230, 230, 230, 0.8);
  z-index: 99999;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-top-btn.visible {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

.scroll-top-btn:hover {
  transform: translateY(-4px) scale(1.06) !important;
  box-shadow: 0 14px 34px rgba(76, 35, 60, 0.22);
  color: #4C233C;
  border-color: rgba(76, 35, 60, 0.4);
}

/* FOOTER ALANINA İNİLDİĞİNDE BUTONLARIN LUXURY GLASSMORPHISM STİLİ */
.floating-wa-btn.on-footer {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #25D366;
  border: 1px solid rgba(37, 211, 102, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.floating-wa-btn.on-footer:hover {
  background: #25D366;
  color: #ffffff;
  border-color: #25D366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transform: scale(1.08);
}

.scroll-top-btn.on-footer {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #EBD8B8;
  border: 1px solid rgba(235, 216, 184, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn.on-footer:hover {
  background: #EBD8B8;
  color: #2D1826;
  border-color: #EBD8B8;
  box-shadow: 0 10px 30px rgba(235, 216, 184, 0.3);
  transform: translateY(-4px) scale(1.06) !important;
}
