/* ==========================================
   1. RENK PALETİ VE GENEL SIFIRLAMALAR
   ========================================== */
:root {
    --bg-krem: #FDFBF7;        
    --pudra: #F4E8E1;         
    --kahve-koyu: #4A3B32;    
    --kahve-acik: #8C7464;    
    --altin: #D4AF37;         
    --beyaz: #FFFFFF;
    
    --font-baslik: 'Playfair Display', serif;
    --font-metin: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    background-color: var(--bg-krem);
    font-family: var(--font-metin);
    color: var(--kahve-koyu);
    scroll-behavior: smooth;
}

/* ==========================================
   2. ÜST MENÜ (NAVBAR) TASARIMI
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@300;400;500&display=swap');

.navbar {
    background-color: #d7c4b7; 
    border-bottom: 1px solid #c4ae9f; 
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body {
    background-color: #f3ece7; 
}

.logo {
    font-family: 'Cormorant Garamond', serif; 
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
}

.logo .aura {
    color: #3a2e2b; 
}

.logo .beauty {
    color: #c5a86a; 
    font-weight: 300;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif; 
    color: #5c4e4b;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase; 
    letter-spacing: 1px;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: #c5a86a; 
    border-bottom: 2px solid #c5a86a; 
    padding-bottom: 5px;
}

.btn-randevu {
    font-family: 'Montserrat', sans-serif;
    background-color: #3a2e2b; 
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid #3a2e2b;
}

.btn-randevu:hover {
    background-color: transparent;
    color: #c5a86a;
    border-color: #c5a86a;
}

/* ==========================================
   3. GİRİŞ EKRANI (HERO SECTION - FULL BACKGROUND & BLUR)
   ========================================== */
.hero {
    min-height: 80vh; /* Ekranı daha güzel kaplasın */
    display: flex;
    align-items: center;
    justify-content: center; /* İçeriği tam ortala */
    padding: 0 20px;
    position: relative;
    
    /* Arka Plan Orijinal Görseli (Buradaki linki ileride değiştirebilirsin) */
    background-image: url('https://images.unsplash.com/photo-1560750588-73207b1ef5b8?q=80&w=1200');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Sayfa kayarken arkada lüks bir derinlik hissi yaratır */
    overflow: hidden;
}

/* Estetik Karartma ve Blur Katmanı */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 46, 43, 0.45); /* Kahve-siyah tonlarında şık bir karartma */
    backdrop-filter: blur(4px); /* İşte o istediğin sihirli blur efekti! */
    z-index: 1;
}

/* Ön Plandaki Yazı Grubu */
.hero-content {
    position: relative;
    z-index: 2; /* Karartmanın üstünde kalması için */
    max-width: 800px;
    text-align: center; /* Yazıları merkeze alarak daha asil bir duruş sağladık */
    animation: fadeIn 1s ease-in-out;
}

.hero-content h1 {
    font-family: var(--font-baslik);
    font-size: 56px; /* Yazı biraz daha büyütüldü */
    color: #ffffff !important; /* Arka plan koyulaştığı için yazıyı beyaz yaptık */
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3); /* Yazının okunurluğunu artırmak için hafif gölge */
}

.hero-content h1 span {
    color: #f4e8e1; /* Altın yerine pudra tonuyla yumuşak bir parıltı */
    font-style: italic;
}

.hero-content p {
    font-size: 18px;
    color: #fbf9f7 !important; /* Açıklama metni de beyaz/krem tonu */
    line-height: 1.7;
    margin-bottom: 40px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

/* Buton Düzenlemeleri */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background-color: var(--altin);
    color: var(--kahve-koyu);
    padding: 15px 35px;
    border-radius: 50px; /* Daha premium, yuvarlak hatlar */
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ffffff;
    color: var(--kahve-koyu);
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: var(--kahve-koyu);
    transform: translateY(-2px);
}

/* Sayfa açılışında yumuşakça belirme efekti */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   4. HİZMETLERİMİZ ÖZET KARTLAR TASARIMI
   ========================================== */
.services-section {
    padding: 80px 8%;
    background-color: var(--bg-krem);
    text-align: center;
}

.section-title {
    margin-bottom: 40px;
}

