/* Çayİşçi Platform - Modern Tasarım */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-green: #22c55e;
    --primary-green-dark: #16a34a;
    --primary-green-light: #4ade80;
    --secondary-green: #10b981;
    --accent-emerald: #059669;
    --tea-green: #86efac;
    --warning-amber: #f59e0b;
    --warning-yellow: #fbbf24;
    --orange-accent: #f97316;
    
    --gradient-primary: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #059669 100%);
    --gradient-secondary: linear-gradient(120deg, #10b981 0%, #22c55e 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #1e40af 25%, #22c55e 50%, #16a34a 75%, #059669 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 35px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 15px 50px rgba(0, 0, 0, 0.2);
    
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #334155;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding-top: 0;
    overflow-x: hidden;
}

/* Navbar - Modern Glassmorphism */
.navbar {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    height: 70px;
}

/* Navbar Toggler - Mobile Menu Button */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler:hover {
    background: rgba(34, 197, 94, 0.1);
}

.navbar-toggler-icon {
    background-image: none;
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon {
    background: var(--primary-green);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler-icon::after {
    bottom: 0;
}

.navbar-toggler-icon {
    background: var(--primary-green);
    height: 3px;
    border-radius: 2px;
    margin: auto;
}

/* Hamburger Animation */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 50%;
    margin-top: -1.5px;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 50%;
    margin-bottom: -1.5px;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.75rem !important;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #475569 !important;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 8px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green) !important;
    transform: translateY(-1px);
}

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

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

/* Buttons - Modern Style */
.btn {
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 24px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::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:hover::before {
    left: 100%;
}

.btn-success {
    background: linear-gradient(135deg, var(--primary-green) 0%, #059669 100%);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-success::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-success:hover::before {
    width: 300px;
    height: 300px;
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-warning {
    background: var(--gradient-warm);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
    transform: translateY(-2px);
}

.btn-light {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-green);
    border: 2px solid transparent;
}

.btn-light:hover {
    background: white;
    color: var(--primary-green-dark);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* Hero Section - Spectacular */
.hero-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
    margin-top: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(5, 150, 105, 0.2) 0%, transparent 50%);
    animation: heroShimmer 8s ease-in-out infinite alternate;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="40" cy="40" r="40"/><circle cx="40" cy="40" r="25"/></g></g></svg>');
    animation: heroPattern 20s linear infinite;
}

@keyframes heroShimmer {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

@keyframes heroPattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-80px) translateY(-80px); }
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
    animation: heroText 1s ease-out;
}

.hero-section .lead {
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 2.5rem;
    animation: heroText 1s ease-out 0.2s both;
}

.hero-section .btn {
    animation: heroText 1s ease-out 0.4s both;
}

