/* ==========================================================================
   PREMIUM RESET & FONTS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;600;700&display=swap');

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Montserrat', sans-serif; 
}

body { 
    background: radial-gradient(circle at top, #16181f, #050505); 
    color: #e2e2e2; 
    line-height: 1.6; 
    overflow-x: hidden; 
}

/* Altın Gradiyent Başlıklar */
h1, h2, h3, h4 { 
    font-family: 'Cinzel', serif; 
    background: linear-gradient(45deg, #d4af37, #f3e5ab, #d4af37); 
    background-clip: text; /* Standart özellik eklendi */
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    color: #d4af37; /* Fallback (Gradiyent yüklenmezse) */
}

/* ==========================================================================
   ELIT HERO SECTION
   ========================================================================== */
.hero { 
    padding: 15vh 20px; 
    text-align: center; 
    border-bottom: 1px solid rgba(212, 175, 55, 0.15); 
}
.hero h1 { 
    font-size: clamp(32px, 6vw, 55px); 
    letter-spacing: 3px; 
    margin-bottom: 25px; 
}
.hero p { 
    max-width: 700px; 
    margin: 0 auto 40px auto; 
    font-size: 17px; 
    color: #b5b5b5; 
    line-height: 1.8; 
}

/* ==========================================================================
   PREMIUM BUTONLAR (LUX, WP, DETAIL)
   ========================================================================== */

/* Ana Lux Buton */
.btn-lux { 
    display: inline-block; 
    padding: 18px 50px; 
    background: linear-gradient(45deg, #a67c00, #bf953f, #fcf6ba, #b38728, #fdbf59, #bf953f, #a67c00); 
    background-size: 300% 300%; 
    color: #000 !important; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    text-decoration: none; 
    font-weight: 700; 
    border-radius: 4px; 
    transition: 0.5s; 
    -webkit-text-fill-color: initial; 
}
.btn-lux:hover { 
    background-position: right center; 
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); 
}

/* WhatsApp Rezervasyon Butonları */
.btn-wp, .btn-wp-premium {
    display: block !important;
    width: 100% !important;
    padding: 14px !important;
    margin-top: 10px !important;
    background-color: #25D366 !important; 
    color: #ffffff !important;
    border-radius: 6px !important;
    text-align: center !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: 0.3s all ease !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
    -webkit-text-fill-color: white !important;
}

.btn-wp:hover, .btn-wp-premium:hover {
    background-color: #1ebd58 !important;
    transform: translateY(-2px) scale(1.02) !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
}

/* Profili İncele / Detay Butonu (Altın Çerçeveli) */
.btn-detail {
    display: block !important;
    width: 100% !important;
    padding: 12px !important;
    margin-top: 15px !important;
    background: rgba(212, 175, 55, 0.1) !important; 
    color: #d4af37 !important;
    border: 1px solid #d4af37 !important;
    border-radius: 6px !important;
    text-align: center !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: 0.3s all ease !important;
    -webkit-text-fill-color: #d4af37 !important;
}

.btn-detail:hover {
    background: #d4af37 !important;
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
}

/* Morluk Öldürücü (Visited state fix) */
.btn-detail:visited, .btn-wp:visited, .btn-wp-premium:visited {
    text-decoration: none !important;
}

/* ==========================================================================
   TERAPIST GRID & CARDS
   ========================================================================== */
.section-title { 
    text-align: center; 
    font-size: clamp(28px, 5vw, 42px); 
    margin: 90px 0 50px; 
    letter-spacing: 2px; 
}
.grid-container { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 35px; 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.card { 
    background: rgba(255, 255, 255, 0.03); 
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(212, 175, 55, 0.2); 
    border-radius: 12px; 
    transition: transform 0.4s ease, border-color 0.4s ease; 
    overflow: hidden; 
    position: relative;
}
.card:hover { 
    transform: translateY(-10px); 
    border-color: rgba(212, 175, 55, 0.6); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.5); 
}

.img-wrapper { 
    position: relative; 
    width: 100%; 
    aspect-ratio: 4/5; 
    overflow: hidden; 
}
.card-img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.5s; 
}
.card:hover .card-img { 
    transform: scale(1.05); 
}

.card-body { 
    padding: 25px; 
    text-align: center; 
}
.card-body h3 { 
    font-size: 22px; 
    margin-bottom: 8px; 
    letter-spacing: 1px; 
}
.card-body p { 
    font-size: 13px; 
    color: #aaa; 
    margin-bottom: 20px; 
    line-height: 1.6; 
    height: 40px; 
    overflow: hidden; 
}

/* ==========================================================================
   ROZETLER & DURUMLAR
   ========================================================================== */
