* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .header {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            padding: 30px;
            text-align: center;
        }

        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }

        .header p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .main-content {
            padding: 30px;
        }

        .trip-form {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
        }

        .form-group select,
        .form-group input {
            padding: 12px;
            border: 2px solid #e1e5e9;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group select:focus,
        .form-group input:focus {
            outline: none;
            border-color: #4facfe;
        }

        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
            transform: scale(1.2);
        }

        .search-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease;
            width: 100%;
        }

        .search-btn:hover {
            transform: translateY(-2px);
        }

        .results-section {
            margin-top: 30px;
        }

        .results-header {
            background: #e8f4fd;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }

        .results-header h2 {
            color: #2c5282;
            margin-bottom: 10px;
        }

        .trip-summary {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .summary-item {
            background: white;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
        }

        .summary-item .label {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 5px;
        }

        .summary-item .value {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c5282;
        }

        .rankings-grid {
            display: grid;
            gap: 20px;
        }

        .cab-card {
            background: white;
            border: 2px solid #e1e5e9;
            border-radius: 12px;
            padding: 20px;
            transition: all 0.3s ease;
            position: relative;
        }

        .cab-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .cab-card.top-choice {
            border-color: #4facfe;
            background: linear-gradient(135deg, #4facfe10 0%, #00f2fe10 100%);
        }

        .rank-badge {
            position: absolute;
            top: -10px;
            left: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .rank-badge.gold {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .cab-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .cab-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #2d3748;
        }

        .score {
            background: #48bb78;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 600;
        }

        .cab-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-bottom: 15px;
        }

        .detail-item {
            text-align: center;
            padding: 10px;
            background: #f7fafc;
            border-radius: 8px;
        }

        .detail-label {
            font-size: 0.8rem;
            color: #666;
            margin-bottom: 5px;
        }

        .detail-value {
            font-weight: 600;
            color: #2d3748;
        }

        .services-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
        }

        .service-tag {
            background: #e2e8f0;
            color: #4a5568;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
        }

        .service-tag.wheelchair {
            background: #c6f6d5;
            color: #276749;
        }

        .service-tag.luxury {
            background: #fed7d7;
            color: #742a2a;
        }

        .recommendations {
            background: #f0fff4;
            border: 2px solid #9ae6b4;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 30px;
        }

        .recommendations h3 {
            color: #276749;
            margin-bottom: 15px;
        }

        .rec-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .rec-item {
            background: white;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #48bb78;
        }

        .rec-title {
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 5px;
        }

        .rec-detail {
            color: #666;
            font-size: 0.9rem;
        }

        .hidden {
            display: none;
        }

        .location-input-container {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .location-input-container select,
        .location-input-container input {
            padding: 12px;
            border: 2px solid #e1e5e9;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .location-input-container select:focus,
        .location-input-container input:focus {
            outline: none;
            border-color: #4facfe;
        }

        .transport-options {
            display: grid;
            gap: 15px;
            margin-top: 10px;
        }

        .transport-option {
            border: 2px solid #e1e5e9;
            border-radius: 8px;
            padding: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .transport-option:hover {
            border-color: #4facfe;
            background-color: #f8faff;
        }

        .transport-option input[type="radio"] {
            margin-right: 12px;
            transform: scale(1.2);
            pointer-events: none; /* Disable direct clicking on radio button */
        }

        .transport-option input[type="radio"]:checked + label {
            color: #2c5282;
            font-weight: 600;
        }

        .transport-option.selected {
            border-color: #4facfe;
            background-color: #e8f4fd;
        }

        .transport-option label {
            cursor: pointer;
            display: block;
            margin: 0;
            pointer-events: none; /* Disable direct clicking on label */
        }

        /* Make the entire div clickable */
        .transport-option::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            cursor: pointer;
        }

        .transport-option strong {
            display: block;
            margin-bottom: 5px;
            color: #2d3748;
        }

        .option-desc {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.4;
        }

        @media (max-width: 768px) {
            .container {
                margin: 10px;
            }
            
            .header h1 {
                font-size: 2rem;
            }
            
            .main-content {
                padding: 20px;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }