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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #f8fafc;
    color: #0f172a;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* NAVBAR */

.navbar {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.brand h2 {
    font-size: 20px;
}

.brand span {
    font-size: 11px;
    color: #64748b;
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    font-size: 14px;
}

nav a:hover {
    color: #2563eb;
}

.login-link {
    margin-left: 10px;
}

.nav-button {
    background: #2563eb;
    color: white !important;
    padding: 11px 18px;
    border-radius: 9px;
}


/* HERO */

.hero {
    background:
        radial-gradient(circle at top right, #dbeafe, transparent 35%),
        linear-gradient(135deg, #f8fafc, #eff6ff);

    padding: 90px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.badge {
    display: inline-block;
    background: #dbeafe;
    color: #1d4ed8;
    padding: 9px 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.08;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero h1 span {
    color: #2563eb;
    display: block;
}

.hero-content > p {
    color: #64748b;
    max-width: 620px;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 44px;
}

.primary-button,
.secondary-button {
    padding: 15px 23px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
}

.primary-button {
    background: #2563eb;
    color: white;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.primary-button:hover {
    background: #1d4ed8;
}

.secondary-button {
    border: 1px solid #cbd5e1;
    color: #334155;
    background: white;
}

.hero-stats {
    display: flex;
    gap: 45px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-size: 18px;
}

.hero-stats span {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
}


/* PASS CARD */

.pass-card {
    background: linear-gradient(145deg, #0f172a, #1e3a8a);
    border-radius: 24px;
    padding: 30px;
    color: white;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.25);
    transform: rotate(2deg);
}

.pass-card:hover {
    transform: rotate(0deg) translateY(-5px);
    transition: 0.3s;
}

.card-top,
.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-top span {
    font-size: 10px;
    letter-spacing: 2px;
    color: #bfdbfe;
}

.card-top h3 {
    margin-top: 4px;
    font-size: 24px;
}

.bus-icon {
    font-size: 34px;
}

.pass-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 40px 0;
}

.profile-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.pass-user small,
.pass-details small,
.card-bottom small {
    color: #bfdbfe;
    font-size: 9px;
    letter-spacing: 1px;
}

.pass-user p {
    color: #bfdbfe;
    font-size: 12px;
    margin-top: 4px;
}

.pass-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pass-details div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-bottom {
    margin-top: 23px;
}

.card-bottom div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.qr {
    font-size: 40px;
}


/* FEATURES */

.features {
    padding: 95px 0;
    background: white;
}

.section-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 55px;
}

.section-heading span {
    color: #2563eb;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 800;
}

.section-heading h2 {
    font-size: 38px;
    margin: 13px 0;
}

.section-heading p {
    color: #64748b;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: white;
    transition: 0.25s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}


/* HOW IT WORKS */

.how-it-works {
    padding: 95px 0;
    background: #f8fafc;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.step {
    width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: 800;
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.step-line {
    width: 130px;
    height: 2px;
    background: #cbd5e1;
    margin-top: 30px;
}


/* FOOTER */

footer {
    background: #0f172a;
    color: white;
    padding: 35px 0;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-container p {
    color: #94a3b8;
    font-size: 13px;
    margin-top: 5px;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    nav a:not(.nav-button) {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 43px;
    }

    .pass-card {
        transform: none;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .step-line {
        display: none;
    }
}


@media (max-width: 600px) {

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .pass-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* =================================
   AUTHENTICATION PAGES
================================= */

.auth-body {
    margin: 0;
    min-height: 100vh;
    background: #f8fafc;
}

.auth-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}


/* LEFT SIDE */

.auth-left {
    background:
        radial-gradient(circle at top left,
        rgba(59, 130, 246, 0.28),
        transparent 35%),
        linear-gradient(145deg, #0f172a, #172554);

    color: white;
    padding: 55px 9%;
    display: flex;
    flex-direction: column;
}

.auth-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
}

.auth-brand h2 {
    font-size: 21px;
}

.auth-brand span {
    color: #bfdbfe;
    font-size: 11px;
}

.auth-intro {
    margin: auto 0;
    max-width: 520px;
}

.auth-badge {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(59, 130, 246, 0.16);
    border: 1px solid rgba(147, 197, 253, 0.2);
    color: #bfdbfe;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.auth-intro h1 {
    font-size: 48px;
    line-height: 1.12;
    letter-spacing: -1.5px;
}

.auth-intro h1 span {
    display: block;
    color: #60a5fa;
}

.auth-intro > p {
    margin-top: 22px;
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 15px;
    max-width: 460px;
}

.auth-benefits {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.auth-benefits div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-benefits span {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.18);
    color: #93c5fd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
}

.auth-benefits p {
    color: #e2e8f0;
    font-size: 14px;
}


/* RIGHT SIDE */

.auth-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 55px 30px;
    background: #f8fafc;
}

.auth-form-card {
    width: 100%;
    max-width: 470px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.08);
}

.auth-form-heading {
    margin-bottom: 28px;
}

.auth-form-heading h2 {
    font-size: 30px;
    margin-bottom: 8px;
}

.auth-form-heading p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}


/* FORM */

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
}

.form-group input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #cbd5e1;
    border-radius: 9px;
    outline: none;
    font-family: inherit;
    font-size: 14px;
    transition: 0.2s;
}

.form-group input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
}

.auth-submit {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 9px;
    background: #2563eb;
    color: white;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    margin-top: 5px;
}

.auth-submit:hover {
    background: #1d4ed8;
}

.auth-login-text {
    text-align: center;
    margin-top: 22px;
    color: #64748b;
    font-size: 13px;
}

.auth-login-text a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
}