@keyframes heroText {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Stats Card - Glassmorphism */
.hero-stats {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    animation: heroStats 1s ease-out 0.6s both;
    overflow: hidden;
    position: relative;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

@keyframes heroStats {
    0% {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-stats h5 {
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats h3 {
    font-weight: 800;
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.hero-stats h3:hover {
    transform: scale(1.1);
}

/* İlan Kartları - Premium Design */
.ilan-card {
    background: white;
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.ilan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.ilan-card:hover::before {
    transform: scaleX(1);
}

.ilan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.ilan-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px 20px 0 0;
    position: relative;
    overflow: hidden;
}

.ilan-header::after {
    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;
}

.ilan-card:hover .ilan-header::after {
    left: 100%;
}

.ilan-header h5 {
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.ucret-badge {
    background: var(--gradient-warm);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 12px;
    padding: 8px 16px;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lokasyon-badge {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    font-weight: 600;
    border-radius: 12px;
    padding: 8px 16px;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

/* Feature Cards - Modern 3D */
.feature-card {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
    transition: all 0.5s ease;
    transform: scale(0);
}

.feature-card:hover::before {
    transform: scale(1);
}

.feature-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-green);
}

.feature-card i {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover i {
    transform: scale(1.2) rotateY(360deg);
    color: var(--primary-green);
}

/* Form Elements - Modern */
.form-control, .form-select {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
    transform: translateY(-1px);
}

.form-label {
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
}

/* Checkbox Styling for Agreement */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    margin-right: 0;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
    border-color: var(--primary-green);
}

.form-check-label {
    cursor: pointer;
    line-height: 1.4;
    color: #475569;
    flex: 1;
}

.form-check-label small {
    display: block;
}

.form-check-label a {
    font-weight: 600;
    transition: color 0.3s ease;
}

.form-check-label a:hover {
    color: var(--primary-green-dark) !important;
    text-decoration: underline !important;
}

/* Modal Enhancements */
.modal-content {
    border: none;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.modal-header {
    background: var(--gradient-primary);
    border: none;
    padding: 24px;
}

.modal-body {
    padding: 32px;
}

/* Test Ads - Enhanced */
.test-ad {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    color: #64748b;
    font-weight: 500;
    margin: 16px 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.test-ad::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.5s;
}

.test-ad:hover::before {
    left: 100%;
}

.test-ad:hover {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.test-ad i {
    font-size: 32px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.test-ad:hover i {
    transform: scale(1.1);
}

/* Native Ads Styling */
.native-ad-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.native-ad-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-green);
}

.native-ad-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Step Icons for How It Works */
.step-icon {
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Feature Highlights */
.feature-highlight {
    display: inline-flex;
    align-items: center;
    background: rgba(34, 197, 94, 0.1);
    padding: 8px 12px;
    border-radius: 20px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(34, 197, 94, 0.2);
    transform: translateY(-2px);
}

/* Accordion Enhancements */
.accordion-button {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: none;
    border-radius: 12px !important;
    font-weight: 600;
    padding: 20px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-green) 0%, #059669 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.accordion-button:hover {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    transform: translateY(-2px);
}

.accordion-button:not(.collapsed):hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.accordion-body {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-top: 1px solid #e2e8f0;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
}

/* Season Info Enhancements */
.season-info-card {
    background: linear-gradient(135deg, var(--primary-green) 0%, #059669 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.season-info-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 ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

/* Enhanced Feature Cards */
.feature-card {
    background: white;
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
    border-color: var(--primary-green);
}

.feature-card h5 {
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card i {
    transition: all 0.3s ease;
}

.feature-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Statistics Animation */
.hero-stats {
    position: relative;
    overflow: hidden;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-green), #22c55e, #10b981, var(--primary-green));
    border-radius: inherit;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

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

/* Responsive Enhancements */
@media (max-width: 768px) {
    .step-icon {
        width: 60px !important;
        height: 60px !important;
    }
    
    .step-icon h2 {
        font-size: 1.5rem;
    }
    
    .accordion-button {
        padding: 15px;
        font-size: 14px;
    }
    
    .feature-card {
        margin-bottom: 20px;
    }
    
    .hero-stats {
        margin-top: 2rem;
    }
}

/* Mobile Enhancements */
@media (max-width: 576px) {
    .hero-section {
        padding: 30px 10px;
    }
    
    .hero-section .display-4 {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .hero-stats {
        margin-top: 1.5rem;
        padding: 1rem;
    }
    
    .hero-stats h3 {
        font-size: 1.5rem;
    }
    
    .hero-stats h5 {
        font-size: 0.9rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem !important;
    }
    
    /* Buttons responsive */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Cards responsive */
    .ilan-card, .feature-card {
        margin-bottom: 15px;
    }
    
    /* Filters responsive */
    .form-control, .form-select {
        font-size: 14px;
    }
}

@media (max-width: 400px) {
    .hero-section .display-4 {
        font-size: 1.6rem;
    }
    
    .hero-section .lead {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        padding: 0.8rem;
    }
    
    .hero-stats h3 {
        font-size: 1.3rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem !important;
    }
}

/* Pagination Styling */
.pagination {
    margin: 0;
}

.pagination .page-link {
    color: var(--primary-green);
    border: 2px solid transparent;
    border-radius: 12px;
    margin: 0 4px;
    font-weight: 600;
    padding: 12px 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pagination .page-link:hover {
    color: white;
    background: var(--gradient-primary);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.pagination .page-item.active .page-link {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-green);
    box-shadow: var(--shadow-md);
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background: #f8f9fa;
    border-color: #dee2e6;
}

.pagination-lg .page-link {
    font-size: 1.1rem;
    padding: 14px 22px;
}

/* Dashboard Modal Styling */
.modal-xl {
    max-width: 1200px;
}

#isverenDashboardModal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

#isverenDashboardModal .card {
    transition: all 0.3s ease;
}

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

#isverenDashboardModal .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
}

#isverenDashboardModal .btn-sm {
    padding: 6px 12px;
    font-size: 0.875rem;
    border-radius: 8px;
}

/* İş veren ilan kartları */
.border-warning {
    border-color: var(--warning-amber) !important;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.border-warning .card-header {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
}

/* Loading state için dashboard */
#isverenIlanlarLoading .loading {
    width: 40px;
    height: 40px;
    border-width: 4px;
}

/* Responsive Dashboard */
@media (max-width: 768px) {
    .modal-xl {
        max-width: 95%;
        margin: 10px auto;
    }
    
    #isverenDashboardModal .modal-body {
        padding: 15px;
        max-height: 60vh;
    }
    
    #isverenDashboardModal .d-flex.gap-2 {
        flex-direction: column;
        gap: 8px !important;
    }
    
    #isverenDashboardModal .flex-fill {
        width: 100%;
    }
    
    .pagination-lg .page-link {
        font-size: 1rem;
        padding: 10px 16px;
    }
}

@media (max-width: 576px) {
    .pagination {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .pagination .page-link {
        margin: 2px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .pagination-lg .page-link {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

/* Pasif İlan Stilleri */
.inactive-ilan {
    opacity: 0.75;
    filter: grayscale(20%);
    position: relative;
}

.inactive-ilan::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(148, 163, 184, 0.1);
    pointer-events: none;
    border-radius: 15px;
}

.inactive-ilan .ilan-header {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-bottom: 1px solid #cbd5e1;
}

.inactive-ilan .ucret-badge {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%);
    color: white;
}

.inactive-ilan .lokasyon-badge {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
    color: white;
}

.badge-inactive {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
}

.alert-sm {
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    font-size: 0.875rem;
}

.inactive-ilan:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    opacity: 0.85;
}

.inactive-ilan .card-footer .btn:disabled {
    background: #94a3b8;
    color: white;
    cursor: not-allowed;
    opacity: 0.8;
}

/* Form control ve diğer elementler */
.ilan-card:hover i {
    transform: scale(1.1);
    color: var(--primary-green);
}

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

/* Blog Section */
#blog {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

#blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(5, 150, 105, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Blog Slider Container */
.blog-slider-container {
    position: relative;
    overflow: visible !important;
    z-index: 100;
    margin: 0 50px;
}

.blog-slider-wrapper {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 24px;
    padding: 4px;
}

/* Blog Cards */
.blog-slider-card {
    flex: 0 0 calc(33.333% - 16px);
    min-height: 380px;
}

.blog-card {
    background: white;
    border: none;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.2);
}

.blog-card .card-header {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.blog-card .card-header::after {
    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;
}

.blog-card:hover .card-header::after {
    left: 100%;
}

.blog-card .card-body {
    padding: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.blog-card .card-footer {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border: none;
    padding: 16px 24px;
}

.blog-card .badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 500;
    margin-right: 6px;
    margin-bottom: 4px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.blog-card:hover .badge {
    background: rgba(34, 197, 94, 0.2);
    transform: scale(1.05);
}

/* Blog Navigation Buttons */
.blog-slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 101;
    transform: translateY(-50%);
}

.blog-nav-btn {
    background: white;
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-green);
    font-size: 18px;
    pointer-events: auto;
    position: absolute;
    transform: translateY(-50%);
}

.blog-nav-prev {
    left: -25px;
}

.blog-nav-next {
    right: -25px;
}

.blog-nav-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

.blog-nav-btn:disabled {
    background: #f1f5f9;
    border-color: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    transform: translateY(-50%) scale(0.9);
    opacity: 0.7;
}

.blog-nav-btn:disabled:hover {
    background: #f1f5f9;
    color: #94a3b8;
    transform: translateY(-50%) scale(0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Blog Indicators */
.blog-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.blog-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-indicator.active {
    background: var(--primary-green);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.blog-indicator:hover {
    background: var(--primary-green-light);
    transform: scale(1.1);
}

/* Blog Search */
#blogSearchInput {
    border-radius: 12px 0 0 12px;
    border: 2px solid #e2e8f0;
    padding: 12px 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

#blogSearchInput:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.input-group .btn {
    border-radius: 0 12px 12px 0;
    border: 2px solid var(--primary-green);
    border-left: none;
}

/* Blog Modal Enhancements */
#blogPostModal .modal-content {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

#blogPostModal .modal-header {
    background: var(--gradient-primary);
    padding: 24px;
}

#blogPostModal .modal-body {
    padding: 32px;
    max-height: 70vh;
    overflow-y: auto;
    line-height: 1.8;
}

#blogPostModal .modal-body h3 {
    color: var(--primary-green);
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
}

#blogPostModal .modal-body h4 {
    color: var(--primary-green-dark);
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
}

#blogPostModal .modal-body h5 {
    color: var(--secondary-green);
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

#blogPostModal .modal-body p {
    margin-bottom: 16px;
    color: #475569;
}

#blogPostModal .modal-body ul, 
#blogPostModal .modal-body ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

#blogPostModal .modal-body li {
    margin-bottom: 8px;
    color: #475569;
}

#blogPostModal .modal-body blockquote {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left: 4px solid var(--primary-green);
    padding: 20px;
    margin: 24px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    position: relative;
}

#blogPostModal .modal-body blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 48px;
    color: var(--primary-green);
    opacity: 0.3;
}

#blogPostModal .modal-body .alert {
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: none;
    position: relative;
}

#blogPostModal .modal-body .alert h5 {
    margin-top: 0;
    font-weight: 700;
}

#blogPostModal .modal-body .alert-warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    color: #d97706;
}

#blogPostModal .modal-body .alert-success {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #059669;
}

#blogPostModal .modal-body .alert-info {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #0369a1;
}

/* Related Posts Styling */
#relatedPosts .card {
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e2e8f0;
}

#relatedPosts .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.15);
    border-color: var(--primary-green);
}

/* Responsive Design */
@media (max-width: 992px) {
    .blog-slider-card {
        flex: 0 0 calc(50% - 12px);
    }
    
    .blog-slider-container {
        margin: 0 40px;
    }
    
    .blog-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .blog-nav-prev {
        left: -22px;
    }
    
    .blog-nav-next {
        right: -22px;
    }
}

@media (max-width: 768px) {
    .blog-slider-card {
        flex: 0 0 100%;
    }
    
    .blog-slider-container {
        margin: 0 30px;
    }
    
    .blog-slider-track {
        gap: 16px;
    }
    
    .blog-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .blog-nav-prev {
        left: -20px;
    }
    
    .blog-nav-next {
        right: -20px;
    }
    
    #blogPostModal .modal-body {
        padding: 20px;
        font-size: 15px;
    }
    
    #blogPostModal .modal-body h3 {
        font-size: 1.3rem;
    }
    
    #blogPostModal .modal-body h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .blog-slider-container {
        margin: 0 20px;
    }
    
    .blog-nav-prev {
        left: -15px;
    }
    
    .blog-nav-next {
        right: -15px;
    }
    
    .blog-card .card-header,
    .blog-card .card-body,
    .blog-card .card-footer {
        padding: 16px;
    }
    
    #blog .display-5 {
        font-size: 1.8rem;
    }
    
    #blog .lead {
        font-size: 1rem;
        color: #6c757d;
    }
}