.pulse-dot { 
    height: 8px; 
    width: 8px; 
    background-color: #25D366; 
    border-radius: 50%; 
    display: inline-block; 
    margin-right: 6px; 
    animation: pulse 2s infinite; 
}
.busy-dot { 
    height: 8px; 
    width: 8px; 
    background-color: #ff4444; 
    border-radius: 50%; 
    display: inline-block; 
    margin-right: 6px; 
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.verified-badge {
    position: absolute; 
    top: 12px; 
    right: 12px; 
    background: #d4af37; 
    color: #000;
    width: 26px; 
    height: 26px; 
    border-radius: 50%; 
    text-align: center; 
    font-weight: bold; 
    line-height: 26px; 
    border: 2px solid #000; 
    z-index: 5; 
    font-size: 12px;
}

.vip-gold-badge {
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728, #fcf6ba, #aa771c) !important;
    color: #000 !important;
    border: 2px solid #fff !important; 
    font-size: 16px !important; 
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.status-tag {
    position: absolute; 
    bottom: 12px; 
    left: 12px; 
    background: rgba(0,0,0,0.7);
    padding: 5px 12px; 
    border-radius: 20px; 
    font-size: 10px; 
    font-weight: bold; 
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.rating { 
    margin-bottom: 10px; 
    font-size: 12px; 
    letter-spacing: 2px; 
}

/* ==========================================================================
   SSS & BLOG & FOOTER
   ========================================================================== */
.seo-section { max-width: 850px; margin: 100px auto; padding: 0 20px; }
.accordion-item { border-bottom: 1px solid rgba(212, 175, 55, 0.2); margin-bottom: 15px; }
.accordion-btn { 
    width: 100%; text-align: left; background: none; border: none; padding: 20px 0; 
    font-size: 18px; color: #d4af37; cursor: pointer; font-family: 'Cinzel', serif; 
    display: flex; justify-content: space-between; align-items: center; 
}
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.accordion-content p { padding-bottom: 20px; color: #a0a0a0; line-height: 1.8; font-size: 15px; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.blog-card { background: rgba(0,0,0,0.4); padding: 25px; border-left: 3px solid #d4af37; transition: 0.3s; }
.blog-card:hover { background: rgba(212, 175, 55, 0.05); }

footer { padding: 60px 20px 30px; background: #030303; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 100px; text-align: center; }
.tags-container { max-width: 1000px; margin: 0 auto 40px auto; }
.tags-container span { display: inline-block; color: #666; font-size: 12px; margin: 5px 10px; letter-spacing: 1px; }

/* ==========================================================================
   PROFIL SAYFASI ÖZEL TASARIM (ADWORDS SAFE)
   ========================================================================== */
.profile-wrapper { max-width: 1100px; margin: 40px auto; padding: 0 20px; }

/* Geri Dön Butonu - Yeni Nesil VIP Tasarım */
.btn-back {
    display: inline-flex;
    align-items: center;
    background: rgba(212, 175, 55, 0.08); /* Çok hafif altın dolgu */
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 25px;
    border: 1px solid #d4af37;
    border-radius: 50px; /* Oval, daha modern duruş */
    margin-bottom: 35px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.btn-back:hover {
    background: #d4af37;
    color: #000;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transform: translateX(-8px); /* Hafif sola kayma efekti */
}

.btn-back i {
    margin-right: 10px;
    font-size: 14px;
}
/* Profil Layout Düzeni */
.profile-grid { display: grid; grid-template-columns: 350px 1fr; gap: 40px; }

.sticky-sidebar { position: sticky; top: 120px; }
.profile-card-sidebar {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.profile-img-main {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #d4af37;
    margin-bottom: 20px;
}

/* Rozet ve Statü Alanları */
.badge-area { margin-bottom: 15px; }
.p-vip-gold { 
    color: #000; 
    background: linear-gradient(45deg, #bf953f, #fcf6ba, #b38728); 
    padding: 5px 15px; 
    border-radius: 20px; 
    font-weight: bold; 
    font-size: 12px; 
    display: inline-block; 
}
.p-onayli { 
    color: #25D366; 
    border: 1px solid #25D366; 
    padding: 4px 12px; 
    border-radius: 20px; 
    font-size: 12px; 
    display: inline-block; 
}

/* İçerik Kutuları */
.content-box { 
    background: rgba(255,255,255,0.01); 
    padding: 30px; 
    border-radius: 15px; 
    border: 1px solid rgba(255,255,255,0.05); 
}
.section-title-p { 
    font-family: 'Cinzel', serif; 
    color: #d4af37; 
    font-size: 24px; 
    margin-bottom: 20px; 
    border-bottom: 1px solid rgba(212,175,55,0.1); 
    padding-bottom: 10px; 
}
.cert-item { 
    background: rgba(212, 175, 55, 0.05); 
    padding: 12px 15px; 
    border-radius: 8px; 
    border-left: 3px solid #d4af37; 
    color: #eee; 
    font-size: 14px; 
}

/* Profil Mobil Uyumluluk */
@media (max-width: 850px) {
    .profile-grid { grid-template-columns: 1fr; }
    .sticky-sidebar { position: static; }
    .profile-wrapper { margin: 20px auto; }
}

/* ==========================================================================
   ADWORDS DOSTU KURUMSAL FOOTER
   ========================================================================== */
footer {
    background: #080808;
    padding: 60px 20px 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 80px;
    color: #888;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo img { height: 60px; margin-bottom: 20px; }
.footer-title { color: #d4af37; font-family: 'Cinzel', serif; margin-bottom: 20px; font-size: 18px; }

.footer-links a { color: #888; text-decoration: none; display: block; margin-bottom: 10px; font-size: 14px; transition: 0.3s; }
.footer-links a:hover { color: #d4af37; padding-left: 5px; }

.footer-contact p { font-size: 14px; margin-bottom: 12px; display: flex; align-items: center; }
.footer-contact i { color: #d4af37; margin-right: 10px; width: 20px; }

/* Kritik Yasal Uyarı Alanı */
.legal-disclaimer {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.8;
    margin-top: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: justify;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

/* ==========================================================================
   VIP COOKIE BAR (ADWORDS CONSENT) - MASAÜSTÜ
   ========================================================================== */
.vip-cookie-bar {
    position: fixed; bottom: 20px; left: 20px; right: 20px; 
    background: rgba(10, 10, 10, 0.98); border: 1px solid rgba(212, 175, 55, 0.3); 
    padding: 20px 30px; border-radius: 12px; 
    display: none; 
    flex-direction: row; justify-content: space-between; align-items: center; 
    z-index: 10000; backdrop-filter: blur(15px); box-shadow: 0 10px 40px rgba(0,0,0,0.8); gap: 20px;
}
.vip-cookie-text { color: #ccc; font-size: 13px; line-height: 1.6; flex: 1; }
.vip-cookie-text strong { color: #d4af37; display: block; margin-bottom: 5px; font-size: 14px; }
.vip-cookie-buttons { display: flex; gap: 10px; flex-shrink: 0; }
.btn-reject { background: transparent; color: #888; border: 1px solid #444; padding: 10px 20px; border-radius: 6px; font-weight: bold; cursor: pointer; transition: 0.3s; font-size: 11px; text-transform: uppercase; }
.btn-accept { background: #d4af37; color: #000; border: none; padding: 10px 25px; border-radius: 6px; font-weight: bold; cursor: pointer; transition: 0.3s; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2); }

/* ==========================================================================
   MOBILE DESIGN & COOKIE BAR RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    /* Senin Orijinal Mobil Grid Tasarımın */
    .grid-container { grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 0 10px; }
    .card-body { padding: 15px 10px; }
    .card-body h3 { font-size: 16px; margin-bottom: 5px; }
    .card-body p { font-size: 11px; height: 35px; margin-bottom: 12px; }
    .btn-lux { padding: 12px 30px; font-size: 12px; }
    .btn-wp, .btn-wp-premium { padding: 10px 5px; font-size: 10px; }
    .status-tag { font-size: 8px; padding: 3px 8px; bottom: 8px; left: 8px; }
    .verified-badge { width: 22px; height: 22px; line-height: 22px; font-size: 10px; top: 8px; right: 8px; }

    /* Footer Mobil */
    .footer-container { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-contact p { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; }

    /* VIP Cookie Bar Mobil Revizesi (EZİCİ GÜÇ !IMPORTANT İLE) */
    .vip-cookie-bar {
        bottom: 10px !important; left: 10px !important; right: 10px !important; 
        padding: 15px !important; 
        flex-direction: column !important; 
        text-align: center !important; 
        gap: 15px !important;
    }
    .vip-cookie-text { font-size: 11px !important; line-height: 1.5 !important; }
    .vip-cookie-text strong { font-size: 13px !important; display: block !important; margin-bottom: 5px !important; }
    .vip-cookie-buttons { 
        width: 100% !important; 
        display: flex !important;
        flex-direction: row !important; 
        justify-content: space-between !important; 
        gap: 10px !important;
    }
    .btn-reject, .btn-accept { 
        flex: 1 !important; 
        padding: 12px 5px !important; 
        font-size: 10px !important; 
        width: 100% !important;
    }
}