.auth-security {
    text-align: center;
    color: #94a3b8;
    font-size: 11px;
    margin-top: 20px;
}


/* AUTH RESPONSIVE */

@media (max-width: 850px) {

    .auth-page {
        grid-template-columns: 1fr;
    }

    .auth-left {
        min-height: 420px;
        padding: 40px 7%;
    }

    .auth-intro {
        margin-top: 70px;
    }

    .auth-intro h1 {
        font-size: 38px;
    }

    .auth-right {
        padding: 40px 20px;
    }
}

/* =====================================
   CLOUDPASS DASHBOARD
===================================== */

.dashboard-body {
    margin: 0;
    background: #f6f8fc;
    color: #0f172a;
}

.dashboard-layout {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 255px 1fr;
}


/* SIDEBAR */

.dashboard-sidebar {
    height: 100vh;
    position: sticky;
    top: 0;
    background: #0f172a;
    color: white;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
}

.dashboard-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: white;
    padding: 0 8px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.dashboard-logo h2 {
    font-size: 18px;
    margin: 0;
}

.dashboard-logo span {
    color: #94a3b8;
    font-size: 9px;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 28px;
}

.dashboard-nav a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 15px;
    border-radius: 9px;
    text-decoration: none;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    transition: 0.2s;
}

.dashboard-nav a span {
    width: 20px;
    text-align: center;
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
    color: white;
    background: #2563eb;
}

.sidebar-bottom {
    margin-top: auto;
}

.sidebar-security {
    display: flex;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 13px;
    border-radius: 10px;
    margin-bottom: 14px;
}

.sidebar-security strong {
    display: block;
    font-size: 10px;
}

.sidebar-security p {
    color: #64748b;
    font-size: 9px;
    margin-top: 3px;
}

.logout-link {
    display: block;
    padding: 12px 14px;
    text-decoration: none;
    color: #fca5a5;
    font-size: 12px;
    font-weight: 600;
}


/* MAIN */

.dashboard-main {
    padding: 38px 4%;
    max-width: 1500px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.dashboard-small-title {
    color: #2563eb !important;
    font-size: 10px !important;
    font-weight: 800;
    letter-spacing: 1.4px;
    margin-bottom: 7px;
}

.dashboard-header h1 {
    font-size: 28px;
    margin: 0 0 6px;
}

.dashboard-header > div > p {
    color: #64748b;
    font-size: 13px;
}

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 9px 13px;
    border: 1px solid #e2e8f0;
    border-radius: 11px;
}

.user-avatar {
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dbeafe;
    color: #1d4ed8;
    font-weight: 800;
    border-radius: 9px;
}

.dashboard-user strong,
.dashboard-user span {
    display: block;
}

