/* ============================================
   PUBLIC PAGES MYSTICAL THEME
   Tüm public sayfalar için ortak mistik tema
   Anasayfa ve fal-turleri tasarım standartlarıyla uyumlu
   ============================================ */

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
body.public-mystical {
    /* Dark Teal Backgrounds */
    --bg-deepest: #062929;
    --bg-darker: #073232;
    --bg-dark: #083b3b;
    --bg-card: #094444;
    --bg-card-hover: #0a4d4d;

    /* Brighter backgrounds for page */
    --bg-page: #0f5959;
    --bg-section: #127272;

    /* Antique Gold Accents */
    --gold-darkest: #8b7355;
    --gold-dark: #a08563;
    --gold-primary: #b8976a;
    --gold-medium: #c9a87a;
    --gold-light: #d4b88a;
    --gold-accent: #e0c99a;
    --gold-highlight: #ebdaaa;

    /* Gold Gradients */
    --gold-gradient: linear-gradient(180deg, #d4b88a 0%, #c9a87a 50%, #b8976a 100%);
    --gold-gradient-btn: linear-gradient(180deg, #e0c99a 0%, #c9a87a 50%, #b8976a 100%);

    /* Teal Glow Colors */
    --teal-bright: #45f0df;
    --teal-medium: #2dd4bf;
    --teal-dark: #14b8a6;

    /* Text Colors */
    --text-white: #ffffff;
    --text-light: #e8f0f0;
    --text-muted: #a0b8b8;
    --text-dark: #1a1a1a;

    /* Status Colors */
    --status-online: #22c55e;
    --status-offline: #64748b;
    --status-busy: #f59e0b;
    --badge-teal: #14b8a6;

    /* Apply dark background */
    background: linear-gradient(180deg,
        var(--bg-page) 0%,
        var(--bg-darker) 50%,
        var(--bg-deepest) 100%) !important;
    min-height: 100vh;
}

/* ============================================
   BODY & BACKGROUND EFFECTS
   ============================================ */

/* Zodiac Wheel - Sağ Üst */
body.public-mystical::before {
    content: '';
    position: fixed;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cdefs%3E%3ClinearGradient id='zodiacGrad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%2345f0df;stop-opacity:1' /%3E%3Cstop offset='50%25' style='stop-color:%232dd4bf;stop-opacity:0.8' /%3E%3Cstop offset='100%25' style='stop-color:%2314b8a6;stop-opacity:0.6' /%3E%3C/linearGradient%3E%3C/defs%3E%3Ccircle cx='100' cy='100' r='95' fill='none' stroke='url(%23zodiacGrad)' stroke-width='0.5' opacity='0.4'/%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='url(%23zodiacGrad)' stroke-width='0.3' opacity='0.3'/%3E%3Ccircle cx='100' cy='100' r='65' fill='none' stroke='url(%23zodiacGrad)' stroke-width='0.3' opacity='0.25'/%3E%3Cg fill='url(%23zodiacGrad)' font-family='serif' font-size='8' opacity='0.5'%3E%3Ctext x='100' y='15' text-anchor='middle'%3E%E2%99%88%3C/text%3E%3Ctext x='145' y='30' text-anchor='middle'%3E%E2%99%89%3C/text%3E%3Ctext x='175' y='60' text-anchor='middle'%3E%E2%99%8A%3C/text%3E%3Ctext x='190' y='100' text-anchor='middle'%3E%E2%99%8B%3C/text%3E%3Ctext x='175' y='140' text-anchor='middle'%3E%E2%99%8C%3C/text%3E%3Ctext x='145' y='175' text-anchor='middle'%3E%E2%99%8D%3C/text%3E%3Ctext x='100' y='190' text-anchor='middle'%3E%E2%99%8E%3C/text%3E%3Ctext x='55' y='175' text-anchor='middle'%3E%E2%99%8F%3C/text%3E%3Ctext x='25' y='140' text-anchor='middle'%3E%E2%99%90%3C/text%3E%3Ctext x='10' y='100' text-anchor='middle'%3E%E2%99%91%3C/text%3E%3Ctext x='25' y='60' text-anchor='middle'%3E%E2%99%92%3C/text%3E%3Ctext x='55' y='30' text-anchor='middle'%3E%E2%99%93%3C/text%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    animation: zodiacRotate 120s linear infinite;
    pointer-events: none !important;
    z-index: 0 !important;
    filter: drop-shadow(0 0 40px rgba(45, 212, 191, 0.5));
}

@keyframes zodiacRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Ambient Glow */
body.public-mystical::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 85% 15%, rgba(45, 212, 191, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 15% 85%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
    pointer-events: none !important;
    z-index: 0 !important;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
body.public-mystical .site-header {
    background: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-deepest) 100%) !important;
    border-bottom: 1px solid rgba(184, 151, 106, 0.25) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 100;
}

body.public-mystical .navbar {
    background: transparent !important;
}

body.public-mystical .nav-link {
    color: var(--text-light) !important;
}

body.public-mystical .nav-link:hover {
    color: var(--text-white) !important;
}

body.public-mystical .navbar-brand,
body.public-mystical .logo-text {
    color: var(--text-white) !important;
}

body.public-mystical .credit-badge,
body.public-mystical .credit-balance-nav {
    background: rgba(20, 184, 166, 0.15) !important;
    border: 1px solid var(--badge-teal) !important;
    color: var(--text-white) !important;
}

/* ============================================
   MOBILE HEADER - MYSTICAL OVERRIDE
   ============================================ */
body.public-mystical .mobile-site-header {
    background: linear-gradient(180deg, #073232 0%, #062929 100%) !important;
    border-bottom: 1px solid rgba(184, 151, 106, 0.25) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

body.public-mystical .mobile-site-logo .logo-text {
    color: #ffffff !important;
}

body.public-mystical .mobile-site-credit-badge {
    background: rgba(20, 184, 166, 0.15) !important;
    border: 1px solid #14b8a6 !important;
    color: #ffffff !important;
}

body.public-mystical .mobile-site-credit-badge:hover {
    background: rgba(20, 184, 166, 0.25) !important;
}

body.public-mystical .mobile-site-menu-btn {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #d4b88a !important;
}

body.public-mystical .mobile-site-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

body.public-mystical .mobile-site-login-btn {
    background: rgba(20, 184, 166, 0.9) !important;
    color: #ffffff !important;
    border: 1px solid rgba(45, 212, 191, 0.5) !important;
    box-shadow: 0 2px 10px rgba(20, 184, 166, 0.3) !important;
}

body.public-mystical .mobile-site-login-btn:hover {
    background: rgba(45, 212, 191, 0.95) !important;
    color: #ffffff !important;
    border-color: rgba(45, 212, 191, 0.8) !important;
    transform: none !important;
}

/* Desktop Header Giriş Yap Butonu */
body.public-mystical .navbar .btn-outline-light {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    transition: all 0.3s ease !important;
}

body.public-mystical .navbar .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    color: #ffffff !important;
}

/* ============================================
   MOBILE SIDEBAR - MYSTICAL OVERRIDE
   ============================================ */
body.public-mystical .mobile-site-sidebar-overlay {
    background: rgba(0, 0, 0, 0.7) !important;
}

body.public-mystical .mobile-site-sidebar {
    background: #062929 !important;
    border-left: 1px solid rgba(184, 151, 106, 0.2) !important;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.4) !important;
}

body.public-mystical .mobile-site-sidebar-header {
    background: linear-gradient(to right, #083b3b, #062929) !important;
    border-bottom: 1px solid rgba(184, 151, 106, 0.3) !important;
}

body.public-mystical .mobile-site-sidebar-close {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: none !important;
}

body.public-mystical .mobile-site-sidebar-close:hover {
    background: rgba(255, 255, 255, 0.2) !important;
}

body.public-mystical .mobile-site-sidebar-avatar {
    border: 2px solid rgba(45, 212, 191, 0.4) !important;
}

body.public-mystical .mobile-site-sidebar-name {
    color: #ffffff !important;
}

body.public-mystical .mobile-site-sidebar-credit {
    color: #14b8a6 !important;
}

body.public-mystical .mobile-site-sidebar-nav {
    background: #062929 !important;
}

body.public-mystical .mobile-site-sidebar-link {
    color: #e8f0f0 !important;
    border-left: 3px solid transparent !important;
    background: transparent !important;
}

body.public-mystical .mobile-site-sidebar-link:hover,
body.public-mystical .mobile-site-sidebar-link.active {
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.15), transparent) !important;
    color: #14b8a6 !important;
    border-left-color: #14b8a6 !important;
}

body.public-mystical .mobile-site-sidebar-link i {
    color: #d4b88a !important;
}

body.public-mystical .mobile-site-sidebar-link:hover i,
body.public-mystical .mobile-site-sidebar-link.active i {
    color: #14b8a6 !important;
}

body.public-mystical .mobile-site-sidebar-divider {
    background: rgba(255, 255, 255, 0.1) !important;
    border: none !important;
}

body.public-mystical .mobile-site-sidebar-section-title {
    color: #a0b8b8 !important;
}

body.public-mystical .mobile-site-sidebar-footer {
    background: #062929 !important;
    border-top: 1px solid rgba(184, 151, 106, 0.2) !important;
}

body.public-mystical .mobile-site-sidebar-footer .btn {
    background: rgba(239, 68, 68, 0.15) !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
    color: #f87171 !important;
}

body.public-mystical .mobile-site-sidebar-footer .btn:hover {
    background: rgba(239, 68, 68, 0.25) !important;
}