.section-title span {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--kahve-acik) !important;
    font-weight: 500;
}

.section-title h2 {
    font-family: var(--font-baslik);
    font-size: 38px;
    color: var(--kahve-koyu) !important;
    margin-top: 10px;
}

.title-line {
    width: 60px;
    height: 2px;
    background-color: var(--altin);
    margin: 20px auto 0 auto;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* ==========================================
   5. GENİŞ DETAY VE FİYAT BLOKLARI TASARIMI
   ========================================== */
.services-detailed-blocks {
    width: 100%;
}

.detail-block {
    padding: 80px 8%;
    display: flex;
    justify-content: center;
    background-color: var(--bg-krem);
}

.detail-block:nth-child(even) {
    background-color: var(--pudra);
}

/* Zikzak Düzenini Aktif Eden Ana Konteyner */
.detail-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
}

/* Sihirli Dokunuş: HTML'de "reverse" yazdığımız bloklarda resmi sağa, yazıyı sola atar */
.detail-block.reverse .detail-container {
    flex-direction: row-reverse; /* İşte her şeyi sağa-sola dağıtan komut bu! */
}

.detail-image {
    flex: 1 1 450px;
}

.detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #ffffff; 
    padding: 12px; 
    border: 1px solid #c5a86a; 
    box-shadow: 0 15px 35px rgba(58, 46, 43, 0.12);
    border-radius: 4px; 
    transition: all 0.4s ease;
}

.detail-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(58, 46, 43, 0.18);
    border-color: #3a2e2b;
}

.detail-content {
    flex: 1 1 450px;
    text-align: left;
}

.detail-badge {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--altin);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.detail-content h2 {
    font-family: var(--font-baslik);
    font-size: 34px;
    color: var(--kahve-koyu) !important;
    margin-bottom: 20px;
}

.detail-text {
    font-size: 15px;
    color: var(--kahve-acik) !important;
    line-height: 1.7;
    margin-bottom: 25px;
}

.detail-features {
    margin-bottom: 35px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(140, 116, 100, 0.1);
}

.detail-features li {
    font-size: 14px;
    color: var(--kahve-koyu) !important;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.detail-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--altin);
}

.detail-price-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(140, 116, 100, 0.15);
    padding-top: 25px;
}

.price-info span {
    font-size: 13px;
    color: var(--kahve-acik);
    display: block;
}

.price-info h3 {
    font-family: var(--font-baslik);
    font-size: 28px;
    color: var(--kahve-koyu) !important;
    margin-top: 2px;
}
/* ==========================================
   ALTIN YANSIMALI LÜKS KUTUCUKLAR
   ========================================== */
.services-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 10px;
}

.mini-card-luxury {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    display: block;
    text-align: center;
    text-decoration: none;
    /* İnce, şık altın/kahve tonlarında parlak bir çerçeve */
    border: 1px solid rgba(212, 175, 55, 0.3); 
    box-shadow: 0 4px 20px rgba(74, 59, 50, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

/* Kartın İçindeki Altın İkon ve Yazı Ayarları */
.mini-card-luxury .card-icon {
    color: #D4AF37; /* Altın rengi yıldız */
    font-size: 18px;
    margin-bottom: 12px;
    transition: transform 0.4s ease;
}

.mini-card-luxury h3 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #4A3B32;
    margin-bottom: 8px;
    font-weight: 600;
}

.mini-card-luxury p {
    font-size: 12px;
    color: #8C7464;
    font-weight: 300;
}

/* Arka plandaki o gizli altın parlama efekti */
.card-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255,255,255,0) 0%, 
        rgba(212, 175, 55, 0.2) 50%, 
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
}

/* FARE ÜZERİNE GELDİĞİNDE (HOVER EFFECT) */
.mini-card-luxury:hover {
    transform: translateY(-5px);
    border-color: #D4AF37; /* Çerçeve tam altın rengine döner */
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15); /* Altın rengi hafif bir parlama gölgesi */
}

/* Üzerine gelindiğinde parlamanın soldan sağa akma efekti */
.mini-card-luxury:hover .card-glow {
    left: 150%;
    transition: all 0.8s ease;
}

