/* CheckVisa.org Ana CSS */

/* Genel Stiller */
body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

a {
    color: #0d6efd;
    text-decoration: none;
}

a:hover {
    color: #0a58ca;
    text-decoration: underline;
}

/* Header ve Navigasyon */
.navbar-brand {
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

/* Kartlar */
.card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Features */
.features .card-body {
    padding: 2rem;
}

.features .fas {
    color: #0d6efd;
}

/* Adımlar */
.step {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #0d6efd;
    color: white;
    border-radius: 50%;
    margin-bottom: 1rem;
    font-weight: bold;
}

/* Testimonials */
.testimonial-avatar img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

/* Forms */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.login-form, .register-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* Dashboard */
.dashboard-header {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1.5rem;
}

.dashboard-header h1 {
    margin-bottom: 0;
}

.dashboard-card {
    height: 100%;
}

.dashboard-card .card-header {
    font-weight: 600;
}

.dashboard-stats {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dashboard-stats-label {
    font-size: 0.875rem;
    color: #6c757d;
}

/* Status Indicators */
.status-pill {
    padding: 0.25rem 0.75rem;
    border-radius: 50rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.status-pending {
    background-color: #ffc107;
    color: #212529;
}

.status-searching {
    background-color: #0dcaf0;
    color: #212529;
}

.status-found {
    background-color: #198754;
    color: white;
}

.status-booked {
    background-color: #6f42c1;
    color: white;
}

.status-completed {
    background-color: #20c997;
    color: white;
}

.status-cancelled {
    background-color: #dc3545;
    color: white;
}

/* Subscription Plans */
.pricing .card-header {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Telegram Bot Connection */
.telegram-connect {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.telegram-connect .btn {
    margin-top: 1rem;
}

.telegram-bot-icon {
    color: #0088cc;
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    margin-top: 3rem;
}

.social-links a {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .dashboard-stats {
        font-size: 1.5rem;
    }
}
