



        body {
            background-color: #f5f7fa;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }

        .blog-container {
            max-width: 85rem;
        }

        .blog-card {
            border: none;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
        }

        .back-link {
            color: var(--secondary-color);
            text-decoration: none;
            transition: color 0.3s;
        }

        .back-link:hover {
            color: var(--primary-color);
        }

        .article-title {
            font-weight: 700;
            color: #212529;
            margin-bottom: 1.5rem;
        }

        .category-badge {
            background-color: var(--light-bg);
            color: #495057;
            border: none;
            border-radius: 50px;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.3s;
        }

        .category-badge:hover {
            background-color: #e9ecef;
            color: #495057;
        }

        .article-content {
            color: #fbfbfb;
            font-size: 1.125rem;
        }

        .article-content p {
            margin-bottom: 1.5rem;
        }

        .article-image {
            border-radius: var(--border-radius);
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .article-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .image-caption {
            font-size: 0.875rem;
            color: var(--secondary-color);
            text-align: center;
            margin-top: 0.5rem;
        }

        blockquote {
            border-left: 4px solid var(--primary-color);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: #495057;
        }

        .author-card {
            border-radius: var(--border-radius);
            padding: 1.5rem;
            background-color: #0f5132;
            box-shadow: var(--box-shadow);
        }

        .author-avatar {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-name {
            font-weight: 600;
            color: #212529;
            margin-bottom: 0.25rem;
        }

        .author-title {
            font-size: 0.875rem;
            color: var(--secondary-color);
        }

        .related-article {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid #e9ecef;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s;
        }

        .related-article:last-child {
            border-bottom: none;
        }

        .related-article:hover {
            background-color: rgba(0, 0, 0, 0.02);
        }

        .related-article-image {
            width: 5rem;
            height: 5rem;
            border-radius: var(--border-radius);
            object-fit: cover;
            flex-shrink: 0;
        }

        .related-article-title {
            font-weight: 600;
            color: #212529;
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        .action-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--secondary-color);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s;
            border: none;
            background: none;
        }

        .action-btn:hover {
            color: #212529;
        }

        .divider {
            width: 1px;
            height: 1.5rem;
            background-color: #dee2e6;
        }

        .share-dropdown .dropdown-menu {
            min-width: 12rem;
            padding: 0.5rem;
            border: none;
            box-shadow: var(--box-shadow);
            border-radius: var(--border-radius);
        }

        .share-dropdown .dropdown-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            border-radius: 0.5rem;
            color: #6c757d;
            transition: all 0.3s;
        }

        .share-dropdown .dropdown-item:hover {
            background-color: var(--light-bg);
            color: #212529;
        }

        .share-dropdown .dropdown-divider {
            margin: 0.5rem 0;
        }

        @media (min-width: 992px) {
            .sidebar-sticky {
                position: sticky;
                top: 2rem;
            }

            .sidebar-bg {
                background: linear-gradient(to right, var(--light-bg), transparent, transparent);
            }
        }


        .creation-card {
            border: none;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            backdrop-filter: blur(10px);
            background: #156949;
        }

        .step-progress {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-bottom: 2rem;
        }

        .step-progress::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 3px;
            background: #e5e7eb;
            transform: translateY(-50%);
            z-index: 1;
        }

        .step {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #149737;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            color: #ffffff;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .step.active {
            background: #3b20c3;
            color: white;
            transform: scale(1.1);
        }

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

        .form-control, .form-select {
            border-radius: 12px;
            border: 2px solid #e5e7eb;
            padding: 12px 16px;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
        }

        .btn-primary {
            background: var(--primary);
            border: none;
            border-radius: 12px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }



        .distance-badge {
            background: var(--success);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .location-icon {
            color: var(--primary);
            font-size: 1.2em;
        }

        .route-line {
            border-left: 3px dashed var(--primary);
            margin-left: 10px;
            padding-left: 20px;
            margin-top: 10px;
            margin-bottom: 10px;
        }

        .trip-option {
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .trip-option:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .trip-option.selected {
            border-color: var(--primary);
            background: rgba(79, 70, 229, 0.05);
        }

        .time-estimate {
            background: #f8fafc;
            border-radius: 10px;
            padding: 15px;
            border-left: 4px solid var(--success);
        }


        /* Create Ride Section Styles */
.create-ride-section {
    position: relative;
    overflow: hidden;
}

/* Background Shapes */
.ride-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ride-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: ride-float 20s ease-in-out infinite;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 5%;
    animation-delay: 10s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 15%;
    animation-delay: 15s;
}

@keyframes ride-float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-40px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translateY(-20px) rotate(270deg) scale(1.05);
    }
}

