@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Wellness Color Palette */
  --color-primary: #6B9080;      /* Adaçayı Yeşili - Güven ve Huzur */
  --color-primary-dark: #486B5C; /* Koyu Yeşil - Ciddiyet */
  --color-secondary: #EAF4F4;    /* Açık Nane - Ferahlık */
  --color-accent: #E07A5F;       /* Sıcak Terracotta - Enerji ve Canlılık */
  --color-sand: #F6FFF8;         /* Kırık Beyaz/Bej - Zemin */
  --color-text: #3D405B;         /* Koyu Slate - Okunabilirlik */
  --color-text-light: #6C757D;   
  
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.5);
  --soft-shadow: 0 20px 40px -15px rgba(107, 144, 128, 0.15);
  --card-shadow: 0 10px 30px -10px rgba(61, 64, 91, 0.05);
}

/* BASE STYLES */
html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

::selection {
  background: var(--color-primary);
  color: white;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-dark);
}

/* WELLNESS COMPONENTS */

/* Navbar Glass Effect */
.nav-glass {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(107, 144, 128, 0.1);
}

/* Hero Slider Styles */
.hero-slider {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 8s ease;
  transform: scale(1.05);
  background-size: cover;
  background-position: center;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.2) 100%);
}

/* Service Cards - Organic Feel */
.wellness-card {
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(107, 144, 128, 0.1);
  box-shadow: var(--card-shadow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  position: relative;
}

.wellness-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.wellness-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--soft-shadow);
  border-color: var(--color-primary);
}

.wellness-card:hover::after {
  transform: scaleX(1);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--color-secondary);
  border-radius: 50% 50% 50% 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.wellness-card:hover .icon-wrapper {
  background: var(--color-primary);
  color: white;
  transform: rotate(45deg);
}

.wellness-card:hover .icon-wrapper i {
  transform: rotate(-45deg);
}

/* Instagram Grid */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .insta-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.insta-item {
  position: relative;
  padding-bottom: 100%; /* Square aspect ratio */
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}
.insta-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(107, 144, 128, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.insta-item:hover .insta-overlay {
  opacity: 1;
}
.insta-item:hover .insta-img {
  transform: scale(1.1);
}

/* CTA Card Premium */
.cta-card-premium {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(107, 144, 128, 0.5);
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
}

/* Form Inputs */
.input-wellness {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
}
.input-wellness:focus {
  background: white;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(107, 144, 128, 0.1);
  outline: none;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-float { animation: float 4s ease-in-out infinite; }

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}
.animate-breathe { animation: breathe 6s ease-in-out infinite; }

/* Buttons */
.btn-primary {
  background: var(--color-primary);
  color: white;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: var(--color-primary-dark);
  transition: width 0.3s ease;
  z-index: -1;
}
.btn-primary:hover::before {
  width: 100%;
}
.btn-primary:hover {
  box-shadow: 0 10px 20px -5px rgba(107, 144, 128, 0.4);
  transform: translateY(-2px);
}

/* Map Section */
.map-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 8px solid white;
}

/* Review Badge */
.review-badge {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease;
}
.review-badge:hover {
  transform: translateY(-5px);
}

/* Typography Gradient */
.text-gradient {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* ============================================
   FLOATING BUTTONS (TELEFON + WHATSAPP)
   ============================================ */

/* Telefon Butonu */
.floating-btn-phone {
    position: relative;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.floating-btn-phone:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.6);
}

/* WhatsApp Butonu */
.floating-btn-whatsapp {
    position: relative;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.floating-btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 25px 70px rgba(37, 211, 102, 0.6);
}

/* Tooltip (Sol tarafta çıkan yazı) */
.tooltip-left {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tooltip-left::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid rgba(0, 0, 0, 0.9);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.floating-btn-phone:hover .tooltip-left,
.floating-btn-whatsapp:hover .tooltip-left {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Pulse animasyonu */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.animate-ping {
    animation: pulse-ring 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Mobil responsive */
@media (max-width: 768px) {
    .floating-btn-phone,
    .floating-btn-whatsapp {
        width: 56px;
        height: 56px;
    }
    
    .floating-btn-phone i {
        font-size: 22px;
    }
    
    .floating-btn-whatsapp i {
        font-size: 26px;
    }
    
    .tooltip-left {
        display: none; /* Mobilde tooltip gizle */
    }
}