/* UzmanLink Modern UI/UX Styles - UPDATED v1.0.1 */

/* CSS Variables for consistent theming */
:root {
    --primary: #6C63FF;
    --accent: #00C9A7;
    --neutral-bg: #F7F8FA;
    --neutral-light: #E5E7EB;
    --white: #FFFFFF;
    --shadow-light: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-medium: 0 8px 24px rgba(0,0,0,0.08);
    --border-radius: 16px;
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #23272A;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

html, body {
    margin: 0 !important;
    padding: 0 !important;
    background: #f8f9fb;
}

.hero-section, .hero-section > .container, .hero-section > .container > .row, .hero-section > .container > .row > * {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* HERO SECTION MODERNIZATION - CLEAN, NO !important */
.hero-section {
    background: var(--white);
    color: #23272A;
    min-height: 100vh;
    display: flex;
    align-items: center;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.hero-section .hero-title,
.hero-section h1 {
    color: #23272A;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.85rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 1rem;
}

.hero-section .hero-subtitle,
.hero-section h2,
.hero-section h3 {
    color: #4B5563;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* MODERNIZED HEADING AND PARAGRAPH STYLES */
h1, .display-1, .hero-title {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.3px;
    margin-bottom: 1rem;
    color: #23272A;
}

h2, .display-2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.2px;
    margin-bottom: 0.8rem;
    color: #23272A;
}

h3, .display-3 {
    font-size: 34px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.6rem;
    color: #23272A;
}

h4, .display-4 {
    font-size: 32px;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 0.5rem;
    color: #23272A;
}

h5 {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0.4rem;
    color: #23272A;
}

h6 {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.45;
    margin-bottom: 0.3rem;
    color: #23272A;
}

p, .lead, .section-subtitle, .features-subtitle, .pricing-subtitle, .text-muted {
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 0.8rem;
}

.btn, .btn-modern, .btn-primary, .navbar .nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.navbar .navbar-brand {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.navbar .nav-link {
    color: #23272A !important;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 100%;
}

.navbar .nav-link.active, .navbar .nav-link:focus, .navbar .nav-link:hover {
    color: var(--primary) !important;
    background: none !important;
}

.navbar .btn-modern {
    background: var(--primary) !important;
    color: #fff !important;
    border-radius: var(--border-radius);
    border: none !important;
    font-weight: 600;
    transition: var(--transition);
}

.navbar .btn-modern:hover {
    background: var(--accent) !important;
    color: #fff !important;
}

.navbar-toggler {
    border: 1px solid #e2e8f0 !important;
    color: #2d3748 !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem #c3cfe2 !important;
}

/* Remove any unwanted margin/padding above/below navbar */
body, html {
    margin: 0 !important;
    padding: 0 !important;
}

.navbar {
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
} 

/* Remove gap between navbar and hero section */
.navbar {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    box-shadow: var(--shadow-light) !important;
}

main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.container, .row {
    margin-top: 0 !important;
    padding-top: 0 !important;
} 

/* Remove gradients and glassmorphism from main UI */
.hero-section::before, .glass-card::before, .pricing-card::before {
    display: none !important;
} 

/* Modern Buttons */
.btn-modern {
    background: var(--primary) !important;
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 30px;
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-outline-modern {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
    border-radius: var(--border-radius-sm);
    padding: 12px 30px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-modern:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Pricing Cards with Glassmorphism */
.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
    font-size: 0.95rem;
    font-weight: 400;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.pricing-card.popular::before {
    background: var(--accent-gradient);
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.pricing-card.popular {
    transform: scale(1.05);
    z-index: 2;
    border: 2px solid #f093fb;
}

.pricing-card.popular:hover {
    transform: translateY(-12px) scale(1.07);
}

.price-value {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1;
}

.price-currency {
    font-size: 1.4rem;
    font-weight: 500;
    color: #4a5568;
}

.price-period {
    font-size: 0.95rem;
    color: #718096;
    font-weight: 400;
}

/* Dashboard Stats with Glassmorphism */
.dashboard-stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.dashboard-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.dashboard-stat-card.primary::before {
    background: var(--primary-gradient);
}

.dashboard-stat-card.success::before {
    background: var(--secondary-gradient);
}

.dashboard-stat-card.info::before {
    background: var(--primary-gradient);
}

.dashboard-stat-card.warning::before {
    background: var(--accent-gradient);
}

.dashboard-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

/* Modern Forms */
.form-control-modern {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--border-radius-sm);
    padding: 15px 20px;
    font-size: 0.95rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-control-modern:focus {
    background: rgba(255, 255, 255, 0.95);
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

/* Modern Tables */
.table-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.table-modern th {
    background: rgba(102, 126, 234, 0.1);
    border: none;
    font-weight: 600;
    color: #4a5568;
    padding: 20px 15px;
    font-size: 0.95rem;
}

.table-modern td {
    border: none;
    padding: 20px 15px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    font-size: 0.95rem;
}

.table-modern tbody tr:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: scale(1.01);
    transition: var(--transition);
}

/* Modern Alerts */
.alert-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-light);
    border-left: 4px solid;
    font-size: 0.95rem;
    font-weight: 400;
}

.alert-modern.alert-success {
    border-left-color: #38ef7d;
}

.alert-modern.alert-danger {
    border-left-color: #f5576c;
}

.alert-modern.alert-warning {
    border-left-color: #f093fb;
}

.alert-modern.alert-info {
    border-left-color: #667eea;
}

/* Loading Animation */
.loading-modern {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    border-top-color: #667eea;
    animation: spin-modern 1s ease-in-out infinite;
}

@keyframes spin-modern {
    to { transform: rotate(360deg); }
}

/* Avatar Styles */
.avatar-modern {
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-light);
}

.avatar-sm {
    width: 40px;
    height: 40px;
}

.avatar-md {
    width: 60px;
    height: 60px;
}

.avatar-lg {
    width: 100px;
    height: 100px;
}

/* RESPONSIVE DESIGN - UPDATED FOR MODERN MINIMAL LOOK */
@media (max-width: 992px) {
    h1, .display-1, .hero-title { 
        font-size: 32px; 
        font-weight: 600;
    }
    h2, .display-2 { 
        font-size: 30px; 
        font-weight: 600;
    }
    h3, .display-3 { 
        font-size: 28px; 
        font-weight: 500;
    }
    h4, .display-4 { 
        font-size: 26px; 
        font-weight: 500;
    }
    h5 { 
        font-size: 24px; 
        font-weight: 500;
    }
    h6 { 
        font-size: 22px; 
        font-weight: 500;
    }
    p, .lead { 
        font-size: 16px; 
        font-weight: 400;
    }
}

@media (max-width: 576px) {
    h1, .display-1, .hero-title { 
        font-size: 28px; 
        font-weight: 600;
    }
    h2, .display-2 { 
        font-size: 26px; 
        font-weight: 600;
    }
    h3, .display-3 { 
        font-size: 24px; 
        font-weight: 500;
    }
    h4, .display-4 { 
        font-size: 22px; 
        font-weight: 500;
    }
    h5 { 
        font-size: 20px; 
        font-weight: 500;
    }
    h6 { 
        font-size: 18px; 
        font-weight: 500;
    }
    p, .lead { 
        font-size: 14px; 
        font-weight: 400;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(226, 232, 240, 0.5);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

.slide-up {
    animation: slideUp 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-animate {
  opacity: 0;
  animation: fadeSlideUp 0.8s cubic-bezier(.4,2,.6,1) forwards;
}
.hero-animate.delay-1 { animation-delay: 0.1s; }
.hero-animate.delay-2 { animation-delay: 0.2s; }
.hero-animate.delay-3 { animation-delay: 0.3s; }
.hero-animate.delay-4 { animation-delay: 0.4s; }
.hero-animate.delay-5 { animation-delay: 0.5s; }

/* Hover Effects */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Focus States */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.25);
}

.btn-primary, .btn-primary:focus, .btn-primary:active {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.btn-primary:hover, .btn-primary:active:hover {
    background: linear-gradient(90deg, #764ba2 0%, #667eea 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
} 

footer.bg-dark {
    background: #23272f !important;
    color: #fff !important;
    padding-top: 48px;
    padding-bottom: 32px;
    margin-top: 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

footer.bg-dark h5, footer.bg-dark h6 {
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 500;
}

footer.bg-dark p, footer.bg-dark span, footer.bg-dark li, footer.bg-dark a {
    color: #d1d5db !important;
    font-size: 0.9rem;
    font-weight: 400;
}

footer.bg-dark a.text-muted, footer.bg-dark a {
    color: #b3b8c5 !important;
    text-decoration: none;
    transition: color 0.2s;
}

footer.bg-dark a.text-muted:hover, footer.bg-dark a:hover {
    color: #fff !important;
    text-decoration: underline;
}

footer.bg-dark .hover-lift:hover {
    color: #fff !important;
    transform: translateY(-3px);
}

footer.bg-dark .badge {
    background: var(--accent-gradient) !important;
    color: #fff !important;
}

@media (max-width: 768px) {
    footer.bg-dark {
        padding-top: 32px;
        padding-bottom: 24px;
    }
    footer.bg-dark .row > div {
        margin-bottom: 24px;
    }
} 

/* Modern White Navbar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: 0 1px 0 0 #e5e7eb;
    min-height: 72px;
    padding: 0;
    display: block;
    border: none;
    z-index: 1000;
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
}

@media (max-width: 1240px) {
    .navbar .container {
        max-width: 98vw;
        padding: 0 8px;
    }
}

@media (max-width: 992px) {
    .navbar {
        min-height: 60px;
    }
    .navbar .container {
        min-height: 60px;
        padding: 0 4px;
    }
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    transition: var(--transition);
    margin-right: 2rem;
}

.navbar .navbar-nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.navbar .nav-link {
    color: #23272A !important;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    height: 72px;
    padding: 0 12px;
}

.navbar .btn-modern {
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    font-size: 1rem;
    border-radius: 22px;
    margin-left: 1rem;
}

.navbar-toggler {
    border: 1px solid #e2e8f0 !important;
    color: #2d3748 !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem #c3cfe2 !important;
}

/* Remove any unwanted margin/padding above/below navbar */
body, html {
    margin: 0 !important;
    padding: 0 !important;
}

.navbar {
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
} 

/* Remove gap between navbar and hero section */
.navbar {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    box-shadow: var(--shadow-light) !important;
}

main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.container, .row {
    margin-top: 0 !important;
    padding-top: 0 !important;
} 

/* Remove gradients and glassmorphism from main UI */
.hero-section::before, .glass-card::before, .pricing-card::before {
    display: none !important;
} 

.display-5, .section-title, .features-title, .pricing-title {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: -0.2px;
}

h2.display-5, h2.section-title {
    margin-bottom: 0.6rem;
} 

/* Extra spacing for clarity */
section, .section, .container, .row {
    margin-bottom: 2.5rem;
} 

.navbar .navbar-brand {
    color: #7C3AED;
}

.navbar .navbar-brand:hover {
    color: #5B21B6;
} 

/* Consultants Page Styles */
.input-group-modern {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.form-control-modern {
    border: 1px solid #e5e7eb;
    border-right: none;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 12px 0 0 12px;
    background: #fff;
    transition: all 0.2s;
}

.form-control-modern:focus {
    outline: none;
    border-color: #7C3AED;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-select-modern {
    border: 1px solid #e5e7eb;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 12px;
    background: #fff;
    transition: all 0.2s;
    width: 100%;
}

.form-select-modern:focus {
    outline: none;
    border-color: #7C3AED;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.badge-modern {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: #7C3AED;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.empty-state {
    font-size: 48px;
    color: #d1d5db;
    margin-bottom: 16px;
}

.consultant-avatar {
    position: relative;
}

.consultant-avatar .avatar-modern {
    border: 3px solid #f3f4f6;
    transition: all 0.2s;
}

.card-modern:hover .consultant-avatar .avatar-modern {
    border-color: #7C3AED;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .input-group-modern {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .form-control-modern {
        border-radius: 12px 12px 0 0;
        border-right: 1px solid #e5e7eb;
        border-bottom: none;
    }
    
    .btn-modern {
        border-radius: 0 0 12px 12px;
    }
} 

/* Directory (TidyCal tarzı) Consultant Card Styles */
.consultant-directory-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.07), 0 1.5px 6px rgba(44,62,80,0.04);
    padding: 32px 24px 28px 24px;
    margin-bottom: 24px;
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 440px;
    max-height: 480px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.consultant-directory-card:hover {
    box-shadow: 0 8px 40px rgba(124,58,237,0.10), 0 2px 8px rgba(44,62,80,0.04);
    transform: translateY(-4px) scale(1.02);
}
.consultant-directory-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid #ede9fe;
    margin-bottom: 20px;
}
.avatar-directory {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: #f3f4f6;
}
.consultant-directory-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #23272f;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}
.consultant-directory-role {
    display: inline-block;
    background: #ede9fe;
    color: #7C3AED;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 16px;
    padding: 5px 16px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}
.consultant-directory-bio {
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 20px;
    min-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.consultant-directory-meta {
    gap: 12px !important;
    margin-bottom: 12px;
}
.meta-box {
    background: #f3f4f6;
    border-radius: 12px;
    padding: 6px 12px;
    min-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4b5563;
    white-space: nowrap;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.meta-label {
    font-size: 0.8em;
    color: #a1a1aa;
    font-weight: 400;
    margin-bottom: 2px;
    letter-spacing: 0.1px;
}
.meta-value {
    font-size: 0.9em;
    color: #7C3AED;
    font-weight: 600;
    letter-spacing: 0.1px;
}
.btn-directory {
    display: inline-block;
    background: #7C3AED;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    text-decoration: none;
    transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
    box-shadow: 0 2px 8px rgba(124,58,237,0.08);
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 16px;
    width: 100%;
    text-align: center;
}
.btn-directory:hover {
    background: #5B21B6;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 4px 16px rgba(124,58,237,0.13);
}
@media (max-width: 768px) {
    .consultant-directory-card {
        padding: 32px 12px 28px 12px;
        min-height: 380px;
    }
    .consultant-directory-name {
        font-size: 1.4rem;
    }
    .avatar-directory, .consultant-directory-avatar {
        width: 80px;
        height: 80px;
    }
} 

/* Directory Filter Alanı Optimize */
.directory-filter-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(44,62,80,0.06);
    margin-bottom: 32px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.directory-filter-input, .directory-filter-select {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.97rem;
    background: #f9fafb;
    height: 42px;
    transition: border 0.18s, box-shadow 0.18s;
    margin-right: 8px;
}
.directory-filter-input:focus, .directory-filter-select:focus {
    border-color: #7C3AED;
    box-shadow: 0 0 0 2px rgba(124,58,237,0.10);
    background: #fff;
    outline: none;
}
.btn-directory {
    height: 42px;
    min-width: 48px;
    padding: 0 18px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    margin-right: 0;
}
@media (max-width: 768px) {
    .directory-filter-card {
        flex-direction: column;
        padding: 12px 6px;
    }
    .directory-filter-input, .directory-filter-select {
        width: 100%;
        margin-bottom: 8px;
        margin-right: 0;
    }
    .btn-directory {
        width: 100%;
        margin-bottom: 0;
    }
} 

/* Daha küçük metinler ve kompakt filtre */
.directory-filter-input, .directory-filter-select {
    font-size: 0.91rem;
    height: 36px;
    padding: 6px 10px;
}
.btn-directory {
    font-size: 0.95rem;
    height: 36px;
    padding: 0 14px;
}
.consultant-directory-name {
    font-size: 1.2rem;
}
.consultant-directory-role {
    font-size: 0.8rem;
    padding: 4px 12px;
}
.consultant-directory-bio {
    font-size: 0.78rem;
    min-height: 32px;
}
.meta-box {
    font-size: 0.8rem;
    padding: 4px 8px;
    min-width: 56px;
    max-width: 80px;
}
.meta-label {
    font-size: 0.7em;
}
.meta-value {
    font-size: 0.8em;
} 

/* Eğitimler Grid Düzeni - Kesin Tanım */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    margin-bottom: 2rem;
}

.slot-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
    min-height: 280px;
}

.slot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(124,58,237,0.1);
}

@media (max-width: 1200px) {
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .slots-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .slot-card {
        min-height: 240px;
    }
} 

/* Admin Panel Styles */
.admin-panel {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.admin-panel .navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.admin-panel .navbar-brand {
    color: white !important;
    font-weight: 700;
}

.admin-panel .navbar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.admin-panel .navbar-nav .nav-link:hover,
.admin-panel .navbar-nav .nav-link.active {
    color: white !important;
    background-color: rgba(255,255,255,0.1);
    border-radius: 6px;
}

.admin-panel .navbar-nav .dropdown-toggle {
    color: rgba(255,255,255,0.9) !important;
}

.admin-panel .navbar-nav .dropdown-toggle:hover {
    color: white !important;
}

.admin-content {
    padding-top: 80px;
    min-height: calc(100vh - 80px);
}

.dashboard-stat-card {
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.dashboard-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.dashboard-stat-card.primary::before {
    background: linear-gradient(90deg, #007bff, #0056b3);
}

.dashboard-stat-card.success::before {
    background: linear-gradient(90deg, #28a745, #1e7e34);
}

.dashboard-stat-card.info::before {
    background: linear-gradient(90deg, #17a2b8, #117a8b);
}

.dashboard-stat-card.warning::before {
    background: linear-gradient(90deg, #ffc107, #e0a800);
}

.dashboard-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.admin-panel .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.admin-panel .card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.admin-panel .table {
    border-radius: 8px;
    overflow: hidden;
}

.admin-panel .table th {
    background-color: #f8f9fa;
    border: none;
    font-weight: 600;
    color: #495057;
}

.admin-panel .table td {
    border: none;
    border-bottom: 1px solid #e9ecef;
    vertical-align: middle;
}

.admin-panel .btn-group .btn {
    border-radius: 6px;
    margin: 0 2px;
}

.admin-panel .badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
}

/* İstatistik Kartları için Özel Stiller */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    width: 100%;
}

.stats-grid .col-md-2 {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    padding: 0;
}

.stats-grid .card {
    height: 100%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stats-grid .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.stats-grid .card .card-body {
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.stats-grid .card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stats-grid .card .card-text {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0;
    opacity: 0.9;
}

.stats-grid .card .badge {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
}

/* Responsive Grid */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .stats-grid .card {
        min-height: 100px;
    }
    
    .stats-grid .card .card-title {
        font-size: 1.1rem;
    }
    
    .stats-grid .card .card-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Admin Panel Responsive */
@media (max-width: 768px) {
    .admin-panel .navbar-nav {
        text-align: center;
    }
    
    .admin-panel .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
    }
    
    .dashboard-stat-card {
        margin-bottom: 1rem;
    }
} 

.btn-free {
    background: linear-gradient(90deg, #7c3aed 0%, #a78bfa 100%);
    color: #fff !important;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 32px;
    box-shadow: 0 4px 24px 0 rgba(124,58,237,0.15);
    transition: transform 0.15s cubic-bezier(.4,2,.6,1), box-shadow 0.15s;
    padding: 0.85rem 2.2rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}
.btn-free:hover, .btn-free:focus {
    transform: scale(1.07);
    box-shadow: 0 8px 32px 0 rgba(124,58,237,0.25);
    background: linear-gradient(90deg, #a78bfa 0%, #7c3aed 100%);
    color: #fff !important;
}
.btn-free .fa-rocket {
    animation: rocket-pop 0.7s cubic-bezier(.4,2,.6,1) alternate infinite;
}
@keyframes rocket-pop {
    0% { transform: translateY(0);}
    100% { transform: translateY(-4px);}
} 

.hero-cta-group {
    margin-top: 2.5rem;
}
.badge-featured {
    background: linear-gradient(90deg, #7c3aed 0%, #a78bfa 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px 0 rgba(124,58,237,0.10);
    letter-spacing: 0.01em;
    padding: 0.5em 1.2em;
    display: inline-block;
    margin-bottom: 0.5rem;
} 