/* Loading Animation for Blog */
.loading {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f4f6;
    border-top: 4px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

/* Blog Card Hover Effects */
.blog-card .card-title {
    transition: color 0.3s ease;
}

.blog-card:hover .card-title {
    color: white;
}

.blog-card .btn {
    transition: all 0.3s ease;
}

.blog-card:hover .btn-success {
    background: white;
    color: var(--primary-green);
    border-color: white;
    transform: translateX(5px);
}

/* Blog Empty State */
#blogEmptyState .alert {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #93c5fd;
    border-radius: 16px;
    color: #1e40af;
}

#blogEmptyState .alert h5 {
    color: #1e3a8a;
    font-weight: 700;
}

/* Blog Section Title Animation */
#blog h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

#blog .lead {
    font-size: 1rem;
    color: #6c757d;
}

/* ==================== HARITA STYLES ==================== */

/* Harita Genel Stilleri */
#jobsMap, #locationPickerMap {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.map-popup {
    text-align: center;
    min-width: 200px;
}

.map-popup h6 {
    color: #28a745;
    margin-bottom: 8px;
    font-weight: 600;
}

.map-popup p {
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.map-popup .btn {
    margin-top: 8px;
}

/* Harita Container Stilleri */
#mapViewContainer .card {
    border: 2px solid #e3f2fd;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

#mapViewContainer .card-header {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-bottom: none;
}