/* Guest state in sidebar */
body.public-mystical .mobile-site-sidebar-guest {
    background: linear-gradient(to right, #083b3b, #062929) !important;
}

body.public-mystical .mobile-site-sidebar-guest-title {
    color: #ffffff !important;
}

body.public-mystical .mobile-site-sidebar-guest-text {
    color: #a0b8b8 !important;
}

body.public-mystical .mobile-site-sidebar-guest .btn-primary {
    background: rgba(20, 184, 166, 0.9) !important;
    border: 1px solid rgba(45, 212, 191, 0.5) !important;
    color: #ffffff !important;
}

body.public-mystical .mobile-site-sidebar-guest .btn-outline-primary {
    background: transparent !important;
    border: 1px solid rgba(45, 212, 191, 0.4) !important;
    color: #2dd4bf !important;
}

/* ============================================
   OFFCANVAS / BOOTSTRAP SIDEBAR - MYSTICAL
   ============================================ */
body.public-mystical .offcanvas {
    background: #062929 !important;
    border-left: 1px solid rgba(184, 151, 106, 0.2) !important;
}

body.public-mystical .offcanvas-header {
    background: linear-gradient(to right, #083b3b, #062929) !important;
    border-bottom: 1px solid rgba(184, 151, 106, 0.3) !important;
}

body.public-mystical .offcanvas-title {
    color: #ffffff !important;
}

body.public-mystical .offcanvas-body {
    background: #062929 !important;
    color: #e8f0f0 !important;
}

body.public-mystical .offcanvas .btn-close {
    filter: invert(1) !important;
}

body.public-mystical .offcanvas .nav-link {
    color: #e8f0f0 !important;
    border-left: 3px solid transparent;
    padding: 0.75rem 1rem;
}

body.public-mystical .offcanvas .nav-link:hover,
body.public-mystical .offcanvas .nav-link.active {
    background: linear-gradient(90deg, rgba(20, 184, 166, 0.15), transparent) !important;
    color: #14b8a6 !important;
    border-left-color: #14b8a6 !important;
}

body.public-mystical .offcanvas .nav-link i {
    color: #d4b88a !important;
}

body.public-mystical .offcanvas .nav-link:hover i,
body.public-mystical .offcanvas .nav-link.active i {
    color: #14b8a6 !important;
}

/* ============================================
   PAGE HEADER / BREADCRUMB
   ============================================ */
body.public-mystical .page-header {
    background: linear-gradient(180deg,
        rgba(20, 184, 166, 0.1) 0%,
        rgba(15, 89, 89, 0.9) 100%) !important;
    border-bottom: 1px solid rgba(45, 212, 191, 0.2);
    position: relative;
    z-index: 1;
}

body.public-mystical .page-title {
    color: var(--text-white) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

body.public-mystical .page-title i {
    color: var(--badge-teal) !important;
    filter: drop-shadow(0 0 8px rgba(45, 212, 191, 0.5));
}

body.public-mystical .page-subtitle {
    color: var(--text-muted) !important;
}

body.public-mystical .breadcrumb {
    background: transparent !important;
}

body.public-mystical .breadcrumb-item a {
    color: var(--badge-teal) !important;
}

body.public-mystical .breadcrumb-item.active {
    color: var(--text-muted) !important;
}

body.public-mystical .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted) !important;
}

/* ============================================
   MAIN CONTENT AREA
   ============================================ */
body.public-mystical main,
body.public-mystical .main-content {
    position: relative;
}

body.public-mystical .text-muted {
    color: var(--text-muted) !important;
}

body.public-mystical h1, body.public-mystical h2,
body.public-mystical h3, body.public-mystical h4,
body.public-mystical h5, body.public-mystical h6 {
    color: var(--text-white);
}

body.public-mystical p {
    color: var(--text-light);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
body.public-mystical .section-title {
    color: var(--text-white) !important;
    text-shadow: 0 0 30px rgba(45, 212, 191, 0.3);
}

body.public-mystical .section-title i {
    color: var(--teal-medium) !important;
    filter: drop-shadow(0 0 8px rgba(45, 212, 191, 0.5));
}

body.public-mystical .section-subtitle {
    color: var(--text-muted) !important;
}

/* ============================================
   GLASSMORPHISM CARDS (Generic)
   ============================================ */
body.public-mystical .card,
body.public-mystical .content-card {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.1) 0%,
        rgba(15, 90, 90, 0.85) 40%,
        rgba(10, 64, 64, 0.95) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.18) !important;
    border-radius: 20px !important;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body.public-mystical .card:hover,
body.public-mystical .content-card:hover {
    border-color: rgba(45, 212, 191, 0.35) !important;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(20, 184, 166, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
}

body.public-mystical .card-header {
    background: rgba(20, 184, 166, 0.08) !important;
    border-bottom: 1px solid rgba(45, 212, 191, 0.15) !important;
    color: var(--text-white) !important;
}

body.public-mystical .card-body {
    color: var(--text-light) !important;
}

body.public-mystical .card-footer {
    background: rgba(10, 64, 64, 0.5) !important;
    border-top: 1px solid rgba(45, 212, 191, 0.15) !important;
}

body.public-mystical .card-title {
    color: var(--text-white) !important;
}

body.public-mystical .card-text {
    color: var(--text-muted) !important;
}

/* ============================================
   FILTER SIDEBAR / FILTER CARDS
   ============================================ */
body.public-mystical .filters-card,
body.public-mystical .filter-card,
body.public-mystical .sidebar-card {
    background: linear-gradient(180deg,
        rgba(20, 184, 166, 0.08) 0%,
        rgba(14, 85, 85, 0.85) 50%,
        rgba(10, 64, 64, 0.95) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    border-radius: 16px !important;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 0 25px rgba(20, 184, 166, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

body.public-mystical .filters-title,
body.public-mystical .filter-title {
    color: var(--text-white) !important;
    border-bottom: 2px solid var(--badge-teal) !important;
}

body.public-mystical .filters-title i,
body.public-mystical .filter-title i {
    color: var(--badge-teal) !important;
}

body.public-mystical .filter-group {
    border-bottom: 1px solid rgba(45, 212, 191, 0.15) !important;
}

body.public-mystical .filter-label {
    color: var(--text-light) !important;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
body.public-mystical .form-control,
body.public-mystical .form-select {
    background-color: rgba(20, 184, 166, 0.1) !important;
    border: 1px solid rgba(45, 212, 191, 0.25) !important;
    color: var(--text-white) !important;
    border-radius: 10px !important;
}

body.public-mystical .form-control:focus,
body.public-mystical .form-select:focus {
    background-color: rgba(20, 184, 166, 0.15) !important;
    border-color: var(--badge-teal) !important;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2) !important;
    color: var(--text-white) !important;
}

body.public-mystical .form-control::placeholder {
    color: var(--text-muted) !important;
}

body.public-mystical .form-select option {
    background-color: var(--bg-dark) !important;
    color: var(--text-white) !important;
}

body.public-mystical .form-label {
    color: var(--text-light) !important;
}

body.public-mystical .input-group-text {
    background: rgba(20, 184, 166, 0.15) !important;
    border: 1px solid rgba(45, 212, 191, 0.25) !important;
    color: var(--teal-medium) !important;
}

body.public-mystical textarea.form-control {
    background-color: rgba(20, 184, 166, 0.1) !important;
}

/* ============================================
   BUTTONS
   ============================================ */
body.public-mystical .btn-primary {
    background: rgba(20, 184, 166, 0.9) !important;
    border: 1px solid rgba(45, 212, 191, 0.5) !important;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.3);
}

body.public-mystical .btn-primary:hover {
    background: rgba(45, 212, 191, 0.95) !important;
    box-shadow: 0 0 25px rgba(45, 212, 191, 0.4);
}

body.public-mystical .btn-outline-primary {
    background: rgba(20, 184, 166, 0.15) !important;
    border: 1px solid rgba(45, 212, 191, 0.4) !important;
    color: #2dd4bf !important;
}

body.public-mystical .btn-outline-primary:hover {
    background: rgba(20, 184, 166, 0.25) !important;
    border-color: rgba(45, 212, 191, 0.6) !important;
    color: #45f0df !important;
}

body.public-mystical .btn-secondary {
    background: rgba(100, 116, 139, 0.3) !important;
    border: 1px solid rgba(100, 116, 139, 0.4) !important;
    color: var(--text-light) !important;
}

body.public-mystical .btn-secondary:hover {
    background: rgba(100, 116, 139, 0.4) !important;
    color: var(--text-white) !important;
}

body.public-mystical .btn-outline-secondary {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-light) !important;
}

body.public-mystical .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: var(--text-white) !important;
}

body.public-mystical .btn-light {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-light) !important;
}

body.public-mystical .btn-light:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--text-white) !important;
}

body.public-mystical .btn-success {
    background: rgba(34, 197, 94, 0.9) !important;
    border: 1px solid rgba(34, 197, 94, 0.5) !important;
    color: #ffffff !important;
}

body.public-mystical .btn-success:hover {
    background: rgba(74, 222, 128, 0.95) !important;
}

body.public-mystical .btn-danger {
    background: rgba(239, 68, 68, 0.9) !important;
    border: 1px solid rgba(239, 68, 68, 0.5) !important;
    color: #ffffff !important;
}

body.public-mystical .btn-warning {
    background: var(--gold-gradient-btn) !important;
    border: 1px solid rgba(184, 151, 106, 0.5) !important;
    color: var(--text-dark) !important;
}

/* ============================================
   BADGES
   ============================================ */
body.public-mystical .badge {
    font-weight: 600;
}

body.public-mystical .badge.bg-primary,
body.public-mystical .badge-primary {
    background: rgba(20, 184, 166, 0.9) !important;
    color: #ffffff !important;
}

body.public-mystical .badge.bg-success,
body.public-mystical .badge-success {
    background: rgba(34, 197, 94, 0.9) !important;
    color: #ffffff !important;
}

body.public-mystical .badge.bg-warning,
body.public-mystical .badge-warning {
    background: var(--gold-gradient-btn) !important;
    color: var(--text-dark) !important;
}

body.public-mystical .badge.bg-danger,
body.public-mystical .badge-danger {
    background: rgba(239, 68, 68, 0.9) !important;
    color: #ffffff !important;
}

body.public-mystical .badge.bg-secondary,
body.public-mystical .badge-secondary {
    background: rgba(100, 116, 139, 0.5) !important;
    color: var(--text-light) !important;
}

body.public-mystical .badge.bg-info,
body.public-mystical .badge-info {
    background: rgba(20, 184, 166, 0.3) !important;
    color: var(--teal-medium) !important;
    border: 1px solid rgba(45, 212, 191, 0.3);
}

/* ============================================
   STATUS BADGES
   ============================================ */