.mini-card-luxury:hover .card-icon {
    transform: scale(1.2) rotate(45deg);
}
/* ==========================================
   5. AVANTAJLI RİTÜEL PAKETLERİ TASARIMI
   ========================================== */
.packages-section {
    padding: 80px 8%;
    background-color: #fdfaf8; /* Zikzak geçişlerinden sonra gözü dinlendiren pudra krem */
    text-align: center;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0 auto;
}

/* Standart Paket Kartı */
.package-card {
    background: #ffffff;
    border: 1px solid rgba(140, 116, 100, 0.12);
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 25px rgba(74, 59, 50, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Kampanya Rozeti */
.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--kahve-koyu);
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 500;
}

/* VIP Paket Rozeti */
.luxury-badge {
    background: #D4AF37 !important; /* Saf Altın Rengi */
    color: var(--kahve-koyu);
    font-weight: 600;
}

/* VIP/Premium Paket Kartı Özelliği */
.premium-package {
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #fbf9f6 100%);
    transform: scale(1.03); /* Ortadaki paketi bir tık öne çıkarıyoruz */
}

.package-header h3 {
    font-family: var(--font-baslik);
    font-size: 22px;
    color: var(--kahve-koyu);
    margin-bottom: 20px;
}

/* Fiyat Alanı Düzenlemeleri */
.package-price {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.old-price {
    font-size: 15px;
    color: #a08a7c;
    text-decoration: line-through; /* Üstü çizili eski fiyat */
    font-weight: 300;
}

.current-price {
    font-family: var(--font-baslik);
    font-size: 32px;
    color: var(--kahve-koyu);
    font-weight: 600;
}

.premium-package .current-price {
    color: #bfa137; /* Altın tonlarında fiyat rengi */
}

/* Paket İçerik Listesi */
.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: left;
}

.package-features li {
    font-size: 14px;
    color: var(--kahve-koyu);
    margin-bottom: 12px;
    font-weight: 400;
    line-height: 1.5;
}

.package-note {
    font-size: 11px;
    color: #8c7464;
    font-style: italic;
    margin-bottom: 30px;
    text-align: left;
}

/* Paket Butonları */
.btn-package {
    display: block;
    width: 100%;
    padding: 14px;
    border: 1px solid var(--altin);
    color: var(--kahve-koyu);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-package:hover {
    background-color: var(--altin);
    color: var(--kahve-koyu);
    transform: translateY(-2px);
}

/* VIP Paket Butonu Hover Efekti */
.btn-package.VIP {
    background-color: var(--kahve-koyu);
    color: #ffffff;
    border-color: var(--kahve-koyu);
}

.btn-package.VIP:hover {
    background-color: #D4AF37;
    border-color: #D4AF37;
    color: var(--kahve-koyu);
}

/* Genel Kart Hover Animasyonu */
.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(74, 59, 50, 0.08);
}

.premium-package:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}
/* ==========================================
   6. MÜŞTERI YORUMLARI TASARIMI
   ========================================== */
.testimonials-section {
    padding: 80px 8%;
    background-color: #ffffff; /* Paketlerin soft bejinden sonra burayı temiz bir beyazla açıyoruz */
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0 auto;
}