/* Floating Vehicles */
.floating-vehicles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.vehicle {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 2rem;
    animation: vehicle-drive 30s linear infinite;
}

.car-1 {
    top: 20%;
    left: -50px;
    animation-delay: 0s;
    animation-duration: 25s;
}

.car-2 {
    top: 50%;
    left: -50px;
    animation-delay: 10s;
    animation-duration: 30s;
}

.car-3 {
    top: 80%;
    left: -50px;
    animation-delay: 5s;
    animation-duration: 35s;
}

@keyframes vehicle-drive {
    0% {
        transform: translateX(-100px) translateY(0);
    }
    25% {
        transform: translateX(25%) translateY(-10px);
    }
    50% {
        transform: translateX(50%) translateY(0);
    }
    75% {
        transform: translateX(75%) translateY(10px);
    }
    100% {
        transform: translateX(calc(100% + 100px)) translateY(0);
    }
}


/* Progress Steps */
.step-progress-wrapper {
    position: relative;
    padding: 2rem 0;
}

.step-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    z-index: 2;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step.active .step-icon {
    background: var(--primary);
    border-color: white;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.3);
    transform: scale(1.1);
}

.step-icon i {
    color: white;
    font-size: 1.2rem;
}

.step-content {
    text-align: center;
}

.step-number {
    display: block;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    margin: 0 auto 0.5rem;
    transition: all 0.3s ease;
}


.step-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.step.active .step-label {
    color: white;
}

.step-connector {
    position: absolute;
    top: 30px;
    left: 60%;
    width: 40%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.step:last-child .step-connector {
    display: none;
}

.step.active ~ .step .step-connector {
    background: rgba(255, 255, 255, 0.1);
}

/* Creation Badge */
.creation-badge {
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Form Styles */
.creation-form-card {
    background: #156949;
    backdrop-filter: blur(30px);
}

.form-section {
    position: relative;
}

.section-header {
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.section-icon {
    width: 40px;
    height: 40px;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-icon i {
    color: var(--primary);
}

/* Form Floating with Icons */
.form-floating {
    position: relative;
}

.form-control, .form-select {
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    padding: 1rem 0.75rem 1rem 3rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    background: white;
    transform: translateY(-2px);
}

.form-floating label {
    padding-left: 3rem;
    color: #6b7280;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    z-index: 5;
    transition: all 0.3s ease;
}

.form-control:focus ~ .form-icon,
.form-select:focus ~ .form-icon {
    color: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

/* Distance Card */
.distance-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.8));
    border-left: 4px solid var(--warning);
    animation: slideInDown 0.5s ease;
}

.distance-icon {
    width: 50px;
    height: 50px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.distance-icon i {
    color: var(--warning);
    font-size: 1.2rem;
}




/* Help Items */
.help-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 12px;
}

.help-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.5);
}