body.public-mystical .status-badge.online,
body.public-mystical .status-online {
    background: rgba(34, 197, 94, 0.2) !important;
    color: #4ade80 !important;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

body.public-mystical .status-badge.busy,
body.public-mystical .status-busy {
    background: rgba(245, 158, 11, 0.2) !important;
    color: #fbbf24 !important;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

body.public-mystical .status-badge.offline,
body.public-mystical .status-offline {
    background: rgba(148, 163, 184, 0.2) !important;
    color: #94a3b8 !important;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

/* ============================================
   FALCI / TELLER CARDS
   ============================================ */
body.public-mystical .falci-card,
body.public-mystical .teller-card {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.1) 0%,
        rgba(15, 90, 90, 0.85) 40%,
        rgba(10, 64, 64, 0.95) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.18) !important;
    border-radius: 20px !important;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body.public-mystical .falci-card:hover,
body.public-mystical .teller-card:hover {
    border-color: rgba(45, 212, 191, 0.35) !important;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(20, 184, 166, 0.12);
    transform: translateY(-5px);
}

body.public-mystical .falci-card .card-title,
body.public-mystical .teller-card .card-title,
body.public-mystical .falci-name,
body.public-mystical .teller-name {
    color: var(--text-white) !important;
}

body.public-mystical .falci-card .text-muted,
body.public-mystical .teller-card .text-muted {
    color: var(--text-muted) !important;
}

/* Falcı Avatar */
body.public-mystical .falci-avatar,
body.public-mystical .teller-avatar {
    border: 3px solid rgba(45, 212, 191, 0.4) !important;
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.2);
}

/* Rating Stars */
body.public-mystical .rating-stars,
body.public-mystical .star-rating {
    color: #fbbf24 !important;
}

/* ============================================
   FAL TÜRÜ CARDS
   ============================================ */
body.public-mystical .fal-turu-card {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.1) 0%,
        rgba(15, 90, 90, 0.85) 40%,
        rgba(10, 64, 64, 0.95) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.18) !important;
    border-radius: 20px !important;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body.public-mystical .fal-turu-card:hover {
    border-color: rgba(45, 212, 191, 0.35) !important;
    transform: translateY(-5px);
}

body.public-mystical .fal-turu-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 64, 64, 0.9), transparent);
    pointer-events: none;
}

body.public-mystical .fal-turu-name {
    color: var(--text-white) !important;
}

body.public-mystical .fal-turu-desc {
    color: var(--text-muted) !important;
}

body.public-mystical .price-badge {
    background: var(--gold-gradient-btn) !important;
    color: var(--text-dark) !important;
}

body.public-mystical .duration-badge {
    background: rgba(20, 184, 166, 0.9) !important;
    color: var(--text-white) !important;
}

/* ============================================
   COMPANY / FIRMA CARDS
   ============================================ */
body.public-mystical .company-card,
body.public-mystical .firma-card {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.1) 0%,
        rgba(15, 90, 90, 0.85) 40%,
        rgba(10, 64, 64, 0.95) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.18) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body.public-mystical .company-card:hover,
body.public-mystical .firma-card:hover {
    border-color: rgba(45, 212, 191, 0.35) !important;
    transform: translateY(-5px);
}

body.public-mystical .company-name,
body.public-mystical .firma-name {
    color: var(--text-white) !important;
}

body.public-mystical .company-description,
body.public-mystical .firma-description {
    color: var(--text-muted) !important;
}

/* ============================================
   BLOG CARDS
   ============================================ */
body.public-mystical .blog-card {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.1) 0%,
        rgba(15, 90, 90, 0.85) 40%,
        rgba(10, 64, 64, 0.95) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.18) !important;
    border-radius: 20px !important;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body.public-mystical .blog-card:hover {
    border-color: rgba(45, 212, 191, 0.35) !important;
    transform: translateY(-5px);
}

body.public-mystical .blog-card .card-title,
body.public-mystical .blog-title {
    color: var(--text-white) !important;
}

body.public-mystical .blog-card .card-text,
body.public-mystical .blog-excerpt {
    color: var(--text-muted) !important;
}

body.public-mystical .blog-category {
    background: rgba(20, 184, 166, 0.9) !important;
    color: #ffffff !important;
}

body.public-mystical .blog-date,
body.public-mystical .blog-meta {
    color: var(--text-muted) !important;
}

/* ============================================
   STAT ITEMS / INFO BOXES
   ============================================ */
body.public-mystical .stat-item,
body.public-mystical .info-box {
    background: rgba(20, 184, 166, 0.1) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    border-radius: 12px !important;
    padding: 0.75rem 0.5rem;
}

body.public-mystical .stat-item i,
body.public-mystical .info-box i {
    color: var(--teal-medium) !important;
}

body.public-mystical .stat-item span,
body.public-mystical .stat-value {
    color: var(--text-white) !important;
}

body.public-mystical .stat-label {
    color: var(--text-muted) !important;
}

/* ============================================
   TABLES
   ============================================ */
body.public-mystical .table {
    color: var(--text-light) !important;
}

body.public-mystical .table thead th {
    background: rgba(20, 184, 166, 0.15) !important;
    color: var(--text-white) !important;
    border-bottom: 2px solid rgba(45, 212, 191, 0.3) !important;
}

body.public-mystical .table tbody tr {
    border-bottom: 1px solid rgba(45, 212, 191, 0.1) !important;
}

body.public-mystical .table tbody tr:hover {
    background: rgba(20, 184, 166, 0.08) !important;
}

body.public-mystical .table td,
body.public-mystical .table th {
    border-color: rgba(45, 212, 191, 0.15) !important;
}

/* ============================================
   PAGINATION
   ============================================ */
body.public-mystical .pagination .page-link {
    background: rgba(20, 184, 166, 0.1) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    color: var(--text-light) !important;
}

body.public-mystical .pagination .page-link:hover {
    background: rgba(20, 184, 166, 0.2) !important;
    border-color: rgba(45, 212, 191, 0.4) !important;
    color: var(--text-white) !important;
}

body.public-mystical .pagination .page-item.active .page-link {
    background: rgba(20, 184, 166, 0.9) !important;
    border-color: var(--teal-medium) !important;
    color: #ffffff !important;
}

body.public-mystical .pagination .page-item.disabled .page-link {
    background: rgba(100, 116, 139, 0.2) !important;
    color: var(--text-muted) !important;
}

/* ============================================
   ALERTS
   ============================================ */
body.public-mystical .alert {
    border-radius: 12px !important;
}

body.public-mystical .alert-info {
    background: rgba(20, 184, 166, 0.15) !important;
    border: 1px solid rgba(45, 212, 191, 0.3) !important;
    color: var(--text-light) !important;
}

body.public-mystical .alert-info i {
    color: var(--badge-teal) !important;
}

body.public-mystical .alert-success {
    background: rgba(34, 197, 94, 0.15) !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
    color: #4ade80 !important;
}

body.public-mystical .alert-warning {
    background: rgba(245, 158, 11, 0.15) !important;
    border: 1px solid rgba(245, 158, 11, 0.3) !important;
    color: #fbbf24 !important;
}

body.public-mystical .alert-danger {
    background: rgba(239, 68, 68, 0.15) !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
    color: #f87171 !important;
}

/* ============================================
   MODALS - SESSION START MODAL
   ============================================ */

body.public-mystical .modal-content,
body.public-mystical .session-modal-minimal {
    background: linear-gradient(180deg,
        var(--bg-dark) 0%,
        var(--bg-deepest) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.25) !important;
    border-radius: 20px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(20, 184, 166, 0.15) !important;
    position: relative;
    z-index: 10052 !important;
}

body.public-mystical .modal-header {
    border-bottom: 1px solid rgba(45, 212, 191, 0.2) !important;
}

body.public-mystical .modal-title {
    color: var(--text-white) !important;
}

body.public-mystical .modal-body,
body.public-mystical .session-modal-body {
    color: var(--text-light) !important;
}

body.public-mystical .modal-footer {
    border-top: 1px solid rgba(45, 212, 191, 0.2) !important;
}

body.public-mystical .btn-close {
    filter: invert(1) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

body.public-mystical .session-modal-close {
    position: absolute !important;
    top: -14px !important;
    right: 28px !important;
    z-index: 1060 !important;
    background: linear-gradient(135deg, #d4b88a 0%, #b8976a 100%) !important;
    border: 2px solid rgba(212, 184, 138, 0.5) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #083b3b !important;
    font-size: 16px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    filter: none !important;
}

body.public-mystical .session-modal-close:hover {
    background: linear-gradient(135deg, #e5c99b 0%, #c9a87b 100%) !important;
    transform: scale(1.1) !important;
}

body.public-mystical .session-modal-minimal {
    position: relative !important;
    overflow: visible !important;
}

/* Session Modal - Preselected Info Card */
body.public-mystical .session-modal-preselected {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15) 0%, rgba(14, 85, 85, 0.3) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.3) !important;
}

body.public-mystical .session-modal-preselected-label {
    color: var(--text-muted) !important;
}

body.public-mystical .session-modal-preselected-value,
body.public-mystical .session-modal-preselected-cost {
    color: var(--teal-medium) !important;
}

/* Session Modal - Section Headers */
body.public-mystical .session-modal-section-header {
    color: var(--text-muted) !important;
}

/* Session Modal - Teller Cards */
body.public-mystical .teller-select-card {
    background: rgba(10, 64, 64, 0.6) !important;
    border: 2px solid rgba(45, 212, 191, 0.2) !important;
    border-radius: 12px !important;
}

body.public-mystical .teller-select-card:hover {
    background: rgba(14, 85, 85, 0.7) !important;
    border-color: rgba(45, 212, 191, 0.35) !important;
}

body.public-mystical .teller-select-card.selected {
    background: rgba(20, 184, 166, 0.15) !important;
    border-color: var(--teal-medium) !important;
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.2) !important;
}

body.public-mystical .teller-select-card.unavailable {
    opacity: 0.5;
}

body.public-mystical .teller-select-name {
    color: var(--text-white) !important;
}

body.public-mystical .teller-select-avatar {
    border-color: rgba(45, 212, 191, 0.3) !important;
}

body.public-mystical .teller-select-card.selected .teller-select-avatar {
    border-color: var(--teal-medium) !important;
}

body.public-mystical .teller-select-status.online {
    background: rgba(34, 197, 94, 0.2) !important;
    color: #4ade80 !important;
}

body.public-mystical .teller-select-status.busy {
    background: rgba(245, 158, 11, 0.2) !important;
    color: #fbbf24 !important;
}

body.public-mystical .teller-select-status.offline {
    background: rgba(148, 163, 184, 0.2) !important;
    color: #94a3b8 !important;
}

/* Session Modal - Fortune Type Cards */
body.public-mystical .fortune-type-card {
    background: rgba(10, 64, 64, 0.6) !important;
    border: 2px solid rgba(45, 212, 191, 0.2) !important;
    border-radius: 12px !important;
}

body.public-mystical .fortune-type-card:hover {
    background: rgba(14, 85, 85, 0.7) !important;
    border-color: rgba(45, 212, 191, 0.35) !important;
}

body.public-mystical .fortune-type-card.selected {
    background: rgba(20, 184, 166, 0.15) !important;
    border-color: var(--teal-medium) !important;
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.2) !important;
}

body.public-mystical .fortune-type-name {
    color: var(--text-white) !important;
}

body.public-mystical .fortune-type-duration {
    color: var(--text-muted) !important;
}

body.public-mystical .fortune-type-price {
    color: var(--teal-medium) !important;
}