/* Yorum Kartı Temel Yapısı */
.testimonial-card {
    background: #fdfaf8; /* Kart içleri hafif soft pudra rengi */
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(140, 116, 100, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Lüks Büyük Tırnak İşareti */
.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    color: rgba(212, 175, 55, 0.15); /* Çok hafif transparan altın rengi */
    position: absolute;
    top: 10px;
    right: 25px;
    line-height: 1;
}

/* Altın Yıldızlar */
.stars {
    color: #D4AF37; /* Saf altın sarısı yıldızlar */
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* Yorum Metni */
.review-text {
    font-size: 14px;
    color: var(--kahve-koyu);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 2; /* Tırnak işaretinin üstünde kalması için */
}

/* Yorum Yapan Kişi Bilgisi */
.client-info {
    border-top: 1px solid rgba(140, 116, 100, 0.1);
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.client-name {
    font-family: var(--font-baslik);
    font-size: 16px;
    font-weight: 600;
    color: var(--kahve-koyu);
}

.client-meta {
    font-size: 11px;
    color: #8c7464;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ortadaki Yorum Kartına Hafif Bir Lüks Vurgu */
.premium-review {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 10px 30px rgba(74, 59, 50, 0.04);
}

/* Fare Üzerine Geldiğinde Küçük Bir Esneklik */
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(74, 59, 50, 0.06);
}
/* ==========================================
   NAVBAR LOGO & YAZI STİLİ DÜZENLEMESİ
   ========================================== */
.navbar .logo {
    font-family: var(--font-baslik); /* Sitenin o lüks, asil serif fontu */
    font-size: 24px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--kahve-koyu) !important; /* Mavirengi tamamen yok edip koyu kahve yapıyoruz */
    text-decoration: none !important; /* Altındaki çizgiyi kaldırıyoruz */
    transition: color 0.3s ease;
}

/* Yanındaki "Beauty Studio" yazısının daha soft durması için */
.navbar .logo span {
    font-family: var(--font-metin);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 3px;
    color: #a08a7c; /* Şık bir sütlü kahve/pudra tonu */
    text-transform: uppercase;
    margin-left: 5px;
    display: inline-block;
}

/* Üzerine gelince hafif bir altın ışıltısı versin */
.navbar .logo:hover {
    color: var(--altin) !important;
}
/* ==========================================
   7. ASİMETRİK ELİTE İLETİŞİM & RANDEVU TASARIMI
   ========================================== */
.elite-contact-section {
    padding: 100px 5% 140px 5%;
    background: linear-gradient(180deg, #ffffff 0%, #f7f3f0 100%); /* Hafif aşağı doğru derinleşen ton */
    position: relative;
}

.elite-contact-container {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* Mobil uyum için esneklik */
    gap: 0; /* Boşlukları sıfırlayıp asimetri yaratıyoruz */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(74, 59, 50, 0.06);
}

/* Sol Taraf: Sinematik Bilgi Bloğu */
.elite-info-panel {
    flex: 1 1 450px;
    background-color: #3a2e2b; /* Koyu asil çikolata-kahve tonu */
    color: #ffffff;
    padding: 60px;
    position: relative;
    display: flex;
    align-items: center;
}

.panel-content {
    position: relative;
    z-index: 2;
}

.elite-tag {
    font-size: 11px;
    letter-spacing: 3px;
    color: #d4af37; /* Altın rengi detay */
    font-weight: 500;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.elite-info-panel h2 {
    font-family: var(--font-baslik);
    font-size: 38px;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 400;
}

.panel-desc {
    font-size: 14px;
    color: #dfd5cf;
    line-height: 1.8;
    margin-bottom: 40px;
}

.elite-hours h3, .elite-address h3 {
    font-family: var(--font-baslik);
    font-size: 18px;
    color: #f4e8e1;
    margin-bottom: 12px;
}

.elite-hours p, .elite-address p {
    font-size: 14px;
    color: #c9b9b0;
    margin-bottom: 8px;
}

.closed-day {
    color: #b39b8c !important;
    font-style: italic;
}

.phone-link {
    display: inline-block;
    margin-top: 15px;
    color: #d4af37;
    text-decoration: none;
    font-family: var(--font-baslik);
    font-size: 20px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #ffffff;
}

/* Sağ Taraf: Havada Asılı Duran Form Alanı */
.elite-form-panel {
    flex: 1 1 550px;
    background-color: #fffdfb; /* Fildişi, pürüzsüz temiz zemin */
    padding: 60px;
    display: flex;
    align-items: center;
}

.aura-form {
    width: 100%;
}

.aura-form h3 {
    font-family: var(--font-baslik);
    font-size: 28px;
    color: #3a2e2b;
    margin-bottom: 6px;
}

.title-sub {
    font-size: 13px;
    color: #a08a7c;
    margin-bottom: 35px;
}

/* Giriş Kutuları ve Şıklık */
.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6e594f;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 14px 0; /* Kutulu değil, sadece altı çizgili elite tasarım */
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(110, 89, 79, 0.2);
    font-size: 15px;
    color: #3a2e2b;
    font-family: var(--font-metin);
    transition: border-color 0.3s ease;
    border-radius: 0;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-bottom: 1px solid #d4af37; /* Odaklanınca parlayan ince altın çizgi */
}

/* Elite Form Butonu */
.btn-elite-submit {
    width: 100%;
    background-color: #3a2e2b;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 15px;
    box-shadow: 0 10px 20px rgba(58, 46, 43, 0.15);
    transition: all 0.3s ease;
}

.btn-elite-submit:hover {
    background-color: #d4af37; /* Hover olunca altın rengine bürünür */
    color: #3a2e2b;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.2);
}
/* ==========================================
   8. LÜKS KAPANIŞ ŞERİDİ (FOOTER)
   ========================================== */
.aura-footer {
    background-color: #2b2220; /* Randevu panelinden bir tık daha koyu asil bir kapanış tonu */
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.aura-footer p {
    font-size: 12px;
    letter-spacing: 1px;
    color: #b39b8c;
    margin: 0;
}
/* ==========================================
   SABİT SOSYAL MEDYA BUTONLARI (SAĞ ALT)
   ========================================== */
.social-float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column; /* Üst üste dizmek için */
    gap: 15px; /* Butonlar arası boşluk */
    z-index: 1000;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50px;
    text-align: center;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}

.whatsapp {
    background-color: #25d366;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
/* Butonların olduğu kapsayıcıyı esnetiyoruz */
.hero-buttons {
    display: flex;
    flex-direction: column; /* Alt alta dizmek için */
    align-items: center;
    gap: 15px; /* Butonlar arası mesafe */
    margin-top: 20px;
}

/* Konum Butonu Stili */
.btn-location {
    padding: 12px 30px;
    border: 1px solid #ffffff; /* İnce beyaz çerçeve */
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 50px; /* Diğerleri gibi yuvarlak köşeli */
}

.btn-location:hover {
    background-color: #ffffff;
    color: #3a2e2b; /* Üzerine gelince ters renk */
}
/* ==========================================
   YORUM YAPMA BÖLÜMÜ - ELİT & ORTALI TASARIM
   ========================================== */
.add-review-section {
    padding: 80px 20px;
    background-color: #2b2220 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* Yatayda tam merkezleme */
    justify-content: center !important;
    color: #ffffff !important;
    width: 100% !important;
    text-align: center !important;
}

.review-container {
    width: 90% !important; /* Biraz pay bırakalım */
    max-width: 600px !important;
    margin: 0 auto !important;
    float: none !important; /* Varsa başka yaslama kurallarını iptal eder */
}

.review-container h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #d4af37;
}

.subtitle {
    margin-bottom: 30px;
    color: #dfd5cf;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%; /* Formun konteynerin tamamını kaplaması için */
}

.review-form input, .review-form textarea {
    padding: 18px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box; /* Padding'in kutuyu taşırmaması için çok önemli */
}

.review-form button {
    background-color: #d4af37;
    color: #2b2220;
    font-weight: bold;
    padding: 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-size: 16px;
    width: 100%;
}

.review-form button:hover {
    background-color: #fff;
}
#reviewModal {
    transition: opacity 0.3s ease;
}
/* Butonun stilini kendi sitendeki btn-primary ile uyumlu tutabilirsin */
/* Hakkımızda Bölümü İçin Tasarım */
.hakkimizda-wrapper {
    /* Altın ve kahve geçişli, lüks bir arka plan */
    background: linear-gradient(135deg, #2b2220 0%, #3e322f 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    width: 100%;
    margin-top: 50px;
    /* Altın çerçeve efekti */
    border-top: 5px solid #d4af37;
    border-bottom: 5px solid #d4af37;
}

.hakkimizda-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    /* Metnin arkasına hafif bir derinlik katan şık kutu */
    border: 1px solid #d4af37;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.hakkimizda-content h2 {
    font-family: 'Georgia', serif;
    color: #d4af37;
    font-size: 32px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px #000;
}

.hakkimizda-content p {
    font-family: 'Georgia', serif;
    font-size: 18px;
    line-height: 1.6;
    color: #eee;
}
/* Hizmet veya Testimonial kartları için büyüme efekti */
.testimonial-card, .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover, .service-card:hover {
    transform: translateY(-10px); /* Hafifçe yukarı kalkar */
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3); /* Altın rengi gölge */
}