.help-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.help-item:hover .help-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .step-progress {
        flex-direction: column;
        gap: 2rem;
    }

    .step-connector {
        display: none;
    }

    .step {
        flex-direction: row;
        width: 100%;
        text-align: left;
    }

    .step-icon {
        margin-bottom: 0;
        margin-right: 1rem;
    }

    .step-content {
        text-align: left;
        flex-grow: 1;
    }

    .step-number {
        display: inline-block;
        margin: 0 0.5rem 0 0;
    }

    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .creation-form-card .p-4 {
        padding: 1.5rem !important;
    }

    .help-item {
        margin-bottom: 1.5rem;
    }

    .form-control, .form-select {
        padding: 1rem 0.75rem 1rem 2.5rem;
    }

    .form-icon {
        left: 0.75rem;
    }

    .form-floating label {
        padding-left: 2.5rem;
    }
}















        .card {
            border: none;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: var(--transition);
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
        }

        .form-control, .form-select {
            border-radius: 0.5rem;
            padding: 0.75rem 1rem;
            border: 1px solid #dee2e6;
            transition: var(--transition);
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
            transform: scale(1.02);
        }

        .form-label {
            font-weight: 500;
            color: #495057;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn {
            border-radius: 0.5rem;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), #0a58ca);
            border: none;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
        }

        .btn-danger {
            background: linear-gradient(135deg, var(--danger-color), #b02a37);
            border: none;
        }

        .btn-danger:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
        }

        /* Success Alert */
        .alert-success {
            border-radius: 0.5rem;
            border: none;
            background: linear-gradient(135deg, #d1e7dd, #a3cfbb);
            color: #0f5132;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            animation: fadeIn 0.5s ease;
        }

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

        /* Table Styling */
        .table {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 0 0 1px #dee2e6;
        }

        .table thead {
            background: linear-gradient(135deg, var(--primary-color), #0a58ca);
            color: white;
        }

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

        .table tbody tr:hover {
            background-color: rgba(13, 110, 253, 0.05);
            transform: translateX(5px);
        }

        /* Input Groups with Icons */
        .input-group-icon {
            position: relative;
        }

        .input-group-icon .form-control {
            padding-left: 2.5rem;
        }

        .input-group-icon i {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-color);
            z-index: 5;
        }

        /* Stop Counter */
        .stop-counter {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
            color: var(--primary-color);
            background: rgba(13, 110, 253, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
        }

        /* Map Preview */
        .map-preview {
            height: 150px;
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .map-preview::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(90deg, transparent 24%, rgba(255,255,255,0.5) 25%, rgba(255,255,255,0.5) 26%, transparent 27%, transparent 74%, rgba(255,255,255,0.5) 75%, rgba(255,255,255,0.5) 76%, transparent 77%, transparent),
                linear-gradient(0deg, transparent 24%, rgba(255,255,255,0.5) 25%, rgba(255,255,255,0.5) 26%, transparent 27%, transparent 74%, rgba(255,255,255,0.5) 75%, rgba(255,255,255,0.5) 76%, transparent 77%, transparent);
            background-size: 40px 40px;
        }

        .map-preview i {
            font-size: 2.5rem;
            z-index: 2;
        }

        /* Empty State */
        .empty-state {
            text-align: center;
            padding: 3rem 1rem;
            color: var(--secondary-color);
        }

        .empty-state i {
            font-size: 4rem;
            margin-bottom: 1rem;
            color: #dee2e6;
        }

        /* Section Headers */
        .section-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #e9ecef;
        }

        .section-header i {
            color: var(--primary-color);
        }

        /* Animation for new stops */
        @keyframes highlight {
            0% { background-color: rgba(25, 135, 84, 0.2); }
            100% { background-color: transparent; }
        }

        .new-stop {
            animation: highlight 2s ease;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .btn {
                width: 100%;
                justify-content: center;
                margin-bottom: 0.5rem;
            }

            .d-flex.justify-content-between {
                flex-direction: column;
                gap: 1rem;
            }
        }







        .card {
            border: none;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: var(--transition);
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
        }

        .form-control, .form-select {
            border-radius: 0.5rem;
            padding: 0.75rem 1rem;
            border: 1px solid #dee2e6;
            transition: var(--transition);
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
            transform: scale(1.02);
        }

        .form-label {
            font-weight: 500;
            color: #495057;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn {
            border-radius: 0.5rem;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), #0a58ca);
            border: none;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
        }

        .btn-secondary {
            background: linear-gradient(135deg, var(--secondary-color), #5c636a);
            border: none;
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(108, 117, 125, 0.3);
        }

        /* Section Headers */
        .section-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid #00366c;
        }

        .section-header i {
            color: var(--primary-color);
        }

        /* Pricing Preview Card */
        .pricing-preview {
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .pricing-preview::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%230d6efd" opacity="0.1"><path d="M20,20 L80,20 L80,80 L20,80 Z" stroke="%230d6efd" stroke-width="2" fill="none"/></svg>');
            background-size: 50px 50px;
        }

        .price-display {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .price-label {
            color: var(--secondary-color);
            font-size: 0.9rem;
        }

        /* Comfort Level Cards */
        .comfort-options {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .comfort-card {
            flex: 1;
            text-align: center;
            padding: 1rem;
            border: 2px solid #e9ecef;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
        }

        .comfort-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-3px);
        }

        .comfort-card.selected {
            border-color: var(--primary-color);
            background: rgba(13, 110, 253, 0.05);
        }

        .comfort-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        /* Seats Visualization */
        .seats-visualization {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1.5rem 0;
            flex-wrap: wrap;
        }

        .seat {
            width: 40px;
            height: 40px;
            border: 2px solid #dee2e6;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            transition: var(--transition);
        }

        .seat.available {
            background: #d1e7dd;
            border-color: var(--success-color);
            color: var(--success-color);
        }

        .seat.occupied {
            background: #f8d7da;
            border-color: var(--danger-color);
            color: var(--danger-color);
        }

        /* Currency Flags */
        .currency-flag {
            width: 20px;
            height: 15px;
            display: inline-block;
            margin-right: 8px;
            border-radius: 2px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }

        .ugx { background: linear-gradient(black 33%, yellow 33%, yellow 66%, red 66%); }
        .kes { background: linear-gradient(black 33%, red 33%, red 66%, green 66%); }
        .tzs { background: linear-gradient(green 25%, yellow 25%, yellow 75%, blue 75%); }
        .rwf { background: blue; }
        .bif { background: linear-gradient(red 33%, white 33%, white 66%, green 66%); }
        .ssp { background: linear-gradient(black 33%, red 33%, red 66%, green 66%); }
        .cdf { background: blue; }
        .usd { background: linear-gradient(red 25%, white 25%, white 75%, blue 75%); }
        .eur { background: blue; }
        .gbp { background: linear-gradient(blue 33%, white 33%, white 66%, red 66%); }

        /* Checkbox Enhancement */
        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .form-check {
            padding-left: 2.5rem;
        }

        .form-check-input {
            width: 1.5rem;
            height: 1.5rem;
            margin-left: -2.5rem;
        }

        /* Animation for form sections */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-section {
            animation: slideInUp 0.5s ease forwards;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .comfort-options {
                flex-direction: column;
            }

            .seats-visualization {
                gap: 0.25rem;
            }

            .seat {
                width: 35px;
                height: 35px;
                font-size: 0.8rem;
            }
        }












        .preferences-card {
            background: white;
            border: none;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            transition: var(--transition);
        }

        .preferences-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
        }

        .card-header {
            background: linear-gradient(135deg, var(--primary-color), #0a58ca);
            color: white;
            padding: 2rem;
            text-align: center;
            border-bottom: none;
        }

        .card-header i {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .preference-section {
            padding: 2rem;
        }

        .preference-item {
            background: #f8f9fa;
            border-radius: var(--border-radius);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 2px solid transparent;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .preference-item:hover {
            border-color: var(--primary-color);
            background: white;
            transform: translateX(5px);
        }

        .preference-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            flex-shrink: 0;
        }

        .music-icon { background: linear-gradient(135deg, #ff6b6b, #ee5a24); color: white; }
        .smoking-icon { background: linear-gradient(135deg, #a29bfe, #6c5ce7); color: white; }
        .pets-icon { background: linear-gradient(135deg, #fd79a8, #e84393); color: white; }
        .chatting-icon { background: linear-gradient(135deg, #fdcb6e, #f39c12); color: white; }
        .ac-icon { background: linear-gradient(135deg, #00cec9, #00b894); color: white; }

        .preference-content {
            flex: 1;
        }

        .preference-label {
            font-weight: 600;
            color: #2d3436;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .preference-description {
            color: #636e72;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .form-select {
            border-radius: 0.75rem;
            padding: 0.75rem 1rem;
            border: 2px solid #e9ecef;
            font-weight: 500;
            transition: var(--transition);
        }

        .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }

        .form-check-input {
            width: 3rem;
            height: 1.5rem;
        }

        .form-check-input:checked {
            background-color: var(--success-color);
            border-color: var(--success-color);
        }

        .btn {
            border-radius: 0.75rem;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), #0a58ca);
            border: none;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(13, 110, 253, 0.4);
        }

        .btn-secondary {
            background: linear-gradient(135deg, var(--secondary-color), #5c636a);
            border: none;
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(108, 117, 125, 0.4);
        }

        /* Animation classes */
        .animate-preference {
            animation: slideInRight 0.6s ease forwards;
        }

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

        .pulse-animation {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .preference-item {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .preference-icon {
                width: 70px;
                height: 70px;
                font-size: 1.75rem;
            }

            .card-header i {
                font-size: 2.5rem;
            }
        }















        .summary-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.15);
        }

        .card-header {
            background: linear-gradient(135deg, #0f5132, #0a58ca);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
            border-bottom: none;
            position: relative;
            overflow: hidden;
        }

        .card-header::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: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .header-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: block;
            position: relative;
            z-index: 2;
        }

                .section-card {
            background:white;
            border-radius: var(--border-radius);
            padding: 2rem;
            margin-bottom: 2rem;
            border: 2px solid #f8f9fa;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            color: #212529; /* Ensure text is visible */
        }

        .section-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-color), #0a58ca);
        }


        .section-card:hover {
            transform: translateX(10px);
            box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .section-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            flex-shrink: 0;
        }

        .route-icon { background: linear-gradient(135deg, #ff6b6b, #ee5a24); color: white; }
        .stops-icon { background: linear-gradient(135deg, #a29bfe, #6c5ce7); color: white; }
        .comfort-icon { background: linear-gradient(135deg, #fd79a8, #e84393); color: white; }
        .pricing-icon { background: linear-gradient(135deg, #fdcb6e, #f39c12); color: white; }
        .payment-icon { background: linear-gradient(135deg, #00cec9, #00b894); color: white; }

                .section-title {
            font-weight: 700;
            color: #2d3436;
            margin: 0;
            font-size: 1.5rem;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid #f1f3f4;
            transition: var(--transition);
            color: #212529; /* Ensure text is visible */
        }
          .detail-item:hover {
            background: #f8f9fa;
            padding-left: 1rem;
            border-radius: 0.5rem;
        }

        .detail-item:last-child {
            border-bottom: none;
        }
         .detail-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            background: #f8f9fa;
            color: var(--primary-color);
            flex-shrink: 0;
        }

        .detail-content {
            flex: 1;
        }
          .detail-label {
            font-weight: 600;
            color: #2d3436;
            margin-bottom: 0.25rem;
        }

        .detail-value {
            color: #636e72;
            font-size: 1.1rem;
        }
            .stop-card {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 1rem;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border-left: 4px solid var(--primary-color);
            transition: var(--transition);
            color: #212529; /* Ensure text is visible */
        }

        .stop-card:hover {
            transform: translateX(5px);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        }
         .payment-method-card {
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 1rem;
            padding: 1.5rem;
            margin-bottom: 1rem;
            text-align: center;
            transition: var(--transition);
            color: #212529; /* Ensure text is visible */
        }

        .payment-method-card:hover {
            border-color: var(--primary-color);
            transform: scale(1.05);
        }
         .payment-icon-large {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        .btn-success {
            background: linear-gradient(135deg, var(--success-color), #146c43);
            color: white;
        }

        .btn-success:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 1rem 2rem rgba(25, 135, 84, 0.3);
            color: white;
        }
         .alert {
            border-radius: 1rem;
            border: none;
            padding: 1.5rem;
            font-weight: 600;
            margin-bottom: 2rem;
        }

        .alert-success {
            background: linear-gradient(135deg, #d1e7dd, #a3cfbb);
            color: #0f5132;
        }

        .alert-danger {
            background: linear-gradient(135deg, #f8d7da, #f1aeb5);
            color: #721c24;
        }



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

        .pulse-animation {
            animation: pulse 2s infinite;
        }

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

        /* Ensure all text elements have proper color */
        .text-muted {
            color: #6c757d !important;
        }

        .text-success {
            color: #198754 !important;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .section-header {
                flex-direction: column;
                text-align: center;
                gap: 0.75rem;
            }

            .section-icon {
                width: 60px;
                height: 60px;
                font-size: 1.75rem;
            }

            .header-icon {
                font-size: 3rem;
            }

            .btn {
                width: 100%;
                justify-content: center;
                margin-bottom: 1rem;
            }

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


























        @keyframes shimmer {
            0%, 100% { background-position: -200% 0; }
            50% { background-position: 200% 0; }
        }

        .success-icon {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--success-color), #20c997);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            position: relative;
            animation: bounceIn 1s ease, pulse 2s infinite 1s;
        }

        .success-icon i {
            font-size: 4rem;
            color: white;
        }

        .success-icon::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            background: rgba(25, 135, 84, 0.2);
            animation: ripple 2s ease-out infinite;
        }

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

        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.7); }
            70% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(25, 135, 84, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(25, 135, 84, 0); }
        }

        @keyframes ripple {
            0% { transform: scale(0.8); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        .confetti {
            position: absolute;
            width: 10px;
            height: 10px;
            background: var(--success-color);
            border-radius: 50%;
            animation: confettiFall 5s linear infinite;
        }

        @keyframes confettiFall {
            0% { transform: translateY(-100px) rotate(0deg); opacity: 1; }
            100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
        }

        .success-title {
            font-weight: 800;
            color: var(--success-dark);
            margin-bottom: 1rem;
            font-size: 2.5rem;
            background: linear-gradient(135deg, var(--success-dark), var(--success-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .success-message {
            font-size: 1.3rem;
            color: #495057;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .success-divider {
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--success-color), transparent);
            margin: 2rem auto;
            width: 80%;
            border: none;
        }

        .home-btn {
            background: linear-gradient(135deg, var(--primary-color), #0a58ca);
            border: none;
            border-radius: 50px;
            padding: 1rem 2.5rem;
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .home-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: var(--transition);
        }

        .home-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 1rem 2rem rgba(13, 110, 253, 0.3);
            color: white;
        }

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

        .stats-container {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(25, 135, 84, 0.1);
            border-radius: 1rem;
            min-width: 120px;
            transition: var(--transition);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(25, 135, 84, 0.2);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--success-color);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #6c757d;
            font-weight: 600;
        }

        .next-steps {
            background: rgba(25, 135, 84, 0.05);
            border-radius: 1rem;
            padding: 2rem;
            margin: 2rem 0;
            border-left: 4px solid var(--success-color);
        }

        .next-steps-title {
            font-weight: 700;
            color: var(--success-dark);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .steps-list {
            list-style: none;
            padding: 0;
        }

        .steps-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #495057;
        }

        .steps-list li i {
            color: var(--success-color);
            font-size: 1.1rem;
        }

        /* Floating animation for decorative elements */
        .floating {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .success-icon {
                width: 100px;
                height: 100px;
            }

            .success-icon i {
                font-size: 3rem;
            }

            .success-title {
                font-size: 2rem;
            }

            .success-message {
                font-size: 1.1rem;
            }

            .stats-container {
                gap: 1rem;
            }

            .stat-item {
                min-width: 100px;
                padding: 1rem;
            }
        }