/* Session Modal - Session Type Toggle */
body.public-mystical .session-type-btn {
    background: rgba(10, 64, 64, 0.6) !important;
    border: 2px solid rgba(45, 212, 191, 0.2) !important;
    color: var(--text-muted) !important;
}

body.public-mystical .btn-check:checked + .session-type-btn {
    background: rgba(20, 184, 166, 0.2) !important;
    border-color: var(--teal-medium) !important;
    color: var(--teal-medium) !important;
}

/* Session Modal - Credit Bar */
body.public-mystical .session-credit-bar {
    background: rgba(20, 184, 166, 0.1) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    border-radius: 12px !important;
}

body.public-mystical .session-credit-info {
    color: var(--teal-medium) !important;
}

body.public-mystical .session-selected-info {
    color: var(--text-muted) !important;
}

body.public-mystical .session-selected-info strong {
    color: #4ade80 !important;
}

/* Session Modal - Action Buttons */
body.public-mystical .session-modal-actions .btn-light {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-light) !important;
}

body.public-mystical .session-modal-actions .btn-light:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

body.public-mystical .session-modal-actions .btn-primary {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9) 0%, rgba(13, 148, 136, 0.9) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.5) !important;
    color: #ffffff !important;
}

body.public-mystical .session-modal-actions .btn-primary:hover {
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.95) 0%, rgba(20, 184, 166, 0.95) 100%) !important;
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.4) !important;
}

body.public-mystical .session-modal-actions .btn-primary:disabled {
    opacity: 0.5 !important;
}

/* Session Modal - Scrollbar */
body.public-mystical .session-fortune-list::-webkit-scrollbar,
body.public-mystical .session-tellers-list::-webkit-scrollbar {
    width: 6px;
}

body.public-mystical .session-fortune-list::-webkit-scrollbar-track,
body.public-mystical .session-tellers-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

body.public-mystical .session-fortune-list::-webkit-scrollbar-thumb,
body.public-mystical .session-tellers-list::-webkit-scrollbar-thumb {
    background: rgba(45, 212, 191, 0.4);
    border-radius: 3px;
}

body.public-mystical .session-fortune-list::-webkit-scrollbar-thumb:hover,
body.public-mystical .session-tellers-list::-webkit-scrollbar-thumb:hover {
    background: rgba(45, 212, 191, 0.6);
}

/* Session Modal - Loading & Empty States */
body.public-mystical .session-modal-loading,
body.public-mystical .session-modal-empty {
    color: var(--text-muted) !important;
}

body.public-mystical .session-modal-loading .spinner-border {
    color: var(--teal-medium) !important;
}

/* Session Modal - Teller Header Info */
body.public-mystical .session-modal-name {
    color: var(--text-white) !important;
}

body.public-mystical .session-modal-company {
    color: var(--text-muted) !important;
}

body.public-mystical .session-modal-company i {
    color: var(--teal-medium) !important;
}

body.public-mystical .session-modal-avatar {
    border-color: var(--teal-medium) !important;
}

body.public-mystical .session-modal-profile-link {
    color: var(--teal-medium) !important;
    border-color: var(--teal-medium) !important;
}

body.public-mystical .session-modal-profile-link:hover {
    background: var(--teal-medium) !important;
    color: #ffffff !important;
}

/* ============================================
   FOOTER
   ============================================ */
body.public-mystical .site-footer {
    background: var(--bg-deepest) !important;
    border-top: 1px solid rgba(184, 151, 106, 0.2) !important;
    position: relative;
    z-index: 1;
}

body.public-mystical .footer-title {
    color: var(--gold-light) !important;
}

body.public-mystical .footer-text,
body.public-mystical .footer-link {
    color: var(--text-muted) !important;
}

body.public-mystical .footer-link:hover {
    color: var(--text-white) !important;
}

body.public-mystical .social-link {
    background: rgba(184, 151, 106, 0.1) !important;
    border: 1px solid rgba(184, 151, 106, 0.3) !important;
    color: var(--gold-light) !important;
}

body.public-mystical .social-link:hover {
    background: rgba(184, 151, 106, 0.2) !important;
    color: var(--gold-highlight) !important;
}

body.public-mystical .copyright {
    color: var(--text-muted) !important;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
body.public-mystical .floating-btn {
    opacity: 1 !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.1) !important;
}

body.public-mystical .whatsapp-btn {
    background: #25D366 !important;
    border: 2px solid #2be573 !important;
}

body.public-mystical .whatsapp-btn i {
    color: #ffffff !important;
    opacity: 1 !important;
}

body.public-mystical .phone-btn {
    background: #14b8a6 !important;
    border: 2px solid #2dd4bf !important;
}

body.public-mystical .phone-btn i {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* ============================================
   SCROLLBAR
   ============================================ */
body.public-mystical::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

body.public-mystical::-webkit-scrollbar-track {
    background: var(--bg-deepest);
}

body.public-mystical::-webkit-scrollbar-thumb {
    background: rgba(184, 151, 106, 0.3);
    border-radius: 4px;
}

body.public-mystical::-webkit-scrollbar-thumb:hover {
    background: rgba(184, 151, 106, 0.5);
}

/* ============================================
   LINKS
   ============================================ */
body.public-mystical a {
    color: var(--teal-medium);
}

body.public-mystical a:hover {
    color: var(--teal-bright);
}

/* ============================================
   LOADING SPINNERS
   ============================================ */
body.public-mystical .spinner-border {
    color: var(--teal-medium) !important;
}

body.public-mystical .spinner-grow {
    color: var(--teal-medium) !important;
}

/* ============================================
   EMPTY STATES
   ============================================ */
body.public-mystical .empty-state,
body.public-mystical .no-results {
    color: var(--text-muted) !important;
}

body.public-mystical .empty-state i,
body.public-mystical .no-results i {
    color: var(--teal-medium) !important;
    opacity: 0.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    body.public-mystical::before {
        width: 350px;
        height: 350px;
        top: -100px;
        right: -100px;
    }

    body.public-mystical .filters-card,
    body.public-mystical .filter-card,
    body.public-mystical .sidebar-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    body.public-mystical::before {
        width: 250px;
        height: 250px;
        top: -80px;
        right: -80px;
        opacity: 0.4;
    }

    body.public-mystical .page-title {
        font-size: 1.5rem !important;
    }

    body.public-mystical .card,
    body.public-mystical .content-card {
        border-radius: 16px !important;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    body.public-mystical::before {
        animation: none;
    }

    body.public-mystical .card,
    body.public-mystical .content-card,
    body.public-mystical .falci-card,
    body.public-mystical .teller-card,
    body.public-mystical .fal-turu-card,
    body.public-mystical .company-card,
    body.public-mystical .blog-card {
        transition: none;
    }
}

/* ============================================
   FAL TÜRÜ DETAY PAGE SPECIFIC STYLES
   ============================================ */

/* Hero Section */
body.public-mystical .fal-turu-hero {
    background: transparent !important;
}

body.public-mystical .fal-turu-title {
    color: var(--text-white) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

body.public-mystical .fal-turu-title i {
    color: var(--teal-medium) !important;
}

body.public-mystical .fal-turu-hero .info-item {
    color: var(--text-light) !important;
}

body.public-mystical .fal-turu-hero .info-item strong {
    color: var(--text-muted) !important;
}

body.public-mystical .fal-turu-hero .info-item .text-primary,
body.public-mystical .fal-turu-hero .info-item .h5 {
    color: var(--teal-medium) !important;
}

body.public-mystical .fal-turu-hero-image .hero-image {
    border: 4px solid rgba(45, 212, 191, 0.4) !important;
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.3) !important;
}

body.public-mystical .fal-turu-hero-image .default-fal-image {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.8) 0%, rgba(13, 148, 136, 0.8) 100%) !important;
    border: 4px solid rgba(45, 212, 191, 0.4) !important;
    box-shadow: 0 0 30px rgba(20, 184, 166, 0.3) !important;
}

/* Description Card */
body.public-mystical .description-card {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.1) 0%,
        rgba(15, 90, 90, 0.85) 40%,
        rgba(10, 64, 64, 0.95) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(10px);
}

body.public-mystical .description-card .section-title {
    color: var(--text-white) !important;
}

body.public-mystical .description-content,
body.public-mystical .description-content p {
    color: var(--text-light) !important;
}

/* Fal Türü Description Section */
body.public-mystical .fal-turu-description {
    background: transparent !important;
}

/* Related Falcılar Section */
body.public-mystical .related-falcilar {
    background: transparent !important;
}

/* Status Filter Buttons */
body.public-mystical .filter-buttons-container {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.1) 0%,
        rgba(15, 90, 90, 0.85) 40%,
        rgba(10, 64, 64, 0.95) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(10px);
}

body.public-mystical .status-filters .filter-btn,
body.public-mystical .status-btn {
    background: rgba(9, 68, 68, 0.85) !important;
    border: 1px solid rgba(45, 212, 191, 0.25) !important;
    color: var(--text-light) !important;
}

body.public-mystical .status-filters .filter-btn:hover,
body.public-mystical .status-btn:hover {
    background: rgba(20, 184, 166, 0.2) !important;
    border-color: rgba(45, 212, 191, 0.4) !important;
}

body.public-mystical .status-filters .filter-btn.active,
body.public-mystical .status-btn.active {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9) 0%, rgba(13, 148, 136, 0.9) 100%) !important;
    border-color: var(--teal-medium) !important;
    color: var(--text-white) !important;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3) !important;
}

body.public-mystical .status-filters .filter-btn .count,
body.public-mystical .status-btn .status-count {
    background: rgba(45, 212, 191, 0.15) !important;
    color: var(--text-light) !important;
}

body.public-mystical .status-btn.active .status-count {
    background: rgba(255, 255, 255, 0.2) !important;
    color: var(--text-white) !important;
}

/* Modern Falcı Cards */
body.public-mystical .falci-card-modern {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.1) 0%,
        rgba(15, 90, 90, 0.85) 40%,
        rgba(10, 64, 64, 0.95) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.18) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(10px);
}

body.public-mystical .falci-card-modern:hover {
    border-color: rgba(45, 212, 191, 0.35) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25), 0 0 30px rgba(20, 184, 166, 0.12) !important;
}

body.public-mystical .falci-card-modern::before {
    background: linear-gradient(90deg, var(--teal-medium), var(--teal-bright)) !important;
}

body.public-mystical .falci-card-header {
    background: rgba(20, 184, 166, 0.08) !important;
    border-bottom: 1px solid rgba(45, 212, 191, 0.15) !important;
}

body.public-mystical .falci-card-modern .falci-name {
    color: var(--text-white) !important;
}

body.public-mystical .falci-company {
    color: var(--text-muted) !important;
}