.dashboard-user strong {
    font-size: 11px;
}

.dashboard-user span {
    color: #94a3b8;
    font-size: 9px;
    margin-top: 2px;
}


/* STAT CARDS */

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
    margin-bottom: 20px;
}

.stat-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 13px;
    padding: 19px;
    display: flex;
    gap: 14px;
    align-items: center;
}

.stat-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 800;
}

.stat-card span {
    color: #64748b;
    font-size: 10px;
}

.stat-card h3 {
    font-size: 16px;
    margin: 3px 0;
}

.stat-card p {
    color: #94a3b8;
    font-size: 9px;
}


/* PANELS */

.dashboard-content-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr;
    gap: 20px;
}

.dashboard-panel {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 22px;
}

.panel-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.panel-heading span {
    color: #2563eb;
    font-size: 9px;
    letter-spacing: 1px;
    font-weight: 800;
}

.panel-heading h2 {
    margin-top: 3px;
    font-size: 18px;
}

.status-badge {
    background: #f1f5f9;
    color: #64748b !important;
    padding: 7px 10px;
    border-radius: 20px;
}


/* DIGITAL PASS */

.digital-pass-dashboard {
    max-width: 520px;
    min-height: 270px;
    border-radius: 17px;
    padding: 25px;
    color: white;
    background:
        radial-gradient(circle at top right,
        rgba(59,130,246,0.32), transparent 30%),
        linear-gradient(145deg, #111827, #172554);
    box-shadow: 0 18px 35px rgba(15,23,42,0.15);
}

.pass-top {
    display: flex;
    justify-content: space-between;
}

.pass-top small,
.pass-holder small,
.pass-info-grid small {
    color: #93a4bd;
    font-size: 8px;
    letter-spacing: 1px;
}

.pass-top h3 {
    margin-top: 3px;
}

.pass-holder {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 36px 0;
}

.pass-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(59,130,246,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.pass-holder h3 {
    font-size: 14px;
    margin: 2px 0;
}

.pass-holder p {
    color: #94a3b8;
    font-size: 9px;
}

.pass-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.pass-info-grid strong {
    display: block;
    margin-top: 4px;
    font-size: 11px;
}

.pass-qr-placeholder {
    text-align: right;
    font-size: 25px;
}


/* QUICK ACTIONS */

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.quick-action {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 11px;
    padding: 13px;
    text-decoration: none;
    color: #0f172a;
    transition: 0.2s;
}

.quick-action:hover {
    border-color: #93c5fd;
    transform: translateY(-1px);
}

.quick-action > div {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-action strong,
.quick-action span {
    display: block;
}

.quick-action strong {
    font-size: 11px;
}

.quick-action span {
    color: #94a3b8;
    font-size: 9px;
    margin-top: 3px;
}

.quick-action b {
    color: #94a3b8;
}

.primary-action {
    background: #eff6ff;
    border-color: #bfdbfe;
}


/* ACTIVITY */

.activity-panel {
    margin-top: 20px;
}

.empty-activity {
    text-align: center;
    padding: 30px;
}

.empty-activity > div {
    font-size: 28px;
}

.empty-activity h3 {
    font-size: 13px;
    margin: 8px 0 4px;
}

.empty-activity p {
    color: #94a3b8;
    font-size: 10px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .dashboard-layout {
        grid-template-columns: 80px 1fr;
    }

    .dashboard-logo div:last-child,
    .dashboard-nav a:not(.active) {
        font-size: 0;
    }

    .dashboard-nav a {
        justify-content: center;
    }

    .sidebar-security,
    .logout-link {
        font-size: 0;
    }

    .dashboard-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {

    .dashboard-layout {
        display: block;
    }

    .dashboard-sidebar {
        display: none;
    }

    .dashboard-header {
        align-items: flex-start;
    }

    .dashboard-user {
        display: none;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-main {
        padding: 25px 18px;
    }
}

/* =====================================
   PASS VERIFICATION PAGE
===================================== */

.verify-body {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at top,
        rgba(37, 99, 235, 0.16),
        transparent 35%),
        #f8fafc;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.verify-container {
    width: 100%;
    max-width: 650px;
}

.verify-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 42px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.10);
}

.verify-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.verify-label {
    color: #2563eb;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 7px;
}

.verify-card h1 {
    font-size: 30px;
    margin-bottom: 8px;
}

.verify-subtitle {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 30px;
}

.verify-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    text-align: left;
    margin-bottom: 30px;
}

.verify-details div {
    border: 1px solid #e2e8f0;
    border-radius: 11px;
    padding: 15px;
    background: #f8fafc;
}

.verify-details span {
    display: block;
    color: #64748b;
    font-size: 10px;
    margin-bottom: 5px;
}

.verify-details strong {
    font-size: 13px;
}

.verified-status {
    color: #16a34a;
}

.verify-home {
    display: inline-block;
}

@media (max-width: 600px) {

    .verify-details {
        grid-template-columns: 1fr;
    }

    .verify-card {
        padding: 28px 20px;
    }
}

.pass-qr-image {
    width: 75px;
    height: 75px;
    object-fit: contain;
    background: white;
    padding: 5px;
    border-radius: 7px;
}

.pass-validity-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 15px;
}