/* Konum Seçici Modal Stilleri */
#locationPickerModal .modal-content {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#locationPickerModal .modal-header {
    background: linear-gradient(135deg, #17a2b8, #138496);
    border-radius: 12px 12px 0 0;
}

#selectedCoordinates .alert {
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
}

/* Yakınımdaki İşler Buton Stilleri */
.btn-outline-primary:hover {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-color: #007bff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Harita Toggle Butonu */
.btn-outline-secondary:hover {
    background: linear-gradient(135deg, #6c757d, #545b62);
    border-color: #6c757d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

/* Konum Seçimi Bilgi Alanı */
#selectedLocationInfo {
    animation: slideInUp 0.3s ease;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border-radius: 6px;
    padding: 8px 12px;
    border-left: 4px solid #28a745;
}

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

/* Leaflet Marker Cluster Özelleştirmeleri */
.leaflet-div-icon {
    background: transparent;
    border: none;
}

/* Harita Responsive */
@media (max-width: 768px) {
    #jobsMap, #locationPickerMap {
        height: 300px !important;
    }
    
    .map-popup {
        min-width: 150px;
    }
    
    .map-popup h6 {
        font-size: 0.9rem;
    }
    
    .map-popup p {
        font-size: 0.8rem;
    }
    
    #mapViewContainer .card-header h5 {
        font-size: 1rem;
    }
    
    .btn-outline-primary,
    .btn-outline-secondary {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
}

@media (max-width: 576px) {
    #jobsMap {
        height: 250px !important;
    }
    
    #locationPickerMap {
        height: 250px !important;
    }
    
    .map-popup {
        min-width: 120px;
        font-size: 0.8rem;
    }
    
    .leaflet-popup-content {
        margin: 8px 10px;
    }
}

/* İş Konum Popup Stilleri */
.job-location-popup {
    text-align: center;
    min-width: 220px;
}

.job-location-popup h6 {
    color: #28a745;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1rem;
}

.job-location-popup p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.job-location-popup small {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
}

.job-location-popup small.text-success {
    background-color: #d4edda;
    color: #155724;
}

.job-location-popup small.text-warning {
    background-color: #fff3cd;
    color: #856404;
}

/* İş Konum Modal Stilleri */
#jobLocationModal .modal-content {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#jobLocationModal .modal-header {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 12px 12px 0 0;
}

#jobLocationInfo .alert {
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #e7f3ff, #d6edff);
}

#jobLocationInfo h6 {
    color: #28a745;
    font-weight: 600;
}

/* Konum Gör Butonu Animasyonu */
.btn-outline-info {
    transition: all 0.3s ease;
}

.btn-outline-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
}

/* Tab Sistemi İyileştirmeleri */
.nav-pills .nav-link {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    font-weight: 600;
    padding: 16px 24px;
    margin: 0 8px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-pills .nav-link:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-pills .nav-link.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-green);
    box-shadow: var(--shadow-lg);
}

.nav-pills .nav-link small {
    margin-top: 4px;
    opacity: 0.8;
    font-size: 0.7rem;
}

/* İşçi İlan Formu İyileştirmeleri */
#isciAuthWarning {
    border-left: 4px solid #ffc107;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
}

#workerNotAuthInfo .alert {
    border: 2px dashed #17a2b8;
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
}

/* Responsive Tab Sistemi */
@media (max-width: 768px) {
    .nav-pills .nav-link {
        margin: 4px 0;
        padding: 12px 16px;
        min-height: 60px;
        font-size: 0.9rem;
    }
    
    .nav-pills .nav-link small {
        font-size: 0.65rem;
    }
}