/* Falcı Avatar - Kare container kaldır */
body.public-mystical .falci-avatar {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body.public-mystical .falci-avatar img {
    border: 3px solid rgba(45, 212, 191, 0.4) !important;
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.2) !important;
    border-radius: 50% !important;
}

body.public-mystical .falci-avatar-placeholder {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.8) 0%, rgba(13, 148, 136, 0.8) 100%) !important;
    border: 3px solid rgba(45, 212, 191, 0.4) !important;
    border-radius: 50% !important;
}

body.public-mystical .rating-text {
    color: var(--text-muted) !important;
}

/* Card Body */
body.public-mystical .falci-card-body {
    background: transparent !important;
}

body.public-mystical .falci-card-modern .stat-item {
    background: rgba(20, 184, 166, 0.1) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
}

body.public-mystical .falci-card-modern .stat-item:hover {
    background: rgba(20, 184, 166, 0.25) !important;
}

body.public-mystical .falci-card-modern .stat-item i {
    color: var(--teal-medium) !important;
}

body.public-mystical .falci-card-modern .stat-item span {
    color: var(--text-light) !important;
}

body.public-mystical .falci-card-modern .stat-item:hover i,
body.public-mystical .falci-card-modern .stat-item:hover span {
    color: var(--text-white) !important;
}

body.public-mystical .services-title {
    color: var(--text-muted) !important;
}

body.public-mystical .service-badge {
    background: rgba(20, 184, 166, 0.2) !important;
    color: var(--teal-medium) !important;
    border: 1px solid rgba(45, 212, 191, 0.3) !important;
}

body.public-mystical .service-badge:hover {
    background: var(--teal-medium) !important;
    color: #ffffff !important;
}

body.public-mystical .service-badge.more {
    background: rgba(100, 116, 139, 0.3) !important;
    color: var(--text-muted) !important;
    border: 1px solid rgba(100, 116, 139, 0.4) !important;
}

/* Card Footer */
body.public-mystical .falci-card-footer {
    background: rgba(10, 64, 64, 0.5) !important;
    border-top: 1px solid rgba(45, 212, 191, 0.15) !important;
}

/* CTA Box */
body.public-mystical .cta-box {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9) 0%, rgba(13, 148, 136, 0.9) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.5) !important;
    box-shadow: 0 10px 40px rgba(20, 184, 166, 0.3) !important;
}

body.public-mystical .cta-title {
    color: #ffffff !important;
}

body.public-mystical .cta-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Other Fal Türleri Section */
body.public-mystical .other-fal-turleri {
    background: transparent !important;
}

body.public-mystical .other-fal-turleri .section-title {
    color: var(--text-white) !important;
}

body.public-mystical .other-fal-turleri .section-subtitle {
    color: var(--text-muted) !important;
}

/* ============================================
   FAL TÜRLERİ PAGE SPECIFIC STYLES
   ============================================ */

/* Fal Türleri List Container */
body.public-mystical .fal-turleri-list {
    position: relative;
    z-index: 1;
}

/* Filter Sidebar */
body.public-mystical .filters-card {
    background: linear-gradient(180deg,
        rgba(20, 184, 166, 0.08) 0%,
        rgba(14, 85, 85, 0.85) 50%,
        rgba(10, 64, 64, 0.95) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    border-radius: 16px !important;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 0 25px rgba(20, 184, 166, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

body.public-mystical .filters-title {
    color: var(--text-white) !important;
    border-bottom: 2px solid var(--badge-teal) !important;
}

body.public-mystical .filters-title i {
    color: var(--badge-teal) !important;
}

body.public-mystical .filter-group {
    border-bottom: 1px solid rgba(45, 212, 191, 0.15) !important;
}

body.public-mystical .filter-label {
    color: var(--text-light) !important;
}

/* Fal Türü Card */
body.public-mystical .fal-turu-card {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.1) 0%,
        rgba(15, 90, 90, 0.85) 40%,
        rgba(10, 64, 64, 0.95) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.18) !important;
    border-radius: 20px !important;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

body.public-mystical .fal-turu-card:hover {
    border-color: rgba(45, 212, 191, 0.35) !important;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(20, 184, 166, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

/* Fal Türü Card Image */
body.public-mystical .fal-turu-image {
    position: relative;
    overflow: hidden;
}

body.public-mystical .fal-turu-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10, 64, 64, 0.9), transparent);
    pointer-events: none;
}

/* Fal Türü Badges */
body.public-mystical .fal-badge {
    background: rgba(20, 184, 166, 0.9) !important;
    color: var(--text-white) !important;
    border: 1px solid rgba(45, 212, 191, 0.5) !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(20, 184, 166, 0.3);
}

body.public-mystical .price-badge {
    background: var(--gold-gradient-btn) !important;
    color: var(--text-dark) !important;
    border: 1px solid rgba(184, 151, 106, 0.5) !important;
}

body.public-mystical .duration-badge {
    background: rgba(20, 184, 166, 0.9) !important;
    color: var(--text-white) !important;
}

/* Fal Türü Content */
body.public-mystical .fal-turu-content {
    background: transparent !important;
}

body.public-mystical .fal-turu-name {
    color: var(--text-white) !important;
    font-weight: 700 !important;
}

body.public-mystical .fal-turu-desc {
    color: var(--text-muted) !important;
}

/* Fal Türü Card Buttons */
body.public-mystical .fal-turu-card .btn-outline-primary {
    background: rgba(20, 184, 166, 0.15) !important;
    border: 1px solid rgba(45, 212, 191, 0.4) !important;
    color: #2dd4bf !important;
}

body.public-mystical .fal-turu-card .btn-outline-primary:hover {
    background: rgba(20, 184, 166, 0.25) !important;
    border-color: rgba(45, 212, 191, 0.6) !important;
    color: #45f0df !important;
}

body.public-mystical .fal-turu-card .btn-primary {
    background: rgba(20, 184, 166, 0.9) !important;
    border: 1px solid rgba(45, 212, 191, 0.5) !important;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.3);
}

body.public-mystical .fal-turu-card .btn-primary:hover {
    background: rgba(45, 212, 191, 0.95) !important;
    box-shadow: 0 0 25px rgba(45, 212, 191, 0.4);
}

body.public-mystical .fal-turu-card .btn-secondary {
    background: rgba(100, 116, 139, 0.3) !important;
    border: 1px solid rgba(100, 116, 139, 0.4) !important;
    color: var(--text-light) !important;
}

body.public-mystical .fal-turu-card .btn-secondary:hover {
    background: rgba(100, 116, 139, 0.4) !important;
    color: var(--text-white) !important;
}

/* ============================================
   FAL TÜRLERİ PAGE - RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    body.public-mystical .filters-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    body.public-mystical .fal-turu-card {
        border-radius: 16px !important;
    }
}

/* ============================================
   TELLER DETAIL PAGE (falci-detay) STYLES
   ============================================ */

/* Profile Header Card */
body.public-mystical .profile-header {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.1) 0%,
        rgba(15, 90, 90, 0.85) 40%,
        rgba(10, 64, 64, 0.95) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(10px);
}

body.public-mystical .profile-header h2,
body.public-mystical .profile-header h3,
body.public-mystical .profile-header h4,
body.public-mystical .profile-header h5,
body.public-mystical .profile-header h6 {
    color: var(--text-white) !important;
}

body.public-mystical .profile-header p {
    color: var(--text-light) !important;
}

body.public-mystical .profile-header .text-muted {
    color: var(--text-muted) !important;
}

body.public-mystical .profile-header .text-success {
    color: #4ade80 !important;
}

body.public-mystical .profile-header .text-secondary {
    color: var(--text-muted) !important;
}

body.public-mystical .profile-image {
    border-color: rgba(45, 212, 191, 0.5) !important;
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.3) !important;
}

/* Stat Boxes */
body.public-mystical .stat-box {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9) 0%, rgba(13, 148, 136, 0.9) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.4) !important;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3) !important;
}

body.public-mystical .stat-box h3 {
    color: #ffffff !important;
}

body.public-mystical .stat-box p {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Section Titles */
body.public-mystical .container > h3 {
    color: var(--text-white) !important;
}

/* Fal Turu Cards in Teller Detail */
body.public-mystical .fal-turu-content {
    background: transparent !important;
    padding: 1.25rem !important;
}

body.public-mystical .fal-turu-content h4,
body.public-mystical .fal-turu-content .fal-turu-name {
    color: var(--text-white) !important;
}

body.public-mystical .fal-turu-content p,
body.public-mystical .fal-turu-content .fal-turu-desc {
    color: var(--text-muted) !important;
}

/* Review Cards */
body.public-mystical .review-card {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.08) 0%,
        rgba(15, 90, 90, 0.8) 40%,
        rgba(10, 64, 64, 0.9) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    border-radius: 12px !important;
    padding: 1.25rem !important;
    margin-bottom: 1rem !important;
    backdrop-filter: blur(10px);
}

body.public-mystical .review-card h6 {
    color: var(--text-white) !important;
}

body.public-mystical .review-card p {
    color: var(--text-light) !important;
}

body.public-mystical .review-card .text-muted {
    color: var(--text-muted) !important;
}

body.public-mystical .review-card .rating-stars {
    color: #fbbf24 !important;
}

/* Fortune Type Session Buttons */
body.public-mystical .fortune-type-session-btn.btn-success {
    background: rgba(20, 184, 166, 0.9) !important;
    border: 1px solid rgba(45, 212, 191, 0.5) !important;
    color: #ffffff !important;
}

body.public-mystical .fortune-type-session-btn.btn-success:hover {
    background: rgba(45, 212, 191, 0.95) !important;
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.4) !important;
}

/* Main Session Button */
body.public-mystical #mainSessionBtn.btn-success {
    background: rgba(20, 184, 166, 0.9) !important;
    border: 1px solid rgba(45, 212, 191, 0.5) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3) !important;
}

body.public-mystical #mainSessionBtn.btn-success:hover {
    background: rgba(45, 212, 191, 0.95) !important;
    box-shadow: 0 0 25px rgba(20, 184, 166, 0.5) !important;
}

body.public-mystical #mainSessionBtn.btn-secondary {
    background: rgba(100, 116, 139, 0.5) !important;
    border: 1px solid rgba(100, 116, 139, 0.4) !important;
    color: var(--text-muted) !important;
}

/* ============================================
   FAL FİRMALARI PAGE STYLES
   ============================================ */