.pass-validity-info div {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px;
}

.pass-validity-info span {
    display: block;
    color: #64748b;
    font-size: 9px;
    margin-bottom: 4px;
}

.pass-validity-info strong {
    font-size: 12px;
}

.pass-validity-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 18px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 520px;
}

.pass-validity-info > div {
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.pass-validity-info span {
    display: block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 5px;
}

.pass-validity-info strong {
    font-size: 15px;
    font-weight: 600;
}

.expired-icon {
    background: #fee2e2;
}

.expired-status {
    color: #dc2626;
}

/* ==================================================
   ROUTES & FARES PAGE
================================================== */

.routes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.route-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: 0.3s ease;
}

.route-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.route-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border-radius: 14px;
    font-size: 24px;
    flex-shrink: 0;
}

.route-card span {
    color: #2563eb;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.route-card h3 {
    margin: 6px 0;
    color: #111827;
    font-size: 17px;
}

.route-card p {
    margin: 0;
    color: #6b7280;
    font-size: 13px;
}


/* Fare Section */

.fare-section {
    margin-top: 25px;
}

.fare-table-wrapper {
    margin-top: 24px;
    overflow-x: auto;
}

.fare-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
}

.fare-table th {
    padding: 16px 20px;
    text-align: left;
    background: #f8fafc;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fare-table td {
    padding: 18px 20px;
    border-top: 1px solid #e5e7eb;
    color: #111827;
    font-weight: 600;
}

.fare-table td:first-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fare-table td:first-child span {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 400;
}


/* Smart Fare Information */

.fare-note-panel {
    margin-top: 25px;
    margin-bottom: 30px;
}

.fare-note {
    display: flex;
    align-items: center;
    gap: 18px;
}

.fare-note-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    border-radius: 14px;
    font-size: 24px;
    flex-shrink: 0;
}

.fare-note h3 {
    margin: 0 0 5px;
    color: #111827;
}

.fare-note p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
}

.fare-note .primary-button {
    margin-left: auto;
    white-space: nowrap;
}


/* Responsive */

@media (max-width: 900px) {

    .routes-grid {
        grid-template-columns: 1fr;
    }

    .fare-note {
        flex-direction: column;
        align-items: flex-start;
    }

    .fare-note .primary-button {
        margin-left: 0;
    }
}

/* =====================================
   APPLY PASS PAGE
===================================== */

.pass-application-form {
    width: 100%;
    max-width: 900px;
    margin-top: 10px;
}

.application-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.pass-application-form .form-group {
    margin-bottom: 0;
}

.pass-application-form .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
}

.pass-application-form .form-group select {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background: #ffffff;
    color: #0f172a;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    cursor: pointer;
}

.pass-application-form .form-group select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
}

