/* ============================================
   TRANSPORTI — CLEAN PROFESSIONAL GREEN
   index.php არ იცვლება, მხოლოდ CSS
   ============================================ */

/* Hero — თეთრი-მწვანე, სუფთა */
.hero {
    background: linear-gradient(165deg, #064E3B 0%, #065F46 40%, #047857 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 50% at 20% 40%, rgba(16,185,129,0.12), transparent),
        radial-gradient(ellipse 40% 40% at 75% 60%, rgba(6,78,59,0.3), transparent);
    pointer-events: none;
}

.hero h1 span {
    background: linear-gradient(135deg, #34D399, #6EE7B7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-badge {
    background: rgba(52,211,153,0.1);
    color: #6EE7B7;
    border: 1px solid rgba(52,211,153,0.2);
}

.hero-badge .pulse-dot { background: #34D399; }

/* Hero card — glass green */
.hero-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 28px;
}

.hero-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 20px;
}

.hero-stat:hover {
    background: rgba(255,255,255,0.09);
    transform: translateY(-3px);
    border-color: rgba(52,211,153,0.2);
}

.hero-stat .stat-num { color: #fff; font-size: 1.4rem; }
.hero-stat .stat-label { color: rgba(255,255,255,0.45); }

/* Stat icons */
.stat-blue { background: rgba(52,211,153,0.12); color: #34D399; }
.stat-green { background: rgba(110,231,183,0.12); color: #6EE7B7; }
.stat-orange { background: rgba(251,191,36,0.12); color: #FBBF24; }
.stat-purple { background: rgba(167,139,250,0.12); color: #A78BFA; }

/* Buttons */
.btn-primary {
    background: #10B981;
    box-shadow: 0 4px 20px rgba(16,185,129,0.3);
}

.btn-primary:hover {
    background: #059669;
    box-shadow: 0 6px 28px rgba(16,185,129,0.4);
}

.btn-outline {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(52,211,153,0.4);
}

/* Section labels */
.section-label { background: #ECFDF5; color: #059669; }

/* Report banner */
.report-banner { background: linear-gradient(135deg, #064E3B, #065F46); }
.report-banner::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at 50% 50%, rgba(16,185,129,0.12), transparent); }

/* ===== ROUTES ===== */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 20px;
}

.route-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.route-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10B981, #34D399);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.route-card:hover {
    box-shadow: 0 8px 32px rgba(16,185,129,0.08);
    transform: translateY(-3px);
    border-color: #D1FAE5;
}

.route-card:hover::before { opacity: 1; }

.route-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.route-number { display: flex; align-items: center; gap: 10px; }

.route-num-badge {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem; font-weight: 800; color: white;
}

.route-num-badge.c-blue { background: linear-gradient(135deg, #10B981, #34D399); }
.route-num-badge.c-green { background: linear-gradient(135deg, #059669, #10B981); }
.route-num-badge.c-orange { background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.route-num-badge.c-purple { background: linear-gradient(135deg, #6366F1, #818CF8); }
.route-num-badge.c-red { background: linear-gradient(135deg, #EF4444, #F87171); }
.route-num-badge.c-teal { background: linear-gradient(135deg, #0D9488, #2DD4BF); }

.route-name { font-weight: 700; font-size: 1rem; color: #064E3B; }
.route-type { font-size: 0.75rem; color: #9CA3AF; }

.route-status { padding: 4px 12px; border-radius: 100px; font-size: 0.7rem; font-weight: 600; }
.route-status.active { background: #ECFDF5; color: #059669; }
.route-status.inactive { background: #FEF3C7; color: #D97706; }

.route-path {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 0;
    border-top: 1px solid #F3F4F6;
    border-bottom: 1px solid #F3F4F6;
    margin-bottom: 14px;
}

.route-endpoint { flex: 1; text-align: center; }
.route-endpoint .ep-label { font-size: 0.65rem; color: #9CA3AF; text-transform: uppercase; letter-spacing: 0.05em; }
.route-endpoint .ep-name { font-size: 0.85rem; font-weight: 600; color: #064E3B; }
.route-arrow { color: #10B981; font-size: 0.9rem; }

.route-meta { display: flex; gap: 16px; flex-wrap: wrap; }
.route-meta-item { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: #6B7280; }
.route-meta-item i { color: #D1D5DB; font-size: 0.75rem; }

/* ===== SCHEDULE ===== */
.schedule-tabs {
    display: flex; gap: 4px;
    background: #F3F4F6;
    padding: 4px; border-radius: 14px;
    max-width: 400px; margin: 0 auto 36px;
}

.schedule-tab {
    flex: 1; padding: 10px 20px; border-radius: 10px;
    border: none; background: transparent; font-family: inherit;
    font-size: 0.85rem; font-weight: 600; color: #6B7280;
    cursor: pointer; transition: all 0.2s ease;
}

.schedule-tab.active {
    background: white;
    color: #059669;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.schedule-content { display: none; }
.schedule-content.active { display: block; }

.route-label { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.route-dot { width: 10px; height: 10px; border-radius: 50%; }

/* ===== STOPS ===== */
.stops-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

.stop-item {
    display: flex; align-items: center; gap: 12px;
    background: white; padding: 14px 18px;
    border-radius: 14px; border: 1px solid #F3F4F6;
    transition: all 0.2s ease;
}

.stop-item:hover { border-color: #10B981; box-shadow: 0 4px 16px rgba(16,185,129,0.06); }

.stop-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: #ECFDF5; color: #059669;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; flex-shrink: 0;
}

.stop-name { font-size: 0.85rem; font-weight: 600; color: #064E3B; }
.stop-routes { font-size: 0.7rem; color: #9CA3AF; margin-top: 1px; }

/* ===== CONTACT ===== */
.contact-card:hover {
    border-color: #D1FAE5;
    box-shadow: 0 8px 32px rgba(16,185,129,0.06);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .routes-grid { grid-template-columns: 1fr; }
    .stops-list { grid-template-columns: 1fr; }
}