/* Filters Card - Dashboard Style */
body.public-mystical .filters-card {
    background: linear-gradient(180deg, #0a3d3d 0%, #062929 100%) !important;
    border: none !important;
    border-radius: 16px !important;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(45, 212, 191, 0.08) !important;
    padding: 24px 20px !important;
    position: sticky !important;
    top: 1rem !important;
}

body.public-mystical .filters-title {
    color: #2dd4bf !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    margin: 0 0 24px 0 !important;
    padding: 0 0 16px 0 !important;
    border-bottom: 1px solid rgba(45, 212, 191, 0.15) !important;
    display: flex !important;
    align-items: center !important;
    background: none !important;
    text-shadow: 0 0 20px rgba(45, 212, 191, 0.4) !important;
}

body.public-mystical .filters-title i {
    color: #2dd4bf !important;
    margin-right: 10px !important;
    filter: drop-shadow(0 0 6px rgba(45, 212, 191, 0.5)) !important;
}

body.public-mystical .filter-group {
    margin-bottom: 24px !important;
    padding: 0 !important;
    border: none !important;
    background: transparent !important;
}

body.public-mystical .filter-group:last-child {
    margin-bottom: 0 !important;
}

body.public-mystical .filter-label {
    color: #5eead4 !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    margin-bottom: 14px !important;
    padding: 0 0 0 12px !important;
    border-left: 3px solid rgba(45, 212, 191, 0.5) !important;
    display: flex !important;
    align-items: center !important;
}

body.public-mystical .filter-label:hover {
    border-left-color: #2dd4bf !important;
    color: #2dd4bf !important;
}

/* Filter Inputs */
body.public-mystical .filters-card .form-control,
body.public-mystical .filters-card .form-select {
    background: rgba(20, 184, 166, 0.08) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    color: var(--text-white) !important;
    border-radius: 10px !important;
    padding: 0.75rem 1rem !important;
}

body.public-mystical .filters-card .form-control:focus,
body.public-mystical .filters-card .form-select:focus {
    background: rgba(20, 184, 166, 0.12) !important;
    border-color: #14b8a6 !important;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15) !important;
}

body.public-mystical .filters-card .form-control::placeholder {
    color: var(--text-muted) !important;
}

body.public-mystical .filters-card .form-select option {
    background: #062929 !important;
    color: var(--text-white) !important;
}

/* Filter Checkboxes */
body.public-mystical .filters-card .form-check {
    padding: 10px 12px !important;
    margin: 0 0 4px 0 !important;
    background: transparent !important;
    border-radius: 8px !important;
    transition: all 0.2s ease !important;
}

body.public-mystical .filters-card .form-check:hover {
    background: rgba(45, 212, 191, 0.06) !important;
}

body.public-mystical .filters-card .form-check-input {
    width: 18px !important;
    height: 18px !important;
    background-color: rgba(20, 184, 166, 0.05) !important;
    border: 2px solid rgba(20, 184, 166, 0.5) !important;
    border-radius: 4px !important;
}

body.public-mystical .filters-card .form-check-input:checked {
    background-color: #14b8a6 !important;
    border-color: #14b8a6 !important;
    box-shadow: 0 0 12px rgba(20, 184, 166, 0.5) !important;
}

body.public-mystical .filters-card .form-check-label {
    color: var(--text-light) !important;
    font-size: 0.9rem !important;
}

/* Filter Reset Button */
body.public-mystical .filters-card .btn-outline-secondary {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-light) !important;
}

body.public-mystical .filters-card .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: var(--text-white) !important;
}

/* ============================================
   COMPANY CARDS - HOMEPAGE STYLE
   ============================================ */

/* Company Card Modern */
body.public-mystical .company-card-modern {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.1) 0%,
        rgba(15, 90, 90, 0.85) 40%,
        rgba(10, 64, 64, 0.95) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.18) !important;
    border-radius: 20px !important;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow: hidden !important;
    backdrop-filter: blur(10px) !important;
}

body.public-mystical .company-card-modern:hover {
    border-color: rgba(45, 212, 191, 0.35) !important;
    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(20, 184, 166, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-5px) !important;
}

/* Company Card Header - Compact */
body.public-mystical .company-card-header {
    background: transparent !important;
    height: auto !important;
    padding: 1.5rem 1.5rem 0 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    justify-content: flex-start !important;
    border-bottom: none !important;
}

body.public-mystical .company-card-header::before,
body.public-mystical .company-card-header::after {
    display: none !important;
}

/* Logo - Modern Rounded */
body.public-mystical .company-logo {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    padding: 8px !important;
    border-radius: 16px !important;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafa 100%) !important;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.12),
        0 1px 3px rgba(0, 0, 0, 0.08) !important;
    object-fit: contain !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

body.public-mystical .company-logo-placeholder {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    border-radius: 16px !important;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafa 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.12),
        0 1px 3px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

body.public-mystical .company-logo-placeholder i {
    font-size: 1.75rem !important;
    color: #14b8a6 !important;
}

/* Verified Badge */
body.public-mystical .company-verified {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    background: rgba(16, 185, 129, 0.15) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
    color: #10b981 !important;
    padding: 4px 10px !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin-left: auto !important;
}

body.public-mystical .company-verified i {
    color: #10b981 !important;
    font-size: 0.7rem !important;
}

/* Company Card Body */
body.public-mystical .company-card-body {
    background: transparent !important;
    padding: 1.25rem 1.5rem 1.5rem !important;
}

body.public-mystical .company-card-modern .company-name {
    color: #ffffff !important;
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.75rem !important;
}

body.public-mystical .company-description {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
}

/* Company Stats - Square Boxes */
body.public-mystical .company-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
    margin-bottom: 0 !important;
}

body.public-mystical .company-stats .stat {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.3rem !important;
    padding: 0.75rem 0.5rem !important;
    background: rgba(20, 184, 166, 0.1) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    border-radius: 10px !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
}

body.public-mystical .company-stats .stat:hover {
    background: rgba(20, 184, 166, 0.25) !important;
    border-color: rgba(45, 212, 191, 0.5) !important;
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.2) !important;
}

body.public-mystical .company-stats .stat i {
    display: block !important;
    font-size: 1.5rem !important;
    color: #14b8a6 !important;
    margin-bottom: 0.25rem !important;
}

body.public-mystical .company-stats .stat-value {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
}

body.public-mystical .company-stats .stat-label {
    font-size: 0.8rem !important;
    color: var(--text-muted) !important;
    font-weight: 500 !important;
}

/* Company Card Footer */
body.public-mystical .company-card-footer {
    background: transparent !important;
    border-top: none !important;
    padding: 0 1.5rem 1.5rem !important;
}

body.public-mystical .company-card-footer .btn-primary {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.95) 0%, rgba(13, 148, 136, 0.95) 100%) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    padding: 0.875rem 1.5rem !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3) !important;
    transition: all 0.3s ease !important;
}

body.public-mystical .company-card-footer .btn-primary:hover {
    background: linear-gradient(135deg, rgba(45, 212, 191, 1) 0%, rgba(20, 184, 166, 1) 100%) !important;
    box-shadow: 0 6px 20px rgba(45, 212, 191, 0.4) !important;
    transform: translateY(-2px) !important;
}

body.public-mystical .company-card-footer .btn-outline-primary {
    display: none !important;
}

/* ============================================
   FİRMA DETAY PAGE STYLES
   ============================================ */

/* Firma Hero Section */
body.public-mystical .firma-hero {
    background: transparent !important;
}

body.public-mystical .firma-title {
    color: var(--text-white) !important;
}

body.public-mystical .firma-info .info-item {
    color: var(--text-light) !important;
}

body.public-mystical .firma-info .info-item i {
    color: var(--teal-medium) !important;
}

/* Description Card */
body.public-mystical .description-card {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.1) 0%,
        rgba(15, 90, 90, 0.85) 40%,
        rgba(10, 64, 64, 0.95) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(10px) !important;
}

body.public-mystical .description-card .section-title {
    color: var(--text-white) !important;
}

body.public-mystical .description-card .section-title i {
    color: var(--teal-medium) !important;
}

body.public-mystical .description-content {
    color: var(--text-light) !important;
}

body.public-mystical .description-content p {
    color: var(--text-light) !important;
}

/* Service Cards (Fal Türleri) */
body.public-mystical .service-card {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.1) 0%,
        rgba(15, 90, 90, 0.85) 40%,
        rgba(10, 64, 64, 0.95) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(10px) !important;
}

body.public-mystical .service-card:hover {
    border-color: rgba(45, 212, 191, 0.4) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(20, 184, 166, 0.1) !important;
}

body.public-mystical .service-name {
    color: var(--text-white) !important;
}

body.public-mystical .service-desc {
    color: var(--text-muted) !important;
}

body.public-mystical .service-image {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
    border: 2px solid rgba(45, 212, 191, 0.3) !important;
}

body.public-mystical .service-icon-placeholder {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9) 0%, rgba(13, 148, 136, 0.9) 100%) !important;
}

body.public-mystical .service-info .badge.bg-primary {
    background: rgba(20, 184, 166, 0.9) !important;
}

body.public-mystical .service-info .badge.bg-secondary {
    background: rgba(100, 116, 139, 0.6) !important;
}

/* Section Headers */
body.public-mystical .firma-services .section-title,
body.public-mystical .firma-falcilar .section-title,
body.public-mystical .firma-reviews .section-title {
    color: var(--text-white) !important;
}

body.public-mystical .firma-services .section-title i,
body.public-mystical .firma-falcilar .section-title i,
body.public-mystical .firma-reviews .section-title i {
    color: var(--teal-medium) !important;
}

body.public-mystical .firma-services .section-subtitle,
body.public-mystical .firma-falcilar .section-subtitle,
body.public-mystical .firma-reviews .section-subtitle {
    color: var(--text-muted) !important;
}

/* Falcı Cards in Firma Detail */
body.public-mystical .firma-falcilar .falci-card-modern {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.1) 0%,
        rgba(15, 90, 90, 0.85) 40%,
        rgba(10, 64, 64, 0.95) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.18) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(10px) !important;
}

body.public-mystical .firma-falcilar .falci-card-modern:hover {
    border-color: rgba(45, 212, 191, 0.35) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25), 0 0 30px rgba(20, 184, 166, 0.12) !important;
}

body.public-mystical .firma-falcilar .falci-card-header {
    background: rgba(20, 184, 166, 0.08) !important;
    border-bottom: 1px solid rgba(45, 212, 191, 0.15) !important;
}

body.public-mystical .firma-falcilar .falci-card-modern .falci-name {
    color: var(--text-white) !important;
}

body.public-mystical .firma-falcilar .falci-company {
    color: var(--text-muted) !important;
}

body.public-mystical .firma-falcilar .falci-avatar img {
    border-color: rgba(45, 212, 191, 0.4) !important;
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.2) !important;
}