.fare-preview {
    margin-top: 28px;
    padding: 20px;
    border-radius: 14px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.fare-preview span {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

.fare-preview h2 {
    margin-top: 4px;
    color: #1d4ed8;
    font-size: 28px;
}

.fare-preview p {
    max-width: 420px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

.pass-application-form .auth-submit {
    width: auto;
    min-width: 240px;
    padding: 0 28px;
    margin-top: 24px;
}

@media (max-width: 750px) {

    .application-grid {
        grid-template-columns: 1fr;
    }

    .fare-preview {
        flex-direction: column;
        align-items: flex-start;
    }

    .pass-application-form .auth-submit {
        width: 100%;
    }
}

.fare-summary-left {
    min-width: 180px;
}

.fare-summary-right {
    max-width: 430px;
    padding-left: 22px;
    border-left: 1px solid #bfdbfe;
}

.fare-summary-right span {
    color: #2563eb;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.fare-summary-right p {
    margin-top: 6px;
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 750px) {
    .fare-summary-right {
        padding-left: 0;
        border-left: none;
    }
}

/* =====================================
   PROFILE PAGE
===================================== */

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 8px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.sidebar-logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1d4ed8;
    font-size: 21px;
}

.sidebar-brand h2 {
    margin: 0;
    color: white;
    font-size: 18px;
}

.sidebar-brand p {
    margin: 3px 0 0;
    color: #94a3b8;
    font-size: 9px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 28px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 13px 15px;
    border-radius: 9px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.2s;
}

.sidebar-link span {
    width: 20px;
    text-align: center;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: #2563eb;
    color: white;
}

.sidebar-logout {
    display: block;
    padding: 12px 14px;
    color: #fca5a5;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}


/* PAGE LABEL */

.section-label {
    margin: 0 0 6px;
    color: #2563eb !important;
    font-size: 10px !important;
    font-weight: 800;
    letter-spacing: 1.3px;
}


/* PROFILE CARD */

.profile-card {
    width: 100%;
}

.profile-avatar-section {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px;
    background: linear-gradient(135deg, #eff6ff, #f8fafc);
    border: 1px solid #dbeafe;
    border-radius: 16px;
    margin-bottom: 24px;
}

.profile-avatar {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: #2563eb;
    color: white;
    font-size: 28px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.18);
}

.profile-avatar-section h2 {
    margin: 0;
    color: #0f172a;
    font-size: 22px;
}

.profile-avatar-section p {
    margin: 5px 0 0;
    color: #64748b;
    font-size: 13px;
}


/* PROFILE INFORMATION */

.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.profile-info-item {
    padding: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.profile-info-item span {
    display: block;
    margin-bottom: 6px;
    color: #64748b;
    font-size: 11px;
}

.profile-info-item strong {
    color: #0f172a;
    font-size: 14px;
}

.profile-status {
    color: #16a34a !important;
}


/* PROFILE SECURITY */

.profile-security {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    margin-top: 24px;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 13px;
}

.profile-security-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #dcfce7;
    font-size: 20px;
}

.profile-security h3 {
    margin: 0 0 4px;
    color: #166534;
    font-size: 14px;
}

.profile-security p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
    line-height: 1.6;
}


/* PROFILE RESPONSIVE */

@media (max-width: 700px) {

    .profile-info-grid {
        grid-template-columns: 1fr;
    }

    .profile-avatar-section {
        align-items: flex-start;
    }
}

/* =====================================
   REJECTED PASS MESSAGE
===================================== */

.rejected-pass-message {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: #fff7f7;
    border: 1px solid #fecaca;
    border-radius: 16px;
    margin-top: 18px;
}

.rejected-pass-icon {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fee2e2;
    color: #dc2626;
    font-size: 26px;
    font-weight: 800;
}

.rejected-pass-message span {
    color: #dc2626;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.rejected-pass-message h3 {
    margin: 6px 0;
    color: #991b1b;
    font-size: 19px;
}

.rejected-pass-message p {
    margin: 0 0 16px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

/* ===== ADMIN DATA TABLE ===== */

.applications-table-wrapper {
    margin-top: 24px;
    width: 100%;
    overflow-x: auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 8px;
}

.applications-table {
    width: 100%;
    border-collapse: collapse;
}

.applications-table th {
    text-align: left;
    padding: 16px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.applications-table td {
    padding: 16px 18px;
    font-size: 14px;
    color: #1e293b;
    border-bottom: 1px solid #eef2f7;
}

.applications-table tbody tr:last-child td {
    border-bottom: none;
}

.applications-table tbody tr:hover {
    background: #f8fafc;
}