/* Ultra Modern CSS Framework - 2025 Design */
:root {
    --primary-color: #0ea5e9;  /* Modern sky blue */
    --primary-dark: #0284c7;   /* Darker sky blue */
    --primary-light: #38bdf8;  /* Light sky blue */
    --secondary-color: #8b5cf6; /* Modern purple */
    --success-color: #10b981;  /* Emerald green */
    --warning-color: #f59e0b;  /* Amber */
    --danger-color: #ef4444;   /* Red */
    --dark-color: #0f172a;     /* Slate 900 */
    --light-color: #f8fafc;    /* Slate 50 */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --gray-900: #0f172a;
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
    --box-shadow-hover: 0 8px 30px rgba(37, 99, 235, 0.12);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--dark-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: auto;
    width: 100%;
    max-width: 100vw;
    /* Mobile performance optimizations */
    -webkit-overflow-scrolling: touch;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--gray-900);
    font-weight: 700;
    letter-spacing: -0.025em;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin: 0 0 1rem 0;
    color: var(--gray-800);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Container System - Modern ve Responsive */
.container {
    max-width: 100vw;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    width: 100%;
    overflow-x: auto;
}

.container-fluid {
    width: 100%;
    padding: 0 2rem;
    max-width: 100vw;
    overflow-x: auto;
}

/* Grid System */
.row {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.col-1 { grid-column: span 1; }
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-9 { grid-column: span 9; }
.col-10 { grid-column: span 10; }
.col-11 { grid-column: span 11; }
.col-12 { grid-column: span 12; }

/* Responsive Grid */
@media (min-width: 576px) {
    .row { grid-template-columns: repeat(12, 1fr); }
    .col-sm-1 { grid-column: span 1; }
    .col-sm-2 { grid-column: span 2; }
    .col-sm-3 { grid-column: span 3; }
    .col-sm-4 { grid-column: span 4; }
    .col-sm-5 { grid-column: span 5; }
    .col-sm-6 { grid-column: span 6; }
    .col-sm-7 { grid-column: span 7; }
    .col-sm-8 { grid-column: span 8; }
    .col-sm-9 { grid-column: span 9; }
    .col-sm-10 { grid-column: span 10; }
    .col-sm-11 { grid-column: span 11; }
    .col-sm-12 { grid-column: span 12; }
}

@media (min-width: 768px) {
    .col-md-1 { grid-column: span 1; }
    .col-md-2 { grid-column: span 2; }
    .col-md-3 { grid-column: span 3; }
    .col-md-4 { grid-column: span 4; }
    .col-md-5 { grid-column: span 5; }
    .col-md-6 { grid-column: span 6; }
    .col-md-7 { grid-column: span 7; }
    .col-md-8 { grid-column: span 8; }
    .col-md-9 { grid-column: span 9; }
    .col-md-10 { grid-column: span 10; }
    .col-md-11 { grid-column: span 11; }
    .col-md-12 { grid-column: span 12; }
}

@media (min-width: 992px) {
    .col-lg-1 { grid-column: span 1; }
    .col-lg-2 { grid-column: span 2; }
    .col-lg-3 { grid-column: span 3; }
    .col-lg-4 { grid-column: span 4; }
    .col-lg-5 { grid-column: span 5; }
    .col-lg-6 { grid-column: span 6; }
    .col-lg-7 { grid-column: span 7; }
    .col-lg-8 { grid-column: span 8; }
    .col-lg-9 { grid-column: span 9; }
    .col-lg-10 { grid-column: span 10; }
    .col-lg-11 { grid-column: span 11; }
    .col-lg-12 { grid-column: span 12; }
}

@media (min-width: 1200px) {
    .col-xl-1 { grid-column: span 1; }
    .col-xl-2 { grid-column: span 2; }
    .col-xl-3 { grid-column: span 3; }
    .col-xl-4 { grid-column: span 4; }
    .col-xl-5 { grid-column: span 5; }
    .col-xl-6 { grid-column: span 6; }
    .col-xl-7 { grid-column: span 7; }
    .col-xl-8 { grid-column: span 8; }
    .col-xl-9 { grid-column: span 9; }
    .col-xl-10 { grid-column: span 10; }
    .col-xl-11 { grid-column: span 11; }
    .col-xl-12 { grid-column: span 12; }
}

/* Auto-fit grid for cards */
.row-auto-fit {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    user-select: none;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover:not(:disabled) {
    background: #5855eb;
    transform: translateY(-1px);
}

.btn-success {
    background: var(--success-color);
    color: var(--white);
}

.btn-success:hover:not(:disabled) {
    background: #059669;
    transform: translateY(-1px);
}

.btn-warning {
    background: var(--warning-color);
    color: var(--white);
}

.btn-warning:hover:not(:disabled) {
    background: #d97706;
    transform: translateY(-1px);
}

.btn-danger {
    background: var(--danger-color);
    color: var(--white);
}

.btn-danger:hover:not(:disabled) {
    background: #dc2626;
    transform: translateY(-1px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline-secondary:hover:not(:disabled) {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.card-header {
    padding: 0 0 1rem 0;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 1rem;
}

.card-body {
    padding: 0;
}

.card-footer {
    padding: 1rem 0 0 0;
    border-top: 1px solid var(--gray-200);
    margin-top: 1rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-control:disabled {
    background: var(--gray-100);
    cursor: not-allowed;
}

.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-text {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.form-check-input {
    width: 1rem;
    height: 1rem;
    margin: 0;
}

.form-check-label {
    font-size: 0.9rem;
    color: var(--gray-700);
    cursor: pointer;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.alert-primary {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
    color: var(--primary-dark);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: #065f46;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
    color: #92400e;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #991b1b;
}

/* Tables */
.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.table th,
.table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.table th {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--gray-700);
}

.table tr:hover {
    background: var(--gray-100);
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-success { color: var(--success-color); }
.text-warning { color: var(--warning-color); }
.text-danger { color: var(--danger-color); }
.text-muted { color: var(--gray-600); }

.bg-primary { background: var(--primary-color); }
.bg-secondary { background: var(--secondary-color); }
.bg-success { background: var(--success-color); }
.bg-warning { background: var(--warning-color); }
.bg-danger { background: var(--danger-color); }
.bg-light { background: var(--light-color); }
.bg-white { background: var(--white); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }

.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }

.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.gap-4 { gap: 1.5rem; }
.gap-5 { gap: 3rem; }

.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 1rem; }
.m-4 { margin: 1.5rem; }
.m-5 { margin: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 1rem; }
.pt-4 { padding-top: 1.5rem; }
.pt-5 { padding-top: 3rem; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-3 { padding-bottom: 1rem; }
.pb-4 { padding-bottom: 1.5rem; }
.pb-5 { padding-bottom: 3rem; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-sticky { position: sticky; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

.rounded { border-radius: var(--border-radius); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-circle { border-radius: 50%; }

.shadow { box-shadow: var(--box-shadow); }
.shadow-lg { box-shadow: var(--box-shadow-hover); }

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in { animation: fadeIn 0.6s ease-out; }
.fade-in-up { animation: fadeInUp 0.6s ease-out; }
.slide-in-left { animation: slideInLeft 0.6s ease-out; }
.slide-in-right { animation: slideInRight 0.6s ease-out; }

/* Responsive utilities */
@media (max-width: 576px) {
    .d-sm-none { display: none; }
    .d-sm-block { display: block; }
    .d-sm-flex { display: flex; }
    .container { padding: 0 1rem; }
    
    /* Mobile-specific improvements */
    body { 
        font-size: 16px; 
        padding-top: 20px; /* Status bar için */
        min-height: calc(100vh - 20px);
    }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    /* Header ve navbar düzeltmeleri */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .navbar-brand {
        font-size: 1.25rem;
        font-weight: 700;
    }
    
    /* Ana içerik için margin */
    .main-content {
        margin-top: 60px;
        padding-top: 1rem;
    }
    
    .btn {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .form-control {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.75rem 1rem;
    }
    
    .form-select {
        min-height: 44px;
        font-size: 16px;
        padding: 0.75rem 1rem;
    }
    
    .card {
        padding: 1.5rem;
        margin-bottom: 1rem;
        position: relative;
        z-index: 100;
        border-radius: 1rem;
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
    }
    
    /* Card içerik düzeltmeleri */
    .card-header {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        margin-bottom: 1rem;
    }
    
    .card-body {
        padding: 0;
        position: relative;
        z-index: 101;
    }
    
    /* Hızlı linkler düzeltmesi */
    .quick-links {
        margin: 1rem 0;
        padding: 1rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 0.75rem;
        position: relative;
        z-index: 102;
    }
    
    .table {
        font-size: 0.9rem;
    }
    
    .table th, .table td {
        padding: 0.75rem 0.5rem;
    }
    
    /* Small phone specific optimizations */
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .card-header h3, .card-header h4 {
        font-size: 1.25rem;
    }
    
    .alert {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .step-btn {
        padding: 1rem;
        min-height: 60px;
    }
    
    .step-icon {
        font-size: 1.5rem;
    }
    
    .step-text h4 {
        font-size: 0.9rem;
    }
    
    .step-text p {
        font-size: 0.8rem;
    }
    
    /* Horizontal scroll for tables */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Better spacing for small screens */
    .container {
        padding: 0 0.75rem;
    }
    
    .row {
        margin: 1rem 0;
        gap: 1rem;
    }
    
    /* Form improvements */
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    /* Button improvements */
    .btn-group .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    /* Modal improvements */
    .modal-content {
        width: 95%;
        margin: 2% auto;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    /* İletişim kartı düzeltmeleri */
    .contact-card {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 1rem;
        padding: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    /* Footer düzeltmeleri */
    .footer {
        position: relative;
        z-index: 50;
        margin-top: 2rem;
        padding: 2rem 0;
        background: rgba(248, 250, 252, 0.9);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    /* Ana container düzeltmeleri */
    .container {
        padding: 0 0.75rem;
        position: relative;
        z-index: 100;
    }
    
    /* Row spacing düzeltmeleri */
    .row {
        margin: 1rem 0;
        gap: 1rem;
        position: relative;
        z-index: 101;
    }
}

@media (max-width: 768px) {
    .d-md-none { display: none; }
    .d-md-block { display: block; }
    .d-md-flex { display: flex; }
    .row { gap: 1rem; }
    .card { padding: 1.5rem; }
    
    /* Tablet-specific improvements */
    .navbar-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .btn {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
    }
    
    .form-control, .form-select {
        min-height: 44px;
        font-size: 16px;
    }
    
    /* Tablet specific optimizations */
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .card-header h3, .card-header h4 {
        font-size: 1.5rem;
    }
    
    .alert {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .badge {
        font-size: 0.85rem;
        padding: 0.35rem 0.7rem;
    }
    
    .step-btn {
        padding: 1.25rem 1.5rem;
        min-height: 70px;
    }
    
    .step-icon {
        font-size: 2rem;
    }
    
    .step-text h4 {
        font-size: 1rem;
    }
    
    .step-text p {
        font-size: 0.9rem;
    }
    
    /* Better table handling */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table {
        font-size: 0.95rem;
    }
    
    .table th, .table td {
        padding: 1rem 0.75rem;
    }
    
    /* Form improvements */
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-label {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    /* Button improvements */
    .btn-group .btn {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
    }
    
    /* Modal improvements */
    .modal-content {
        width: 90%;
        margin: 3% auto;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    /* Grid improvements */
    .row {
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    /* Container improvements */
    .container {
        padding: 0 1.25rem;
    }
    
    /* Tablet için layout düzeltmeleri */
    body { 
        padding-top: 20px;
        min-height: calc(100vh - 20px);
    }
    
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .main-content {
        margin-top: 60px;
        padding-top: 1rem;
    }
    
    .card {
        position: relative;
        z-index: 100;
    }
    
    .contact-card {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
    }
    
    .footer {
        position: relative;
        z-index: 50;
    }
}

@media (max-width: 992px) {
    .d-lg-none { display: none; }
    .d-lg-block { display: block; }
    .d-lg-flex { display: flex; }
}

@media (max-width: 1200px) {
    .d-xl-none { display: none; }
    .d-xl-block { display: block; }
    .d-xl-flex { display: flex; }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .no-print { display: none; }
    body { background: white; }
    .card { box-shadow: none; border: 1px solid #ccc; }
}

/* Dalga SVG arka planı sadece üstte ve sabit */
body::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 0; height: 320px;
    z-index: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="320" viewBox="0 0 1440 320" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="%232563eb" fill-opacity="0.12" d="M0,160L60,170.7C120,181,240,203,360,197.3C480,192,600,160,720,133.3C840,107,960,85,1080,101.3C1200,117,1320,171,1380,197.3L1440,224L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z"></path></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    animation: waveMove 12s linear infinite alternate;
    pointer-events: none;
    display: none !important;
}

@keyframes waveMove {
    0% { background-position-x: 0; }
    100% { background-position-x: 200px; }
}

/* Yıldızlar */
.stars {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 1;
}
.star {
    position: absolute;
    width: 2px; height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.7;
    animation: twinkle 2s infinite alternate;
    z-index: 1;
}
@keyframes twinkle {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Kart ve form stilleri */
.card, .form-control, .form-select {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px 0 rgba(37, 99, 235, 0.04);
}

.btn-primary, .btn-custom {
    background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 2rem;
    box-shadow: 0 2px 8px 0 rgba(37, 99, 235, 0.08);
    transition: background 0.2s, box-shadow 0.2s;
}
.btn-primary:hover, .btn-custom:hover {
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 16px 0 rgba(37, 99, 235, 0.12);
}

h1, h2, h3, h4, h5 {
    color: #2563eb;
    font-weight: 700;
    letter-spacing: -1px;
}

.navbar, .navbar-nav, .nav-link, .navbar-brand {
    background: transparent !important;
    color: #1e293b !important;
}

/* Responsive ve modern padding/margin */
.container, .container-fluid {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Yıldızları otomatik ekleyecek JS kodu için alan */

.card, .table, .accordion-item {
    border-radius: 1rem;
    box-shadow: 0 4px 24px 0 rgba(37, 99, 235, 0.08);
    border: none;
    transition: box-shadow 0.3s;
}
.card:hover, .table:hover, .accordion-item:hover {
    box-shadow: 0 8px 32px 0 rgba(37, 99, 235, 0.16);
}
.alert, .toast {
    border-radius: 0.75rem;
    box-shadow: 0 2px 12px 0 rgba(37, 99, 235, 0.10);
    animation: fadeIn 0.7s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: none; }
}
.fade-in {
    animation: fadeIn 0.7s;
}
input:focus, textarea:focus, select:focus {
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 2px #6366f1 !important;
    outline: none;
}
::-webkit-scrollbar {
    width: 8px;
    background: #e0e7ff;
}
::-webkit-scrollbar-thumb {
    background: #a5b4fc;
    border-radius: 4px;
}

main.container, .container, .container-fluid {
    position: relative;
    z-index: 3;
    background: transparent;
    max-width: 100vw;
    overflow-x: auto;
}

.wave-bg {
    position: fixed;
    left: 0; right: 0; top: 0; height: 320px;
    z-index: 0;
    width: 100vw;
    background: url('data:image/svg+xml;utf8,<svg width="100%25" height="320" viewBox="0 0 1440 320" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="%232563eb" fill-opacity="0.12" d="M0,160L60,170.7C120,181,240,203,360,197.3C480,192,600,160,720,133.3C840,107,960,85,1080,101.3C1200,117,1320,171,1380,197.3L1440,224L1440,0L1380,0C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0L0,0Z"></path></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
    animation: waveMove 12s linear infinite alternate;
}

.home-container {
    padding-top: 340px;
}

.navbar, .navbar-brand {
    z-index: 10;
    position: relative;
} 

/* Sıfırdan: Chat Tarzı Baykuş FAB */
.fab-owl-chat {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10010;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.fab-owl-main {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.fab-owl-main:hover {
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.18);
  transform: scale(1.06);
}
.fab-owl-main-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.fab-owl-bubble {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.25s, transform 0.25s;
}
.fab-owl-bubble.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.fab-owl-bubble-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.fab-owl-bubble-btn.phone {
  background: #007bff;
}
.fab-owl-bubble-btn:hover {
  transform: scale(1.12);
  filter: brightness(1.08);
}
@media (max-width: 600px) {
  .fab-owl-chat {
    right: 10px;
    bottom: 10px;
  }
  .fab-owl-main {
    width: 48px;
    height: 48px;
  }
  .fab-owl-main-logo {
    width: 32px;
    height: 32px;
  }
  .fab-owl-bubble-btn {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
} 

@media (max-width: 600px) {
  .row-auto-fit {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }
  .card {
    margin-bottom: 1.2rem !important;
    padding: 1.2rem !important;
  }
  .card-body {
    padding: 0.5rem !important;
  }
  .card-body > i, .card-body > h4, .card-body > h5, .card-body > p {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .navbar-container {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 0.5rem;
  }
  .navbar-nav {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    align-items: flex-start;
  }
  .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 0.75rem 0.5rem;
  }
} 

/* --- ADMIN PANELI OZEL DUZENLEMELER --- */
.admin-panel-container {
    padding: 2rem 0.5rem 3rem 0.5rem;
    max-width: 100vw;
    width: 100vw;
    overflow-x: auto;
    margin: 0;
}
.panel-content {
    margin-top: 2rem;
}
.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}
.tab-btn {
    padding: 0.7rem 1.5rem;
    border-radius: var(--border-radius);
    background: var(--gray-100);
    color: var(--primary-color);
    font-weight: 500;
    border: 1px solid var(--gray-300);
    transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.table.admin-table {
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    font-size: 0.98rem;
    min-width: 1100px;
    margin-bottom: 2rem;
}
.table.admin-table th, .table.admin-table td {
    vertical-align: middle;
    text-align: center;
    padding: 0.7rem 0.5rem;
    border-bottom: 1px solid var(--gray-200);
}
.table.admin-table th {
    background: var(--gray-100);
    font-weight: 600;
    color: var(--primary-color);
}
.table-responsive {
    overflow-x: auto;
    padding-bottom: 1rem;
}
.form-control, textarea {
    font-size: 0.97rem;
    padding: 0.4rem 0.7rem;
    border-radius: var(--border-radius);
}
.btn, .btn-sm {
    min-width: 90px;
    margin-bottom: 0.3rem;
}
.d-flex.flex-column.gap-2 {
    gap: 0.5rem !important;
}
.badge {
    padding: 0.35em 0.7em;
    border-radius: 0.5em;
    font-size: 0.92em;
    font-weight: 500;
}
.badge-type { background: var(--primary-light); color: #fff; }
.badge-admin { background: var(--success-color); color: #fff; }
.badge-no { background: var(--gray-400); color: #333; }
.badge-paid { background: var(--success-color); color: #fff; }
.badge-unpaid { background: var(--danger-color); color: #fff; }
.badge-application { background: var(--secondary-color); color: #fff; }
.badge-pending { background: var(--warning-color); color: #fff; }
.badge-approved { background: var(--success-color); color: #fff; }
.badge-rejected { background: var(--danger-color); color: #fff; }

/* Responsive düzenlemeler */
@media (max-width: 900px) {
    .table.admin-table, .table.admin-table th, .table.admin-table td {
        font-size: 0.92rem;
        min-width: 800px;
    }
    .admin-panel-container {
        padding: 1rem 0.1rem 2rem 0.1rem;
    }
    .container {
        max-width: 100vw;
        padding: 0 2rem;
        overflow-x: auto;
    }
}
@media (max-width: 600px) {
    .table.admin-table, .table.admin-table th, .table.admin-table td {
        font-size: 0.88rem;
        min-width: 600px;
    }
    .admin-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Form ve tablo içi spacing düzeltmeleri */
form {
    margin-bottom: 0;
}
input[type="file"] {
    font-size: 0.95em;
}
textarea.form-control-sm {
    min-height: 40px;
}
ul.list-unstyled.mb-0 {
    margin-bottom: 0;
    padding-left: 0;
}

/* --- DASHBOARD VE CUSTOMER PANEL ÖZEL STİLLERİ --- */
/* Payment Required Card */
.payment-required-card {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.payment-required-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.payment-required-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.payment-required-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.payment-required-card .btn {
    background: white;
    color: #2563eb;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.payment-required-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Step Buttons Container */
.step-buttons-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.08);
    position: relative;
    overflow: hidden;
}

.step-buttons-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--success-color));
    border-radius: 1.5rem 1.5rem 0 0;
}

.step-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}

/* Progress Bar */
.step-progress {
    position: absolute;
    top: -1rem;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.step-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.step-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

/* Enhanced Step Buttons - Additional Improvements */
.step-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
    border-radius: 1.25rem;
    color: #64748b;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 140px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transform-origin: center;
    will-change: transform, box-shadow, border-color;
}

.step-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.08), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.step-btn:hover::after {
    opacity: 1;
}

.step-btn:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.step-btn:active {
    transform: translateY(-2px) scale(1.01);
    transition: transform 0.1s ease;
}

.step-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.25);
    transform: translateY(-2px);
    position: relative;
}

.step-btn.active::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.step-btn.active:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(37, 99, 235, 0.35);
}

.step-btn.completed {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    border-color: var(--success-color);
    color: white;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.25);
    position: relative;
}

.step-btn.completed::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.step-btn.completed:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.35);
}

.step-btn.completed::after {
    content: '✓';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    color: white;
    animation: checkmarkPulse 0.6s ease-out;
}

@keyframes checkmarkPulse {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.step-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #94a3b8;
    transform: none;
    position: relative;
}

.step-btn.disabled::after {
    content: '🔒';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.7;
}

.step-btn.disabled:hover {
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

/* Step Lock Indicator */
.step-lock {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    background: rgba(148, 163, 184, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lockPulse 2s ease-in-out infinite alternate;
    z-index: 3;
}

.step-lock i {
    color: #94a3b8;
    font-size: 0.75rem;
    animation: lockShake 1.5s ease-in-out infinite;
}

@keyframes lockPulse {
    0% { box-shadow: 0 0 5px rgba(148, 163, 184, 0.3); }
    100% { box-shadow: 0 0 15px rgba(148, 163, 184, 0.6); }
}

@keyframes lockShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg); }
}

/* Shake Animation for Disabled Buttons */
.step-btn.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

/* Enhanced Step Status Indicator */
.step-status {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: statusGlow 2s ease-in-out infinite alternate;
}

.step-status i {
    color: var(--success-color);
    font-size: 0.75rem;
    animation: statusPulse 1.5s ease-in-out infinite;
}

@keyframes statusGlow {
    0% { box-shadow: 0 0 5px rgba(16, 185, 129, 0.3); }
    100% { box-shadow: 0 0 15px rgba(16, 185, 129, 0.6); }
}

@keyframes statusPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Enhanced Step Icon */
.step-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
    text-align: center;
}

.step-btn:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-btn.active .step-icon,
.step-btn.completed .step-icon {
    transform: scale(1.1);
}

.step-btn.active .step-icon {
    animation: iconBounce 0.6s ease-out;
}

@keyframes iconBounce {
    0%, 20%, 53%, 80%, 100% { transform: translate3d(0,0,0); }
    40%, 43% { transform: translate3d(0,-8px,0); }
    70% { transform: translate3d(0,-4px,0); }
    90% { transform: translate3d(0,-2px,0); }
}

/* Enhanced Step Text */
.step-text {
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.3;
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.step-text h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    font-weight: 700;
    color: inherit;
}

.step-text p {
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 500;
}

.step-btn:hover .step-text h4 {
    transform: translateY(-1px);
}

/* Enhanced Step Number */
.step-number {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 24px;
    height: 24px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 3;
}

.step-btn.active .step-number,
.step-btn.completed .step-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.1);
}

.step-btn:hover .step-number {
    transform: scale(1.1);
}

/* Loading State for Step Buttons */
.step-btn.loading {
    pointer-events: none;
    position: relative;
}

.step-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 10;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Progress Bar */
.step-progress {
    position: absolute;
    top: -1rem;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 2px;
    overflow: hidden;
    z-index: 1;
}

.step-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

.step-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

/* Enhanced Container with Better Shadows */
.step-buttons-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    margin-bottom: 2.5rem;
    box-shadow: 
        0 8px 32px rgba(37, 99, 235, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.step-buttons-container:hover {
    box-shadow: 
        0 12px 40px rgba(37, 99, 235, 0.15),
        0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.step-buttons-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--success-color));
    border-radius: 1.5rem 1.5rem 0 0;
    animation: rainbowFlow 3s ease-in-out infinite;
}

@keyframes rainbowFlow {
    0%, 100% { background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--success-color)); }
    50% { background: linear-gradient(90deg, var(--secondary-color), var(--success-color), var(--primary-color)); }
}

/* Step Content - Enhanced */
.step-content {
    display: none;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.08);
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 1.5rem 1.5rem 0 0;
}

.step-content.active {
    display: block;
}

/* Enhanced Animations */
@keyframes stepPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.step-btn.active {
    animation: stepPulse 2s infinite;
}

@keyframes stepGlow {
    0%, 100% { box-shadow: 0 12px 40px rgba(37, 99, 235, 0.25); }
    50% { box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4), 0 0 20px rgba(37, 99, 235, 0.3); }
}

.step-btn.active:hover {
    animation: stepGlow 2s infinite;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .step-buttons-container {
        padding: 1.5rem;
        border-radius: 1rem;
        margin-bottom: 2rem;
    }
    
    .step-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-btn {
        min-width: auto;
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        padding: 1.25rem;
        border-radius: 1rem;
        position: relative;
    }
    
    .step-icon {
        margin-bottom: 0;
        margin-right: 1rem;
        font-size: 1.5rem;
        flex-shrink: 0;
    }
    
    .step-number {
        top: 0.5rem;
        right: 0.5rem;
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .step-status, .step-lock {
        top: 0.5rem;
        right: 0.5rem;
        width: 20px;
        height: 20px;
    }
    
    .step-status i, .step-lock i {
        font-size: 0.7rem;
    }
    
    .step-text {
        flex: 1;
        text-align: left;
    }
    
    .step-text h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .step-text p {
        font-size: 0.8rem;
        margin: 0;
    }
    
    .step-content {
        padding: 1.5rem;
        border-radius: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .step-progress {
        top: -0.75rem;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .step-buttons-container {
        padding: 1rem;
        margin-bottom: 1.5rem;
        border-radius: 0.75rem;
    }
    
    .step-btn {
        padding: 1rem;
        border-radius: 0.75rem;
        gap: 0.5rem;
    }
    
    .step-icon {
        font-size: 1.25rem;
        margin-right: 0.75rem;
    }
    
    .step-text h4 {
        font-size: 0.9rem;
    }
    
    .step-text p {
        font-size: 0.75rem;
    }
    
    .step-number, .step-status, .step-lock {
        width: 18px;
        height: 18px;
        top: 0.4rem;
        right: 0.4rem;
    }
    
    .step-number {
        font-size: 0.65rem;
    }
    
    .step-status i, .step-lock i {
        font-size: 0.65rem;
    }
    
    .step-content {
        padding: 1rem;
        border-radius: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .step-progress {
        top: -0.5rem;
        height: 2px;
    }
} 

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .step-buttons-container {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        border-color: rgba(37, 99, 235, 0.2);
    }
    
    .step-btn {
        background: linear-gradient(135deg, #334155 0%, #475569 100%);
        border-color: #475569;
        color: #e2e8f0;
    }
    
    .step-btn:hover {
        background: linear-gradient(135deg, #475569 0%, #64748b 100%);
        border-color: var(--primary-color);
    }
    
    .step-content {
        background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
        border-color: rgba(37, 99, 235, 0.2);
    }
} 

/* Dashboard specific styles */
.dashboard-container {
    width: 100vw;
    max-width: 100vw;
    overflow-x: auto;
    padding: 0;
    margin: 0;
    min-height: 100vh;
}

.dashboard-header {
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.dashboard-header .container {
    max-width: 100%;
    padding: 0 2rem;
    overflow-x: visible;
}

.family-card, .motivation-card, .application-card {
    width: 100%;
    max-width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 2rem;
    overflow-x: visible;
}

.add-member-form {
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
    padding: 0;
}

.add-member-form .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    width: 100%;
}

.add-member-form .col-12 {
    grid-column: 1 / -1;
}

.members-table {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    margin: 0;
    padding: 0;
}

.members-table .table {
    width: 100%;
    min-width: 600px;
}

/* Documents Grid - Full Width */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
}

.document-category {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
    border: 1px solid #e2e8f0;
    overflow-x: visible;
}

.document-category h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.document-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    color: var(--gray-700);
}

.document-category li:last-child {
    border-bottom: none;
}

/* Responsive Dashboard */
@media (max-width: 1200px) {
    .dashboard-container {
        width: 100%;
        max-width: 100%;
    }
    
    .documents-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .dashboard-container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .dashboard-header .container {
        padding: 0 1rem;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .document-category {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .dashboard-container {
        padding: 0 0.5rem;
    }
    
    .dashboard-header .container {
        padding: 0 0.5rem;
    }
    
    .document-category {
        padding: 1rem;
    }
}

/* Payment Required Card - Enhanced */
.payment-required-card {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border: 2px solid #fb923c;
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(251, 146, 60, 0.15);
}

.payment-required-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

.payment-required-card h3 {
    color: #ea580c;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.payment-required-card p {
    color: #c2410c;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.payment-required-card .btn {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.payment-required-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
}

/* Responsive adjustments for payment card */
@media (max-width: 768px) {
    .payment-required-card {
        padding: 2rem 1.5rem;
    }
    
    .payment-required-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .payment-required-card {
        padding: 1.5rem 1rem;
    }
} 

/* Responsive tasarım için ek kurallar */
@media (max-width: 1400px) {
    .container, .container-fluid {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .dashboard-container,
    .customer-panel-container,
    .admin-panel-container {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
    }
}

@media (max-width: 1200px) {
    .container, .container-fluid {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .documents-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .step-buttons {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .container, .container-fluid {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .dashboard-container,
    .customer-panel-container,
    .admin-panel-container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        overflow-x: auto;
    }
    
    .dashboard-header .container {
        padding: 0 1rem;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .document-category {
        padding: 1.5rem;
    }
    
    .step-buttons-container {
        padding: 1rem;
    }
    
    .step-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .step-btn {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .container, .container-fluid {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    /* Extra small phone optimizations */
    body { font-size: 15px; }
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .navbar-brand {
        font-size: 1.1rem;
    }
    
    .card {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .card-header h3, .card-header h4 {
        font-size: 1.1rem;
    }
    
    .alert {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
    
    .btn {
        min-height: 48px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .form-control, .form-select {
        min-height: 48px;
        font-size: 16px;
        padding: 0.75rem 0.75rem;
    }
    
    .step-btn {
        padding: 0.75rem;
        min-height: 55px;
    }
    
    .step-icon {
        font-size: 1.25rem;
    }
    
    .step-text h4 {
        font-size: 0.85rem;
    }
    
    .step-text p {
        font-size: 0.75rem;
    }
    
    .table {
        font-size: 0.8rem;
    }
    
    .table th, .table td {
        padding: 0.5rem 0.25rem;
    }
    
    .form-group {
        margin-bottom: 0.75rem;
    }
    
    .form-label {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .btn-group .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
    
    .modal-content {
        width: 98%;
        margin: 1% auto;
    }
    
    .modal-body {
        padding: 0.75rem;
    }
    
    .row {
        margin: 0.75rem 0;
        gap: 0.75rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
}
    
    .dashboard-container,
    .customer-panel-container,
    .admin-panel-container {
        padding: 0 0.5rem;
    }
    
    .dashboard-header .container {
        padding: 0 0.5rem;
    }
    
    .document-category {
        padding: 1rem;
    }
    
    .step-buttons-container {
        padding: 0.5rem;
    }
    
    .step-btn {
        padding: 1rem;
    }
    
    .step-text h4 {
        font-size: 1rem;
    }
    
    .step-text p {
        font-size: 0.875rem;
    }
}

/* Horizontal scroll için özel kurallar */
.dashboard-container,
.customer-panel-container,
.admin-panel-container {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--gray-200);
}

.dashboard-container::-webkit-scrollbar,
.customer-panel-container::-webkit-scrollbar,
.admin-panel-container::-webkit-scrollbar {
    height: 8px;
}

.dashboard-container::-webkit-scrollbar-track,
.customer-panel-container::-webkit-scrollbar-track,
.admin-panel-container::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 4px;
}

.dashboard-container::-webkit-scrollbar-thumb,
.customer-panel-container::-webkit-scrollbar-thumb,
.admin-panel-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.dashboard-container::-webkit-scrollbar-thumb:hover,
.customer-panel-container::-webkit-scrollbar-thumb:hover,
.admin-panel-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
} 

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid var(--gray-200);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer h5, .footer h6 {
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer a {
    color: var(--gray-600);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Social Media Links */
.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #E4405F, #C13584);
    color: white;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: linear-gradient(45deg, #C13584, #E4405F);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(228, 64, 95, 0.4);
}

.social-links a:active {
    transform: translateY(-1px);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer .row > div {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Emoji Styles */
.feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

/* Pricing Comparison Table Styles */
.pricing-comparison-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.pricing-comparison-table {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: none;
    margin-bottom: 0;
}

.pricing-comparison-table thead th {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
    color: white;
    border: none;
    padding: 1.5rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    vertical-align: middle;
}

.pricing-comparison-table tbody tr {
    transition: var(--transition);
    border: none;
}

.pricing-comparison-table tbody tr:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-hover);
}

.pricing-comparison-table tbody td {
    padding: 1.2rem 1rem;
    border: none;
    vertical-align: middle;
    font-size: 0.9rem;
}

.pricing-comparison-table .table-primary {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(56, 189, 248, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
}

.pricing-comparison-table .table-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(52, 211, 153, 0.05) 100%);
    border-left: 4px solid var(--success-color);
}

.pricing-comparison-table .table-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
    border-left: 4px solid var(--warning-color);
}

.pricing-comparison-table .fw-bold {
    font-weight: 700 !important;
}

.pricing-table-responsive {
    overflow-x: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

/* Responsive Pricing Table */
@media (max-width: 1200px) {
    .pricing-comparison-table {
        font-size: 0.85rem;
    }
    
    .pricing-comparison-table thead th,
    .pricing-comparison-table tbody td {
        padding: 1rem 0.75rem;
    }
}

@media (max-width: 768px) {
    .pricing-comparison-section {
        padding: 2rem 0;
    }
    
    .pricing-comparison-table {
        font-size: 0.8rem;
    }
    
    .pricing-comparison-table thead th,
    .pricing-comparison-table tbody td {
        padding: 0.75rem 0.5rem;
    }
    
    .pricing-comparison-table .fw-bold {
        font-size: 0.85rem;
    }
}

/* Admin Panel Enhanced Styles */
.admin-panel-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh;
    padding: 0;
}

.panel-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--gray-800) 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.admin-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.admin-details h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.admin-details p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

.header-actions .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
}

.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0 2rem;
    overflow-x: auto;
    border-bottom: 2px solid var(--gray-200);
}

.tab-btn {
    padding: 1rem 1.5rem;
    background: white;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    border: 2px solid transparent;
    border-bottom: none;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.tab-btn:hover {
    background: var(--gray-50);
    color: var(--gray-800);
    text-decoration: none;
}

.tab-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.panel-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

/* Package Management Section */
.package-management-section {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.package-management-section h3 {
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.stat-card {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
}

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

.stat-card .card-body {
    padding: 1.5rem;
}

.stat-card .card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--gray-800);
}

.stat-primary { border-left: 4px solid var(--primary-color); }
.stat-info { border-left: 4px solid var(--secondary-color); }
.stat-purple { border-left: 4px solid #8b5cf6; }
.stat-orange { border-left: 4px solid var(--warning-color); }

.package-distribution, .user-type-distribution {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.package-item, .user-type-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
}

.package-label, .user-type-label {
    font-weight: 600;
    color: var(--gray-700);
}

.package-count, .user-type-count {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Enhanced Package Info */
.package-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.package-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.package-badges .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.credit-info {
    margin-top: 0.25rem;
}

.credit-info .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
}

/* Admin Table Enhancements */
.admin-table {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.admin-table thead th {
    background: var(--gray-800);
    color: white;
    border: none;
    padding: 1rem;
    font-weight: 600;
}

.admin-table tbody tr {
    transition: var(--transition);
}

.admin-table tbody tr:hover {
    background: var(--gray-50);
}

.admin-table tbody td {
    padding: 1rem;
    border: none;
    vertical-align: middle;
}

/* Responsive Admin Panel */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .admin-tabs {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
    
    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .stat-card .stat-value {
        font-size: 2rem;
    }
    
    .package-distribution, .user-type-distribution {
        gap: 0.5rem;
    }
    
    .package-item, .user-type-item {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Special Documents Styles */
.special-documents-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.document-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--success-color);
    transition: var(--transition);
}

.document-item:hover {
    background: var(--gray-100);
    transform: translateX(5px);
}

.document-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.document-name {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1rem;
}

.document-date {
    color: var(--gray-600);
    font-size: 0.85rem;
}

.document-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: var(--border-radius);
}

/* Stripe Customer Card Stilleri */
.stripe-customer-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.stripe-customer-card .card-header {
    background: linear-gradient(135deg, #6772e5 0%, #3f4db3 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.stripe-customer-card .card-header h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.stripe-customer-card .card-header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

.stripe-customer-card .card-body {
    padding: 2rem;
}

.stripe-info {
    text-align: center;
}

.stripe-info p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.stripe-info .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
}

/* İade Talep Stilleri */
.refund-request-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.refund-request-card .card-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.refund-request-card .card-header h2 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.refund-request-card .card-header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

.refund-request-card .card-body {
    padding: 2rem;
}

.refund-info h5 {
    color: #4a5568;
    margin-bottom: 1rem;
    font-weight: 600;
}

.payment-details {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    font-weight: 600;
    color: #4a5568;
}

.detail-row .value {
    color: #2d3748;
    font-weight: 500;
}

.refund-form h5 {
    color: #4a5568;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Başvuru Formları Stilleri */
.applications-section {
    padding: 2rem 0;
}

.applications-section h3 {
    color: #2d3748;
    margin-bottom: 2rem;
    font-weight: 700;
}

.applications-table {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.applications-table .table {
    margin: 0;
}

.applications-table .table th {
    background: #f8f9fa;
    border: none;
    padding: 1rem;
    font-weight: 600;
    color: #495057;
}

.applications-table .table td {
    padding: 1rem;
    vertical-align: middle;
    border-top: 1px solid #e9ecef;
}

.applications-table .user-info {
    line-height: 1.4;
}

.applications-table .btn-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.applications-table .btn-xs {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 0.25rem;
}

/* İade Talepleri Tablosu Stilleri */
.refund-requests-section h3 {
    color: #2d3748;
    margin-bottom: 2rem;
    font-weight: 700;
}

.refund-requests-table {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.refund-description {
    max-width: 300px;
}

.btn-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-group-vertical .btn {
    width: 100%;
    margin: 0;
}

/* Abonelik Yönetimi Stilleri */
.subscription-management-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.subscription-management-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.subscription-management-card .card-header h3 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.subscription-management-card .card-header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

.subscription-management-card .card-body {
    padding: 2rem;
}

.subscription-info h5 {
    color: #4a5568;
    margin-bottom: 1rem;
    font-weight: 600;
}

.subscription-details {
    background: #f8fafc;
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.subscription-actions h5 {
    color: #4a5568;
    margin-bottom: 1rem;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
}

/* Modal Stilleri */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h4 {
    margin: 0;
    font-weight: 700;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 2rem;
}

.subscription-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.subscription-option {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscription-option:hover {
    border-color: #667eea;
    background: #f1f5f9;
    transform: translateY(-5px);
}

.subscription-option h5 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.subscription-option .price {
    color: #667eea;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.subscription-option .description {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
    }
    
    .subscription-options {
        grid-template-columns: 1fr;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .btn-group-vertical .btn {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
}