body.public-mystical .firma-falcilar .falci-card-body {
    background: transparent !important;
}

body.public-mystical .firma-falcilar .stat-item {
    background: rgba(20, 184, 166, 0.1) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
}

body.public-mystical .firma-falcilar .stat-item:hover {
    background: rgba(20, 184, 166, 0.25) !important;
}

body.public-mystical .firma-falcilar .stat-item i {
    color: var(--teal-medium) !important;
}

body.public-mystical .firma-falcilar .stat-item span {
    color: var(--text-light) !important;
}

body.public-mystical .firma-falcilar .services-title {
    color: var(--text-muted) !important;
}

body.public-mystical .firma-falcilar .service-badge {
    background: rgba(20, 184, 166, 0.2) !important;
    color: var(--teal-medium) !important;
    border: 1px solid rgba(45, 212, 191, 0.3) !important;
}

body.public-mystical .firma-falcilar .falci-card-footer {
    background: rgba(10, 64, 64, 0.5) !important;
    border-top: 1px solid rgba(45, 212, 191, 0.15) !important;
}

/* Review Cards in Firma Detail */
body.public-mystical .firma-reviews .review-card,
body.public-mystical .review-card {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.08) 0%,
        rgba(15, 90, 90, 0.8) 40%,
        rgba(10, 64, 64, 0.9) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(10px) !important;
}

/* Firma Hero Buttons */
body.public-mystical .firma-hero .btn-primary {
    background: rgba(20, 184, 166, 0.9) !important;
    border: 1px solid rgba(45, 212, 191, 0.5) !important;
    color: #ffffff !important;
}

body.public-mystical .firma-hero .btn-primary:hover {
    background: rgba(45, 212, 191, 0.95) !important;
}

body.public-mystical .firma-hero .btn-success {
    background: rgba(20, 184, 166, 0.9) !important;
    border: 1px solid rgba(45, 212, 191, 0.5) !important;
    color: #ffffff !important;
}

body.public-mystical .firma-hero .btn-success:hover {
    background: rgba(45, 212, 191, 0.95) !important;
}

body.public-mystical .firma-hero .btn-outline-primary {
    background: transparent !important;
    border: 2px solid rgba(45, 212, 191, 0.4) !important;
    color: var(--teal-medium) !important;
}

body.public-mystical .firma-hero .btn-outline-primary:hover {
    background: rgba(20, 184, 166, 0.2) !important;
}

body.public-mystical .firma-hero .btn-outline-dark {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: var(--text-light) !important;
}

body.public-mystical .firma-hero .btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--text-white) !important;
}

/* Social Links */
body.public-mystical .social-links .social-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--text-light) !important;
}

body.public-mystical .social-links .social-btn:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    color: var(--text-white) !important;
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* Blog Search */
body.public-mystical .blog-search .input-group {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

body.public-mystical .blog-search .form-control {
    background: rgba(20, 184, 166, 0.08) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    color: var(--text-white) !important;
}

body.public-mystical .blog-search .form-control::placeholder {
    color: var(--text-muted) !important;
}

body.public-mystical .blog-search .btn {
    background: rgba(20, 184, 166, 0.9) !important;
    border: none !important;
    color: #ffffff !important;
}

body.public-mystical .results-info .text-muted {
    color: var(--text-muted) !important;
}

/* Blog Card Minimal */
body.public-mystical .blog-card-minimal {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.1) 0%,
        rgba(15, 90, 90, 0.85) 40%,
        rgba(10, 64, 64, 0.95) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.18) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(10px) !important;
}

body.public-mystical .blog-card-minimal:hover {
    border-color: rgba(45, 212, 191, 0.35) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25), 0 0 30px rgba(20, 184, 166, 0.12) !important;
}

body.public-mystical .blog-card-minimal::after {
    background: linear-gradient(90deg, #14b8a6, #2dd4bf) !important;
}

body.public-mystical .blog-minimal-image {
    background: rgba(20, 184, 166, 0.1) !important;
}

body.public-mystical .blog-minimal-placeholder {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.8) 0%, rgba(13, 148, 136, 0.8) 100%) !important;
}

body.public-mystical .blog-minimal-category {
    background: rgba(20, 184, 166, 0.9) !important;
    color: #ffffff !important;
    border: none !important;
}

body.public-mystical .blog-card-minimal:hover .blog-minimal-category {
    background: #14b8a6 !important;
}

body.public-mystical .blog-minimal-content {
    background: transparent !important;
}

body.public-mystical .blog-minimal-date {
    color: var(--text-muted) !important;
}

body.public-mystical .blog-minimal-title {
    color: var(--text-white) !important;
}

body.public-mystical .blog-card-minimal:hover .blog-minimal-title {
    color: #2dd4bf !important;
}

body.public-mystical .blog-minimal-excerpt {
    color: var(--text-muted) !important;
}

body.public-mystical .blog-minimal-arrow {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9) 0%, rgba(13, 148, 136, 0.9) 100%) !important;
}

/* Blog Sidebar Widgets */
body.public-mystical .widget {
    background: linear-gradient(180deg, #0a3d3d 0%, #062929 100%) !important;
    border: none !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(45, 212, 191, 0.08) !important;
}

body.public-mystical .widget-title {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9) 0%, rgba(13, 148, 136, 0.9) 100%) !important;
    color: #ffffff !important;
}

body.public-mystical .widget-content {
    background: transparent !important;
}

body.public-mystical .category-list a {
    color: var(--text-light) !important;
}

body.public-mystical .category-list a:hover,
body.public-mystical .category-list a.active {
    background: rgba(20, 184, 166, 0.9) !important;
    color: #ffffff !important;
}

body.public-mystical .category-list .count {
    color: var(--text-muted) !important;
}

body.public-mystical .category-list a:hover .count,
body.public-mystical .category-list a.active .count {
    color: rgba(255, 255, 255, 0.8) !important;
}

body.public-mystical .popular-post {
    border-bottom-color: rgba(45, 212, 191, 0.15) !important;
}

body.public-mystical .popular-post-title a {
    color: var(--text-light) !important;
}

body.public-mystical .popular-post-title a:hover {
    color: #2dd4bf !important;
}

body.public-mystical .popular-post-meta .text-muted {
    color: var(--text-muted) !important;
}

body.public-mystical .widget-cta {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9) 0%, rgba(13, 148, 136, 0.9) 100%) !important;
}

/* ============================================
   BLOG DETAIL PAGE STYLES
   ============================================ */

/* Minimal Page Header */
body.public-mystical .minimal-page-header {
    background: transparent !important;
    border-bottom: 1px solid rgba(45, 212, 191, 0.15) !important;
}

body.public-mystical .minimal-page-header .breadcrumb-item {
    color: var(--text-muted) !important;
}

body.public-mystical .minimal-page-header .breadcrumb-item a {
    color: var(--text-light) !important;
}

body.public-mystical .minimal-page-header .breadcrumb-item a:hover {
    color: #2dd4bf !important;
}

body.public-mystical .minimal-page-header .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted) !important;
}

/* Blog Content Section */
body.public-mystical .blog-content-section {
    background: transparent !important;
}

/* Blog Article */
body.public-mystical .blog-article {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.08) 0%,
        rgba(15, 90, 90, 0.8) 40%,
        rgba(10, 64, 64, 0.9) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(10px) !important;
}

body.public-mystical .article-header {
    border-bottom-color: rgba(45, 212, 191, 0.15) !important;
}

body.public-mystical .article-title {
    color: var(--text-white) !important;
}

body.public-mystical .article-meta {
    color: var(--text-muted) !important;
}

body.public-mystical .article-meta .category-link {
    color: #2dd4bf !important;
}

body.public-mystical .article-summary {
    color: var(--text-light) !important;
    border-left-color: #14b8a6 !important;
}

body.public-mystical .article-content {
    color: var(--text-light) !important;
}

body.public-mystical .article-content h1,
body.public-mystical .article-content h2,
body.public-mystical .article-content h3,
body.public-mystical .article-content h4,
body.public-mystical .article-content h5,
body.public-mystical .article-content h6 {
    color: var(--text-white) !important;
}

body.public-mystical .article-content p {
    color: var(--text-light) !important;
}

body.public-mystical .article-content a {
    color: #2dd4bf !important;
}

body.public-mystical .article-content blockquote {
    background: rgba(20, 184, 166, 0.1) !important;
    border-left-color: #14b8a6 !important;
    color: var(--text-light) !important;
}

body.public-mystical .article-content code {
    background: rgba(20, 184, 166, 0.2) !important;
    color: #2dd4bf !important;
}

body.public-mystical .article-content pre {
    background: #041818 !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
}

/* Article Tags */
body.public-mystical .article-tags {
    border-top-color: rgba(45, 212, 191, 0.15) !important;
}

body.public-mystical .tags-title {
    color: var(--text-white) !important;
}

body.public-mystical .tag-item {
    background: rgba(20, 184, 166, 0.15) !important;
    color: var(--text-light) !important;
    border: 1px solid rgba(45, 212, 191, 0.3) !important;
}

body.public-mystical .tag-item:hover {
    background: rgba(20, 184, 166, 0.9) !important;
    color: #ffffff !important;
}

/* Share Section */
body.public-mystical .share-section {
    border-color: rgba(45, 212, 191, 0.15) !important;
}

body.public-mystical .share-title {
    color: var(--text-white) !important;
}

/* Author Box */
body.public-mystical .author-box {
    background: rgba(20, 184, 166, 0.1) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
}

body.public-mystical .author-name {
    color: var(--text-white) !important;
}

body.public-mystical .author-bio {
    color: var(--text-muted) !important;
}

body.public-mystical .author-avatar i {
    color: #14b8a6 !important;
}

/* Sidebar Widget */
body.public-mystical .sidebar-widget {
    background: linear-gradient(180deg, #0a3d3d 0%, #062929 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.15) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
}

body.public-mystical .sidebar-widget .widget-title {
    background: transparent !important;
    color: #2dd4bf !important;
    border-bottom: 1px solid rgba(45, 212, 191, 0.15) !important;
}

/* Related Posts Card */
body.public-mystical .related-post-card {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.1) 0%,
        rgba(15, 90, 90, 0.85) 40%,
        rgba(10, 64, 64, 0.95) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.18) !important;
}

body.public-mystical .related-post-card:hover {
    border-color: rgba(45, 212, 191, 0.35) !important;
}

body.public-mystical .related-post-card .post-title {
    color: var(--text-white) !important;
}

body.public-mystical .related-post-card .post-date {
    color: var(--text-muted) !important;
}

/* Blog Sidebar - Categories Widget */
body.public-mystical .category-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}

body.public-mystical .category-list li {
    margin-bottom: 0 !important;
    border: none !important;
    border-bottom: 1px solid rgba(45, 212, 191, 0.12) !important;
}

body.public-mystical .category-list li:last-child {
    border-bottom: none !important;
}

body.public-mystical .category-list li a {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 0.75rem 1rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    border-radius: 0 !important;
    border: none !important;
    transition: all 0.3s ease;
}

body.public-mystical .category-list li a:hover {
    background: rgba(45, 212, 191, 0.1) !important;
    color: #2dd4bf !important;
}

body.public-mystical .category-list li a.active {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(13, 148, 136, 0.2)) !important;
    color: #2dd4bf !important;
    border-left: 3px solid #2dd4bf !important;
}

body.public-mystical .category-list .category-name {
    color: inherit !important;
}

body.public-mystical .category-list .category-count {
    background: rgba(45, 212, 191, 0.2) !important;
    color: #2dd4bf !important;
    min-width: 28px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem !important;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Blog Sidebar - Popular Posts Widget */
body.public-mystical .popular-posts {
    padding: 0 !important;
}

body.public-mystical .popular-posts .popular-post {
    display: flex !important;
    gap: 0.75rem !important;
    padding: 0.75rem 1rem !important;
    border-bottom: 1px solid rgba(45, 212, 191, 0.1) !important;
    align-items: center !important;
}

body.public-mystical .popular-posts .popular-post:last-child {
    border-bottom: none !important;
}

body.public-mystical .popular-posts .post-number {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    min-height: 26px !important;
    max-width: 26px !important;
    max-height: 26px !important;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.4), rgba(13, 148, 136, 0.4)) !important;
    color: #2dd4bf !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    flex-shrink: 0 !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

body.public-mystical .popular-posts .popular-post:nth-child(1) .post-number {
    background: linear-gradient(135deg, #14b8a6, #0d9488) !important;
    color: #ffffff !important;
}

body.public-mystical .popular-posts .post-content {
    flex: 1 !important;
    min-width: 0 !important;
}

body.public-mystical .popular-posts .post-title {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

body.public-mystical .popular-posts .post-title a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

body.public-mystical .popular-posts .post-title a:hover {
    color: #2dd4bf !important;
}

body.public-mystical .popular-posts .post-meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5) !important;
}

body.public-mystical .popular-posts .post-meta i {
    color: rgba(45, 212, 191, 0.6) !important;
}

/* Blog Sidebar - Recent Posts Widget */
body.public-mystical .recent-posts .recent-post {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(45, 212, 191, 0.1);
}

body.public-mystical .recent-posts .recent-post:last-child {
    border-bottom: none;
}

body.public-mystical .recent-posts .post-thumbnail {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

body.public-mystical .recent-posts .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.public-mystical .recent-posts .post-content {
    flex: 1;
}

body.public-mystical .recent-posts .post-title {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

body.public-mystical .recent-posts .post-title a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

body.public-mystical .recent-posts .post-title a:hover {
    color: #2dd4bf !important;
}

body.public-mystical .recent-posts .post-meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5) !important;
}

body.public-mystical .recent-posts .post-meta i {
    color: rgba(45, 212, 191, 0.6) !important;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Section */
body.public-mystical .contact-section {
    background: transparent !important;
}

/* Contact Info */
body.public-mystical .contact-info h3,
body.public-mystical .working-hours h3,
body.public-mystical .social-media h3 {
    color: var(--text-white) !important;
}

body.public-mystical .info-box .info-icon {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9) 0%, rgba(13, 148, 136, 0.9) 100%) !important;
}

body.public-mystical .info-box .info-content h5 {
    color: var(--text-white) !important;
}

body.public-mystical .info-box .info-content p,
body.public-mystical .info-box .info-content a {
    color: var(--text-muted) !important;
}

body.public-mystical .info-box .info-content a:hover {
    color: #2dd4bf !important;
}

/* Working Hours */
body.public-mystical .working-hours ul li {
    border-bottom-color: rgba(45, 212, 191, 0.15) !important;
    color: var(--text-light) !important;
}

body.public-mystical .working-hours ul li strong {
    color: #2dd4bf !important;
}

/* Social Links */
body.public-mystical .contact-info .social-link {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
}

/* Contact Form Wrapper */
body.public-mystical .contact-form-wrapper {
    background: linear-gradient(165deg,
        rgba(20, 184, 166, 0.08) 0%,
        rgba(15, 90, 90, 0.8) 40%,
        rgba(10, 64, 64, 0.9) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(10px) !important;
}

body.public-mystical .contact-form-wrapper h3 {
    color: var(--text-white) !important;
}

/* Form Controls */
body.public-mystical .contact-form .form-label {
    color: var(--text-light) !important;
}

body.public-mystical .contact-form .form-control,
body.public-mystical .contact-form .form-select {
    background: rgba(20, 184, 166, 0.08) !important;
    border: 1px solid rgba(45, 212, 191, 0.25) !important;
    color: var(--text-white) !important;
}

body.public-mystical .contact-form .form-control::placeholder {
    color: var(--text-muted) !important;
}

body.public-mystical .contact-form .form-control:focus,
body.public-mystical .contact-form .form-select:focus {
    background: rgba(20, 184, 166, 0.12) !important;
    border-color: #14b8a6 !important;
    box-shadow: 0 0 0 0.2rem rgba(20, 184, 166, 0.25) !important;
    color: var(--text-white) !important;
}

body.public-mystical .contact-form .form-select option {
    background: #0a3d3d !important;
    color: var(--text-white) !important;
}

body.public-mystical .contact-form .form-text {
    color: var(--text-muted) !important;
}

/* Submit Button */
body.public-mystical .contact-form .btn-primary {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.9) 0%, rgba(13, 148, 136, 0.9) 100%) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.3) !important;
}

body.public-mystical .contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%) !important;
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4) !important;
}

/* Map Section */
body.public-mystical .map-section {
    border-top: 1px solid rgba(45, 212, 191, 0.15) !important;
}

body.public-mystical .map-wrapper {
    filter: grayscale(30%) brightness(0.8) !important;
}

/* ============================================
   CREDIT MODAL MYSTICAL THEME
   ============================================ */
body.public-mystical .credit-modal-content {
    background: linear-gradient(180deg, #0a3d3d 0%, #062929 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5) !important;
}

body.public-mystical .credit-modal-header {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.3), rgba(13, 148, 136, 0.3)) !important;
    border-bottom: 1px solid rgba(45, 212, 191, 0.2) !important;
}

body.public-mystical .credit-modal-body {
    background: transparent !important;
}

body.public-mystical .credit-modal-body::-webkit-scrollbar-track {
    background: rgba(45, 212, 191, 0.1) !important;
}

body.public-mystical .credit-modal-body::-webkit-scrollbar-thumb {
    background: rgba(45, 212, 191, 0.3) !important;
}

body.public-mystical .credit-modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(45, 212, 191, 0.5) !important;
}

body.public-mystical .current-balance-modal {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(13, 148, 136, 0.1)) !important;
    border: 1px solid rgba(45, 212, 191, 0.2) !important;
}

body.public-mystical .current-balance-modal .balance-label {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.public-mystical .current-balance-modal .balance-amount-modal {
    color: #2dd4bf !important;
}

body.public-mystical .current-balance-modal .balance-unit {
    color: rgba(255, 255, 255, 0.5) !important;
}

body.public-mystical .credit-package-card {
    background: linear-gradient(165deg, rgba(20, 184, 166, 0.08) 0%, rgba(10, 61, 61, 0.9) 100%) !important;
    border: 1px solid rgba(45, 212, 191, 0.15) !important;
}

body.public-mystical .credit-package-card:hover {
    border-color: rgba(45, 212, 191, 0.4) !important;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.2) !important;
}

body.public-mystical .credit-package-card.featured {
    background: linear-gradient(165deg, rgba(20, 184, 166, 0.15) 0%, rgba(10, 61, 61, 0.95) 100%) !important;
    border-color: rgba(45, 212, 191, 0.3) !important;
}

body.public-mystical .credit-package-card .package-name,
body.public-mystical .credit-package-card .package-name-modal {
    color: rgba(255, 255, 255, 0.7) !important;
}

body.public-mystical .credit-package-card .package-credits,
body.public-mystical .credit-package-card .package-credits-modal {
    color: #ffffff !important;
    font-weight: 700 !important;
}

body.public-mystical .credit-package-card .package-bonus,
body.public-mystical .credit-package-card .package-bonus-modal {
    color: #2dd4bf !important;
}

body.public-mystical .credit-package-card .package-price-original {
    color: rgba(255, 255, 255, 0.4) !important;
}

body.public-mystical .credit-package-card .package-price-current,
body.public-mystical .credit-package-card .package-price-modal {
    color: #ffffff !important;
    font-weight: 600 !important;
}

body.public-mystical .credit-package-card .package-price-modal .vat-label {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.75rem !important;
}

body.public-mystical .credit-package-card .package-icon-modal i {
    color: #2dd4bf !important;
    font-size: 1.5rem !important;
}

body.public-mystical .credit-package-card .btn-buy-package {
    background: linear-gradient(135deg, #14b8a6, #0d9488) !important;
    color: #ffffff !important;
    border: none !important;
}

body.public-mystical .credit-package-card .btn-buy-package:hover {
    background: linear-gradient(135deg, #2dd4bf, #14b8a6) !important;
}

/* Current Balance Section */
body.public-mystical .current-balance-modal h4 {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.9rem !important;
    margin-bottom: 0.5rem !important;
}

body.public-mystical .current-balance-modal p,
body.public-mystical .current-balance-modal .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Package Price Styles */
body.public-mystical .credit-package-card .package-price,
body.public-mystical .credit-package-card .price-current,
body.public-mystical .credit-package-card .price {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.public-mystical .credit-package-card .price-original,
body.public-mystical .credit-package-card .old-price,
body.public-mystical .credit-package-card del {
    color: rgba(255, 255, 255, 0.4) !important;
}

body.public-mystical .credit-package-card .price-suffix,
body.public-mystical .credit-package-card small {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Payment Info Section */
body.public-mystical .payment-info-modal {
    background: rgba(20, 184, 166, 0.1) !important;
    border: 1px solid rgba(45, 212, 191, 0.15) !important;
    border-radius: 12px !important;
    padding: 1rem !important;
    text-align: center !important;
}

body.public-mystical .payment-info-modal i {
    color: #2dd4bf !important;
}

body.public-mystical .payment-info-modal h6 {
    color: rgba(255, 255, 255, 0.9) !important;
}

body.public-mystical .payment-info-modal p,
body.public-mystical .payment-info-modal .text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}
